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

org.eclipse.persistence.internal.jpa.querydef.CriteriaSelectInternal Maven / Gradle / Ivy

There is a newer version: 5.0.0-B03
Show newest version
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();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy