Package org.hibernate.sql
Class ConditionFragment
- java.lang.Object
-
- org.hibernate.sql.ConditionFragment
-
public class ConditionFragment extends Object
-
-
Constructor Summary
Constructors Constructor Description ConditionFragment()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ConditionFragmentsetCondition(String[] lhs, String rhs)ConditionFragmentsetCondition(String[] lhs, String[] rhs)ConditionFragmentsetOp(String op)Sets the op.ConditionFragmentsetTableAlias(String tableAlias)Sets the tableAlias.StringtoFragmentString()
-
-
-
Method Detail
-
setOp
public ConditionFragment setOp(String op)
Sets the op.- Parameters:
op- The op to set
-
setTableAlias
public ConditionFragment setTableAlias(String tableAlias)
Sets the tableAlias.- Parameters:
tableAlias- The tableAlias to set
-
setCondition
public ConditionFragment setCondition(String[] lhs, String[] rhs)
-
setCondition
public ConditionFragment setCondition(String[] lhs, String rhs)
-
toFragmentString
public String toFragmentString()
-
-