| Modifier and Type | Method and Description | 
|---|---|
byte | 
getValue()  | 
static Operation | 
of(byte value)  | 
static Operation | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static Operation[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final Operation WRITE
public static final Operation READ
public static final Operation READ_ALL
public static final Operation COMMAND
public static Operation[] values()
for (Operation c : Operation.values()) System.out.println(c);
public static Operation 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 byte getValue()
public static Operation of(byte value)