org.eclipse.persistence.internal.jpa.querydef.CriteriaSelectInternal Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eclipselink Show documentation
Show all versions of eclipselink Show documentation
EclipseLink build based upon Git transaction f2b9fc5
package org.eclipse.persistence.internal.jpa.querydef;
import jakarta.persistence.criteria.CriteriaSelect;
import org.eclipse.persistence.queries.DatabaseQuery;
/**
* Internal interface to access CriteriaQuery result type.
*
* @param the type of the result
*/
public interface CriteriaSelectInternal extends CriteriaSelect {
/**
* Get the type of the result.
*
* @return the type of the result
*/
Class getResultType();
/**
* Translates from the criteria query to a EclipseLink Database Query.
*/
DatabaseQuery translate();
}