public enum FilterOperation extends Enum<FilterOperation>
Enum Constant and Description |
---|
contains |
eq |
in |
notin |
startswith |
Modifier and Type | Method and Description |
---|---|
static FilterOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterOperation in
public static final FilterOperation notin
public static final FilterOperation startswith
public static final FilterOperation contains
public static final FilterOperation eq
public static FilterOperation[] values()
for (FilterOperation c : FilterOperation.values()) System.out.println(c);
public static FilterOperation 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 © 2016–2018 Yahoo! Inc.. All rights reserved.