public static enum GKFileActions.Status extends java.lang.Enum<GKFileActions.Status>
| Enum Constant and Description |
|---|
FILE_ALREADY_EXISTS
The filename used to attempt a rename already exists
|
NOT_FOUND
The target path of the action could not be found.
|
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 GKFileActions.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GKFileActions.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GKFileActions.Status SUCCESS
public static final GKFileActions.Status UNAUTHORIZED
public static final GKFileActions.Status NOT_FOUND
public static final GKFileActions.Status FILE_ALREADY_EXISTS
public static final GKFileActions.Status UNKNOWN_STATUS
public static GKFileActions.Status[] values()
for (GKFileActions.Status c : GKFileActions.Status.values()) System.out.println(c);
public static GKFileActions.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