Class JavaComposer
The factory for the various JavaComposer artefacts.
Instances of this class do not maintain a state, therefore they are thread-safe without any synchronisation.
- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: JavaComposer.java 1105 2024-02-28 12:58:46Z tquadrat $
- Since:
- 0.2.0
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.javacomposer.JavaComposer"
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
The Javadoc tag for inherited documentation: "{@inheritDoc}".static final String
The Javadoc tag for a constant value: "{@value}".private final boolean
If set totrue
, some debug information will be added to the output.private final Lazy
<AnnotationSpec> The@ClassVersion
annotation.private final Lazy
<AnnotationSpec> The@UtilityClass
annotation.private final CodeProcessorPREVIEW
The code processor associated with this composer instance.The Javadoc comment for an overriding method.private final Layout
The layout that is used to format the output.private int
The maximum number of fields for a class; if this number is exceeded, an annotation@SuppressWarnings
withSuppressableWarnings.CLASS_WITH_TOO_MANY_FIELDS
will be added to the class.private int
The maximum number of methods for a class; if this number is exceeded, an annotation@SuppressWarnings
withSuppressableWarnings.CLASS_WITH_TOO_MANY_METHODS
will be added to the class.private final Lazy
<MethodSpec> A predefinedequals()
method.private final Lazy
<MethodSpec> A predefinedhashCode()
method.private final Lazy
<MethodSpec> A predefinedtoString()
method.static final String
Message: "Cannot override method on final class \'%s\'".static final String
Message: "Cannot override method with modifier \'%s\'". -
Constructor Summary
ConstructorsConstructorDescriptionCreates a new instance ofJavaComposer
that uses the defaultLayout
.JavaComposer
(boolean addDebugOutput) Creates a new instance ofJavaComposer
that uses the defaultLayout
and adds some debug information to the output.JavaComposer
(Layout layout) Creates a new instance ofJavaComposer
.JavaComposer
(Layout layout, boolean addDebugOutput) Creates a new instance ofJavaComposer
. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Returns the flag that controls whether the output should be enhanced with some debug information.final AnnotationSpec.Builder
annotationBuilder
(Class<?> type) Creates a builder for an instance of an implementation forAnnotationSpec
from the givenClass
instance.final AnnotationSpec.Builder
annotationBuilder
(ClassName type) Creates a builder for an instance of an implementation forAnnotationSpec
from the givenClassName
instance.final TypeSpec.Builder
Creates a builder for an annotation.final TypeSpec.Builder
annotationTypeBuilder
(ClassName className) Creates a builder for an annotation.final TypeSpec.Builder
anonymousClassBuilder
(String format, Object... args) Creates a builder for an anonymous class.final TypeSpec.Builder
anonymousClassBuilder
(CodeBlock typeArguments) Creates a builder for an anonymous class.final TypeSpec.Builder
classBuilder
(CharSequence name) Creates a builder for a regular class.final TypeSpec.Builder
classBuilder
(ClassName className) Creates a builder for a regular class.final CodeBlock.Builder
Creates a builder for an instance ofCodeBlock
.final CodeBlock
codeBlockOf
(String format, Object... args) Creates a newCodeBlock
instance from the given format and arguments.final MethodSpec.Builder
Creates a builder that builds an instance ofMethodSpec
for a constructor.final AnnotationSpec
createAnnotation
(Annotation annotation) Creates an instance ofAnnotationSpec
from the givenAnnotation
instance.final AnnotationSpec
createAnnotation
(Annotation annotation, boolean includeDefaultValues) Creates an instance ofAnnotationSpec
from the givenAnnotation
instance.final AnnotationSpec
createAnnotation
(AnnotationMirror annotation) Creates an instance ofAnnotationSpec
from the givenAnnotationMirror
instance.final AnnotationSpec
Returns a@ClassVersion
annotation with a default text forClassVersion.sourceVersion()
.final AnnotationSpec
createClassVersionAnnotation
(String sourceVersion) Returns a@ClassVersion
annotation with the text forClassVersion.sourceVersion()
.private final CodeBlock
createComment4Constant
(CodeBlock comment) Creates the comment for a constant.final FieldSpec
createConstant
(CharSequence name, int value, CodeBlock comment) Creates an integer constant.final FieldSpec
createConstant
(CharSequence name, Type type, CodeBlock value, CodeBlock comment) Creates a constant.final FieldSpec
createConstant
(CharSequence name, String value, CodeBlock comment) Creates a String constant.private final FieldSpec
createConstant
(CharSequence name, TypeName type, Number value, CodeBlock comment) Creates a numerical constant.final FieldSpec
createConstant
(CharSequence name, TypeName type, CodeBlock value, CodeBlock comment) Creates a constant.
A constant is an initialisedpublic final static
field.final MethodSpec.Builder
Returns a builder for an implementation of the methodObject.equals(Object)
that just needs the method body for completion.final MethodSpec
createEqualsMethod
(CodeBlock body) Returns aMethodSpec
instance for an implementation of the methodObject.equals(Object)
.final MethodSpec.Builder
Returns a builder for an implementation of the methodObject.hashCode()
that just needs the method body for completion.final MethodSpec
createHashCodeMethod
(Collection<? extends FieldSpec> fields) Returns aMethodSpec
instance for an implementation of the methodObject.hashCode()
.final MethodSpec
Returns aMethodSpec
instance for an implementation of the methodObject.hashCode()
.final MethodSpec
createHashCodeMethod
(FieldSpec... fields) Returns aMethodSpec
instance for an implementation of the methodObject.hashCode()
.final CodeBlock
Returns a code block with a comment for overriding methods:final MethodSpec
createMethod
(ExecutableElement method) Creates aMethodSpec
for the givenExecutableElement
.final ParameterSpec
createParameter
(Parameter parameter) Creates an instance ofParameterSpec
from the givenParameter
instance.final ParameterSpec
createParameter
(VariableElement element) Creates an instance ofParameterSpec
from the givenVariableElement
instance.final CodeBlock
Creates a return statement with a comment, usingretValue
as the name for the return variable.final CodeBlock
Creates a return statement with a comment.final TypeSpec.Builder
createStaticClassBuilder
(CharSequence className) Returns a builder for a static class.final Optional
<AnnotationSpec> Returns a@SuppressWarnings
annotation with the given values.final Optional
<AnnotationSpec> createSuppressWarningsAnnotation
(SuppressableWarnings... warnings) Returns a@SuppressWarnings
annotation with the given values.final MethodSpec.Builder
Returns a builder for an implementation of the methodObject.toString()
that just needs the method body for completion.final MethodSpec
Returns aMethodSpec
instance for an implementation of the methodObject.toString()
.final AnnotationSpec
Returns a@UtilityClass
annotation.final CodeBlock
Returns an emptyCodeBlock
.final TypeSpec.Builder
enumBuilder
(CharSequence name) Creates a builder for anenum
type.final TypeSpec.Builder
enumBuilder
(ClassName className) Creates a builder for anenum
type.final boolean
final FieldSpec.Builder
fieldBuilder
(Type type, CharSequence name, Modifier... modifiers) Creates a builder for an instance ofFieldSpec
from the given type, name and modifiers.final FieldSpec.Builder
fieldBuilder
(TypeName type, CharSequence name, Modifier... modifiers) Creates a builder for an instance ofFieldSpec
from the given type, name and modifiers.final FieldSpec.Builder
fieldBuilder
(TypeSpec type, CharSequence name, Modifier... modifiers) Creates a builder for an instance ofFieldSpec
from the given type, name and modifiers.final CodeProcessorPREVIEW
Provides access to the code processor for this composer instance.final Layout
Returns the layout that is used to format the output.final int
Returns the maximum number of fields for a class.final int
Returns the maximum number of methods for a class.final int
hashCode()
final TypeSpec.Builder
interfaceBuilder
(CharSequence name) Creates a builder for an interface.final TypeSpec.Builder
interfaceBuilder
(ClassName className) Creates a builder for an interface.final JavaFile.Builder
javaFileBuilder
(CharSequence packageName, TypeSpec typeSpec) Creates a builder for a new instance ofJavaFile
from the given package name and class definition.final LambdaSpec.Builder
Creates a builder for an instance ofLambdaSpec
.final MethodSpec.Builder
methodBuilder
(CharSequence name) Returns a builder for a regular method.final MethodSpec.Builder
overridingMethodBuilder
(Method method) Returns a new method builder for a method that overrides the given method.final MethodSpec.Builder
Returns a new method builder for a method that overrides the given method.final MethodSpec.Builder
overridingMethodBuilder
(ExecutableElement method, DeclaredType enclosing, Types typeUtils) Returns a new method builder that overrides the given method as a member of of the given enclosing class.final ParameterSpec.Builder
parameterBuilder
(Type type, CharSequence name, Modifier... modifiers) Creates a builder for a newParameterSpec
instance.final ParameterSpec.Builder
parameterBuilder
(TypeName type, CharSequence name, Modifier... modifiers) Creates a builder for a newParameterSpec
instance.final ParameterSpec
parameterOf
(Type type, CharSequence name, Modifier... modifiers) Creates a newParameterSpec
instance for the given arguments.final ParameterSpec
parameterOf
(TypeName type, CharSequence name, Modifier... modifiers) Creates a newParameterSpec
instance for the given arguments.final List
<ParameterSpec> parametersOf
(Method method) Retrieves the parameters from the given method.final List
<ParameterSpec> parametersOf
(ExecutableElement method) Retrieves th e parameters from the given method.final TypeSpec.Builder
recordBuilder
(CharSequence name) Creates a builder for a record.final TypeSpec.Builder
recordBuilder
(ClassName className) Creates a builder for a record.final void
setMaxFields
(int value) Sets the maximum number of fields for a class.final void
setMaxMethods
(int value) Sets the maximum number of methods for a class.final CodeBlock
statementOf
(String format, Object... args) Creates a newCodeBlock
instance from the given format and arguments, usingCodeBlock.Builder.addStatement(String, Object...)
.
-
Field Details
-
JAVADOC_TAG_INHERITDOC
The Javadoc tag for inherited documentation: "{@inheritDoc}".- See Also:
-
JAVADOC_TAG_VALUE
The Javadoc tag for a constant value: "{@value}".- See Also:
-
MSG_CannotOverrideFinalClass
Message: "Cannot override method on final class \'%s\'".- See Also:
-
MSG_CannotOverrideMethod
Message: "Cannot override method with modifier \'%s\'".- See Also:
-
m_AddDebugOutput
If set totrue
, some debug information will be added to the output. -
m_Annotation_ClassVersion
The@ClassVersion
annotation. -
m_Annotation_UtilityClass
The@UtilityClass
annotation. -
m_CodeProcessor
The code processor associated with this composer instance. -
m_JavaDoc_InheritDoc
The Javadoc comment for an overriding method. -
m_Layout
The layout that is used to format the output. -
m_MaxFields
The maximum number of fields for a class; if this number is exceeded, an annotation@SuppressWarnings
withSuppressableWarnings.CLASS_WITH_TOO_MANY_FIELDS
will be added to the class. -
m_MaxMethods
The maximum number of methods for a class; if this number is exceeded, an annotation@SuppressWarnings
withSuppressableWarnings.CLASS_WITH_TOO_MANY_METHODS
will be added to the class. -
m_Method_Equals
A predefinedequals()
method. -
m_Method_HashCode
A predefinedhashCode()
method. -
m_Method_ToString
A predefinedtoString()
method.
-
-
Constructor Details
-
JavaComposer
public JavaComposer()Creates a new instance ofJavaComposer
that uses the defaultLayout
. -
JavaComposer
Creates a new instance ofJavaComposer
.- Parameters:
layout
- The layout that is used to format the output.
-
JavaComposer
Creates a new instance ofJavaComposer
that uses the defaultLayout
and adds some debug information to the output.- Parameters:
addDebugOutput
-true
if debug information should be added,false
if not.
-
JavaComposer
Creates a new instance ofJavaComposer
.- Parameters:
layout
- The layout that is used to format the output.addDebugOutput
-true
if debug information should be added,false
if not.
-
-
Method Details
-
addDebugOutput
Returns the flag that controls whether the output should be enhanced with some debug information.- Returns:
true
if the debug information should be added to the output,false
otherwise.
-
annotationBuilder
Creates a builder for an instance of an implementation for
AnnotationSpec
from the givenClassName
instance.This builder generates the code for the use of an annotation, while the builders returned from
annotationTypeBuilder(CharSequence)
andannotationTypeBuilder(ClassName)
will generate new annotation types.- Parameters:
type
- The class name.- Returns:
- The new builder.
-
annotationBuilder
Creates a builder for an instance of an implementation for
AnnotationSpec
from the givenClass
instance.This builder generates the code for the use of an annotation, while the builders returned from
annotationTypeBuilder(CharSequence)
andannotationTypeBuilder(ClassName)
will generate new annotation types.- Parameters:
type
- The class.- Returns:
- The new builder.
-
annotationTypeBuilder
Creates a builder for an annotation.
This method creates a builder for a new annotation, while
annotationBuilder(ClassName)
andannotationBuilder(Class)
will create the builder for the use of an annotation.- Parameters:
className
- The name of the annotation.- Returns:
- The builder.
-
annotationTypeBuilder
Creates a builder for an annotation.
This method creates a builder for a new annotation, while
annotationBuilder(ClassName)
andannotationBuilder(Class)
will create the builder for the use of an annotation.- Parameters:
name
- The name of the annotation.- Returns:
- The builder.
-
anonymousClassBuilder
Creates a builder for an anonymous class.- Parameters:
typeArguments
- The type arguments.- Returns:
- The builder.
-
anonymousClassBuilder
Creates a builder for an anonymous class. This method is the shortcut for
CodeBlock codeBlock = codeBlockBuilder() .add( format, args ) .build(); TypeSpec.Builder builder = anonymousClassBuilder( codeBlock );
- Parameters:
format
- The format for the code; may be empty.args
- The arguments for the code.- Returns:
- The builder.
- See Also:
-
classBuilder
Creates a builder for a regular class.- Parameters:
className
- The name of the class.- Returns:
- The builder.
-
classBuilder
Creates a builder for a regular class.- Parameters:
name
- The name of the class.- Returns:
- The builder.
-
codeBlockBuilder
Creates a builder for an instance ofCodeBlock
.- Returns:
- The new builder.
-
codeBlockOf
Creates a newCodeBlock
instance from the given format and arguments.- Note:
-
- No debug info will be added.
- Parameters:
format
- The format.args
- The arguments.- Returns:
- The new code block.
-
constructorBuilder
Creates a builder that builds an instance ofMethodSpec
for a constructor.- Returns:
- The builder.
-
createAnnotation
Creates an instance ofAnnotationSpec
from the givenAnnotation
instance.- Parameters:
annotation
- The annotation.- Returns:
- The new instance of
AnnotationSpec
.
-
createAnnotation
Creates an instance ofAnnotationSpec
from the givenAnnotation
instance.- Parameters:
annotation
- The annotation.includeDefaultValues
-true
to include the annotation's default values,false
to ignore them.- Returns:
- The new instance of
AnnotationSpec
.
-
createAnnotation
Creates an instance ofAnnotationSpec
from the givenAnnotationMirror
instance.- Parameters:
annotation
- The annotation mirror.- Returns:
- The new instance of
AnnotationSpec
.
-
createClassVersionAnnotation
Returns a@ClassVersion
annotation with a default text forClassVersion.sourceVersion()
.- Returns:
- The annotation.
- See Also:
-
createClassVersionAnnotation
Returns a@ClassVersion
annotation with the text forClassVersion.sourceVersion()
.- Parameters:
sourceVersion
- The text.- Returns:
- The annotation.
- See Also:
-
createComment4Constant
Creates the comment for a constant.- Parameters:
comment
- The already existing comment; can benull
.- Returns:
- The comment for the new constant.
-
createConstant
Creates a String constant.
A constant is an initialised
public static final
field.- Parameters:
name
- The name of the constant.value
- The value of the constant.comment
- The description for the constant.- Returns:
- The field spec for the new constant.
-
createConstant
private final FieldSpec createConstant(CharSequence name, TypeName type, Number value, CodeBlock comment) Creates a numerical constant.
A constant is an initialised
public static final
field.- Parameters:
name
- The name of the constant.type
- The type of the constant.value
- The value of the constant.comment
- The description for the constant.- Returns:
- The field spec for the new constant.
-
createConstant
Creates an integer constant.
A constant is an initialised
public static final
field.- Parameters:
name
- The name of the constant.value
- The value of the constant.comment
- The description for the constant.- Returns:
- The field spec for the new constant.
-
createConstant
public final FieldSpec createConstant(CharSequence name, Type type, CodeBlock value, CodeBlock comment) Creates a constant.
A constant is an initialised
public static final
field.- Parameters:
name
- The name of the constant.type
- The type of the constant.value
- The value of the constant.comment
- The description for the constant.- Returns:
- The field spec for the new constant.
-
createConstant
public final FieldSpec createConstant(CharSequence name, TypeName type, CodeBlock value, CodeBlock comment) Creates a constant.
A constant is an initialisedpublic final static
field.- Parameters:
name
- The name of the constant.type
- The type of the constant.value
- The value of the constant.comment
- The description for the constant.- Returns:
- The field spec for the new constant.
-
createEqualsBuilder
Returns a builder for an implementation of the method
Object.equals(Object)
that just needs the method body for completion.The argument has the name "
o
".- Returns:
- The method builder.
-
createEqualsMethod
Returns a
MethodSpec
instance for an implementation of the methodObject.equals(Object)
.The argument has the name "
o
".- Parameters:
body
- The method body.- Returns:
- The method specification.
-
createHashCodeBuilder
Returns a builder for an implementation of the methodObject.hashCode()
that just needs the method body for completion.- Returns:
- The method builder.
-
createHashCodeMethod
Returns aMethodSpec
instance for an implementation of the methodObject.hashCode()
.- Parameters:
body
- The method body.- Returns:
- The method specification.
-
createHashCodeMethod
Returns a
MethodSpec
instance for an implementation of the methodObject.hashCode()
.The created method uses
Objects.hash(Object...)
for the implementation.- Parameters:
fields
- The fields that are used for the calculation of the hash code value.- Returns:
- The method specification.
-
createHashCodeMethod
Returns a
MethodSpec
instance for an implementation of the methodObject.hashCode()
.The created method uses
Objects.hash(Object...)
for the implementation.- Parameters:
fields
- The fields that are used for the calculation of the hash code value.- Returns:
- The method specification.
-
createInheritDocComment
Returns a code block with a comment for overriding methods:/** * {@inheritDoc} */
- Returns:
- The comment.
-
createMethod
Creates a
MethodSpec
for the givenExecutableElement
.This method copies visibility modifiers, type parameters, return type, name, parameters, and
throws
declarations, but not the body (if any).- Note:
-
- The annotations will not be copied and must be added separately.
- Parameters:
method
- The method to override.- Returns:
- The builder.
-
createParameter
Creates an instance ofParameterSpec
from the givenVariableElement
instance.- Parameters:
element
- The variable element.- Returns:
- The parameter spec.
-
createParameter
Creates an instance ofParameterSpec
from the givenParameter
instance.- Parameters:
parameter
- The variable element.- Returns:
- The parameter spec.
-
createReturnStatement
Creates a return statement with a comment, usingretValue
as the name for the return variable.- Returns:
- The return statement.
-
createReturnStatement
Creates a return statement with a comment.- Parameters:
name
- The name of the variable that is returned.- Returns:
- The return statement.
-
createStaticClassBuilder
Returns a builder for a static class.
A static class is a
final
class with aprivate
constructor that has onlystatic
members; no instances are allowed for such a class, so none of thestatic
methods are factories for that class.This would be the skeleton for the new static class:
<package what.ever.package.was.chosen>; import org.tquadrat.foundation.annotation.ClassVersion; import org.tquadrat.foundation.annotation.UtilityClass; import org.tquadrat.foundation.exception.PrivateConstructorForStaticClassCalledError; @UtilityClass @ClassVersion(sourceVersion = "Generated with JavaComposer", isGenerated = true) public final class StaticClass { /** * No instance allowed for this class! */ private StaticClass() { throw new PrivateConstructorForStaticClassCalledError( StaticClass.class ); } }
- Parameters:
className
- The name of the new class.- Returns:
- The builder.
- See Also:
-
createSuppressWarningsAnnotation
public final Optional<AnnotationSpec> createSuppressWarningsAnnotation(Collection<SuppressableWarnings> warnings) Returns a
@SuppressWarnings
annotation with the given values. No annotation will be created if the given collection is empty.- Parameters:
warnings
- The warnings to suppress.- Returns:
- An instance of
Optional
that holds the new annotation.
-
createSuppressWarningsAnnotation
public final Optional<AnnotationSpec> createSuppressWarningsAnnotation(SuppressableWarnings... warnings) Returns a
@SuppressWarnings
annotation with the given values. No annotation will be created if the given collection is empty.- Parameters:
warnings
- The warnings to suppress.- Returns:
- An instance of
Optional
that holds the new annotation.
-
createToStringBuilder
Returns a builder for an implementation of the methodObject.toString()
that just needs the method body for completion.- Returns:
- The method builder.
-
createToStringMethod
Returns aMethodSpec
instance for an implementation of the methodObject.toString()
.- Parameters:
body
- The method body.- Returns:
- The method specification.
-
createUtilityClassAnnotation
Returns a@UtilityClass
annotation.- Returns:
- The annotation.
- See Also:
-
emptyCodeBlock
Returns an emptyCodeBlock
.- Returns:
- An empty code block.
-
enumBuilder
Creates a builder for anenum
type.- Parameters:
className
- The name of the class.- Returns:
- The builder.
-
enumBuilder
Creates a builder for anenum
type.- Parameters:
name
- The name of the class.- Returns:
- The builder.
-
equals
-
fieldBuilder
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.
-
fieldBuilder
public final FieldSpec.Builder fieldBuilder(TypeName type, CharSequence name, Modifier... modifiers) 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.
-
fieldBuilder
public final FieldSpec.Builder fieldBuilder(TypeSpec type, CharSequence name, Modifier... modifiers) 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.
-
getCodeProcessor
Provides access to the code processor for this composer instance.- Returns:
- The code processor.
-
getLayout
Returns the layout that is used to format the output.- Returns:
- The layout.
-
getMaxFields
Returns the maximum number of fields for a class. If this number is exceeded, an annotation
@SuppressWarnings
withSuppressableWarnings.CLASS_WITH_TOO_MANY_FIELDS
will be added to the class.- Returns:
- The maximum number of fields.
-
getMaxMethods
Returns the maximum number of methods for a class. If this number is exceeded, an annotation
@SuppressWarnings
withSuppressableWarnings.CLASS_WITH_TOO_MANY_METHODS
will be added to the class.- Returns:
- The maximum number of fields.
-
hashCode
-
interfaceBuilder
Creates a builder for an interface.- Parameters:
className
- The name of the class.- Returns:
- The builder.
-
interfaceBuilder
Creates a builder for an interface.- Parameters:
name
- The name of the class.- Returns:
- The builder.
-
javaFileBuilder
Creates a builder for a new instance ofJavaFile
from the given package name and class definition.- Parameters:
packageName
- The package name; may be empty for the default package.typeSpec
- The class definition.- Returns:
- The builder.
-
lambdaBuilder
Creates a builder for an instance ofLambdaSpec
.- Returns:
- The new builder.
-
methodBuilder
Returns a builder for a regular method.- Parameters:
name
- The name for the method.- Returns:
- The builder.
-
overridingMethodBuilder
Returns a new method builder for a method that overrides the given method.
This new builder will copy visibility modifiers, type parameters, return type, name, parameters, and
throws
declarations. AnOverride
annotation will be added.- Note:
-
- In JavaPoet 1.2 through 1.7 this method retained annotations from the method and parameters of the overridden method. Since JavaPoet 1.8 and in JavaComposer annotations must be added separately.
- Parameters:
method
- The method to override.- Returns:
- The builder.
-
overridingMethodBuilder
public final MethodSpec.Builder overridingMethodBuilder(ExecutableElement method, DeclaredType enclosing, Types typeUtils) Returns a new method builder that overrides the given method as a member of of the given enclosing class. This will resolve type parameters: for example overriding
Comparable.compareTo(T)
in a type that implementsComparable<Movie>
, theT
parameter will be resolved toMovie
.This will copy its visibility modifiers, type parameters, return type, name, parameters, and
throws
declarations. AnOverride
annotation will be added.- Note:
-
- In JavaPoet 1.2 through 1.7 this method retained annotations from the method and parameters of the overridden method. Since JavaPoet 1.8 and in JavaComposer annotations must be added separately.
- Parameters:
method
- The method to override.enclosing
- The enclosing class for the method.typeUtils
- An implementation of some utility methods for operating on types, as provided by the processing environment of an annotation processor.- Returns:
- The builder.
-
overridingMethodBuilder
Returns a new method builder for a method that overrides the given method.
This new builder will copy visibility modifiers, type parameters, return type, name, parameters, and
throws
declarations. AnOverride
annotation will be added, but any other annotation will be omitted; this is consistent with the behaviour ofoverridingMethodBuilder(ExecutableElement)
andoverridingMethodBuilder(ExecutableElement, DeclaredType, Types)
.- Parameters:
method
- The method to override.- Returns:
- The builder.
-
parameterBuilder
public final ParameterSpec.Builder parameterBuilder(Type type, CharSequence name, Modifier... modifiers) Creates a builder for a newParameterSpec
instance.- Parameters:
type
- The type of the new parameter.name
- The name of the new parameter.modifiers
- The modifiers for the new parameter.- Returns:
- The builder.
-
parameterBuilder
public final ParameterSpec.Builder parameterBuilder(TypeName type, CharSequence name, Modifier... modifiers) Creates a builder for a newParameterSpec
instance.- Parameters:
type
- The type of the new parameter.name
- The name of the new parameter.modifiers
- The modifiers for the new parameter.- Returns:
- The builder.
-
parameterOf
Creates a newParameterSpec
instance for the given arguments.- Parameters:
type
- The type of the new parameter.name
- The name of the new parameter.modifiers
- The modifiers for the new parameter.- Returns:
- The parameter specification.
-
parameterOf
Creates a newParameterSpec
instance for the given arguments.- Parameters:
type
- The type of the new parameter.name
- The name of the new parameter.modifiers
- The modifiers for the new parameter.- Returns:
- The parameter specification.
-
parametersOf
Retrieves th e parameters from the given method.- Parameters:
method
- The method.- Returns:
- The parameters of the given method; the returned list can be
empty, but it will not be
null
.
-
parametersOf
Retrieves the parameters from the given method.- Parameters:
method
- The method.- Returns:
- The parameters of the given method; the returned list can be
empty, but it will not be
null
.
-
recordBuilder
Creates a builder for a record.- Parameters:
className
- The name of the record type.- Returns:
- The builder.
-
recordBuilder
Creates a builder for a record.- Parameters:
name
- The name of the record type.- Returns:
- The builder.
-
setMaxFields
Sets the maximum number of fields for a class. If this number is exceeded, an annotation
@SuppressWarnings
withSuppressableWarnings.CLASS_WITH_TOO_MANY_FIELDS
will be added to the class.Setting the value to 0 or a negative value will disable this feature.
- Parameters:
value
- The value.
-
setMaxMethods
Sets the maximum number of methods for a class. If this number is exceeded, an annotation
@SuppressWarnings
withSuppressableWarnings.CLASS_WITH_TOO_MANY_METHODS
will be added to the class.Setting the value to 0 or a negative value will disable this feature.
- Parameters:
value
- The value.
-
statementOf
Creates a newCodeBlock
instance from the given format and arguments, usingCodeBlock.Builder.addStatement(String, Object...)
.- Note:
-
- No debug info will be added.
- Parameters:
format
- The format.args
- The arguments.- Returns:
- The new code block.
-