public static enum BooleanOp.Operator extends Enum<BooleanOp.Operator>
| Enum Constant and Description |
|---|
CONTAINS |
ENDS_WITH |
EQUALS |
GT |
GTE |
HAS |
IN |
IS_NULL |
LT |
LTE |
NOT_EQUALS |
REGEX |
STARTS_WITH |
| Modifier and Type | Method and Description |
|---|---|
static BooleanOp.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BooleanOp.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BooleanOp.Operator EQUALS
public static final BooleanOp.Operator NOT_EQUALS
public static final BooleanOp.Operator LT
public static final BooleanOp.Operator GT
public static final BooleanOp.Operator LTE
public static final BooleanOp.Operator GTE
public static final BooleanOp.Operator REGEX
public static final BooleanOp.Operator IN
public static final BooleanOp.Operator IS_NULL
public static final BooleanOp.Operator HAS
public static final BooleanOp.Operator STARTS_WITH
public static final BooleanOp.Operator ENDS_WITH
public static final BooleanOp.Operator CONTAINS
public static BooleanOp.Operator[] values()
for (BooleanOp.Operator c : BooleanOp.Operator.values()) System.out.println(c);
public static BooleanOp.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 © 2016. All rights reserved.