Class MethodInvocationExpr.Builder
- java.lang.Object
-
- com.google.api.generator.engine.ast.MethodInvocationExpr.Builder
-
- Enclosing class:
- MethodInvocationExpr
public abstract static class MethodInvocationExpr.Builder extends Object
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description MethodInvocationExprbuild()MethodInvocationExpr.BuildersetArguments(Expr... arguments)abstract MethodInvocationExpr.BuildersetArguments(List<Expr> arguments)abstract MethodInvocationExpr.BuildersetExprReferenceExpr(Expr exprReference)abstract MethodInvocationExpr.BuildersetGenerics(List<Reference> generics)abstract MethodInvocationExpr.BuildersetMethodName(String methodName)abstract MethodInvocationExpr.BuildersetReturnType(TypeNode type)abstract MethodInvocationExpr.BuildersetStaticReferenceType(TypeNode type)
-
-
-
Method Detail
-
setMethodName
public abstract MethodInvocationExpr.Builder setMethodName(String methodName)
-
setReturnType
public abstract MethodInvocationExpr.Builder setReturnType(TypeNode type)
-
setExprReferenceExpr
public abstract MethodInvocationExpr.Builder setExprReferenceExpr(Expr exprReference)
-
setStaticReferenceType
public abstract MethodInvocationExpr.Builder setStaticReferenceType(TypeNode type)
-
setArguments
public MethodInvocationExpr.Builder setArguments(Expr... arguments)
-
setArguments
public abstract MethodInvocationExpr.Builder setArguments(List<Expr> arguments)
-
setGenerics
public abstract MethodInvocationExpr.Builder setGenerics(List<Reference> generics)
-
build
public MethodInvocationExpr build()
-
-