public static enum ControlAccess.CacheEntryType extends java.lang.Enum<ControlAccess.CacheEntryType>
Enum Constant and Description |
---|
FUNCTION_EXECUTE |
VARIABLE_READ |
VARIABLE_WRITE |
Modifier and Type | Method and Description |
---|---|
static ControlAccess.CacheEntryType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ControlAccess.CacheEntryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ControlAccess.CacheEntryType FUNCTION_EXECUTE
public static final ControlAccess.CacheEntryType VARIABLE_READ
public static final ControlAccess.CacheEntryType VARIABLE_WRITE
public static ControlAccess.CacheEntryType[] values()
for (ControlAccess.CacheEntryType c : ControlAccess.CacheEntryType.values()) System.out.println(c);
public static ControlAccess.CacheEntryType 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