Enum Class NextActionType
- All Implemented Interfaces:
Serializable
,Comparable<NextActionType>
,Constable
An enumeration of next action types.
- Author:
- mstandeven
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe next action is to display the ACH formThe next action is to display an external payment entry formThe next action is to display the 3D Secure form -
Method Summary
Modifier and TypeMethodDescriptionstatic boolean
isACHVerificationForm
(String nextActionType) static boolean
isExternalPaymentEntryForm
(String nextActionType) static boolean
isThreeDSVerificationForm
(String nextActionType) static NextActionType
Returns the enum constant of this class with the specified name.static NextActionType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
THREE_DS_VERIFICATION_FORM
The next action is to display the 3D Secure form -
ACH_VERIFICATION_FORM
The next action is to display the ACH form -
EXTERNAL_PAYMENT_ENTRY_FORM
The next action is to display an external payment entry form
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-
isThreeDSVerificationForm
-
isACHVerificationForm
-
isExternalPaymentEntryForm
-