Enum Class ValidationType

java.lang.Object
java.lang.Enum<ValidationType>
com.grapecity.documents.excel.ValidationType
所有已实现的接口:
Serializable, Comparable<ValidationType>, Constable

public enum ValidationType extends Enum<ValidationType>
Specifies the type of validation test to be performed in conjunction with values.
  • 嵌套类概要

    从类继承的嵌套类/接口 java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • 枚举常量概要

    枚举常量
    枚举常量
    说明
    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.
  • 方法概要

    修饰符和类型
    方法
    说明
    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.

    从类继承的方法 java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • 枚举常量详细资料

    • 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.
  • 方法详细资料

    • values

      public static ValidationType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      返回:
      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.)
      参数:
      name - 要返回的枚举常量的名称。
      返回:
      返回带有指定名称的枚举常量
      抛出:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - 如果参数为空值
    • getValue

      public int getValue()
    • forValue

      public static ValidationType forValue(int value)