public enum ConfiguredClassType extends Enum<ConfiguredClassType>
Enum Constant and Description |
---|
EMBEDDABLE |
ENTITY |
MAPPED_SUPERCLASS |
NON_ENTITY |
Modifier and Type | Method and Description |
---|---|
static ConfiguredClassType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfiguredClassType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfiguredClassType ENTITY
public static final ConfiguredClassType MAPPED_SUPERCLASS
public static final ConfiguredClassType EMBEDDABLE
public static final ConfiguredClassType NON_ENTITY
public static ConfiguredClassType[] values()
for (ConfiguredClassType c : ConfiguredClassType.values()) System.out.println(c);
public static ConfiguredClassType 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 © 2001-2015 Red Hat, Inc. All Rights Reserved.