org.hibernate.criterion
Interface CriteriaSpecification

public interface CriteriaSpecification
No description provided.
SinceNot specified.
VersionNot specified.
AuthorGavin King
Wiki javadoc Use textile entry format.
Add your comments here.
Field Summary
static ResultTransformer ALIAS_TO_ENTITY_MAP
Each row of results is a Map from alias to entity instance
static ResultTransformer DISTINCT_ROOT_ENTITY
Each row of results is a distinct instance of the root entity
static int FULL_JOIN
Specifies joining to an entity based on a full join.
static int INNER_JOIN
Specifies joining to an entity based on an inner join.
static int LEFT_JOIN
Specifies joining to an entity based on a left outer join.
static ResultTransformer PROJECTION
This result transformer is selected implicitly by calling setProjection()
static String ROOT_ALIAS
The alias that refers to the "root" entity of the criteria query.
static ResultTransformer ROOT_ENTITY
Each row of results is an instance of the root entity
ALIAS_TO_ENTITY_MAP
public static ResultTransformer ALIAS_TO_ENTITY_MAP
Each row of results is a Map from alias to entity instance
Wiki javadoc Use textile entry format.
Add your comments here.
DISTINCT_ROOT_ENTITY
public static ResultTransformer DISTINCT_ROOT_ENTITY
Each row of results is a distinct instance of the root entity
Wiki javadoc Use textile entry format.
Add your comments here.
FULL_JOIN
public static int FULL_JOIN
Specifies joining to an entity based on a full join.
Wiki javadoc Use textile entry format.
Add your comments here.
INNER_JOIN
public static int INNER_JOIN
Specifies joining to an entity based on an inner join.
Wiki javadoc Use textile entry format.
Add your comments here.
LEFT_JOIN
public static int LEFT_JOIN
Specifies joining to an entity based on a left outer join.
Wiki javadoc Use textile entry format.
Add your comments here.
PROJECTION
public static ResultTransformer PROJECTION
This result transformer is selected implicitly by calling setProjection()
Wiki javadoc Use textile entry format.
Add your comments here.
ROOT_ALIAS
public static String ROOT_ALIAS
The alias that refers to the "root" entity of the criteria query.
Wiki javadoc Use textile entry format.
Add your comments here.
ROOT_ENTITY
public static ResultTransformer ROOT_ENTITY
Each row of results is an instance of the root entity
Wiki javadoc Use textile entry format.
Add your comments here.