entityaliases.java

来自「介绍了hibernate的入门有一些基本常用的事例」· Java 代码 · 共 39 行

JAVA
39
字号
//$Id: EntityAliases.java,v 1.1 2005/02/13 11:50:05 oneovthafew Exp $package org.hibernate.loader;import org.hibernate.persister.entity.Loadable;/** * Metadata describing the SQL result set column aliases * for a particular entity. *  * @author Gavin King */public interface EntityAliases {	/**	 * The result set column aliases for the primary key columns	 */	public String[] getSuffixedKeyAliases();	/**	 * The result set column aliases for the discriminator columns	 */	public String getSuffixedDiscriminatorAlias();	/**	 * The result set column aliases for the version columns	 */	public String[] getSuffixedVersionAliases();	/**	 * The result set column aliases for the property columns	 */	public String[][] getSuffixedPropertyAliases();	/**	 * The result set column aliases for the property columns of a subclass	 */	public String[][] getSuffixedPropertyAliases(Loadable persister);	/**	 * The result set column alias for the Oracle row id	 */	public String getRowIdAlias();}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?