Enum BatchFetchType
- java.lang.Object
-
- java.lang.Enum<BatchFetchType>
-
- org.eclipse.persistence.annotations.BatchFetchType
-
- All Implemented Interfaces:
Serializable
,Comparable<BatchFetchType>
public enum BatchFetchType extends 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.- See Also:
BatchFetch
,ForeignReferenceMapping.setBatchFetchType(BatchFetchType)
- Author:
- James Sutherland
- Since:
- EclipseLink 2.1
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BatchFetchType
valueOf(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.
-
-
-
Enum Constant Detail
-
JOIN
public static final BatchFetchType JOIN
This is the default form of batch reading. The original query's selection criteria is joined with the batch query.
-
EXISTS
public static final BatchFetchType EXISTS
This uses an SQL EXISTS and a sub-select in the batch query instead of a join. This has the advantage of not requiring an SQL DISTINCT which can have issues with LOBs, or may be more efficient for some types of queries or on some databases.
-
IN
public static final BatchFetchType IN
This uses an SQL IN clause in the batch query passing in the source object Ids. This has the advantage of only selecting the objects not already contained in the cache, and can work better with cursors, or if joins cannot be used. This may only work for singleton Ids on some databases.
-
-
Method Detail
-
values
public static BatchFetchType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BatchFetchType c : BatchFetchType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BatchFetchType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-