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