public static enum AutoCompletion.AppendMode extends Enum<AutoCompletion.AppendMode>
Enum Constant and Description |
---|
AUTO |
MANUAL |
NONE |
UNSPECIFIED |
Modifier and Type | Method and Description |
---|---|
static AutoCompletion.AppendMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AutoCompletion.AppendMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutoCompletion.AppendMode UNSPECIFIED
public static final AutoCompletion.AppendMode AUTO
public static final AutoCompletion.AppendMode MANUAL
public static final AutoCompletion.AppendMode NONE
public static AutoCompletion.AppendMode[] values()
for (AutoCompletion.AppendMode c : AutoCompletion.AppendMode.values()) System.out.println(c);
public static AutoCompletion.AppendMode 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 null