Enum Class NextActionType

java.lang.Object
java.lang.Enum<NextActionType>
com.broadleafcommerce.paymentgateway.domain.enums.NextActionType
All Implemented Interfaces:
Serializable, Comparable<NextActionType>, Constable

public enum NextActionType extends Enum<NextActionType> implements Serializable
An enumeration of next action types.
Author:
mstandeven
  • Enum Constant Details

    • THREE_DS_VERIFICATION_FORM

      public static final NextActionType THREE_DS_VERIFICATION_FORM
      The next action is to display the 3D Secure form
    • ACH_VERIFICATION_FORM

      public static final NextActionType ACH_VERIFICATION_FORM
      The next action is to display the ACH form
    • EXTERNAL_PAYMENT_ENTRY_FORM

      public static final NextActionType EXTERNAL_PAYMENT_ENTRY_FORM
      The next action is to display an external payment entry form
  • Method Details

    • values

      public static NextActionType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static NextActionType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • isThreeDSVerificationForm

      public static boolean isThreeDSVerificationForm(String nextActionType)
    • isACHVerificationForm

      public static boolean isACHVerificationForm(String nextActionType)
    • isExternalPaymentEntryForm

      public static boolean isExternalPaymentEntryForm(String nextActionType)