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