public static enum RequestValue.Operator extends Enum<RequestValue.Operator>
Enum Constant and Description |
---|
Equals |
Escaped |
GreaterThan |
GreaterThanOrEqualTo |
In |
IsNotNull |
IsNull |
LessThan |
LessThanOrEqualTo |
NotEquals |
Modifier and Type | Method and Description |
---|---|
static RequestValue.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RequestValue.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RequestValue.Operator Equals
public static final RequestValue.Operator Escaped
public static final RequestValue.Operator GreaterThan
public static final RequestValue.Operator GreaterThanOrEqualTo
public static final RequestValue.Operator In
public static final RequestValue.Operator IsNull
public static final RequestValue.Operator IsNotNull
public static final RequestValue.Operator LessThan
public static final RequestValue.Operator LessThanOrEqualTo
public static final RequestValue.Operator NotEquals
public static RequestValue.Operator[] values()
for (RequestValue.Operator c : RequestValue.Operator.values()) System.out.println(c);
public static RequestValue.Operator 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 nullCopyright © 2011-2018 restSQL Project Contributors