Package com.checkout.sessions
Enum NextAction
- java.lang.Object
-
- java.lang.Enum<NextAction>
-
- com.checkout.sessions.NextAction
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<NextAction>
public enum NextAction extends java.lang.Enum<NextAction>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTHENTICATECHALLENGE_CARDHOLDERCOLLECT_CHANNEL_DATACOMPLETEISSUER_FINGERPRINTREDIRECT_CARDHOLDER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static NextActionvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static NextAction[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTHENTICATE
@SerializedName("authenticate") public static final NextAction AUTHENTICATE
-
CHALLENGE_CARDHOLDER
@SerializedName("challenge_cardholder") public static final NextAction CHALLENGE_CARDHOLDER
-
COLLECT_CHANNEL_DATA
@SerializedName("collect_channel_data") public static final NextAction COLLECT_CHANNEL_DATA
-
COMPLETE
@SerializedName("complete") public static final NextAction COMPLETE
-
ISSUER_FINGERPRINT
@SerializedName("issuer_fingerprint") public static final NextAction ISSUER_FINGERPRINT
-
REDIRECT_CARDHOLDER
@SerializedName("redirect_cardholder") public static final NextAction REDIRECT_CARDHOLDER
-
-
Method Detail
-
values
public static NextAction[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (NextAction c : NextAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NextAction valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-