public static enum FilterBuilder.Operator extends Enum<FilterBuilder.Operator>
Modifier and Type | Method and Description |
---|---|
static FilterBuilder.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterBuilder.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterBuilder.Operator EQ
public static final FilterBuilder.Operator APPROX
public static final FilterBuilder.Operator GE
public static final FilterBuilder.Operator LE
public static FilterBuilder.Operator[] values()
for (FilterBuilder.Operator c : FilterBuilder.Operator.values()) System.out.println(c);
public static FilterBuilder.Operator 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 nullCopyright © 2021 aQute SARL. All rights reserved.