Package io.github.dornol.excelkit.excel
Enum Class ExcelValidation.ValidationType
java.lang.Object
java.lang.Enum<ExcelValidation.ValidationType>
io.github.dornol.excelkit.excel.ExcelValidation.ValidationType
- All Implemented Interfaces:
Serializable,Comparable<ExcelValidation.ValidationType>,Constable
- Enclosing class:
ExcelValidation
Supported validation types.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDate range validation.Decimal value validation.Custom formula validation.Integer value validation.List from cell range validation.Text length validation. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static ExcelValidation.ValidationType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INTEGER
Integer value validation. -
DECIMAL
Decimal value validation. -
TEXT_LENGTH
Text length validation. -
DATE
Date range validation. -
FORMULA
Custom formula validation. -
LIST_FORMULA
List from cell range validation.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-