Java org.hibernate.criterion CriteriaSpecification fields, constructors, methods, implement or subclass

Example usage for Java org.hibernate.criterion CriteriaSpecification fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.hibernate.criterion CriteriaSpecification.

The text is from its open source code.

Implementation

org.hibernate.criterion.CriteriaSpecification has the following implementations.
Click this link to see all its implementation.

Field

StringROOT_ALIAS
The alias that refers to the "root" entity of the criteria query.
ResultTransformerALIAS_TO_ENTITY_MAP
Each row of results is a Map from alias to entity instance
ResultTransformerROOT_ENTITY
Each row of results is an instance of the root entity
ResultTransformerDISTINCT_ROOT_ENTITY
Each row of results is a distinct instance of the root entity
ResultTransformerPROJECTION
This result transformer is selected implicitly by calling setProjection()
intINNER_JOIN
Specifies joining to an entity based on an inner join.
intFULL_JOIN
Specifies joining to an entity based on a full join.
intLEFT_JOIN
Specifies joining to an entity based on a left outer join.