Class MethodSpecImpl
- All Implemented Interfaces:
MethodSpec
MethodSpec
.- Author:
- Square,Inc.
- Modified by:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: MethodSpecImpl.java 1105 2024-02-28 12:58:46Z tquadrat $
- Since:
- 0.0.5
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.javacomposer.internal.MethodSpecImpl"
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from interface org.tquadrat.foundation.javacomposer.MethodSpec
MethodSpec.Builder
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final List
<AnnotationSpecImpl> The annotations of this method.Lazily initialised return value oftoString()
for this instance.private final CodeBlockImpl
The code of this method.private final JavaComposer
The reference to the factory.private final Optional
<CodeBlockImpl> The default value of this method; only applicable for annotations.private final List
<TypeNameImpl> The declared exceptions for this method.private final CodeBlockImpl
The Javadoc comment of this method.The modifiers of this method.private final String
The name of this method.private final List
<ParameterSpecImpl> The parameters of this method.private final CodeBlockImpl
The comment for the return value of the method.private final TypeNameImpl
The return type of the method.The static imports.private final List
<TypeVariableNameImpl> The type variables of this method.private final boolean
The flag that indicates whether a parameter (the last one) is avarargs
parameter.Fields inherited from interface org.tquadrat.foundation.javacomposer.MethodSpec
CONSTRUCTOR
-
Constructor Summary
ConstructorsConstructorDescriptionMethodSpecImpl
(MethodSpecImpl.BuilderImpl builder) Creates a newMethodSpecImpl
instance. -
Method Summary
Modifier and TypeMethodDescriptionfinal Optional
<CodeBlockImpl> Returns the default value of this method.final void
emit
(CodeWriter codeWriter, Optional<String> enclosingName, Collection<Modifier> implicitModifiers) Emits this method to the given code writer.private final void
emit4Foundation
(CodeWriter codeWriter, Optional<String> enclosingName, Collection<Modifier> implicitModifiers) Emits this method to the given code writer, using the Foundation layout.private final void
emit4JavaPoet
(CodeWriter codeWriter, Optional<String> enclosingName, Collection<Modifier> implicitModifiers) Emits this method to the given code writer, using the JavaPoet layout.private final void
emitJavadoc
(CodeWriter codeWriter) Emits the Javadoc to the given code writer.final boolean
final List
<TypeNameImpl> Returns the declared exceptions for this method.final JavaComposer
Returns theJavaComposer
factory.Returns the static imports for this code block.final int
hashCode()
final boolean
hasModifier
(Modifier modifier) Checks whether the method has the given modifier.private final String
The initializer form_CachedString
.final boolean
Checks whether this method is a constructor.private static final boolean
lastParameterIsArray
(SequencedCollection<ParameterSpecImpl> parameters) Checks whether the last entry of the given parameter list is an array.static final MethodSpecImpl.BuilderImpl
methodBuilder
(CharSequence name) Deprecated, for removal: This API element is subject to removal in a future version.Returns the modifiers of this method.final String
name()
Returns the name of this method.static final MethodSpecImpl.BuilderImpl
overriding
(Method method) Deprecated, for removal: This API element is subject to removal in a future version.Got obsolete with the introduction ofJavaComposer
.static final MethodSpecImpl.BuilderImpl
overriding
(ExecutableElement method) Deprecated, for removal: This API element is subject to removal in a future version.Got obsolete with the introduction ofJavaComposer
.static final MethodSpecImpl.BuilderImpl
overriding
(ExecutableElement method, DeclaredType enclosing, Types types) Deprecated, for removal: This API element is subject to removal in a future version.Got obsolete with the introduction ofJavaComposer
.final Collection
<ParameterSpec> Returns the parameters for this method.final TypeName
Return the return type for this method.final String
Returns the signature for this method.toBuilder
(boolean omitCode) Returns a builder that is initialised with all the components of this method, like the result of a call toMethodSpec.toBuilder()
, but without the body code, if specified that way.final String
toString()
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.tquadrat.foundation.javacomposer.MethodSpec
toBuilder
-
Field Details
-
m_Annotations
The annotations of this method. -
m_CachedString
Lazily initialised return value oftoString()
for this instance. -
m_Code
The code of this method. -
m_Composer
The reference to the factory. -
m_DefaultValue
The default value of this method; only applicable for annotations. -
m_Exceptions
The declared exceptions for this method. -
m_Javadoc
The Javadoc comment of this method. -
m_Modifiers
The modifiers of this method. -
m_Name
The name of this method. -
m_Parameters
The parameters of this method. -
m_ReturnComment
The comment for the return value of the method. -
m_ReturnType
The return type of the method. -
m_StaticImports
The static imports. -
m_TypeVariables
The type variables of this method. -
m_Varargs
The flag that indicates whether a parameter (the last one) is avarargs
parameter.
-
-
Constructor Details
-
MethodSpecImpl
Creates a newMethodSpecImpl
instance.- Parameters:
builder
- The builder.
-
-
Method Details
-
defaultValue
Returns the default value of this method.- Returns:
- An instance of
Optional
that holds the default value.
-
emitJavadoc
Emits the Javadoc to the given code writer.- Parameters:
codeWriter
- The code writer.- Throws:
UncheckedIOException
- A problem occurred when writing to the output target.
-
emit
public final void emit(CodeWriter codeWriter, Optional<String> enclosingName, Collection<Modifier> implicitModifiers) throws UncheckedIOException Emits this method to the given code writer.- Parameters:
codeWriter
- The code writer.enclosingName
- The name of the type that owns this method.implicitModifiers
- The implicit modifiers for this method.- Throws:
UncheckedIOException
- A problem occurred when writing to the output target.
-
emit4Foundation
private final void emit4Foundation(CodeWriter codeWriter, Optional<String> enclosingName, Collection<Modifier> implicitModifiers) throws UncheckedIOException Emits this method to the given code writer, using the Foundation layout.- Parameters:
codeWriter
- The code writer.enclosingName
- The name of the type that owns this method.implicitModifiers
- The implicit modifiers for this method.- Throws:
UncheckedIOException
- A problem occurred when writing to the output target.
-
emit4JavaPoet
private final void emit4JavaPoet(CodeWriter codeWriter, Optional<String> enclosingName, Collection<Modifier> implicitModifiers) throws UncheckedIOException Emits this method to the given code writer, using the JavaPoet layout.- Parameters:
codeWriter
- The code writer.enclosingName
- The name of the type that owns this method.implicitModifiers
- The implicit modifiers for this method.- Throws:
UncheckedIOException
- A problem occurred when writing to the output target.
-
equals
- Specified by:
equals
in interfaceMethodSpec
- Overrides:
equals
in classObject
-
exceptions
Returns the declared exceptions for this method.- Returns:
- The declared exceptions.
-
getFactory
Returns theJavaComposer
factory.- Returns:
- The reference to the factory.
-
getStaticImports
Returns the static imports for this code block.- Returns:
- The static imports.
-
hashCode
- Specified by:
hashCode
in interfaceMethodSpec
- Overrides:
hashCode
in classObject
-
hasModifier
Checks whether the method has the given modifier.- Specified by:
hasModifier
in interfaceMethodSpec
- Parameters:
modifier
- The modifier.- Returns:
true
if the given modifier has been applied to this method,false
otherwise.
-
initializeCachedString
The initializer form_CachedString
.- Returns:
- The return value for
toString()
.
-
isConstructor
Checks whether this method is a constructor.- Specified by:
isConstructor
in interfaceMethodSpec
- Returns:
true
if the method is a constructor,false
if it is a regular method.
-
lastParameterIsArray
private static final boolean lastParameterIsArray(SequencedCollection<ParameterSpecImpl> parameters) Checks whether the last entry of the given parameter list is an array.- Parameters:
parameters
- The parameter list.- Returns:
true
if the last entry of the given parameter list is an array type,false
if not.
-
methodBuilder
@Deprecated(since="0.2.0", forRemoval=true) @API(status=DEPRECATED, since="0.0.5") public static final MethodSpecImpl.BuilderImpl methodBuilder(CharSequence name) Deprecated, for removal: This API element is subject to removal in a future version.Got obsolete with the introduction ofJavaComposer
.Returns a builder for a regular method.- Parameters:
name
- The name for the method.- Returns:
- The builder.
-
modifiers
Returns the modifiers of this method.- Specified by:
modifiers
in interfaceMethodSpec
- Returns:
- The modifiers.
-
name
Returns the name of this method.- Specified by:
name
in interfaceMethodSpec
- Returns:
- The name
-
overriding
@Deprecated(since="0.2.0", forRemoval=true) @API(status=DEPRECATED, since="0.0.5") public static final MethodSpecImpl.BuilderImpl overriding(ExecutableElement method) Deprecated, for removal: This API element is subject to removal in a future version.Got obsolete with the introduction ofJavaComposer
.Returns a new method spec 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. An
Override
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.
-
overriding
@Deprecated(since="0.2.0", forRemoval=true) @API(status=DEPRECATED, since="0.0.5") public static final MethodSpecImpl.BuilderImpl overriding(ExecutableElement method, DeclaredType enclosing, Types types) Deprecated, for removal: This API element is subject to removal in a future version.Got obsolete with the introduction ofJavaComposer
.Returns a new method spec 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. An
Override
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.types
- The type variables.- Returns:
- The builder.
-
overriding
@Deprecated(since="0.2.0", forRemoval=true) @API(status=DEPRECATED, since="0.0.8") public static final MethodSpecImpl.BuilderImpl overriding(Method method) Deprecated, for removal: This API element is subject to removal in a future version.Got obsolete with the introduction ofJavaComposer
.Returns a new method spec 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. An
Override
annotation will be added, but any other annotation will be omitted; this is consistent with the behaviour ofoverriding(ExecutableElement)
andoverriding(ExecutableElement, DeclaredType, Types)
.- Parameters:
method
- The method to override.- Returns:
- The builder.
-
parameters
Returns the parameters for this method.- Specified by:
parameters
in interfaceMethodSpec
- Returns:
- The parameters.
-
returnType
Return the return type for this method.- Specified by:
returnType
in interfaceMethodSpec
- Returns:
- The return type; will never be
null
, not even for a constructor.
-
signature
Returns the signature for this method.- Specified by:
signature
in interfaceMethodSpec
- Returns:
- The signature.
-
toBuilder
Returns a builder that is initialised with all the components of this method, like the result of a call to
MethodSpec.toBuilder()
, but without the body code, if specified that way.If the body is not copied, the method will be marked as
ABSTRACT
, too.- Specified by:
toBuilder
in interfaceMethodSpec
- Parameters:
omitCode
-true
if the body code should not be copied,false
otherwise; in the latter case, the result is the same as forMethodSpec.toBuilder()
.- Returns:
- The builder.
-
toString
- Specified by:
toString
in interfaceMethodSpec
- Overrides:
toString
in classObject
-
JavaComposer
.