public enum OperationCode extends java.lang.Enum<OperationCode>
Enum Constant and Description |
---|
COPY |
DELETE |
GETBYTES |
GETFILE |
META |
SAVEBYTES |
SAVEBYTESWITHSERVERCALLBACK |
SAVEFILE |
SAVEFILEWITHSERVERCALLBACK |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static OperationCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OperationCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperationCode GETBYTES
public static final OperationCode GETFILE
public static final OperationCode SAVEBYTES
public static final OperationCode SAVEFILE
public static final OperationCode SAVEBYTESWITHSERVERCALLBACK
public static final OperationCode SAVEFILEWITHSERVERCALLBACK
public static final OperationCode COPY
public static final OperationCode DELETE
public static final OperationCode META
public static OperationCode[] values()
for (OperationCode c : OperationCode.values()) System.out.println(c);
public static OperationCode 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 toString()
toString
in class java.lang.Enum<OperationCode>