public enum AnnotatedClassType extends Enum<AnnotatedClassType>
Enum Constant and Description |
---|
EMBEDDABLE
has a @Embeddable annotation
|
EMBEDDABLE_SUPERCLASS
has @EmbeddedSuperclass annotation
|
ENTITY
has @Entity annotation
|
NONE
has no revelent top level annotation
|
Modifier and Type | Method and Description |
---|---|
static AnnotatedClassType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AnnotatedClassType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnnotatedClassType NONE
public static final AnnotatedClassType ENTITY
public static final AnnotatedClassType EMBEDDABLE
public static final AnnotatedClassType EMBEDDABLE_SUPERCLASS
public static AnnotatedClassType[] values()
for (AnnotatedClassType c : AnnotatedClassType.values()) System.out.println(c);
public static AnnotatedClassType 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 © 2012 JBoss by Red Hat. All Rights Reserved.