Package org.apache.calcite.linq4j.tree
Class ConditionalExpression
java.lang.Object
org.apache.calcite.linq4j.tree.AbstractNode
org.apache.calcite.linq4j.tree.ConditionalExpression
- All Implemented Interfaces:
- Node
Represents an expression that has a conditional operator.
 
With an odd number of expressions {c0, e0, c1, e1, ..., cn-1, en-1, en} represents "if (c0) e0 else if (c1) e1 ... else en"; with an even number of expressions {c0, e0, c1, e1, ..., cn-1, en-1} represents "if (c0) e0 else if (c1) e1 ... else if (cn-1) en-1".
- 
Field SummaryFields inherited from class org.apache.calcite.linq4j.tree.AbstractNodenodeType, type
- 
Constructor SummaryConstructors
- 
Method SummaryMethods inherited from class org.apache.calcite.linq4j.tree.AbstractNodeaccept, accept, evaluate, getNodeType, getType, toString
- 
Constructor Details- 
ConditionalExpression
 
- 
- 
Method Details- 
accept
- 
equals- Overrides:
- equalsin class- AbstractNode
 
- 
hashCodepublic int hashCode()- Overrides:
- hashCodein class- AbstractNode
 
 
-