sqlloadable.java

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

JAVA
35
字号
//$Id: SQLLoadable.java,v 1.2 2005/03/19 00:29:16 maxcsaucdk Exp $package org.hibernate.persister.entity;import org.hibernate.type.Type;/** * A class persister that supports queries expressed in the * platform native SQL dialect * * @author Gavin King, Max Andersen */public interface SQLLoadable extends Loadable {	/**	 * Return the column alias names used to persist/query the numbered property of the class or a subclass (optional operation).	 */	public String[] getSubclassPropertyColumnAliases(String propertyName, String suffix);	/**	 * Return the column names used to persist/query the numbered property of the class or a subclass (optional operation).	 */	public String[] getSubclassPropertyColumnNames(String propertyName);		/**	 * All columns to select, when loading.	 */	public String selectFragment(String alias, String suffix);	/**	 * Get the type	 */	public Type getType();}

⌨️ 快捷键说明

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