criteriaspecification.java
来自「介绍了hibernate的入门有一些基本常用的事例」· Java 代码 · 共 38 行
JAVA
38 行
//$Id: CriteriaSpecification.java,v 1.2 2005/02/12 07:19:13 steveebersole Exp $package org.hibernate.criterion;import org.hibernate.transform.AliasToEntityMapResultTransformer;import org.hibernate.transform.DistinctRootEntityResultTransformer;import org.hibernate.transform.PassThroughResultTransformer;import org.hibernate.transform.ResultTransformer;import org.hibernate.transform.RootEntityResultTransformer;/** * @author Gavin King */public interface CriteriaSpecification { /** * The alias that refers to the "root" entity of the criteria query. */ public static final String ROOT_ALIAS = "this"; /** * Each row of results is a <tt>Map</tt> from alias to entity instance */ public static final ResultTransformer ALIAS_TO_ENTITY_MAP = new AliasToEntityMapResultTransformer(); /** * Each row of results is an instance of the root entity */ public static final ResultTransformer ROOT_ENTITY = new RootEntityResultTransformer(); /** * Each row of results is a distinct instance of the root entity */ public static final ResultTransformer DISTINCT_ROOT_ENTITY = new DistinctRootEntityResultTransformer(); /** * This result transformer is selected implicitly by calling <tt>setProjection()</tt> */ public static final ResultTransformer PROJECTION = new PassThroughResultTransformer(); }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?