All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.annotations.FetchMode Maven / Gradle / Ivy

There is a newer version: 3.5.6-Final
Show newest version
//$Id: FetchMode.java 14736 2008-06-04 14:23:42Z hardy.ferentschik $
package org.hibernate.annotations;

/**
 * Fetch options on associations
 *
 * @author Emmanuel Bernard
 */
public enum FetchMode {
	/**
	 * use a select for each individual entity, collection, or join load
	 */
	SELECT,
	/**
	 * use an outer join to load the related entities, collections or joins
	 */
	JOIN,
	/**
	 * use a subselect query to load the additional collections
	 */
	SUBSELECT
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy