Interface LambdaSpec.Builder

All Known Implementing Classes:
LambdaSpecImpl.BuilderImpl
Enclosing interface:
LambdaSpec

@ClassVersion(sourceVersion="$Id: LambdaSpec.java 1085 2024-01-05 16:23:28Z tquadrat $") @API(status=STABLE, since="0.0.5") public static sealed interface LambdaSpec.Builder permits LambdaSpecImpl.BuilderImpl
The builder for an instance of LambdaSpec
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: LambdaSpec.java 1085 2024-01-05 16:23:28Z tquadrat $
Since:
0.0.5
UML Diagram
UML Diagram for "org.tquadrat.foundation.javacomposer.LambdaSpec.Builder"

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

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

    • addCode

      Adds code for the lambda body.

      If only this method is called only once to add code to the lambda body, the short, single line form for the lambda expression will be emitted. That this will result in valid code requires that the given code block has an appropriate contents.

      Parameters:
      codeBlock - The code.
      Returns:
      This Builder instance.
    • addCode

      Adds code for the lambda body.

      If only this method is called only once to add code to the lambda body, the short, single line form for the lambda expression will be emitted.

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

      Adds a comment for the lambda body.

      A call to this method forces the multi-line emit format for the lambda expression.

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

      Adds a parameter for the lambda.

      The type of the parameter is inferred.

      Parameters:
      name - The name of the parameter.
      Returns:
      This Builder instance.
    • addParameter

      Adds a parameter for the lambda. Only type and name of the given parameter are considered, annotations or modifiers will be ignored.
      Parameters:
      parameterSpec - The parameter.
      Returns:
      This Builder instance.
    • addParameter

      Adds a parameter for the lambda.
      Parameters:
      type - The type of the parameter.
      name - The name of the parameter.
      Returns:
      This Builder instance.
    • addParameter

      Adds a parameter for the lambda.
      Parameters:
      type - The type of the parameter.
      name - The name of the parameter.
      Returns:
      This Builder instance.
    • addParameters

      Adds parameters for the lambda. Only type and name of the given parameters are considered, annotations or modifiers will be ignored.
      Parameters:
      parameterSpecs - The parameters.
      Returns:
      This Builder instance.
    • addStatement

      Adds a statement to the code for the lambda body.

      A call to this method forces the multi-line emit format for the lambda expression.

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

      Adds the begin of a control flow for the lambda body.

      A call to this method forces the multi-line emit format for the lambda expression.

      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 LambdaSpec instance from the components that have been added to this builder.
      Returns:
      The MethodSpec instance.
    • endControlFlow

      Ends the current control flow for the lambda body.

      A call to this method forces the multi-line emit format for the lambda expression.

      Returns:
      This Builder instance.
      See Also:
    • endControlFlow

      Ends the current control flow for the lambda body; this version is only used for do-while constructs.

      A call to this method forces the multi-line emit format for the lambda expression.

      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 lambda body.

      A call to this method forces the multi-line emit format for the lambda expression.

      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: