public enum FormatConditionOperator extends java.lang.Enum<FormatConditionOperator>
| Enum Constant and Description |
|---|
Between
Specifes to compare between values.
|
Equal
Specifies values are equal.
|
Greater
Specifies values are greater than the condition.
|
GreaterEqual
Specifies values are greater than or equal to the condition.
|
Less
Specifies values are less than the condition.
|
LessEqual
Specifies values are less than or equal to the condition.
|
None
None
|
NotBetween
Specifies to check if values are not between the conditions.
|
NotEqual
Specifies values are not equal.
|
| Modifier and Type | Method and Description |
|---|---|
static FormatConditionOperator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FormatConditionOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FormatConditionOperator None
public static final FormatConditionOperator Between
public static final FormatConditionOperator NotBetween
public static final FormatConditionOperator Equal
public static final FormatConditionOperator NotEqual
public static final FormatConditionOperator Greater
public static final FormatConditionOperator Less
public static final FormatConditionOperator GreaterEqual
public static final FormatConditionOperator LessEqual
public static FormatConditionOperator[] values()
for (FormatConditionOperator c : FormatConditionOperator.values()) System.out.println(c);
public static FormatConditionOperator 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