Interface LambdaSpec.Builder
- All Known Implementing Classes:
LambdaSpecImpl.BuilderImpl
- Enclosing interface:
LambdaSpec
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"
-
Method Summary
Modifier and TypeMethodDescriptionAdds code for the lambda body.Adds code for the lambda body.addComment
(String format, Object... args) Adds a comment for the lambda body.addParameter
(Type type, String name) Adds a parameter for the lambda.addParameter
(String name) Adds a parameter for the lambda.addParameter
(ParameterSpec parameterSpec) Adds a parameter for the lambda.addParameter
(TypeName type, String name) Adds a parameter for the lambda.addParameters
(Iterable<? extends ParameterSpec> parameterSpecs) Adds parameters for the lambda.addStatement
(String format, Object... args) Adds a statement to the code for the lambda body.beginControlFlow
(String controlFlow, Object... args) Adds the begin of a control flow for the lambda body.build()
Creates a newLambdaSpec
instance from the components that have been added to this builder.Ends the current control flow for the lambda body.endControlFlow
(String controlFlow, Object... args) Ends the current control flow for the lambda body; this version is only used fordo-while
constructs.nextControlFlow
(String controlFlow, Object... args) Begins another control flow for the lambda body.
-
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 newLambdaSpec
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:
-