public static enum SearchTermBuilder.Op extends Enum<SearchTermBuilder.Op>
| Modifier and Type | Method and Description |
|---|---|
static SearchTermBuilder.Op |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SearchTermBuilder.Op[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchTermBuilder.Op and
public static final SearchTermBuilder.Op or
public static final SearchTermBuilder.Op not
public static SearchTermBuilder.Op[] values()
for (SearchTermBuilder.Op c : SearchTermBuilder.Op.values()) System.out.println(c);
public static SearchTermBuilder.Op 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 nullApache Camel