Enum Class ValidationType
Enum Constant Summary
Enum Constants
Specifies 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
All Methods Static Methods Instance Methods Concrete Methods
int
Returns the enum constant of this class with the specified name.
Returns an array containing the constants of this enum class, in
the order they are declared.
Methods inherited from class java.lang.Enum
clone , compareTo , describeConstable , equals , finalize , getDeclaringClass , hashCode , name , ordinal , toString , valueOf
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 name
NullPointerException
- if the argument is null
getValue
public int getValue ()