public enum ExpectedTokenType extends java.lang.Enum<ExpectedTokenType>
Enum Constant and Description |
---|
INVOICE_TOKEN |
PAYMENT_TOKEN |
SETTLEMENT_TOKEN |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getTokenContext() |
static ExpectedTokenType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExpectedTokenType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExpectedTokenType PAYMENT_TOKEN
public static final ExpectedTokenType INVOICE_TOKEN
public static final ExpectedTokenType SETTLEMENT_TOKEN
public static ExpectedTokenType[] values()
for (ExpectedTokenType c : ExpectedTokenType.values()) System.out.println(c);
public static ExpectedTokenType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getTokenContext()