public enum FilterOperator extends Enum<FilterOperator> implements AttributeValue
| Enum Constant and Description |
|---|
BEGINS
begins with
|
BOTTOM_PERCENT
like bottom values, except that the office:value attribute specifies the number of
cells for which the condition is true as a percentage
|
BOTTOM_VALUES
true for the n cells that have the smallest value, where n is the value of the
office:value attribute
|
CONTAINS
contains
|
EMPTY
true for empty cells
|
ENDS
ends with
|
EQ
Equal to
|
GT
Greater than
|
GTE
Greater than or equal to
|
LT
Less than
|
LTE
Less than or equal to
|
MATCHES
matches
|
N_BEGINS
does not begin with
|
N_CONTAINS
does not contain
|
N_EMPTY
true for non-empty cells
|
N_ENDS
does not end with
|
N_EQ
Not equal to
|
N_MATCH
does not match
|
TOP_PERCENT
like bottom percent, but for the largest values
|
TOP_VALUES
like bottom values, but for the largest values
|
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
String |
toString() |
static FilterOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterOperator MATCHES
public static final FilterOperator N_MATCH
public static final FilterOperator EQ
public static final FilterOperator N_EQ
public static final FilterOperator LT
public static final FilterOperator GT
public static final FilterOperator LTE
public static final FilterOperator GTE
public static final FilterOperator BEGINS
public static final FilterOperator CONTAINS
public static final FilterOperator N_CONTAINS
public static final FilterOperator ENDS
public static final FilterOperator N_BEGINS
public static final FilterOperator N_ENDS
public static final FilterOperator BOTTOM_PERCENT
public static final FilterOperator BOTTOM_VALUES
public static final FilterOperator EMPTY
public static final FilterOperator N_EMPTY
public static final FilterOperator TOP_PERCENT
public static final FilterOperator TOP_VALUES
public static FilterOperator[] values()
for (FilterOperator c : FilterOperator.values()) System.out.println(c);
public static FilterOperator valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<FilterOperator>public String getValue()
getValue in interface AttributeValueCopyright © 2016–2021. All rights reserved.