Package org.teiid.language
Class In
-
- All Implemented Interfaces:
Expression
,LanguageObject
,Predicate
public class In extends BaseInCondition
-
-
Constructor Summary
Constructors Constructor Description In(Expression left, List<Expression> right, boolean negated)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
acceptVisitor(LanguageObjectVisitor visitor)
List<Expression>
getRightExpressions()
Get List of IExpression in the set on the right side of the criteria.void
setRightExpressions(List<Expression> expressions)
-
Methods inherited from class org.teiid.language.BaseInCondition
getLeftExpression, isNegated, setLeftExpression, setNegated
-
Methods inherited from class org.teiid.language.Condition
getType, isExpression, setExpression
-
Methods inherited from class org.teiid.language.BaseLanguageObject
toString
-
-
-
-
Constructor Detail
-
In
public In(Expression left, List<Expression> right, boolean negated)
-
-
Method Detail
-
getRightExpressions
public List<Expression> getRightExpressions()
Get List of IExpression in the set on the right side of the criteria.- Returns:
- List of IExpression
-
acceptVisitor
public void acceptVisitor(LanguageObjectVisitor visitor)
-
setRightExpressions
public void setRightExpressions(List<Expression> expressions)
-
-