public enum DataValidationOperator extends Enum<DataValidationOperator>
Enum Constant and Description |
---|
BETWEEN
Data validation which checks if a value is between two other values.
|
EQUAL
Data validation which checks if a value is equal to a specified value.
|
GREATER_THAN
Data validation which checks if a value is greater than a specified value.
|
GREATER_THAN_OR_EQUAL
Data validation which checks if a value is greater than or equal to a specified value.
|
LESS_THAN
Data validation which checks if a value is less than a specified value.
|
LESS_THAN_OR_EQUAL
Data validation which checks if a value is less than or equal to a specified value.
|
NOT_BETWEEN
Data validation which checks if a value is not between two other values.
|
NOT_EQUAL
Data validation which checks if a value is not equal to a specified value.
|
Modifier and Type | Method and Description |
---|---|
static DataValidationOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataValidationOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataValidationOperator BETWEEN
public static final DataValidationOperator EQUAL
public static final DataValidationOperator GREATER_THAN
public static final DataValidationOperator GREATER_THAN_OR_EQUAL
public static final DataValidationOperator LESS_THAN
public static final DataValidationOperator LESS_THAN_OR_EQUAL
public static final DataValidationOperator NOT_BETWEEN
public static final DataValidationOperator NOT_EQUAL
public static DataValidationOperator 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 nullpublic static DataValidationOperator[] values()
for (DataValidationOperator c : DataValidationOperator.values()) System.out.println(c);
© GemBox d.o.o. — All rights reserved.