Package io.keikaiex.ui.dialog
Enum DataValidationCtrl.DataPair
- java.lang.Object
-
- java.lang.Enum<DataValidationCtrl.DataPair>
-
- io.keikaiex.ui.dialog.DataValidationCtrl.DataPair
-
- All Implemented Interfaces:
Serializable
,Comparable<DataValidationCtrl.DataPair>
- Enclosing class:
- DataValidationCtrl
public static enum DataValidationCtrl.DataPair extends Enum<DataValidationCtrl.DataPair>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BETWEEN
EQUAL_TO
GREATER_EUQAL
GREATER_THAN
LESS_EQUAL
LESS_THAN
NOT_BETWEEN
NOT_EQUAL_TO
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DataValidationCtrl.DataPair
getDataPair(Validation.OperatorType type)
Validation.OperatorType
getType()
String
toString()
static DataValidationCtrl.DataPair
valueOf(String name)
Returns the enum constant of this type with the specified name.static DataValidationCtrl.DataPair[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BETWEEN
public static final DataValidationCtrl.DataPair BETWEEN
-
NOT_BETWEEN
public static final DataValidationCtrl.DataPair NOT_BETWEEN
-
EQUAL_TO
public static final DataValidationCtrl.DataPair EQUAL_TO
-
NOT_EQUAL_TO
public static final DataValidationCtrl.DataPair NOT_EQUAL_TO
-
GREATER_THAN
public static final DataValidationCtrl.DataPair GREATER_THAN
-
LESS_THAN
public static final DataValidationCtrl.DataPair LESS_THAN
-
GREATER_EUQAL
public static final DataValidationCtrl.DataPair GREATER_EUQAL
-
LESS_EQUAL
public static final DataValidationCtrl.DataPair LESS_EQUAL
-
-
Method Detail
-
values
public static DataValidationCtrl.DataPair[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DataValidationCtrl.DataPair c : DataValidationCtrl.DataPair.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataValidationCtrl.DataPair valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getDataPair
public static DataValidationCtrl.DataPair getDataPair(Validation.OperatorType type)
-
getType
public Validation.OperatorType getType()
-
toString
public String toString()
- Overrides:
toString
in classEnum<DataValidationCtrl.DataPair>
-
-