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