| Constructor and Description |
|---|
SimpleCondition(ConditionExpression ce) |
| Modifier and Type | Method and Description |
|---|---|
Condition |
and(Condition input)
Joins (Conjunction) a given Condition with this Condition
|
ConditionExpression |
getExpression()
Returns ConditionExpression this Condition represents
|
JoinTypeEnum |
getJoinType()
Returns the nesting type associated with the condition
|
Condition |
getLeftCondition()
Returns the left hand side of joined condition
|
Condition |
getRightCondition()
Returns the right hand side of joined condition
|
Condition |
or(Condition input)
Joins (Disjunction) a given Condition with this Condition
|
public SimpleCondition(ConditionExpression ce)
public JoinTypeEnum getJoinType()
ConditiongetJoinType in interface Conditionpublic Condition getLeftCondition()
ConditiongetLeftCondition in interface Conditionpublic Condition getRightCondition()
ConditiongetRightCondition in interface Conditionpublic ConditionExpression getExpression()
ConditiongetExpression in interface Conditionpublic Condition and(Condition input)
Condition