Class FieldSpecImpl.BuilderImpl
java.lang.Object
org.tquadrat.foundation.javacomposer.internal.FieldSpecImpl.BuilderImpl
- All Implemented Interfaces:
FieldSpec.Builder
- Enclosing class:
FieldSpecImpl
@ClassVersion(sourceVersion="$Id: FieldSpecImpl.java 1105 2024-02-28 12:58:46Z tquadrat $")
@API(status=INTERNAL,
since="0.0.5")
public static final class FieldSpecImpl.BuilderImpl
extends Object
implements FieldSpec.Builder
The implementation of
FieldSpec.Builder
- Author:
- Square,Inc.
- Modified by:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: FieldSpecImpl.java 1105 2024-02-28 12:58:46Z tquadrat $
- Since:
- 0.0.5
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.javacomposer.internal.FieldSpecImpl.BuilderImpl"
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final Collection
<AnnotationSpecImpl> The annotations for the field.private final JavaComposer
The reference to the factory.private CodeBlockImpl
The initializer for the field.private final CodeBlockImpl.BuilderImpl
The Javadoc comment for the field.The modifiers for the field.private final String
The name for the field.private final TypeNameImpl
The type for the field. -
Constructor Summary
ConstructorsConstructorDescriptionBuilderImpl
(JavaComposer composer, TypeNameImpl type, CharSequence name) Creates a newBuilderImpl
instance. -
Method Summary
Modifier and TypeMethodDescriptionaddAnnotation
(Class<?> annotation) Adds an annotation for the field.addAnnotation
(AnnotationSpec annotationSpec) Adds an annotation for the field.addAnnotation
(ClassName annotation) Adds an annotation for the field.addAnnotations
(Iterable<AnnotationSpec> annotationSpecs) Adds annotations for the field.addJavadoc
(String format, Object... args) Adds a Javadoc comment for the field.addJavadoc
(CodeBlock block) Adds a Javadoc comment for the field.addModifiers
(Modifier... modifiers) Adds modifiers for the field.final FieldSpecImpl
build()
Builds a newFieldSpec
instance from the added components.initializer
(String format, Object... args) Sets the initializer for the field.initializer
(CodeBlock codeBlock) Sets the initializer for the field.
-
Field Details
-
m_Annotations
The annotations for the field. -
m_Composer
The reference to the factory. -
m_Initializer
The initializer for the field. -
m_Javadoc
The Javadoc comment for the field. -
m_Modifiers
The modifiers for the field. -
m_Name
The name for the field. -
m_Type
The type for the field.
-
-
Constructor Details
-
BuilderImpl
Creates a newBuilderImpl
instance.- Parameters:
composer
- The reference to the factory that created this builder instance.type
- The type for the new field.name
- The name for the new field.
-
-
Method Details
-
addAnnotation
Adds an annotation for the field.- Specified by:
addAnnotation
in interfaceFieldSpec.Builder
- Parameters:
annotationSpec
- The annotation.- Returns:
- This
Builder
instance.
-
addAnnotation
Adds an annotation for the field.- Specified by:
addAnnotation
in interfaceFieldSpec.Builder
- Parameters:
annotation
- The annotation.- Returns:
- This
Builder
instance.
-
addAnnotation
Adds an annotation for the field.- Specified by:
addAnnotation
in interfaceFieldSpec.Builder
- Parameters:
annotation
- The annotation.- Returns:
- This
Builder
instance.
-
addAnnotations
Adds annotations for the field.- Specified by:
addAnnotations
in interfaceFieldSpec.Builder
- Parameters:
annotationSpecs
- The annotations.- Returns:
- This
Builder
instance.
-
addJavadoc
Adds a Javadoc comment for the field.- Specified by:
addJavadoc
in interfaceFieldSpec.Builder
- Parameters:
block
- The comment block.- Returns:
- This
Builder
instance.
-
addJavadoc
Adds a Javadoc comment for the field.- Specified by:
addJavadoc
in interfaceFieldSpec.Builder
- Parameters:
format
- The format.args
- The arguments.- Returns:
- This
Builder
instance.
-
addModifiers
Adds modifiers for the field.- Specified by:
addModifiers
in interfaceFieldSpec.Builder
- Parameters:
modifiers
- The modifiers.- Returns:
- This
Builder
instance.
-
build
Builds a newFieldSpec
instance from the added components.- Specified by:
build
in interfaceFieldSpec.Builder
- Returns:
- The
FieldSpec
instance.
-
initializer
Sets the initializer for the field.- Specified by:
initializer
in interfaceFieldSpec.Builder
- Parameters:
codeBlock
- The code that initialises the field.- Returns:
- This
Builder
instance.
-
initializer
Sets the initializer for the field.- Specified by:
initializer
in interfaceFieldSpec.Builder
- Parameters:
format
- The format.args
- The arguments.- Returns:
- This
Builder
instance.
-