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"

UML Diagram for "org.tquadrat.foundation.javacomposer.MethodSpec"

UML Diagram for "org.tquadrat.foundation.javacomposer.MethodSpec"
  • Field Details

  • Method Details

    • equals

      boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      int hashCode()
      Overrides:
      hashCode in class Object
    • hasModifier

      boolean hasModifier(Modifier modifier)
      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

      @API(status=STABLE, since="0.0.8") MethodSpec.Builder toBuilder(boolean omitCode)

      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 for toBuilder().
      Returns:
      The builder.
    • toString

      Overrides:
      toString in class Object