Uses of Interface
org.tquadrat.foundation.javacomposer.ParameterSpec
Packages that use ParameterSpec
Package
Description
JavaComposer is a Java toolkit for the generation of Java source
code.
The implementations for the interfaces from the package
org.tquadrat.foundation.javacomposer
.-
Uses of ParameterSpec in org.tquadrat.foundation.javacomposer
Methods in org.tquadrat.foundation.javacomposer that return ParameterSpecModifier and TypeMethodDescriptionParameterSpec.Builder.build()
Builds a newParameterSpec
instance from the added components.final ParameterSpec
JavaComposer.createParameter
(Parameter parameter) Creates an instance ofParameterSpec
from the givenParameter
instance.final ParameterSpec
JavaComposer.createParameter
(VariableElement element) Creates an instance ofParameterSpec
from the givenVariableElement
instance.final ParameterSpec
JavaComposer.parameterOf
(Type type, CharSequence name, Modifier... modifiers) Creates a newParameterSpec
instance for the given arguments.final ParameterSpec
JavaComposer.parameterOf
(TypeName type, CharSequence name, Modifier... modifiers) Creates a newParameterSpec
instance for the given arguments.Methods in org.tquadrat.foundation.javacomposer that return types with arguments of type ParameterSpecModifier and TypeMethodDescriptionMethodSpec.parameters()
Returns the parameters for this method.final List
<ParameterSpec> JavaComposer.parametersOf
(Method method) Retrieves the parameters from the given method.final List
<ParameterSpec> JavaComposer.parametersOf
(ExecutableElement method) Retrieves th e parameters from the given method.Methods in org.tquadrat.foundation.javacomposer with parameters of type ParameterSpecModifier and TypeMethodDescriptionLambdaSpec.Builder.addParameter
(ParameterSpec parameterSpec) Adds a parameter for the lambda.MethodSpec.Builder.addParameter
(ParameterSpec parameterSpec) Adds a parameter for the method.Method parameters in org.tquadrat.foundation.javacomposer with type arguments of type ParameterSpecModifier and TypeMethodDescriptionLambdaSpec.Builder.addParameters
(Iterable<? extends ParameterSpec> parameterSpecs) Adds parameters for the lambda.MethodSpec.Builder.addParameters
(Iterable<? extends ParameterSpec> parameterSpecs) Adds parameters for the method. -
Uses of ParameterSpec in org.tquadrat.foundation.javacomposer.internal
Classes in org.tquadrat.foundation.javacomposer.internal that implement ParameterSpecMethods in org.tquadrat.foundation.javacomposer.internal that return types with arguments of type ParameterSpecModifier and TypeMethodDescriptionfinal Collection
<ParameterSpec> MethodSpecImpl.parameters()
Returns the parameters for this method.Methods in org.tquadrat.foundation.javacomposer.internal with parameters of type ParameterSpecModifier and TypeMethodDescriptionLambdaSpecImpl.BuilderImpl.addParameter
(ParameterSpec parameterSpec) Adds a parameter for the lambda.MethodSpecImpl.BuilderImpl.addParameter
(ParameterSpec parameterSpec) Adds a parameter for the method.Method parameters in org.tquadrat.foundation.javacomposer.internal with type arguments of type ParameterSpecModifier and TypeMethodDescriptionLambdaSpecImpl.BuilderImpl.addParameters
(Iterable<? extends ParameterSpec> parameterSpecs) Adds parameters for the lambda.MethodSpecImpl.BuilderImpl.addParameters
(Iterable<? extends ParameterSpec> parameterSpecs) Adds parameters for the method.