当前页面:
在线文档首页 >
Hibernate 3.2.3 正式版 API 英文文档
Junction (Hibernate API Documentation) - Hibernate 3.2.3 正式版 API 英文文档
org.hibernate.criterion
Class Junction
java.lang.Object
org.hibernate.criterion.Junction
- All Implemented Interfaces:
- Criterion, Serializable
- Direct Known Subclasses:
- Conjunction, Disjunction
- public class Junction
- extends Object
- implements Criterion
A sequence of a logical expressions combined by some
associative logical operator
- Author:
- Gavin King
- See Also:
- Serialized Form
Junction
protected Junction(String op)
add
public Junction add(Criterion criterion)
getOp
public String getOp()
getTypedValues
public TypedValue[] getTypedValues(Criteria crit,
CriteriaQuery criteriaQuery)
throws HibernateException
- Description copied from interface:
Criterion
- Return typed values for all parameters in the rendered SQL fragment
- Specified by:
getTypedValues
in interface Criterion
- Parameters:
crit
- TODOcriteriaQuery
-
- Returns:
- TypedValue[]
- Throws:
HibernateException
toSqlString
public String toSqlString(Criteria crit,
CriteriaQuery criteriaQuery)
throws HibernateException
- Description copied from interface:
Criterion
- Render the SQL fragment
- Specified by:
toSqlString
in interface Criterion
- Parameters:
criteriaQuery
-
- Returns:
- String
- Throws:
HibernateException
toString
public String toString()
- See Also:
Object.toString()