public static enum ReceivedToken.STATE extends Enum<ReceivedToken.STATE>
Enum Constant and Description |
---|
CANCELLED |
EXPIRED |
INVALID |
NONE |
VALID |
Modifier and Type | Method and Description |
---|---|
static ReceivedToken.STATE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReceivedToken.STATE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReceivedToken.STATE VALID
public static final ReceivedToken.STATE INVALID
public static final ReceivedToken.STATE CANCELLED
public static final ReceivedToken.STATE EXPIRED
public static final ReceivedToken.STATE NONE
public static ReceivedToken.STATE[] values()
for (ReceivedToken.STATE c : ReceivedToken.STATE.values()) System.out.println(c);
public static ReceivedToken.STATE valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullApache CXF