public static enum Rule.OPERATOR extends java.lang.Enum<Rule.OPERATOR>
| Enum Constant and Description |
|---|
COMESAFTER |
COMESBEFORE |
CONTAINS |
EQUALS |
GREATERTHAN |
GREATERTHANOREQUAL |
LOWERTHAN |
LOWERTHANOREQUAL |
NOTCONTAINS |
NOTEQUALS |
| Modifier and Type | Method and Description |
|---|---|
static Rule.OPERATOR |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Rule.OPERATOR[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Rule.OPERATOR EQUALS
public static final Rule.OPERATOR NOTEQUALS
public static final Rule.OPERATOR LOWERTHAN
public static final Rule.OPERATOR LOWERTHANOREQUAL
public static final Rule.OPERATOR GREATERTHAN
public static final Rule.OPERATOR GREATERTHANOREQUAL
public static final Rule.OPERATOR CONTAINS
public static final Rule.OPERATOR NOTCONTAINS
public static final Rule.OPERATOR COMESAFTER
public static final Rule.OPERATOR COMESBEFORE
public static Rule.OPERATOR[] values()
for (Rule.OPERATOR c : Rule.OPERATOR.values()) System.out.println(c);
public static Rule.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