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