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

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

There is a newer version: 1.0.1.Final
Show newest version
// $Id: Root.java 17752 2009-10-15 01:19:21Z [email protected] $
// EJB3 Specification Copyright 2004-2009 Sun Microsystems, Inc.
package javax.persistence.criteria;

import javax.persistence.metamodel.EntityType;

/**
 * A root type in the from clause.
 * Query roots always reference entities.
 *
 * @param  the entity type referenced by the root
 * @since Java Persistence 2.0
 */
public interface Root extends From {

	/**
	 * Return the metamodel entity corresponding to the root.
	 *
	 * @return metamodel entity corresponding to the root
	 */
	EntityType getModel();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy