Class ClassSpecImpl
java.lang.Object
org.tquadrat.foundation.javacomposer.internal.TypeSpecImpl
org.tquadrat.foundation.javacomposer.internal.ClassSpecImpl
- All Implemented Interfaces:
TypeSpec
@ClassVersion(sourceVersion="$Id: ClassSpecImpl.java 1105 2024-02-28 12:58:46Z tquadrat $")
@API(status=INTERNAL,
since="0.2.0")
public final class ClassSpecImpl
extends TypeSpecImpl
The implementation of
TypeSpec
for a class.- Author:
- Square,Inc.
- Modified by:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: ClassSpecImpl.java 1105 2024-02-28 12:58:46Z tquadrat $
- Since:
- 0.2.0
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.javacomposer.internal.ClassSpecImpl"
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final class
The implementation ofTypeSpec.Builder
for a class.Nested classes/interfaces inherited from class org.tquadrat.foundation.javacomposer.internal.TypeSpecImpl
TypeSpecImpl.Kind
Nested classes/interfaces inherited from interface org.tquadrat.foundation.javacomposer.TypeSpec
TypeSpec.Builder
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final CodeBlockImpl
The anonymous type arguments for this type.Fields inherited from class org.tquadrat.foundation.javacomposer.internal.TypeSpecImpl
NAME_ANONYMOUS_TYPE
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
ClassSpecImpl
(ClassSpecImpl type) Creates a dummy type spec for type-resolution in CodeWriter only while emitting the type declaration but before entering the type body.ClassSpecImpl
(ClassSpecImpl.BuilderImpl builder) Creates a newTypeClassSpecImpl
instance. -
Method Summary
Modifier and TypeMethodDescriptionReturns the anonymous type arguments.protected final TypeSpecImpl
Creates a dummy copy of the type spec that is used byTypeSpecImpl.emit(CodeWriter, String, Set)
internally.protected final void
emit4Foundation
(CodeWriter codeWriter, String enumName, Set<Modifier> implicitModifiers) Emits the type to the given code writer, using the layout as defined by the Foundation library code.protected final void
emit4JavaPoet
(CodeWriter codeWriter, String enumName, Set<Modifier> implicitModifiers) Emits the type to the given code writer, using the layout as defined by the original JavaPoet code.final boolean
final int
hashCode()
final TypeSpecImpl.BuilderImpl
Returns a new builder that is initialised with thisTypeSpec
instance.Methods inherited from class org.tquadrat.foundation.javacomposer.internal.TypeSpecImpl
compareMethodSpecs, emit, getAnnotations, getEnumConstants, getFactory, getFieldSpecs, getInitializerBlock, getJavadoc, getMethodSpecs, getStaticBlock, getStaticImports, getSuperClass, getSuperInterfaces, getSuppressableWarnings, getTypeVariables, hasModifier, innerClasses, modifiers, name, originatingElements, toString, typeSpecs
-
Field Details
-
m_AnonymousTypeArguments
The anonymous type arguments for this type.
-
-
Constructor Details
-
ClassSpecImpl
Creates a newTypeClassSpecImpl
instance.- Parameters:
builder
- The builder for this instance.
-
ClassSpecImpl
Creates a dummy type spec for type-resolution in CodeWriter only while emitting the type declaration but before entering the type body.- Parameters:
type
- The source type.
-
-
Method Details
-
anonymousTypeArguments
Returns the anonymous type arguments.- Overrides:
anonymousTypeArguments
in classTypeSpecImpl
- Returns:
- An instance of
Optional
that holds the anonymous type arguments.
-
createCopy
Creates a dummy copy of the type spec that is used byTypeSpecImpl.emit(CodeWriter, String, Set)
internally.- Specified by:
createCopy
in classTypeSpecImpl
- Returns:
- The dummy copy.
-
emit4Foundation
protected final void emit4Foundation(CodeWriter codeWriter, String enumName, Set<Modifier> implicitModifiers) throws UncheckedIOException Emits the type to the given code writer, using the layout as defined by the Foundation library code.- Specified by:
emit4Foundation
in classTypeSpecImpl
- Parameters:
codeWriter
- The target code writer.enumName
- The name of the enum; can benull
.implicitModifiers
- The implicit modifiers.- Throws:
UncheckedIOException
- A problem occurred when writing to the output target.
-
emit4JavaPoet
protected final void emit4JavaPoet(CodeWriter codeWriter, String enumName, Set<Modifier> implicitModifiers) throws UncheckedIOException Emits the type to the given code writer, using the layout as defined by the original JavaPoet code.- Specified by:
emit4JavaPoet
in classTypeSpecImpl
- Parameters:
codeWriter
- The target code writer.enumName
- The name of the enum; can benull
.implicitModifiers
- The implicit modifiers.- Throws:
UncheckedIOException
- A problem occurred when writing to the output target.
-
equals
- Specified by:
equals
in interfaceTypeSpec
- Specified by:
equals
in classTypeSpecImpl
-
hashCode
- Specified by:
hashCode
in interfaceTypeSpec
- Specified by:
hashCode
in classTypeSpecImpl
-
toBuilder
Returns a new builder that is initialised with thisTypeSpec
instance.- Specified by:
toBuilder
in interfaceTypeSpec
- Specified by:
toBuilder
in classTypeSpecImpl
- Returns:
- The new builder.
-