Package io.keikaiex.ui.dialog
Enum DataValidationCtrl.AllowPair
- java.lang.Object
-
- java.lang.Enum<DataValidationCtrl.AllowPair>
-
- io.keikaiex.ui.dialog.DataValidationCtrl.AllowPair
-
- All Implemented Interfaces:
Serializable
,Comparable<DataValidationCtrl.AllowPair>
- Enclosing class:
- DataValidationCtrl
public static enum DataValidationCtrl.AllowPair extends Enum<DataValidationCtrl.AllowPair>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANY_VALUE
CUSTOM
DATE
DECIMAL
LIST
TEXT_LENGTH
TIME
WHOLE_NUMBER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DataValidationCtrl.AllowPair
getAllowPair(Validation.ValidationType type)
String
getMaximumName()
String
getMinimumName()
String
getPointName()
Validation.ValidationType
getType()
boolean
isDataEnabled()
boolean
isIgnoreBlankEnabled()
boolean
isInCellCheckEnabled()
boolean
isParam1Enabled()
boolean
isParam2Enabled()
String
toString()
static DataValidationCtrl.AllowPair
valueOf(String name)
Returns the enum constant of this type with the specified name.static DataValidationCtrl.AllowPair[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ANY_VALUE
public static final DataValidationCtrl.AllowPair ANY_VALUE
-
WHOLE_NUMBER
public static final DataValidationCtrl.AllowPair WHOLE_NUMBER
-
DECIMAL
public static final DataValidationCtrl.AllowPair DECIMAL
-
LIST
public static final DataValidationCtrl.AllowPair LIST
-
DATE
public static final DataValidationCtrl.AllowPair DATE
-
TIME
public static final DataValidationCtrl.AllowPair TIME
-
TEXT_LENGTH
public static final DataValidationCtrl.AllowPair TEXT_LENGTH
-
CUSTOM
public static final DataValidationCtrl.AllowPair CUSTOM
-
-
Method Detail
-
values
public static DataValidationCtrl.AllowPair[] 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.AllowPair c : DataValidationCtrl.AllowPair.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.AllowPair 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
-
getAllowPair
public static DataValidationCtrl.AllowPair getAllowPair(Validation.ValidationType type)
-
getType
public Validation.ValidationType getType()
-
isDataEnabled
public boolean isDataEnabled()
-
isIgnoreBlankEnabled
public boolean isIgnoreBlankEnabled()
-
isInCellCheckEnabled
public boolean isInCellCheckEnabled()
-
getPointName
public String getPointName()
-
getMinimumName
public String getMinimumName()
-
getMaximumName
public String getMaximumName()
-
isParam1Enabled
public boolean isParam1Enabled()
-
isParam2Enabled
public boolean isParam2Enabled()
-
toString
public String toString()
- Overrides:
toString
in classEnum<DataValidationCtrl.AllowPair>
-
-