|
Java EE 5 SDK | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<InheritanceType> javax.persistence.InheritanceType
public enum InheritanceType
Defines inheritance strategy options.
Enum Constant Summary | |
---|---|
JOINED
A strategy in which fields that are specific to a subclass are mapped to a separate table than the fields that are common to the parent class, and a join is performed to instantiate the subclass. |
|
SINGLE_TABLE
A single table per class hierarchy |
|
TABLE_PER_CLASS
A table per concrete entity class |
Method Summary | |
---|---|
static InheritanceType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static InheritanceType[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final InheritanceType SINGLE_TABLE
public static final InheritanceType TABLE_PER_CLASS
public static final InheritanceType JOINED
Method Detail |
---|
public static final InheritanceType[] values()
for(InheritanceType c : InheritanceType.values()) System.out.println(c);
public static InheritanceType 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
|
Java EE 5 SDK | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
Copyright 2006 Sun Microsystems, Inc. All rights reserved.