Class MethodInvocationExpr
- java.lang.Object
-
- com.google.api.generator.engine.ast.MethodInvocationExpr
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classMethodInvocationExpr.Builder
-
Constructor Summary
Constructors Constructor Description MethodInvocationExpr()
-
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 List<Expr>arguments()static MethodInvocationExpr.Builderbuilder()abstract ExprexprReferenceExpr()abstract List<Reference>generics()booleanisGeneric()abstract IdentifierNodemethodIdentifier()abstract TypeNodereturnType()abstract TypeNodestaticReferenceType()abstract MethodInvocationExpr.BuildertoBuilder()TypeNodetype()
-
-
-
Method Detail
-
methodIdentifier
public abstract IdentifierNode methodIdentifier()
-
returnType
public abstract TypeNode returnType()
-
isGeneric
public boolean isGeneric()
-
accept
public void accept(AstNodeVisitor visitor)
Description copied from interface:AstNodeWrites the syntatically-correct Java code representation of this node.
-
toBuilder
public abstract MethodInvocationExpr.Builder toBuilder()
-
builder
public static MethodInvocationExpr.Builder builder()
-
-