public static enum FilterParameter.Operation extends Enum<FilterParameter.Operation>
| Enum Constant and Description |
|---|
GREATER_THAN
Greater than or equal to.
|
GREATER_THAN_OR_EQUAL_TO
Greater than or equal to.
|
IN
In.
|
IS
Is.
|
LESS_THAN
Less than.
|
LESS_THAN_OR_EQUAL_TO
Less than or equal to.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static FilterParameter.Operation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterParameter.Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterParameter.Operation GREATER_THAN
>.public static final FilterParameter.Operation GREATER_THAN_OR_EQUAL_TO
>=.public static final FilterParameter.Operation IN
IN .public static final FilterParameter.Operation IS
:.public static final FilterParameter.Operation LESS_THAN
<.public static final FilterParameter.Operation LESS_THAN_OR_EQUAL_TO
<=.public static FilterParameter.Operation[] values()
for (FilterParameter.Operation c : FilterParameter.Operation.values()) System.out.println(c);
public static FilterParameter.Operation 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<FilterParameter.Operation>Copyright © 2017 Pivotal Software, Inc.. All rights reserved.