org.hibernate.engine.FetchStyle Maven / Gradle / Ivy
                 Go to download
                
        
                    Show more of this group  Show more artifacts with this name
Show all versions of hibernate-core Show documentation
                Show all versions of hibernate-core Show documentation
The core O/RM functionality as provided by Hibernate
                
             The newest version!
        
        /*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.engine;
/**
 * Enumeration of values describing HOW fetching should occur.
 *
 * @author Steve Ebersole
 * @see FetchTiming
 */
public enum FetchStyle {
	/**
	 * Performs a separate SQL select to load the indicated data.  This can either be eager (the second select is
	 * issued immediately) or lazy (the second select is delayed until the data is needed).
	 */
	SELECT,
	/**
	 * Inherently an eager style of fetching.  The data to be fetched is obtained as part of an SQL join.
	 */
	JOIN,
	/**
	 * Initializes a number of indicated data items (entities or collections) in a series of grouped sql selects
	 * using an in-style sql restriction to define the batch size.  Again, can be either eager or lazy.
	 */
	BATCH,
	/**
	 * Performs fetching of associated data (currently limited to only collections) based on the sql restriction
	 * used to load the owner.  Again, can be either eager or lazy.
	 */
	SUBSELECT
}
     © 2015 - 2025 Weber Informatics LLC | Privacy Policy