queryable.java
来自「人力资源管理系统主要包括:人员管理、招聘管理、培训管理、奖惩管理和薪金管理五大管」· Java 代码 · 共 58 行
JAVA
58 行
//$Id: Queryable.java,v 1.9.2.4 2003/11/30 12:31:13 oneovthafew Exp $package net.sf.hibernate.persister;import net.sf.hibernate.MappingException;/** * Extends the generic <tt>ClassPersister</tt> contract to add * operations required by the Hibernate Query Language * * @author Gavin King */public interface Queryable extends Loadable, PropertyMapping, Joinable { /** * Is this class mapped as a subclass of another class? */ public boolean isInherited(); /** * Is this class explicit polymorphism only? */ public boolean isExplicitPolymorphism(); /** * Get the class that this class is mapped as a subclass of - * not necessarily the direct superclass */ public Class getMappedSuperclass(); /** * Get the discriminator value for this particular concrete subclass, * as a string that may be embedded in a select statement */ public Object getDiscriminatorSQLValue(); /** * Get the where clause fragment, given a query alias */ public String queryWhereFragment(String alias, boolean innerJoin, boolean includeSubclasses) throws MappingException; /** * Given a query alias and an identifying suffix, render the intentifier select fragment. */ public String identifierSelectFragment(String name, String suffix); /** * Given a query alias and an identifying suffix, render the property select fragment. */ public String propertySelectFragment(String alias, String suffix); /** * Get the names of columns used to persist the identifier */ public String[] getIdentifierColumnNames();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?