public enum AutoFilterOperator extends java.lang.Enum<AutoFilterOperator>
| Enum Constant and Description |
|---|
And
Specifies logical AND of Criteria1 and Criteria2.
|
AutomaticFontColor
Specifies that this is reserved for internal use.
|
Bottom10Items
Specifies that the lowest-valued items are displayed (number of items specified in Criteria1).
|
Bottom10Percent
Specifies that the lowest-valued items are displayed (percentage specified in Criteria1).
|
CellColor
Specifies the cell color.
|
Dynamic
Specifies the dynamic filter.
|
FontColor
Specifies the font color.
|
Icon
Specifies the filter icon.
|
NoFill
Specifies that this is reserved for internal use.
|
NoIcon
Specifies that this is reserved for internal use.
|
None
Specifies the default.
|
Or
Specifies logical OR of Criteria1 and Criteria2.
|
Top10Items
Specifies that the highest-valued items are displayed (number of items specified in Criteria1).
|
Top10Percent
Specifies that the lowest-valued items are displayed (percentage of items specified in Criteria1).
|
Values
Specifies filter values.
|
| Modifier and Type | Method and Description |
|---|---|
static AutoFilterOperator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AutoFilterOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutoFilterOperator None
public static final AutoFilterOperator And
public static final AutoFilterOperator Or
public static final AutoFilterOperator Top10Items
public static final AutoFilterOperator Bottom10Items
public static final AutoFilterOperator Top10Percent
public static final AutoFilterOperator Bottom10Percent
public static final AutoFilterOperator Values
public static final AutoFilterOperator CellColor
public static final AutoFilterOperator FontColor
public static final AutoFilterOperator Icon
public static final AutoFilterOperator Dynamic
public static final AutoFilterOperator NoFill
public static final AutoFilterOperator AutomaticFontColor
public static final AutoFilterOperator NoIcon
public static AutoFilterOperator[] values()
for (AutoFilterOperator c : AutoFilterOperator.values()) System.out.println(c);
public static AutoFilterOperator valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null