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 SummaryEnum Constants Enum Constant Description ANY_VALUECUSTOMDATEDECIMALLISTTEXT_LENGTHTIMEWHOLE_NUMBER
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DataValidationCtrl.AllowPairgetAllowPair(Validation.ValidationType type)StringgetMaximumName()StringgetMinimumName()StringgetPointName()Validation.ValidationTypegetType()booleanisDataEnabled()booleanisIgnoreBlankEnabled()booleanisInCellCheckEnabled()booleanisParam1Enabled()booleanisParam2Enabled()StringtoString()static DataValidationCtrl.AllowPairvalueOf(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_VALUEpublic static final DataValidationCtrl.AllowPair ANY_VALUE 
 - 
WHOLE_NUMBERpublic static final DataValidationCtrl.AllowPair WHOLE_NUMBER 
 - 
DECIMALpublic static final DataValidationCtrl.AllowPair DECIMAL 
 - 
LISTpublic static final DataValidationCtrl.AllowPair LIST 
 - 
DATEpublic static final DataValidationCtrl.AllowPair DATE 
 - 
TIMEpublic static final DataValidationCtrl.AllowPair TIME 
 - 
TEXT_LENGTHpublic static final DataValidationCtrl.AllowPair TEXT_LENGTH 
 - 
CUSTOMpublic static final DataValidationCtrl.AllowPair CUSTOM 
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 - 
getAllowPairpublic static DataValidationCtrl.AllowPair getAllowPair(Validation.ValidationType type) 
 - 
getTypepublic Validation.ValidationType getType() 
 - 
isDataEnabledpublic boolean isDataEnabled() 
 - 
isIgnoreBlankEnabledpublic boolean isIgnoreBlankEnabled() 
 - 
isInCellCheckEnabledpublic boolean isInCellCheckEnabled() 
 - 
getPointNamepublic String getPointName() 
 - 
getMinimumNamepublic String getMinimumName() 
 - 
getMaximumNamepublic String getMaximumName() 
 - 
isParam1Enabledpublic boolean isParam1Enabled() 
 - 
isParam2Enabledpublic boolean isParam2Enabled() 
 - 
toStringpublic String toString() - Overrides:
- toStringin class- Enum<DataValidationCtrl.AllowPair>
 
 
- 
 
-