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

javax.persistence.criteria.Fetch Maven / Gradle / Ivy

The newest version!
package javax.persistence.criteria;

import javax.persistence.metamodel.Attribute;

/**
 * Represents a join-fetched association or attribute.
 * 
 * @param 
 *            the source type of the fetch
 * @param 
 *            the target type of the fetch
 */
public interface Fetch extends FetchParent {
	/**
	 * Return the metamodel attribute corresponding to the fetch join.
	 * 
	 * @return metamodel attribute for the join
	 */
	Attribute getAttribute();

	/**
	 * Return the join type used in the fetch join.
	 * 
	 * @return join type
	 */
	JoinType getJoinType();

	/**
	 * Return the parent of the fetched item.
	 * 
	 * @return fetch parent
	 */
	FetchParent getParent();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy