Class EnumSpecImpl.BuilderImpl
- All Implemented Interfaces:
TypeSpec.Builder
- Enclosing class:
EnumSpecImpl
TypeSpec.Builder
for enum
types.- Author:
- Square,Inc.
- Modified by:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: EnumSpecImpl.java 1063 2023-09-26 15:14:16Z tquadrat $
- Since:
- 0.2.0
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.javacomposer.internal.EnumSpecImpl.BuilderImpl"
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionBuilderImpl
(JavaComposer composer, CharSequence name) Creates a newBuilderImpl
instance.BuilderImpl
(JavaComposer composer, Optional<String> name) Creates a newBuilderImpl
instance. -
Method Summary
Modifier and TypeMethodDescriptionfinal EnumSpecImpl.BuilderImpl
addAttribute
(FieldSpec fieldSpec, boolean readOnly) Adds an attribute to this type.final EnumSpecImpl.BuilderImpl
addEnumConstant
(CharSequence name, TypeSpec typeSpec) Adds anenum
constant for the type to build.final EnumSpecImpl.BuilderImpl
Adds a field to this type.final EnumSpecImpl.BuilderImpl
addMethod
(MethodSpec methodSpec) Adds a method for the type.final TypeSpec.Builder
addProperty
(FieldSpec fieldSpec, boolean readOnly) Adds a JavaBean property to this type.final EnumSpecImpl
build()
Builds a newTypeSpec
instance from the added components.protected final Map
<String, ClassSpecImpl> Returns theenum
constants of the new type.final EnumSpecImpl.BuilderImpl
superclass
(TypeName superclass) Sets the superclass for the type.Methods inherited from class org.tquadrat.foundation.javacomposer.internal.TypeSpecImpl.BuilderImpl
addAnnotation, addAnnotation, addAnnotation, addAnnotations, addEnumConstant, addEnumConstant, addEnumConstant, addField, addField, addFields, addInitializerBlock, addJavadoc, addJavadoc, addMethods, addModifiers, addOriginatingElement, addStaticBlock, addStaticImport, addStaticImport, addStaticImport, addSuperinterface, addSuperinterface, addSuperinterface, addSuperinterface, addSuperinterfaces, addSuppressableWarning, addType, addTypes, addTypeVariable, addTypeVariable, addTypeVariables, composer, getAnnotations, getAnonymousTypeArguments, getFactory, getFieldSpecs, getInitializerBlock, getJavadoc, getMethodSpecs, getModifiers, getName, getStaticBlock, getStaticImports, getSuperclass, getSuperinterfaces, getTypeSpecs, getTypeVariables, isAnonymousClass, superclass
-
Field Details
-
m_EnumConstants
The enum constants.
-
-
Constructor Details
-
BuilderImpl
Creates a newBuilderImpl
instance.- Parameters:
composer
- The reference to the factory that created this builder instance.name
- The name of the type to build.
-
BuilderImpl
Creates a newBuilderImpl
instance.- Parameters:
composer
- The reference to the factory that created this builder instance.name
- The name of the type to build.
-
-
Method Details
-
addAttribute
@API(status=STABLE, since="0.2.0") public final EnumSpecImpl.BuilderImpl addAttribute(FieldSpec fieldSpec, boolean readOnly) Adds an attribute to this type.
An attribute is basically a field with the related accessor and mutator methods.
If the name for a non-final property will be
text
, and its type isjava.lang.String
, the generated code will look basically like this:… private String m_Text; … public final String text() { return m_Text; } … public final void text( final String value ) { m_Text = text; } …
If accessor or mutator needs to be more complex, the respective methods must be created manually.
- Specified by:
addAttribute
in interfaceTypeSpec.Builder
- Specified by:
addAttribute
in classTypeSpecImpl.BuilderImpl
- Parameters:
fieldSpec
- The field definition.readOnly
-true
if no mutator should be created even for a non-final field,false
if a mutator has to be created for a non-final field. Will ignored if the field is final.- Returns:
- This
Builder
instance.
-
addEnumConstant
Adds anenum
constant for the type to build.- Specified by:
addEnumConstant
in interfaceTypeSpec.Builder
- Overrides:
addEnumConstant
in classTypeSpecImpl.BuilderImpl
- Parameters:
name
- The name for theenum
constant.typeSpec
- The type of theenum
constant.- Returns:
- This
Builder
instance.
-
addField
Adds a field to this type.- Specified by:
addField
in interfaceTypeSpec.Builder
- Overrides:
addField
in classTypeSpecImpl.BuilderImpl
- Parameters:
fieldSpec
- The field definition.- Returns:
- This
Builder
instance.
-
addMethod
Adds a method for the type.- Specified by:
addMethod
in interfaceTypeSpec.Builder
- Specified by:
addMethod
in classTypeSpecImpl.BuilderImpl
- Parameters:
methodSpec
- The method.- Returns:
- This
Builder
instance.
-
addProperty
Adds a JavaBean property to this type.
A property is basically a field with the related getter and setter methods.
If the name for a non-final property will be
text
, and its type isjava.lang.String
, the generated code will look basically like this:… private String m_Text; … public final String getText() { return m_Text; } … public final void setText( final String value ) { m_Text = text; } …
If getter or setter needs to be more complex, the respective methods must be created manually.
- Specified by:
addProperty
in interfaceTypeSpec.Builder
- Specified by:
addProperty
in classTypeSpecImpl.BuilderImpl
- Parameters:
fieldSpec
- The field definition.readOnly
-true
if no setter should be created even for a non-final field,false
if a setter has to be created for a non-final field. Will ignored if the field is final.- Returns:
- This
Builder
instance.
-
build
Builds a newTypeSpec
instance from the added components.- Specified by:
build
in interfaceTypeSpec.Builder
- Specified by:
build
in classTypeSpecImpl.BuilderImpl
- Returns:
- The new
TypeSpec
instance.
-
getEnumConstants
Returns theenum
constants of the new type.- Overrides:
getEnumConstants
in classTypeSpecImpl.BuilderImpl
- Returns:
- The
enum
constants.
-
superclass
Sets the superclass for the type. This class is extended by the new type.
- Specified by:
superclass
in interfaceTypeSpec.Builder
- Overrides:
superclass
in classTypeSpecImpl.BuilderImpl
- Parameters:
superclass
- The superclass.- Returns:
- This
Builder
instance.
-