public final class ConditionalExpr extends Expression implements NodeWithCondition<ConditionalExpr>
b==0?x:y
, b==0 is the condition, x is thenExpr, and y is elseExpr.Node.ObserverRegistrationMode, Node.Parsedness
ABSOLUTE_BEGIN_LINE, ABSOLUTE_END_LINE, NODE_BY_BEGIN_POSITION, prettyPrinterNoCommentsConfiguration
Constructor and Description |
---|
ConditionalExpr() |
ConditionalExpr(Expression condition,
Expression thenExpr,
Expression elseExpr) |
ConditionalExpr(TokenRange tokenRange,
Expression condition,
Expression thenExpr,
Expression elseExpr)
This constructor is used by the parser and is considered private.
|
Modifier and Type | Method and Description |
---|---|
<R,A> R |
accept(GenericVisitor<R,A> v,
A arg)
Accept method for visitor support.
|
<A> void |
accept(VoidVisitor<A> v,
A arg)
Accept method for visitor support.
|
ConditionalExpr |
clone() |
Expression |
getCondition() |
Expression |
getElseExpr() |
ConditionalExprMetaModel |
getMetaModel() |
Expression |
getThenExpr() |
boolean |
remove(Node node) |
boolean |
replace(Node node,
Node replacementNode) |
ConditionalExpr |
setCondition(Expression condition) |
ConditionalExpr |
setElseExpr(Expression elseExpr) |
ConditionalExpr |
setThenExpr(Expression thenExpr) |
addOrphanComment, customInitialization, equals, getAllContainedComments, getChildNodes, getChildNodesByType, getComment, getData, getNodeLists, getNodesByType, getOrphanComments, getParentNode, getParentNodeForChildren, getParsed, getRange, getTokenRange, hasComment, hashCode, isRegistered, notifyPropertyChange, register, register, registerForSubtree, remove, removeComment, removeForced, removeOrphanComment, replaceComment, setAsParentNodeOf, setAsParentNodeOf, setBlockComment, setComment, setData, setLineComment, setParentNode, setParsed, setRange, setTokenRange, toString, toString, tryAddImportToParentCompilationUnit, unregister
finalize, getClass, notify, notifyAll, wait, wait, wait
getAncestorOfType
containsWithin, getBegin, getEnd, isPositionedAfter, isPositionedBefore
public ConditionalExpr()
public ConditionalExpr(Expression condition, Expression thenExpr, Expression elseExpr)
@Generated(value="com.github.javaparser.generator.core.node.MainConstructorGenerator") public ConditionalExpr(TokenRange tokenRange, Expression condition, Expression thenExpr, Expression elseExpr)
public <R,A> R accept(GenericVisitor<R,A> v, A arg)
Visitable
accept
in interface Visitable
R
- the type of the return value of the visitorA
- the type the user argument passed to the visitorv
- the visitor implementationarg
- the argument passed to the visitor (of type A)public <A> void accept(VoidVisitor<A> v, A arg)
Visitable
@Generated(value="com.github.javaparser.generator.core.node.PropertyGenerator") public Expression getCondition()
getCondition
in interface NodeWithCondition<ConditionalExpr>
@Generated(value="com.github.javaparser.generator.core.node.PropertyGenerator") public Expression getElseExpr()
@Generated(value="com.github.javaparser.generator.core.node.PropertyGenerator") public Expression getThenExpr()
@Generated(value="com.github.javaparser.generator.core.node.PropertyGenerator") public ConditionalExpr setCondition(Expression condition)
setCondition
in interface NodeWithCondition<ConditionalExpr>
@Generated(value="com.github.javaparser.generator.core.node.PropertyGenerator") public ConditionalExpr setElseExpr(Expression elseExpr)
@Generated(value="com.github.javaparser.generator.core.node.PropertyGenerator") public ConditionalExpr setThenExpr(Expression thenExpr)
@Generated(value="com.github.javaparser.generator.core.node.RemoveMethodGenerator") public boolean remove(Node node)
remove
in class Expression
@Generated(value="com.github.javaparser.generator.core.node.CloneGenerator") public ConditionalExpr clone()
clone
in class Expression
@Generated(value="com.github.javaparser.generator.core.node.GetMetaModelGenerator") public ConditionalExprMetaModel getMetaModel()
getMetaModel
in class Expression
@Generated(value="com.github.javaparser.generator.core.node.ReplaceMethodGenerator") public boolean replace(Node node, Node replacementNode)
replace
in class Expression
Copyright © 2007–2017. All rights reserved.