public enum Modifier extends Enum<Modifier>
| Enum Constant and Description |
|---|
BETWEEN |
BETWEEN_OR_EQUAL |
CONTAINS |
ENDS_WITH |
EQUALS |
GREATER |
GREATER_OR_EQUAL |
LESS |
LESS_OR_EQUAL |
NOT_CONTAINS |
NOT_ENDS_WITH |
NOT_EQUALS |
NOT_STARTS_WITH |
STARTS_WITH |
| Modifier and Type | Method and Description |
|---|---|
static Modifier |
get(String symbol) |
String |
toString() |
static Modifier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Modifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Modifier EQUALS
public static final Modifier NOT_EQUALS
public static final Modifier GREATER
public static final Modifier GREATER_OR_EQUAL
public static final Modifier LESS
public static final Modifier LESS_OR_EQUAL
public static final Modifier BETWEEN
public static final Modifier BETWEEN_OR_EQUAL
public static final Modifier CONTAINS
public static final Modifier NOT_CONTAINS
public static final Modifier STARTS_WITH
public static final Modifier NOT_STARTS_WITH
public static final Modifier ENDS_WITH
public static final Modifier NOT_ENDS_WITH
public static Modifier[] values()
for (Modifier c : Modifier.values()) System.out.println(c);
public static Modifier 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 © 2019. All rights reserved.