Interface MethodSpec.Builder

All Known Implementing Classes:
MethodSpecImpl.BuilderImpl
Enclosing interface:
MethodSpec

@ClassVersion(sourceVersion="$Id: MethodSpec.java 1085 2024-01-05 16:23:28Z tquadrat $") @API(status=STABLE, since="0.0.5") public static sealed interface MethodSpec.Builder permits MethodSpecImpl.BuilderImpl
The builder for an instance of MethodSpec
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.Builder"

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

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

    • addAnnotation

      Adds an annotation for the method.
      Note:
      • No debug information can be added when adding an annotation.
      Parameters:
      annotationSpec - The annotation.
      Returns:
      This Builder instance.
    • addAnnotation

      Adds an annotation for the method.
      Note:
      • No debug information can be added when adding an annotation.
      Parameters:
      annotation - The annotation.
      Returns:
      This Builder instance.
    • addAnnotation

      Adds an annotation for the method.
      Note:
      • No debug information can be added when adding an annotation.
      Parameters:
      annotationClass - The annotation.
      Returns:
      This Builder instance.
    • addAnnotations

      Adds annotations for the method.
      Note:
      • No debug information can be added when adding an annotation.
      Parameters:
      annotationSpecs - The annotations.
      Returns:
      This Builder instance.
    • addCode

      Adds code for the method.
      Parameters:
      codeBlock - The code.
      Returns:
      This Builder instance.
    • addCode

      Adds code for the method.
      Parameters:
      format - The format.
      args - The arguments.
      Returns:
      This Builder instance.
    • addComment

      Adds a comment for the method.
      Note:
      • No debug info is added when a comment is added.
      Parameters:
      format - The format.
      args - The arguments.
      Returns:
      This Builder instance.
    • addException

      Adds the declaration for an exception for the method.
      Note:
      • No debug info is added when an exception is added.
      Parameters:
      exception - The exception.
      Returns:
      This Builder instance.
    • addException

      Adds the declaration for an exception for the method.
      Note:
      • No debug info is added when an exception is added.
      Parameters:
      exception - The exception.
      Returns:
      This Builder instance.
    • addExceptions

      Adds the declarations for exceptions for the method.
      Note:
      • No debug info is added when an exception is added.
      Parameters:
      exceptions - The exceptions.
      Returns:
      This Builder instance.
    • addJavadoc

      Adds a Javadoc comment for the method.
      Note:
      • No debug info is added when a comment is added.
      Parameters:
      block - The Javadoc comment.
      Returns:
      This Builder instance.
    • addJavadoc

      Adds a Javadoc comment for the method.
      Note:
      • No debug info is added when a comment is added.
      Parameters:
      format - The format.
      args - The arguments.
      Returns:
      This Builder instance.
    • addModifiers

      Adds modifiers for the method.
      Parameters:
      modifiers - The modifiers.
      Returns:
      This Builder instance.
    • addModifiers

      Adds modifiers for the method.
      Parameters:
      modifiers - The modifiers.
      Returns:
      This Builder instance.
    • addNamedCode

      Adds code using named arguments for the method.

      Named arguments specify their name after the '$' followed by a colon ":" and the corresponding type character. Argument names consist of characters in a-z, A-Z, 0-9, and _ and must start with a lowercase character.

      For example, to refer to the type Integer with the argument name clazz use a format string containing $clazz:T and include the key clazz with value java.lang.Integer.class in the argument map.

      Parameters:
      format - The format.
      args - The arguments.
      Returns:
      This Builder instance.
    • addParameter

      Adds a parameter for the method.
      Note:
      • No debug info is added when a parameter is added.
      Parameters:
      parameterSpec - The parameter.
      Returns:
      This Builder instance.
    • addParameter

      MethodSpec.Builder addParameter(Type type, String name, Modifier... modifiers)
      Adds a parameter for the method.
      Note:
      • No debug info is added when a parameter is added.
      Parameters:
      type - The type of the parameter.
      name - The name of the parameter.
      modifiers - The modifiers for the parameter.
      Returns:
      This Builder instance.
    • addParameter

      Adds a parameter for the method.
      Note:
      • No debug info is added when a parameter is added.
      Parameters:
      type - The type of the parameter.
      name - The name of the parameter.
      modifiers - The modifiers for the parameter.
      Returns:
      This Builder instance.
    • addParameters

      Adds parameters for the method.
      Note:
      • No debug info is added when a parameter is added.
      Parameters:
      parameterSpecs - The parameters.
      Returns:
      This Builder instance.
    • addStatement

      Adds a statement to the code for the method.
      Parameters:
      format - The format.
      args - The arguments.
      Returns:
      This Builder instance.
    • addStaticImport

      Adds a static import.
      Parameters:
      clazz - The class.
      names - The names of the elements from the given class that are to be imported.
      Returns:
      This Builder instance.
      Since:
      0.2.0
    • addStaticImport

      Adds a static import.
      Parameters:
      className - The class.
      names - The names of the elements from the given class that are to be imported.
      Returns:
      This Builder instance.
      Since:
      0.2.0
    • addStaticImport

      Adds a static import for the given enum value.
      Parameters:
      constant - The enum value.
      Returns:
      This Builder instance.
      Since:
      0.2.0
    • addTypeVariable

      Adds a type variable for the method.
      Note:
      • No debug info is added when a type variable is added.
      Parameters:
      typeVariable - The type variable.
      Returns:
      This Builder instance.
    • addTypeVariables

      Adds type variables for the method.
      Note:
      • No debug info is added when a parameter is added.
      Parameters:
      typeVariables - The type variables.
      Returns:
      This Builder instance.
    • beginControlFlow

      Adds the beginning of a control flow for the method.
      Parameters:
      controlFlow - The control flow construct and its code, such as "if (foo == 5)"; it should not contain braces or newline characters.
      args - The arguments.
      Returns:
      This Builder instance.
      See Also:
    • build

      Creates a new MethodSpec instance from the components that have been added to this builder.
      Returns:
      The MethodSpec instance.
    • defaultValue

      Sets the default value for this method.
      Parameters:
      defaultValue - The default value.
      Returns:
      This Builder instance.
    • defaultValue

      Sets the default value for this method.
      Parameters:
      format - The format.
      args - The arguments.
      Returns:
      This Builder instance.
    • endControlFlow

      Ends the current control flow for the method.
      Returns:
      This Builder instance.
      See Also:
    • endControlFlow

      Ends the current control flow for the method; this version is only used for do-while constructs.
      Parameters:
      controlFlow - The optional control flow construct and its code, such as "while(foo == 20)"; it should not contain braces or newline characters.
      args - The arguments.
      Returns:
      This Builder instance.
      See Also:
    • nextControlFlow

      Begins another control flow for the method.
      Parameters:
      controlFlow - The control flow construct and its code, such as "else if (foo == 10)"; it should not contain braces or newline characters.
      args - The arguments.
      Returns:
      This Builder instance.
      See Also:
    • returns

      Sets the return type for the method.
      Parameters:
      returnType - The return type.
      Returns:
      This Builder instance.
    • returns

      MethodSpec.Builder returns(Type returnType, String format, Object... args)
      Sets the return type for the method and adds the respective Javadoc comment.
      Parameters:
      returnType - The return type.
      format - The format for the return comment.
      args - The arguments for the return comment.
      Returns:
      This Builder instance.
    • returns

      Sets the return type for the method.
      Parameters:
      returnType - The return type.
      Returns:
      This Builder instance.
    • returns

      MethodSpec.Builder returns(TypeName returnType, String format, Object... args)
      Sets the return type for the method and adds the respective Javadoc comment.
      Parameters:
      returnType - The return type.
      format - The format for the return comment.
      args - The arguments for the return comment.
      Returns:
      This Builder instance.
    • varargs

      Sets the flag that indicates whether a parameter (the last one) is a varargs parameter to true.
      Returns:
      This Builder instance.
    • varargs

      MethodSpec.Builder varargs(boolean varargs)
      Sets the flag that indicates whether a parameter (the last one) is a varargs parameter.
      Parameters:
      varargs - true if the last parameter is a varargs parameter, false if not.
      Returns:
      This Builder instance.