接口 CriteriaSpecification
-
- 所有已知子接口:
Criteria
- 所有已知实现类:
CriteriaImpl,CriteriaImpl.Subcriteria,DetachedCriteria
public interface CriteriaSpecificationCommonality between different types of Criteria.- 作者:
- Gavin King
-
-
字段概要
字段 修饰符和类型 字段 说明 static ResultTransformerALIAS_TO_ENTITY_MAPEach row of results is a Map from alias to entity instancestatic ResultTransformerDISTINCT_ROOT_ENTITYEach row of results is a distinct instance of the root entitystatic intFULL_JOIN已过时。static intINNER_JOIN已过时。static intLEFT_JOIN已过时。static ResultTransformerPROJECTIONThis result transformer is selected implicitly by calling setProjection()static StringROOT_ALIASThe alias that refers to the "root" entity of the criteria query.static ResultTransformerROOT_ENTITYEach row of results is an instance of the root entity
-
-
-
字段详细资料
-
ROOT_ALIAS
static final String ROOT_ALIAS
The alias that refers to the "root" entity of the criteria query.- 另请参阅:
- 常量字段值
-
ALIAS_TO_ENTITY_MAP
static final ResultTransformer ALIAS_TO_ENTITY_MAP
Each row of results is a Map from alias to entity instance
-
ROOT_ENTITY
static final ResultTransformer ROOT_ENTITY
Each row of results is an instance of the root entity
-
DISTINCT_ROOT_ENTITY
static final ResultTransformer DISTINCT_ROOT_ENTITY
Each row of results is a distinct instance of the root entity
-
PROJECTION
static final ResultTransformer PROJECTION
This result transformer is selected implicitly by calling setProjection()
-
INNER_JOIN
@Deprecated static final int INNER_JOIN
已过时。Specifies joining to an entity based on an inner join.
-
FULL_JOIN
@Deprecated static final int FULL_JOIN
已过时。Specifies joining to an entity based on a full join.
-
LEFT_JOIN
@Deprecated static final int LEFT_JOIN
已过时。Specifies joining to an entity based on a left outer join.
-
-