public static enum ContentAssistProposals.ClassType extends java.lang.Enum<ContentAssistProposals.ClassType>
ContentAssistProposals.classNames()
.Enum Constant and Description |
---|
ENUM
Indicates the only class type allowed is an enum type.
|
INSTANTIABLE
Indicates the class has to be instantiable, i.e. anonymous, interfaces, enums, annotations
are not allowed.
|
Modifier and Type | Method and Description |
---|---|
static ContentAssistProposals.ClassType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ContentAssistProposals.ClassType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContentAssistProposals.ClassType ENUM
public static final ContentAssistProposals.ClassType INSTANTIABLE
public static ContentAssistProposals.ClassType[] values()
for (ContentAssistProposals.ClassType c : ContentAssistProposals.ClassType.values()) System.out.println(c);
public static ContentAssistProposals.ClassType 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