Package net.pricefx.common.api.chart
Enum FilterOperator
- Object
-
- Enum<FilterOperator>
-
- FilterOperator
-
- All Implemented Interfaces:
Serializable
,Comparable<FilterOperator>
public enum FilterOperator extends Enum<FilterOperator>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AND
CONTAINS
DOES_NOT_CONTAIN
DOES_NOT_END_WITH
DOES_NOT_START_WITH
ENDS_WITH
EQUAL
GREATER_THAN
GREATER_THAN_OR_EQUAL_TO
IN_SET
IS_NULL
LESS_THAN
LESS_THAN_OR_EQUAL_TO
NOT
NOT_EQUAL
NOT_IN_SET
NOT_NULL
OR
STARTS_WITH
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
static FilterOperator
getViaName(String name)
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.
-
-
-
Enum Constant Detail
-
EQUAL
public static final FilterOperator EQUAL
-
NOT_EQUAL
public static final FilterOperator NOT_EQUAL
-
LESS_THAN_OR_EQUAL_TO
public static final FilterOperator LESS_THAN_OR_EQUAL_TO
-
LESS_THAN
public static final FilterOperator LESS_THAN
-
GREATER_THAN_OR_EQUAL_TO
public static final FilterOperator GREATER_THAN_OR_EQUAL_TO
-
GREATER_THAN
public static final FilterOperator GREATER_THAN
-
CONTAINS
public static final FilterOperator CONTAINS
-
DOES_NOT_CONTAIN
public static final FilterOperator DOES_NOT_CONTAIN
-
ENDS_WITH
public static final FilterOperator ENDS_WITH
-
DOES_NOT_END_WITH
public static final FilterOperator DOES_NOT_END_WITH
-
STARTS_WITH
public static final FilterOperator STARTS_WITH
-
DOES_NOT_START_WITH
public static final FilterOperator DOES_NOT_START_WITH
-
IS_NULL
public static final FilterOperator IS_NULL
-
NOT_NULL
public static final FilterOperator NOT_NULL
-
IN_SET
public static final FilterOperator IN_SET
-
NOT_IN_SET
public static final FilterOperator NOT_IN_SET
-
AND
public static final FilterOperator AND
-
OR
public static final FilterOperator OR
-
NOT
public static final FilterOperator NOT
-
-
Method Detail
-
values
public static FilterOperator[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FilterOperator c : FilterOperator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FilterOperator valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
getViaName
public static FilterOperator getViaName(String name)
-
getName
public String getName()
-
-