public static enum SearchExpression.SearchPlace extends java.lang.Enum<SearchExpression.SearchPlace>
Enum Constant and Description |
---|
SOURCE_ONLY |
SOURCE_TRANSLATION |
TRANSLATION_ONLY |
Modifier and Type | Method and Description |
---|---|
static SearchExpression.SearchPlace |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SearchExpression.SearchPlace[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchExpression.SearchPlace SOURCE_TRANSLATION
public static final SearchExpression.SearchPlace SOURCE_ONLY
public static final SearchExpression.SearchPlace TRANSLATION_ONLY
public static SearchExpression.SearchPlace[] values()
for (SearchExpression.SearchPlace c : SearchExpression.SearchPlace.values()) System.out.println(c);
public static SearchExpression.SearchPlace valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null