Package org.hibernate.criterion
Class LogicalExpression
- java.lang.Object
-
- org.hibernate.criterion.LogicalExpression
-
- All Implemented Interfaces:
java.io.Serializable
,Criterion
public class LogicalExpression extends java.lang.Object implements Criterion
Superclass of binary logical expressions- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
LogicalExpression(Criterion lhs, Criterion rhs, java.lang.String op)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getOp()
TypedValue[]
getTypedValues(Criteria criteria, CriteriaQuery criteriaQuery)
Return typed values for all parameters in the rendered SQL fragmentjava.lang.String
toSqlString(Criteria criteria, CriteriaQuery criteriaQuery)
Render the SQL fragmentjava.lang.String
toString()
-
-
-
Method Detail
-
getTypedValues
public TypedValue[] getTypedValues(Criteria criteria, CriteriaQuery criteriaQuery)
Description copied from interface:Criterion
Return typed values for all parameters in the rendered SQL fragment- Specified by:
getTypedValues
in interfaceCriterion
- Parameters:
criteria
- The local criteriacriteriaQuery
- The overall criteria query- Returns:
- The types values (for binding)
-
toSqlString
public java.lang.String toSqlString(Criteria criteria, CriteriaQuery criteriaQuery)
Description copied from interface:Criterion
Render the SQL fragment- Specified by:
toSqlString
in interfaceCriterion
- Parameters:
criteria
- The local criteriacriteriaQuery
- The overall criteria query- Returns:
- The generated SQL fragment
-
getOp
public java.lang.String getOp()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-