|
EclipseLink 2.3.2, build 'v20111125-r10461' API Reference | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<BatchFetchType> org.eclipse.persistence.annotations.BatchFetchType
public enum BatchFetchType
Enum used with the BatchFetch annotation, or "eclipselink.batch.type" query hint. This can be specified on a mapping or query to configure the type of batch reading to be used.
BatchFetch
,
ForeignReferenceMapping#setBatchFetch(BatchFetchType)
Enum Constant Summary | |
---|---|
EXISTS
This uses an SQL EXISTS and a sub-select in the batch query instead of a join. |
|
IN
This uses an SQL IN clause in the batch query passing in the source object Ids. |
|
JOIN
This is the default form of batch reading. |
Method Summary | |
---|---|
static BatchFetchType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static BatchFetchType[] |
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 BatchFetchType JOIN
public static final BatchFetchType EXISTS
public static final BatchFetchType IN
Method Detail |
---|
public static BatchFetchType[] values()
for (BatchFetchType c : BatchFetchType.values()) System.out.println(c);
public static BatchFetchType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
EclipseLink 2.3.2, build 'v20111125-r10461' API Reference | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |