[]
        
(Showing Draft Content)

ValidationType

Enum Class ValidationType

java.lang.Object
java.lang.Enum<ValidationType>
com.grapecity.documents.excel.ValidationType
All Implemented Interfaces:
Serializable, Comparable<ValidationType>, Constable

public enum ValidationType extends Enum<ValidationType>
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 Constants
    Enum Constant
    Description
    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

    Modifier and Type
    Method
    Description
    forValue(int value)
     
    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.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • None

      public static final ValidationType None
      Specifies that the data validation allows any type of value and does not check for a type or range of values.
    • Whole

      public static final ValidationType Whole
      Specifies that the data validation checks for and allows whole number values that meet the given condition.
    • Decimal

      public static final ValidationType Decimal
      Specifies that the data validation checks for and allows decimal values that meet the given condition.
    • List

      public static final ValidationType List
      Specifies that the data validation checks for and allows a value that matches one in a list of values.
    • Date

      public static final ValidationType Date
      Specifies that the data validation checks for and allows date values that meet the given condition.
    • Time

      public static final ValidationType Time
      Specifies that the data validation checks for and allows time values that meet the given condition.
    • TextLength

      public static final ValidationType TextLength
      Specifies that the data validation checks for and allows text values whose length meet the given condition.
    • Custom

      public static final ValidationType Custom
      Specifies that the data validation uses a custom formula to check the cell value.
  • Method Details

    • values

      public static ValidationType[] 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

      public static ValidationType valueOf(String name)
      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()
    • forValue

      public static ValidationType forValue(int value)