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