public static enum GKCardSettings.Status extends java.lang.Enum<GKCardSettings.Status>
| Enum Constant and Description |
|---|
INVALID_DATA
The given data was not acceptable.
|
NOT_FOUND
The file could not be found on the card
|
SUCCESS
The action was successful.
|
UNAUTHORIZED
The client is not currently Authenticated with the GateKeeper Card.
|
UNKNOWN_STATUS
The GateKeeper Card API returned a result that GKCardSettings does
not understand.
|
| Modifier and Type | Method and Description |
|---|---|
static GKCardSettings.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GKCardSettings.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GKCardSettings.Status SUCCESS
public static final GKCardSettings.Status UNAUTHORIZED
public static final GKCardSettings.Status INVALID_DATA
public static final GKCardSettings.Status NOT_FOUND
public static final GKCardSettings.Status UNKNOWN_STATUS
public static GKCardSettings.Status[] values()
for (GKCardSettings.Status c : GKCardSettings.Status.values()) System.out.println(c);
public static GKCardSettings.Status 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 null