Class NewObjectExpr
- java.lang.Object
-
- com.google.api.generator.engine.ast.NewObjectExpr
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classNewObjectExpr.Builder
-
Constructor Summary
Constructors Constructor Description NewObjectExpr()
-
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<Expr>arguments()static NewObjectExpr.Builderbuilder()abstract booleanisGeneric()abstract TypeNodetype()static NewObjectExprwithType(TypeNode type)
-
-
-
Method Detail
-
arguments
public abstract com.google.common.collect.ImmutableList<Expr> arguments()
-
isGeneric
public abstract boolean isGeneric()
-
accept
public void accept(AstNodeVisitor visitor)
Description copied from interface:AstNodeWrites the syntatically-correct Java code representation of this node.
-
withType
public static NewObjectExpr withType(TypeNode type)
-
builder
public static NewObjectExpr.Builder builder()
-
-