Class MethodSpecImpl.BuilderImpl
java.lang.Object
org.tquadrat.foundation.javacomposer.internal.MethodSpecImpl.BuilderImpl
- All Implemented Interfaces:
MethodSpec.Builder
- Enclosing class:
MethodSpecImpl
@ClassVersion(sourceVersion="$Id: MethodSpecImpl.java 1105 2024-02-28 12:58:46Z tquadrat $")
@API(status=INTERNAL,
since="0.0.5")
public static final class MethodSpecImpl.BuilderImpl
extends Object
implements MethodSpec.Builder
The implementation for
MethodSpec.Builder
- Author:
- Square,Inc.
- Modified by:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: MethodSpecImpl.java 1105 2024-02-28 12:58:46Z tquadrat $
- Since:
- 0.0.5
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.javacomposer.internal.MethodSpecImpl.BuilderImpl"
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final Collection
<AnnotationSpecImpl> The annotations for the method.private final CodeBlockImpl.BuilderImpl
The code for the method.private final JavaComposer
The reference to the factory.private CodeBlockImpl
The default value for the method; this is for annotations only.private final Collection
<TypeNameImpl> The declared exceptions for the method.private final CodeBlockImpl.BuilderImpl
The Javadoc comment for the method.The modifiers for the method.private final String
The name for the method.private final List
<ParameterSpecImpl> The parameters for the method.private final CodeBlockImpl.BuilderImpl
The comment for the return value for the method.private TypeNameImpl
The return type for the method.private final Collection
<String> The static imports.private final Collection
<TypeVariableNameImpl> The type variables for the method.private boolean
The flag that indicates whether a parameter (the last one) is avarargs
parameter. -
Constructor Summary
ConstructorsConstructorDescriptionBuilderImpl
(JavaComposer composer, CharSequence name) Creates a newBuilderImpl
instance. -
Method Summary
Modifier and TypeMethodDescriptionaddAnnotation
(Class<?> annotation) Adds an annotation for the method.addAnnotation
(AnnotationSpec annotationSpec) Adds an annotation for the method.addAnnotation
(ClassName annotationClass) Adds an annotation for the method.addAnnotations
(Iterable<? extends AnnotationSpec> annotationSpecs) Adds annotations for the method.Adds code for the method.Adds code for the method.addComment
(String format, Object... args) Adds a comment for the method.addException
(Type exception) Adds the declaration for an exception for the method.addException
(TypeName exception) Adds the declaration for an exception for the method.addExceptions
(Iterable<? extends TypeName> exceptions) Adds the declarations for exceptions for the method.addJavadoc
(String format, Object... args) Adds a Javadoc comment for the method.addJavadoc
(CodeBlock block) Adds a Javadoc comment for the method.addModifiers
(Iterable<Modifier> modifiers) Adds modifiers for the method.addModifiers
(Modifier... modifiers) Adds modifiers for the method.addNamedCode
(String format, Map<String, ?> args) Adds code using named arguments for the method.addParameter
(Type type, String name, Modifier... modifiers) Adds a parameter for the method.addParameter
(ParameterSpec parameterSpec) Adds a parameter for the method.addParameter
(TypeName type, String name, Modifier... modifiers) Adds a parameter for the method.addParameters
(Iterable<? extends ParameterSpec> parameterSpecs) Adds parameters for the method.addStatement
(String format, Object... args) Adds a statement to the code for the method.addStaticImport
(Class<?> clazz, String... names) Adds a static import.addStaticImport
(Enum<?> constant) Adds a static import for the givenenum
value.addStaticImport
(ClassName className, String... names) Adds a static import.addTypeVariable
(TypeVariableName typeVariable) Adds a type variable for the method.addTypeVariables
(Iterable<TypeVariableName> typeVariables) Adds type variables for the method.beginControlFlow
(String controlFlow, Object... args) Adds the beginning of a control flow for the method.final MethodSpecImpl
build()
Creates a newMethodSpec
instance from the components that have been added to this builder.defaultValue
(String format, Object... args) Sets the default value for this method.defaultValue
(CodeBlock defaultValue) Sets the default value for this method.Ends the current control flow for the method.endControlFlow
(String controlFlow, Object... args) Ends the current control flow for the method; this version is only used fordo-while
constructs.final Collection
<TypeNameImpl> Returns a reference to the declared exceptions.nextControlFlow
(String controlFlow, Object... args) Begins another control flow for the method.final List
<ParameterSpecImpl> Returns a reference tothe parameters.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.varargs()
Sets the flag that indicates whether a parameter (the last one) is avarargs
parameter totrue
.varargs
(boolean varargs) Sets the flag that indicates whether a parameter (the last one) is avarargs
parameter.
-
Field Details
-
m_Annotations
The annotations for the method. -
m_Code
The code for the method. -
m_Composer
The reference to the factory. -
m_DefaultValue
The default value for the method; this is for annotations only. -
m_Exceptions
The declared exceptions for the method. -
m_Javadoc
The Javadoc comment for the method. -
m_Modifiers
The modifiers for the method. -
m_Name
The name for the method. -
m_Parameters
The parameters for the method. -
m_ReturnComment
The comment for the return value for the method. -
m_ReturnType
The return type for the method. -
m_StaticImports
The static imports. -
m_TypeVariables
The type variables for the method. -
m_Varargs
The flag that indicates whether a parameter (the last one) is avarargs
parameter.
-
-
Constructor Details
-
BuilderImpl
Creates a newBuilderImpl
instance.- Parameters:
composer
- The reference to the factory that created this builder instance.name
- The name for the method.
-
-
Method Details
-
addAnnotation
Adds an annotation for the method.- Specified by:
addAnnotation
in interfaceMethodSpec.Builder
- Parameters:
annotationSpec
- The annotation.- Returns:
- This
Builder
instance.
-
addAnnotation
Adds an annotation for the method.- Specified by:
addAnnotation
in interfaceMethodSpec.Builder
- Parameters:
annotation
- The annotation.- Returns:
- This
Builder
instance.
-
addAnnotation
Adds an annotation for the method.- Specified by:
addAnnotation
in interfaceMethodSpec.Builder
- Parameters:
annotationClass
- The annotation.- Returns:
- This
Builder
instance.
-
addAnnotations
public final MethodSpecImpl.BuilderImpl addAnnotations(Iterable<? extends AnnotationSpec> annotationSpecs) Adds annotations for the method.- Specified by:
addAnnotations
in interfaceMethodSpec.Builder
- Parameters:
annotationSpecs
- The annotations.- Returns:
- This
Builder
instance.
-
addCode
Adds code for the method.- Specified by:
addCode
in interfaceMethodSpec.Builder
- Parameters:
codeBlock
- The code.- Returns:
- This
Builder
instance.
-
addCode
Adds code for the method.- Specified by:
addCode
in interfaceMethodSpec.Builder
- Parameters:
format
- The format.args
- The arguments.- Returns:
- This
Builder
instance.
-
addComment
Adds a comment for the method.- Specified by:
addComment
in interfaceMethodSpec.Builder
- Parameters:
format
- The format.args
- The arguments.- Returns:
- This
Builder
instance.
-
addException
Adds the declaration for an exception for the method.- Specified by:
addException
in interfaceMethodSpec.Builder
- Parameters:
exception
- The exception.- Returns:
- This
Builder
instance.
-
addException
Adds the declaration for an exception for the method.- Specified by:
addException
in interfaceMethodSpec.Builder
- Parameters:
exception
- The exception.- Returns:
- This
Builder
instance.
-
addExceptions
Adds the declarations for exceptions for the method.- Specified by:
addExceptions
in interfaceMethodSpec.Builder
- Parameters:
exceptions
- The exceptions.- Returns:
- This
Builder
instance.
-
addJavadoc
Adds a Javadoc comment for the method.- Specified by:
addJavadoc
in interfaceMethodSpec.Builder
- Parameters:
block
- The Javadoc comment.- Returns:
- This
Builder
instance.
-
addJavadoc
Adds a Javadoc comment for the method.- Specified by:
addJavadoc
in interfaceMethodSpec.Builder
- Parameters:
format
- The format.args
- The arguments.- Returns:
- This
Builder
instance.
-
addModifiers
Adds modifiers for the method.- Specified by:
addModifiers
in interfaceMethodSpec.Builder
- Parameters:
modifiers
- The modifiers.- Returns:
- This
Builder
instance.
-
addModifiers
Adds modifiers for the method.- Specified by:
addModifiers
in interfaceMethodSpec.Builder
- Parameters:
modifiers
- The modifiers.- Returns:
- This
Builder
instance.
-
addNamedCode
Adds code using named arguments for the method.
Named arguments specify their name after the '$' followed by a colon
":"
and the corresponding type character. Argument names consist of characters ina-z, A-Z, 0-9, and _
and must start with a lowercase character.For example, to refer to the type
Integer
with the argument nameclazz
use a format string containing$clazz:T
and include the keyclazz
with valuejava.lang.Integer.class
in the argument map.- Specified by:
addNamedCode
in interfaceMethodSpec.Builder
- Parameters:
format
- The format.args
- The arguments.- Returns:
- This
Builder
instance.
-
addParameter
Adds a parameter for the method.- Specified by:
addParameter
in interfaceMethodSpec.Builder
- Parameters:
parameterSpec
- The parameter.- Returns:
- This
Builder
instance.
-
addParameter
Adds a parameter for the method.- Specified by:
addParameter
in interfaceMethodSpec.Builder
- Parameters:
type
- The type of the parameter.name
- The name of the parameter.modifiers
- The modifiers for the parameter.- Returns:
- This
Builder
instance.
-
addParameter
public final MethodSpecImpl.BuilderImpl addParameter(TypeName type, String name, Modifier... modifiers) Adds a parameter for the method.- Specified by:
addParameter
in interfaceMethodSpec.Builder
- Parameters:
type
- The type of the parameter.name
- The name of the parameter.modifiers
- The modifiers for the parameter.- Returns:
- This
Builder
instance.
-
addParameters
public final MethodSpecImpl.BuilderImpl addParameters(Iterable<? extends ParameterSpec> parameterSpecs) Adds parameters for the method.- Specified by:
addParameters
in interfaceMethodSpec.Builder
- Parameters:
parameterSpecs
- The parameters.- Returns:
- This
Builder
instance.
-
addStatement
Adds a statement to the code for the method.- Specified by:
addStatement
in interfaceMethodSpec.Builder
- Parameters:
format
- The format.args
- The arguments.- Returns:
- This
Builder
instance.
-
addStaticImport
@API(status=STABLE, since="0.2.0") public final MethodSpecImpl.BuilderImpl addStaticImport(Class<?> clazz, String... names) Adds a static import.- Specified by:
addStaticImport
in interfaceMethodSpec.Builder
- Parameters:
clazz
- The class.names
- The names of the elements from the given class that are to be imported.- Returns:
- This
Builder
instance.
-
addStaticImport
@API(status=STABLE, since="0.2.0") public final MethodSpecImpl.BuilderImpl addStaticImport(ClassName className, String... names) Adds a static import.- Specified by:
addStaticImport
in interfaceMethodSpec.Builder
- Parameters:
className
- The class.names
- The names of the elements from the given class that are to be imported.- Returns:
- This
Builder
instance.
-
addStaticImport
@API(status=STABLE, since="0.2.0") public final MethodSpecImpl.BuilderImpl addStaticImport(Enum<?> constant) Adds a static import for the givenenum
value.- Specified by:
addStaticImport
in interfaceMethodSpec.Builder
- Parameters:
constant
- Theenum
value.- Returns:
- This
Builder
instance.
-
addTypeVariable
Adds a type variable for the method.- Specified by:
addTypeVariable
in interfaceMethodSpec.Builder
- Parameters:
typeVariable
- The type variable.- Returns:
- This
Builder
instance.
-
addTypeVariables
Adds type variables for the method.- Specified by:
addTypeVariables
in interfaceMethodSpec.Builder
- Parameters:
typeVariables
- The type variables.- Returns:
- This
Builder
instance.
-
beginControlFlow
Adds the beginning of a control flow for the method.- Specified by:
beginControlFlow
in interfaceMethodSpec.Builder
- Parameters:
controlFlow
- The control flow construct and its code, such as "if (foo == 5)
"; it should not contain braces or newline characters.args
- The arguments.- Returns:
- This
Builder
instance. - See Also:
-
build
Creates a newMethodSpec
instance from the components that have been added to this builder.- Specified by:
build
in interfaceMethodSpec.Builder
- Returns:
- The
MethodSpec
instance.
-
defaultValue
Sets the default value for this method.- Specified by:
defaultValue
in interfaceMethodSpec.Builder
- Parameters:
defaultValue
- The default value.- Returns:
- This
Builder
instance.
-
defaultValue
Sets the default value for this method.- Specified by:
defaultValue
in interfaceMethodSpec.Builder
- Parameters:
format
- The format.args
- The arguments.- Returns:
- This
Builder
instance.
-
endControlFlow
Ends the current control flow for the method.- Specified by:
endControlFlow
in interfaceMethodSpec.Builder
- Returns:
- This
Builder
instance. - See Also:
-
endControlFlow
Ends the current control flow for the method; this version is only used fordo-while
constructs.- Specified by:
endControlFlow
in interfaceMethodSpec.Builder
- Parameters:
controlFlow
- The optional control flow construct and its code, such as "while(foo == 20)
"; it should not contain braces or newline characters.args
- The arguments.- Returns:
- This
Builder
instance. - See Also:
-
exceptions
Returns a reference to the declared exceptions.- Returns:
- The exceptions.
-
nextControlFlow
Begins another control flow for the method.- Specified by:
nextControlFlow
in interfaceMethodSpec.Builder
- Parameters:
controlFlow
- The control flow construct and its code, such as "else if (foo == 10)
"; it should not contain braces or newline characters.args
- The arguments.- Returns:
- This
Builder
instance. - See Also:
-
parameters
Returns a reference tothe parameters.- Returns:
- The parameters.
-
returns
Sets the return type for the method.- Specified by:
returns
in interfaceMethodSpec.Builder
- Parameters:
returnType
- The return type.- Returns:
- This
Builder
instance.
-
returns
Sets the return type for the method and adds the respective Javadoc comment.- Specified by:
returns
in interfaceMethodSpec.Builder
- Parameters:
returnType
- The return type.format
- The format for the return comment.args
- The arguments for the return comment.- Returns:
- This
Builder
instance.
-
returns
Sets the return type for the method.- Specified by:
returns
in interfaceMethodSpec.Builder
- Parameters:
returnType
- The return type.- Returns:
- This
Builder
instance.
-
returns
Sets the return type for the method and adds the respective Javadoc comment.- Specified by:
returns
in interfaceMethodSpec.Builder
- Parameters:
returnType
- The return type.format
- The format for the return comment.args
- The arguments for the return comment.- Returns:
- This
Builder
instance.
-
varargs
Sets the flag that indicates whether a parameter (the last one) is avarargs
parameter totrue
.- Specified by:
varargs
in interfaceMethodSpec.Builder
- Returns:
- This
Builder
instance.
-
varargs
Sets the flag that indicates whether a parameter (the last one) is avarargs
parameter.- Specified by:
varargs
in interfaceMethodSpec.Builder
- Parameters:
varargs
-true
if the last parameter is avarargs
parameter,false
if not.- Returns:
- This
Builder
instance.
-