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

javax.persistence.TupleElement Maven / Gradle / Ivy

The newest version!
package javax.persistence;

/**
 * The TupleElement interface defines an element that is returned in a query result tuple.
 * 
 * @param 
 *            the type of the element
 */
public interface TupleElement {
	/**
	 * Return the alias assigned to the tuple element or null, if no alias has been assigned.
	 * 
	 * @return alias
	 */
	String getAlias();

	/**
	 * Return the runtime Java type of the tuple element.
	 * 
	 * @return the runtime Java type of the tuple element
	 */
	Class getJavaType();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy