| Enum Constant and Description |
|---|
$contains |
$ends_with |
$has_value |
$in |
$is |
$is_not |
$is_unknown |
$less_than |
$less_than_equal |
$less_than_or_equal |
$more_than |
$more_than_equal |
$more_than_or_equal |
$not_in |
$starts_with |
| Modifier and Type | Method and Description |
|---|---|
static Operator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Operator $in
public static final Operator $not_in
public static final Operator $is
public static final Operator $is_not
public static final Operator $has_value
public static final Operator $is_unknown
public static final Operator $contains
public static final Operator $starts_with
public static final Operator $ends_with
public static final Operator $more_than
public static final Operator $less_than
public static final Operator $less_than_or_equal
public static final Operator $more_than_or_equal
public static final Operator $less_than_equal
public static final Operator $more_than_equal
public static Operator[] values()
for (Operator c : Operator.values()) System.out.println(c);
public static 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 null