public static enum Compare.Operator extends Enum<Compare.Operator>
| Enum Constant and Description |
|---|
Equals |
EqualsOrLess |
EqualsOrMore |
Less |
Mask |
More |
NotEquals |
Regex |
| Modifier and Type | Method and Description |
|---|---|
static Compare.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Compare.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Compare.Operator Equals
public static final Compare.Operator NotEquals
public static final Compare.Operator Less
public static final Compare.Operator More
public static final Compare.Operator EqualsOrLess
public static final Compare.Operator EqualsOrMore
public static final Compare.Operator Mask
public static final Compare.Operator Regex
public static Compare.Operator[] values()
for (Compare.Operator c : Compare.Operator.values()) System.out.println(c);
public static Compare.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 © 2017. All rights reserved.