[]
        
立即试用
(Showing Draft Content)

ConditionValueTypes

Enum Class ConditionValueTypes

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

public enum ConditionValueTypes extends Enum<ConditionValueTypes>
指定可以使用哪些条件值类型。
  • Enum Constant Details

    • None

      public static final ConditionValueTypes None
      指定无条件值。
    • Number

      public static final ConditionValueTypes Number
      指定使用了数字。
    • LowestValue

      public static final ConditionValueTypes LowestValue
      指定值列表中的最低值。
    • HighestValue

      public static final ConditionValueTypes HighestValue
      指定值列表中的最大值。
    • Percent

      public static final ConditionValueTypes Percent
      指定使用百分比。
    • Formula

      public static final ConditionValueTypes Formula
      指定了使用的公式。
    • Percentile

      public static final ConditionValueTypes Percentile
      指定使用了百分位数。
    • AutomaticMin

      public static final ConditionValueTypes AutomaticMin
      指定最短的数据条与范围内最小值成比例。
    • AutomaticMax

      public static final ConditionValueTypes AutomaticMax
      指定最长的数据条与范围内的最大值成比例。
  • Method Details

    • values

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