Class QueryDef
- java.lang.Object
-
- com.thoughtworks.qdox.parser.expression.ExpressionDef
-
- com.thoughtworks.qdox.parser.expression.QueryDef
-
- All Implemented Interfaces:
ElemValueDef
public class QueryDef extends ExpressionDef
-
-
Constructor Summary
Constructors Constructor Description QueryDef(ElemValueDef cond, ElemValueDef trueExpr, ElemValueDef falseExpr)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ElemValueDef
getCondition()
ElemValueDef
getFalseExpression()
ElemValueDef
getTrueExpression()
<U> U
transform(ElemValueTransformer<U> transformer)
-
-
-
Constructor Detail
-
QueryDef
public QueryDef(ElemValueDef cond, ElemValueDef trueExpr, ElemValueDef falseExpr)
-
-
Method Detail
-
transform
public <U> U transform(ElemValueTransformer<U> transformer)
-
getCondition
public ElemValueDef getCondition()
- Returns:
- the cond
-
getTrueExpression
public ElemValueDef getTrueExpression()
- Returns:
- the trueExpr
-
getFalseExpression
public ElemValueDef getFalseExpression()
- Returns:
- the falseExpr
-
-