public enum CompletionItemType extends java.lang.Enum<CompletionItemType>
Enum Constant and Description |
---|
CLASS |
COLOR |
CONSTRUCTOR |
CUSTOMCOLOR |
ENUM |
FIELD |
FILE |
FUNCTION |
INTERFACE |
KEYWORD |
METHOD |
MODULE |
PROPERTY |
REFERENCE |
SNIPPET |
TEXT |
UNIT |
VALUE |
VARIABLE |
Modifier and Type | Method and Description |
---|---|
static CompletionItemType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CompletionItemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompletionItemType METHOD
public static final CompletionItemType FUNCTION
public static final CompletionItemType CONSTRUCTOR
public static final CompletionItemType FIELD
public static final CompletionItemType VARIABLE
public static final CompletionItemType CLASS
public static final CompletionItemType INTERFACE
public static final CompletionItemType MODULE
public static final CompletionItemType PROPERTY
public static final CompletionItemType UNIT
public static final CompletionItemType VALUE
public static final CompletionItemType ENUM
public static final CompletionItemType KEYWORD
public static final CompletionItemType SNIPPET
public static final CompletionItemType TEXT
public static final CompletionItemType COLOR
public static final CompletionItemType FILE
public static final CompletionItemType REFERENCE
public static final CompletionItemType CUSTOMCOLOR
public static CompletionItemType[] values()
for (CompletionItemType c : CompletionItemType.values()) System.out.println(c);
public static CompletionItemType 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