Package com.grapecity.documents.excel
Enum Class ValidationType
- All Implemented Interfaces:
Serializable,Comparable<ValidationType>,Constable
Specifies the type of validation test to be performed in conjunction with values.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSpecifies that the data validation uses a custom formula to check the cell value.Specifies that the data validation checks for and allows date values that meet the given condition.Specifies that the data validation checks for and allows decimal values that meet the given condition.Specifies that the data validation checks for and allows a value that matches one in a list of values.Specifies that the data validation allows any type of value and does not check for a type or range of values.Specifies that the data validation checks for and allows text values whose length meet the given condition.Specifies that the data validation checks for and allows time values that meet the given condition.Specifies that the data validation checks for and allows whole number values that meet the given condition. -
Method Summary
Modifier and TypeMethodDescriptionstatic ValidationTypeforValue(int value) intgetValue()static ValidationTypeReturns the enum constant of this class with the specified name.static ValidationType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
None
Specifies that the data validation allows any type of value and does not check for a type or range of values. -
Whole
Specifies that the data validation checks for and allows whole number values that meet the given condition. -
Decimal
Specifies that the data validation checks for and allows decimal values that meet the given condition. -
List
Specifies that the data validation checks for and allows a value that matches one in a list of values. -
Date
Specifies that the data validation checks for and allows date values that meet the given condition. -
Time
Specifies that the data validation checks for and allows time values that meet the given condition. -
TextLength
Specifies that the data validation checks for and allows text values whose length meet the given condition. -
Custom
Specifies that the data validation uses a custom formula to check the cell value.
-
-
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
-
getValue
public int getValue() -
forValue
-