Class TernaryExpr
- java.lang.Object
-
- com.google.api.generator.engine.ast.TernaryExpr
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classTernaryExpr.Builder
-
Constructor Summary
Constructors Constructor Description TernaryExpr()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voidaccept(AstNodeVisitor visitor)Writes the syntatically-correct Java code representation of this node.static TernaryExpr.Builderbuilder()abstract ExprconditionExpr()abstract ExprelseExpr()abstract ExprthenExpr()TypeNodetype()
-
-
-
Method Detail
-
conditionExpr
public abstract Expr conditionExpr()
-
thenExpr
public abstract Expr thenExpr()
-
elseExpr
public abstract Expr elseExpr()
-
accept
public void accept(AstNodeVisitor visitor)
Description copied from interface:AstNodeWrites the syntatically-correct Java code representation of this node.
-
builder
public static TernaryExpr.Builder builder()
-
-