|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<IdentifierSource.Nature>
org.hibernate.metamodel.source.binder.IdentifierSource.Nature
public static enum IdentifierSource.Nature
Enum Constant Summary | |
---|---|
AGGREGATED_COMPOSITE
Composite identifier with an actual component class used to aggregate the individual attributes |
|
COMPOSITE
What we used to term an "embedded composite identifier", which is not to be confused with the JPA term embedded. |
|
SIMPLE
A single, simple identifier. |
Method Summary | |
---|---|
static IdentifierSource.Nature |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static IdentifierSource.Nature[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final IdentifierSource.Nature SIMPLE
<id/>
mapping or a single @Id
annotation. Indicates the IdentifierSource
is castable to SimpleIdentifierSource
.
public static final IdentifierSource.Nature COMPOSITE
@IdClass
.
public static final IdentifierSource.Nature AGGREGATED_COMPOSITE
Method Detail |
---|
public static IdentifierSource.Nature[] values()
for (IdentifierSource.Nature c : IdentifierSource.Nature.values()) System.out.println(c);
public static IdentifierSource.Nature valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |