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