Class LambdaExpr
- java.lang.Object
-
- com.google.api.generator.engine.ast.LambdaExpr
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classLambdaExpr.Builder
-
Constructor Summary
Constructors Constructor Description LambdaExpr()
-
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.abstract com.google.common.collect.ImmutableList<VariableExpr>arguments()abstract com.google.common.collect.ImmutableList<Statement>body()static LambdaExpr.Builderbuilder()abstract ReturnExprreturnExpr()TypeNodetype()
-
-
-
Method Detail
-
arguments
public abstract com.google.common.collect.ImmutableList<VariableExpr> arguments()
-
returnExpr
public abstract ReturnExpr returnExpr()
-
body
public abstract com.google.common.collect.ImmutableList<Statement> body()
-
accept
public void accept(AstNodeVisitor visitor)
Description copied from interface:AstNodeWrites the syntatically-correct Java code representation of this node.
-
builder
public static LambdaExpr.Builder builder()
-
-