Interface MethodSpec
- All Known Implementing Classes:
MethodSpecImpl
@ClassVersion(sourceVersion="$Id: MethodSpec.java 1085 2024-01-05 16:23:28Z tquadrat $")
@API(status=STABLE,
since="0.0.5")
public sealed interface MethodSpec
permits MethodSpecImpl
The specification for a generated constructor or method declaration.
- Author:
- Square,Inc.
- Modified by:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: MethodSpec.java 1085 2024-01-05 16:23:28Z tquadrat $
- Since:
- 0.0.5
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.javacomposer.MethodSpec"
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
The "name" for a method that is in fact a constructor: "<init>". -
Method Summary
Modifier and TypeMethodDescriptionboolean
int
hashCode()
boolean
hasModifier
(Modifier modifier) Checks whether the method has the given modifier.boolean
Checks whether this method is a constructor.Returns the modifiers of this method.name()
Returns the name of this method.Returns the parameters for this method.Return the return type for this method.Returns the signature for this method.default MethodSpec.Builder
Returns a builder that is initialised with all the components of this method.toBuilder
(boolean omitCode) Returns a builder that is initialised with all the components of this method, like the result of a call totoBuilder()
, but without the body code, if specified that way.toString()
-
Field Details
-
CONSTRUCTOR
The "name" for a method that is in fact a constructor: "<init>".- See Also:
-
-
Method Details
-
equals
-
hashCode
int hashCode() -
hasModifier
Checks whether the method has the given modifier.- Parameters:
modifier
- The modifier.- Returns:
true
if the given modifier has been applied to this method,false
otherwise.
-
isConstructor
boolean isConstructor()Checks whether this method is a constructor.- Returns:
true
if the method is a constructor,false
if it is a regular method.
-
modifiers
Returns the modifiers of this method.- Returns:
- The modifiers.
-
name
Returns the name of this method.- Returns:
- The name
-
parameters
Returns the parameters for this method.- Returns:
- The parameters.
-
signature
Returns the signature for this method.- Returns:
- The signature.
-
returnType
Return the return type for this method.- Returns:
- The return type; will never be
null
, not even for a constructor.
-
toBuilder
Returns a builder that is initialised with all the components of this method. Use this to implement a method from an interface.- Returns:
- The builder.
- See Also:
-
toBuilder
Returns a builder that is initialised with all the components of this method, like the result of a call to
toBuilder()
, but without the body code, if specified that way.If the body is not copied, the method will be marked as
ABSTRACT
, too.- Parameters:
omitCode
-true
if the body code should not be copied,false
otherwise; in the latter case, the result is the same as fortoBuilder()
.- Returns:
- The builder.
-
toString
-