📄 queryable.java
字号:
//$Id: Queryable.java,v 1.9.2.3 2003/11/06 14:35:25 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 query language * * @author Gavin King */public interface Queryable extends Loadable, PropertyMapping { /** * 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; }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -