Class AnnotationSpecImpl.BuilderImpl
java.lang.Object
org.tquadrat.foundation.javacomposer.internal.AnnotationSpecImpl.BuilderImpl
- All Implemented Interfaces:
AnnotationSpec.Builder
- Enclosing class:
AnnotationSpecImpl
@ClassVersion(sourceVersion="$Id: AnnotationSpecImpl.java 1105 2024-02-28 12:58:46Z tquadrat $")
@API(status=INTERNAL,
since="0.0.5")
public static final class AnnotationSpecImpl.BuilderImpl
extends Object
implements AnnotationSpec.Builder
The implementation of
AnnotationSpec.Builder
for a builder of an
AnnotationSpecImpl
instance.- Author:
- Square,Inc.
- Modified by:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: AnnotationSpecImpl.java 1105 2024-02-28 12:58:46Z tquadrat $
- Since:
- 0.0.5
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.javacomposer.internal.AnnotationSpecImpl.BuilderImpl"
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final Map
<String, List<CodeBlockImpl>> The building blocks.private final JavaComposer
The reference to the factory.private boolean
A flag that indicates whether the inline representation is forced for this annotation.private final TypeNameImpl
The name of the annotation type to build. -
Constructor Summary
ConstructorsConstructorDescriptionBuilderImpl
(JavaComposer composer, TypeName type) Creates a newBuilderImpl
instance. -
Method Summary
Modifier and TypeMethodDescriptionaddMember
(CharSequence name, String format, Object... args) Adds a building block.addMember
(CharSequence name, CodeBlock codeBlock) Adds a building block.addMemberForValue
(String name, Object value) Delegates toaddMember(CharSequence,String,Object...)
, with parameterformat
depending on the givenvalue
object.final AnnotationSpecImpl
build()
Creates theAnnotationSpec
instance from the added members.final boolean
Returns the flag that indicates whether this annotation is presented inline or multiline.forceInline
(boolean flag) Sets a flag that forces the inline presentation of the annotation.
Inline:final JavaComposer
Returns theJavaComposer
factory.final Map
<String, List<CodeBlockImpl>> members()
Returns the members.final TypeNameImpl
type()
Returns the type of the annotation.
-
Field Details
-
m_CodeBlocks
The building blocks. -
m_Composer
The reference to the factory. -
m_ForceInline
A flag that indicates whether the inline representation is forced for this annotation.- See Also:
-
m_Type
The name of the annotation type to build.
-
-
Constructor Details
-
BuilderImpl
Creates a newBuilderImpl
instance.- Parameters:
composer
- The reference to the factory that created this builder instance.type
- The name of the annotation type to build.
-
-
Method Details
-
addMember
public final AnnotationSpecImpl.BuilderImpl addMember(CharSequence name, String format, Object... args) Adds a building block.- Specified by:
addMember
in interfaceAnnotationSpec.Builder
- Parameters:
name
- The name.format
- The format for theCodeBlock
.args
- The arguments for theCodeBlock
.- Returns:
- This
Builder
instance. - See Also:
-
addMember
Adds a building block.- Specified by:
addMember
in interfaceAnnotationSpec.Builder
- Parameters:
name
- The name.codeBlock
- TheCodeBlock
representing the new member.- Returns:
- This
Builder
instance.
-
addMemberForValue
Delegates toaddMember(CharSequence,String,Object...)
, with parameterformat
depending on the givenvalue
object. Falls back to"$L"
literal format if the class of the givenvalue
object is not supported.- Parameters:
name
- The name for the new member.value
- The value for the new member.- Returns:
- This
Builder
instance.
-
build
Creates theAnnotationSpec
instance from the added members.- Specified by:
build
in interfaceAnnotationSpec.Builder
- Returns:
- The built instance.
-
forceInline
Sets a flag that forces the inline presentation of the annotation.
Inline:
Not inline:@Column(name = "updated_at", nullable = false)
@Column( name = "updated_at", nullable = false )
- Specified by:
forceInline
in interfaceAnnotationSpec.Builder
- Parameters:
flag
-true
for the forced inline presentation,false
for the multi-line presentation.- Returns:
- This
Builder
instance.
-
forceInline
Returns the flag that indicates whether this annotation is presented inline or multiline.- Returns:
true
for the inline presentation,false
for multi-line.
-
getFactory
Returns theJavaComposer
factory.- Returns:
- The reference to the factory.
-
members
Returns the members.- Returns:
- The members.
-
type
Returns the type of the annotation.- Returns:
- The type.
-