public enum CompletionSuggestionKind extends java.lang.Enum<CompletionSuggestionKind>
| Enum Constant and Description |
|---|
ARGUMENT_LIST |
IDENTIFIER |
IMPORT |
INVOCATION |
KEYWORD |
NAMED_ARGUMENT |
OPTIONAL_ARGUMENT |
PARAMETER |
| Modifier and Type | Method and Description |
|---|---|
static CompletionSuggestionKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CompletionSuggestionKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompletionSuggestionKind ARGUMENT_LIST
public static final CompletionSuggestionKind IMPORT
public static final CompletionSuggestionKind IDENTIFIER
public static final CompletionSuggestionKind INVOCATION
public static final CompletionSuggestionKind KEYWORD
public static final CompletionSuggestionKind NAMED_ARGUMENT
public static final CompletionSuggestionKind OPTIONAL_ARGUMENT
public static final CompletionSuggestionKind PARAMETER
public static CompletionSuggestionKind[] values()
for (CompletionSuggestionKind c : CompletionSuggestionKind.values()) System.out.println(c);
public static CompletionSuggestionKind 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