public enum EClassType extends Enum<EClassType>
| Enum Constant and Description |
|---|
ANNOTATION_TYPE_DECL |
CLASS |
ENUM |
INTERFACE |
| Modifier and Type | Method and Description |
|---|---|
String |
declarationToken() |
static EClassType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EClassType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EClassType CLASS
public static final EClassType INTERFACE
public static final EClassType ANNOTATION_TYPE_DECL
public static final EClassType ENUM
public static EClassType[] values()
for (EClassType c : EClassType.values()) System.out.println(c);
public static EClassType 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 nullCopyright © 2013–2015 Philip Helger. All rights reserved.