public interface

CriteriaSpecification

org.hibernate.criterion.CriteriaSpecification
Known Indirect Subclasses

Summary

Constants
int FULL_JOIN Specifies joining to an entity based on a full join.
int INNER_JOIN Specifies joining to an entity based on an inner join.
int LEFT_JOIN Specifies joining to an entity based on a left outer join.
String ROOT_ALIAS The alias that refers to the "root" entity of the criteria query.
Fields
public static final ResultTransformer ALIAS_TO_ENTITY_MAP Each row of results is a Map from alias to entity instance
public static final ResultTransformer DISTINCT_ROOT_ENTITY Each row of results is a distinct instance of the root entity
public static final ResultTransformer PROJECTION This result transformer is selected implicitly by calling setProjection()
public static final ResultTransformer ROOT_ENTITY Each row of results is an instance of the root entity

Constants

public static final int FULL_JOIN

Specifies joining to an entity based on a full join.

Constant Value: 4 (0x00000004)

public static final int INNER_JOIN

Specifies joining to an entity based on an inner join.

Constant Value: 0 (0x00000000)

public static final int LEFT_JOIN

Specifies joining to an entity based on a left outer join.

Constant Value: 1 (0x00000001)

public static final String ROOT_ALIAS

The alias that refers to the "root" entity of the criteria query.

Constant Value: "this"

Fields

public static final ResultTransformer ALIAS_TO_ENTITY_MAP

Each row of results is a Map from alias to entity instance

public static final ResultTransformer DISTINCT_ROOT_ENTITY

Each row of results is a distinct instance of the root entity

public static final ResultTransformer PROJECTION

This result transformer is selected implicitly by calling setProjection()

public static final ResultTransformer ROOT_ENTITY

Each row of results is an instance of the root entity