Uses of Class
org.tquadrat.foundation.javacomposer.internal.MethodSpecImpl.BuilderImpl
Packages that use MethodSpecImpl.BuilderImpl
Package
Description
The implementations for the interfaces from the package
org.tquadrat.foundation.javacomposer
.-
Uses of MethodSpecImpl.BuilderImpl in org.tquadrat.foundation.javacomposer.internal
Methods in org.tquadrat.foundation.javacomposer.internal that return MethodSpecImpl.BuilderImplModifier and TypeMethodDescriptionMethodSpecImpl.BuilderImpl.addAnnotation
(Class<?> annotation) Adds an annotation for the method.MethodSpecImpl.BuilderImpl.addAnnotation
(AnnotationSpec annotationSpec) Adds an annotation for the method.MethodSpecImpl.BuilderImpl.addAnnotation
(ClassName annotationClass) Adds an annotation for the method.MethodSpecImpl.BuilderImpl.addAnnotations
(Iterable<? extends AnnotationSpec> annotationSpecs) Adds annotations for the method.Adds code for the method.Adds code for the method.MethodSpecImpl.BuilderImpl.addComment
(String format, Object... args) Adds a comment for the method.MethodSpecImpl.BuilderImpl.addException
(Type exception) Adds the declaration for an exception for the method.MethodSpecImpl.BuilderImpl.addException
(TypeName exception) Adds the declaration for an exception for the method.MethodSpecImpl.BuilderImpl.addExceptions
(Iterable<? extends TypeName> exceptions) Adds the declarations for exceptions for the method.MethodSpecImpl.BuilderImpl.addJavadoc
(String format, Object... args) Adds a Javadoc comment for the method.MethodSpecImpl.BuilderImpl.addJavadoc
(CodeBlock block) Adds a Javadoc comment for the method.MethodSpecImpl.BuilderImpl.addModifiers
(Iterable<Modifier> modifiers) Adds modifiers for the method.MethodSpecImpl.BuilderImpl.addModifiers
(Modifier... modifiers) Adds modifiers for the method.MethodSpecImpl.BuilderImpl.addNamedCode
(String format, Map<String, ?> args) Adds code using named arguments for the method.MethodSpecImpl.BuilderImpl.addParameter
(Type type, String name, Modifier... modifiers) Adds a parameter for the method.MethodSpecImpl.BuilderImpl.addParameter
(ParameterSpec parameterSpec) Adds a parameter for the method.MethodSpecImpl.BuilderImpl.addParameter
(TypeName type, String name, Modifier... modifiers) Adds a parameter for the method.MethodSpecImpl.BuilderImpl.addParameters
(Iterable<? extends ParameterSpec> parameterSpecs) Adds parameters for the method.MethodSpecImpl.BuilderImpl.addStatement
(String format, Object... args) Adds a statement to the code for the method.MethodSpecImpl.BuilderImpl.addStaticImport
(Class<?> clazz, String... names) Adds a static import.MethodSpecImpl.BuilderImpl.addStaticImport
(Enum<?> constant) Adds a static import for the givenenum
value.MethodSpecImpl.BuilderImpl.addStaticImport
(ClassName className, String... names) Adds a static import.MethodSpecImpl.BuilderImpl.addTypeVariable
(TypeVariableName typeVariable) Adds a type variable for the method.MethodSpecImpl.BuilderImpl.addTypeVariables
(Iterable<TypeVariableName> typeVariables) Adds type variables for the method.MethodSpecImpl.BuilderImpl.beginControlFlow
(String controlFlow, Object... args) Adds the beginning of a control flow for the method.MethodSpecImpl.BuilderImpl.defaultValue
(String format, Object... args) Sets the default value for this method.MethodSpecImpl.BuilderImpl.defaultValue
(CodeBlock defaultValue) Sets the default value for this method.MethodSpecImpl.BuilderImpl.endControlFlow()
Ends the current control flow for the method.MethodSpecImpl.BuilderImpl.endControlFlow
(String controlFlow, Object... args) Ends the current control flow for the method; this version is only used fordo-while
constructs.static final MethodSpecImpl.BuilderImpl
MethodSpecImpl.methodBuilder
(CharSequence name) Deprecated, for removal: This API element is subject to removal in a future version.MethodSpecImpl.BuilderImpl.nextControlFlow
(String controlFlow, Object... args) Begins another control flow for the method.static final MethodSpecImpl.BuilderImpl
MethodSpecImpl.overriding
(Method method) Deprecated, for removal: This API element is subject to removal in a future version.Got obsolete with the introduction ofJavaComposer
.static final MethodSpecImpl.BuilderImpl
MethodSpecImpl.overriding
(ExecutableElement method) Deprecated, for removal: This API element is subject to removal in a future version.Got obsolete with the introduction ofJavaComposer
.static final MethodSpecImpl.BuilderImpl
MethodSpecImpl.overriding
(ExecutableElement method, DeclaredType enclosing, Types types) Deprecated, for removal: This API element is subject to removal in a future version.Got obsolete with the introduction ofJavaComposer
.Sets the return type for the method.Sets the return type for the method and adds the respective Javadoc comment.Sets the return type for the method.Sets the return type for the method and adds the respective Javadoc comment.MethodSpecImpl.toBuilder
(boolean omitCode) Returns a builder that is initialised with all the components of this method, like the result of a call toMethodSpec.toBuilder()
, but without the body code, if specified that way.MethodSpecImpl.BuilderImpl.varargs()
Sets the flag that indicates whether a parameter (the last one) is avarargs
parameter totrue
.MethodSpecImpl.BuilderImpl.varargs
(boolean varargs) Sets the flag that indicates whether a parameter (the last one) is avarargs
parameter.Constructors in org.tquadrat.foundation.javacomposer.internal with parameters of type MethodSpecImpl.BuilderImplModifierConstructorDescriptionMethodSpecImpl
(MethodSpecImpl.BuilderImpl builder) Creates a newMethodSpecImpl
instance.
JavaComposer
.