public enum SuggestEngineStatus extends Enum<SuggestEngineStatus>
Enum Constant and Description |
---|
CANNOT_CORRECT |
ONE_SUGGESTION |
SYNTAX_OK |
Modifier and Type | Method and Description |
---|---|
static SuggestEngineStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SuggestEngineStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SuggestEngineStatus SYNTAX_OK
public static final SuggestEngineStatus CANNOT_CORRECT
public static final SuggestEngineStatus ONE_SUGGESTION
public static SuggestEngineStatus[] values()
for (SuggestEngineStatus c : SuggestEngineStatus.values()) System.out.println(c);
public static SuggestEngineStatus 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. All Rights Reserved.