public static enum NumberRule.Operator extends java.lang.Enum<NumberRule.Operator>
Enum Constant and Description |
---|
CONTAINS_BITS_FROM |
DOES_NOT_CONTAIN_BITS_FROM |
IS_EQUAL_TO |
IS_GREATER_THAN |
IS_LESS_THAN |
IS_NOT_EQUAL_TO |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static NumberRule.Operator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NumberRule.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NumberRule.Operator IS_GREATER_THAN
public static final NumberRule.Operator IS_LESS_THAN
public static final NumberRule.Operator IS_EQUAL_TO
public static final NumberRule.Operator IS_NOT_EQUAL_TO
public static final NumberRule.Operator CONTAINS_BITS_FROM
public static final NumberRule.Operator DOES_NOT_CONTAIN_BITS_FROM
public static NumberRule.Operator[] values()
for (NumberRule.Operator c : NumberRule.Operator.values()) System.out.println(c);
public static NumberRule.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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<NumberRule.Operator>