Enum Class AutoFilterOperator

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

public enum AutoFilterOperator extends Enum<AutoFilterOperator>
Specifies the operator to use to associate two criteria applied by a filter.
  • 枚举常量详细资料

    • None

      public static final AutoFilterOperator None
      Specifies the default.
    • And

      public static final AutoFilterOperator And
      Specifies logical AND of Criteria1 and Criteria2.
    • Or

      public static final AutoFilterOperator Or
      Specifies logical OR of Criteria1 and Criteria2.
    • Top10Items

      public static final AutoFilterOperator Top10Items
      Specifies that the highest-valued items are displayed (number of items specified in Criteria1).
    • Bottom10Items

      public static final AutoFilterOperator Bottom10Items
      Specifies that the lowest-valued items are displayed (number of items specified in Criteria1).
    • Top10Percent

      public static final AutoFilterOperator Top10Percent
      Specifies that the lowest-valued items are displayed (percentage of items specified in Criteria1).
    • Bottom10Percent

      public static final AutoFilterOperator Bottom10Percent
      Specifies that the lowest-valued items are displayed (percentage specified in Criteria1).
    • Values

      public static final AutoFilterOperator Values
      Specifies filter values.
    • CellColor

      public static final AutoFilterOperator CellColor
      Specifies the cell color.
    • FontColor

      public static final AutoFilterOperator FontColor
      Specifies the font color.
    • Icon

      public static final AutoFilterOperator Icon
      Specifies the filter icon.
    • Dynamic

      public static final AutoFilterOperator Dynamic
      Specifies the dynamic filter.
    • NoFill

      public static final AutoFilterOperator NoFill
      Specifies that this is reserved for internal use.
    • AutomaticFontColor

      public static final AutoFilterOperator AutomaticFontColor
      Specifies that this is reserved for internal use.
    • NoIcon

      public static final AutoFilterOperator NoIcon
      Specifies that this is reserved for internal use.
  • 方法详细资料

    • values

      public static AutoFilterOperator[] 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 AutoFilterOperator 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 - 如果参数为空值