public static enum ObjectQ.Operator extends java.lang.Enum<ObjectQ.Operator>
Enum Constant and Description |
---|
ADD_VALUE |
DEFAULT |
EQUAL |
GREATER_THAN |
GT_EQUAL |
LESS_THAN |
LT_EQUAL |
NEQUAL |
NONE |
REMOVE_VALUE |
REPLACE |
Modifier and Type | Method and Description |
---|---|
static ObjectQ.Operator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ObjectQ.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectQ.Operator ADD_VALUE
public static final ObjectQ.Operator DEFAULT
public static final ObjectQ.Operator EQUAL
public static final ObjectQ.Operator GREATER_THAN
public static final ObjectQ.Operator GT_EQUAL
public static final ObjectQ.Operator LESS_THAN
public static final ObjectQ.Operator LT_EQUAL
public static final ObjectQ.Operator NEQUAL
public static final ObjectQ.Operator NONE
public static final ObjectQ.Operator REMOVE_VALUE
public static final ObjectQ.Operator REPLACE
public static ObjectQ.Operator 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 nullpublic static ObjectQ.Operator[] values()
for (ObjectQ.Operator c : ObjectQ.Operator.values()) System.out.println(c);