Class FieldSpecImpl
java.lang.Object
org.tquadrat.foundation.javacomposer.internal.FieldSpecImpl
- All Implemented Interfaces:
FieldSpec
@ClassVersion(sourceVersion="$Id: FieldSpecImpl.java 1105 2024-02-28 12:58:46Z tquadrat $")
@API(status=INTERNAL,
since="0.0.5")
public final class FieldSpecImpl
extends Object
implements FieldSpec
The implementation for
FieldSpec
.- 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"
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from interface org.tquadrat.foundation.javacomposer.FieldSpec
FieldSpec.Builder
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final List
<AnnotationSpecImpl> The annotations for the field.Lazily initialised return value oftoString()
for this instance.private final JavaComposer
The reference to the factory.private final CodeBlockImpl
The initializer for the field.private final CodeBlockImpl
The Javadoc comment for the field.The modifiers for the field.private final String
The name for the field.The static imports.private final TypeNameImpl
The type of the field. -
Constructor Summary
ConstructorsConstructorDescriptionFieldSpecImpl
(FieldSpecImpl.BuilderImpl builder) Creates a newFieldSpecImpl
instance. -
Method Summary
Modifier and TypeMethodDescriptionstatic final FieldSpecImpl.BuilderImpl
builder
(Type type, CharSequence name, Modifier... modifiers) Deprecated, for removal: This API element is subject to removal in a future version.static final FieldSpecImpl.BuilderImpl
builder
(TypeName type, CharSequence name, Modifier... modifiers) Deprecated, for removal: This API element is subject to removal in a future version.Got obsolete with the introduction ofJavaComposer
.static FieldSpecImpl.BuilderImpl
builder
(TypeSpec type, CharSequence name, Modifier... modifiers) Deprecated, for removal: This API element is subject to removal in a future version.Got obsolete with the introduction ofJavaComposer
.final void
emit
(CodeWriter codeWriter, Collection<Modifier> implicitModifiers) Emits thisFieldSpec
instance to the given code writer.final boolean
final JavaComposer
Returns theJavaComposer
factory.final CodeBlockImpl
Returns the Javadoc for this field.Returns the static imports for this code block.final int
hashCode()
final boolean
Checks whether the field has an initializer.final boolean
hasModifier
(Modifier modifier) Checks whether the given modifier was applied to this field.private final String
The initializer form_CachedString
.Returns the modifiers for this field.final String
name()
Returns the name for this field.Returns a builder that is already initialised with the components that built this field.final String
toString()
final TypeNameImpl
type()
Returns the type of the field.
-
Field Details
-
m_Annotations
The annotations for the field. -
m_Composer
The reference to the factory. -
m_CachedString
Lazily initialised return value oftoString()
for this instance. -
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_StaticImports
The static imports. -
m_Type
The type of the field.
-
-
Constructor Details
-
FieldSpecImpl
Creates a newFieldSpecImpl
instance.- Parameters:
builder
- The builder.
-
-
Method Details
-
builder
@Deprecated(since="0.2.0", forRemoval=true) @API(status=DEPRECATED, since="0.0.5") public static final FieldSpecImpl.BuilderImpl builder(Type type, CharSequence name, Modifier... modifiers) Deprecated, for removal: This API element is subject to removal in a future version.Got obsolete with the introduction ofJavaComposer
.Creates a builder for an instance ofFieldSpec
from the given type, name and modifiers.- Parameters:
type
- The type of theFieldSpec
to build.name
- The name for the new field.modifiers
- The modifiers.- Returns:
- The new builder.
-
builder
@Deprecated(since="0.2.0", forRemoval=true) @API(status=DEPRECATED, since="0.0.5") public static final FieldSpecImpl.BuilderImpl builder(TypeName type, CharSequence name, Modifier... modifiers) Deprecated, for removal: This API element is subject to removal in a future version.Got obsolete with the introduction ofJavaComposer
.Creates a builder for an instance ofFieldSpec
from the given type, name and modifiers.- Parameters:
type
- The type of theFieldSpec
to build.name
- The name for the new field.modifiers
- The modifiers.- Returns:
- The new builder.
-
builder
@Deprecated(since="0.2.0", forRemoval=true) @API(status=DEPRECATED, since="0.0.5") public static FieldSpecImpl.BuilderImpl builder(TypeSpec type, CharSequence name, Modifier... modifiers) Deprecated, for removal: This API element is subject to removal in a future version.Got obsolete with the introduction ofJavaComposer
.Creates a builder for an instance ofFieldSpec
from the given type, name and modifiers.- Parameters:
type
- The type of theFieldSpec
to build.name
- The name for the new field.modifiers
- The modifiers.- Returns:
- The new builder.
-
emit
public final void emit(CodeWriter codeWriter, Collection<Modifier> implicitModifiers) throws UncheckedIOException Emits thisFieldSpec
instance to the given code writer.- Parameters:
codeWriter
- The code writer.implicitModifiers
- The implicit modifiers.- Throws:
UncheckedIOException
- A problem occurred when writing to the output target.
-
equals
-
getFactory
Returns theJavaComposer
factory.- Returns:
- The reference to the factory.
-
getJavadoc
Returns the Javadoc for this field.- Returns:
- The Javadoc.
- Since:
- 0.2.0
-
getStaticImports
Returns the static imports for this code block.- Returns:
- The static imports.
-
hashCode
-
hasInitializer
Checks whether the field has an initializer.- Returns:
true
if the field has an initializer,false
otherwise.
-
hasModifier
Checks whether the given modifier was applied to this field.- Specified by:
hasModifier
in interfaceFieldSpec
- Parameters:
modifier
- The modifier.- Returns:
true
if the given modifier has been applied to this field.
-
initializeCachedString
The initializer form_CachedString
.- Returns:
- The return value for
toString()
.
-
modifiers
Returns the modifiers for this field. -
name
Returns the name for this field. -
toBuilder
Returns a builder that is already initialised with the components that built this field. -
toString
-
type
Returns the type of the field.
-
JavaComposer
.