public enum VariableOperation extends Enum<VariableOperation>
| Modifier and Type | Method and Description |
|---|---|
static VariableOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VariableOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VariableOperation READ
public static final VariableOperation WRITE
public static final VariableOperation DELETE
public static VariableOperation[] values()
for (VariableOperation c : VariableOperation.values()) System.out.println(c);
public static VariableOperation 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 nullCopyright © 2019 viadee Unternehmensberatung AG. All rights reserved.