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