Uses of Interface
org.tquadrat.foundation.javacomposer.CodeBlock
Packages that use CodeBlock
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 CodeBlock in org.tquadrat.foundation.javacomposer
Fields in org.tquadrat.foundation.javacomposer with type parameters of type CodeBlockModifier and TypeFieldDescriptionJavaComposer.m_JavaDoc_InheritDoc
The Javadoc comment for an overriding method.Methods in org.tquadrat.foundation.javacomposer that return CodeBlockModifier and TypeMethodDescriptionCodeBlock.Builder.build()
Creates theCodeBlock
from the added components.final CodeBlock
JavaComposer.codeBlockOf
(String format, Object... args) Creates a newCodeBlock
instance from the given format and arguments.private final CodeBlock
JavaComposer.createComment4Constant
(CodeBlock comment) Creates the comment for a constant.final CodeBlock
JavaComposer.createInheritDocComment()
Returns a code block with a comment for overriding methods:final CodeBlock
JavaComposer.createReturnStatement()
Creates a return statement with a comment, usingretValue
as the name for the return variable.final CodeBlock
JavaComposer.createReturnStatement
(CharSequence name) Creates a return statement with a comment.static final CodeBlock
SuppressableWarnings.createSuppressWarningsCommentForIDEA
(JavaComposer factory, SuppressableWarnings... suppress) Creates a comment (for IntelliJ IDEA) that suppresses the given warnings.final CodeBlock
JavaComposer.emptyCodeBlock()
Returns an emptyCodeBlock
.Joins this code block with the given code blocks into a single newCodeBlock
instance, each separated by the given separator.Joins this code block with the given code blocks into a single newCodeBlock
instance, each separated by the given separator.CodeProcessor.process
(StringTemplatePREVIEW template) final CodeBlock
JavaComposer.statementOf
(String format, Object... args) Creates a newCodeBlock
instance from the given format and arguments, usingCodeBlock.Builder.addStatement(String, Object...)
.Methods in org.tquadrat.foundation.javacomposer with parameters of type CodeBlockModifier and TypeMethodDescriptionAdds aCodeBlock
instance.Adds code for the lambda body.Adds code for the method.TypeSpec.Builder.addEnumConstant
(CharSequence name, CodeBlock javaDoc) Adds anenum
constant for the type to build.TypeSpec.Builder.addInitializerBlock
(CodeBlock block) Adds code to the initializer block.FieldSpec.Builder.addJavadoc
(CodeBlock block) Adds a Javadoc comment for the field.MethodSpec.Builder.addJavadoc
(CodeBlock block) Adds a Javadoc comment for the method.ParameterSpec.Builder.addJavadoc
(CodeBlock block) Adds text to the JavaDoc for the parameter.TypeSpec.Builder.addJavadoc
(CodeBlock block) Adds text to the Javadoc for the type.AnnotationSpec.Builder.addMember
(CharSequence name, CodeBlock codeBlock) Adds a building block.TypeSpec.Builder.addStaticBlock
(CodeBlock block) Adds a static block for the type.final TypeSpec.Builder
JavaComposer.anonymousClassBuilder
(CodeBlock typeArguments) Creates a builder for an anonymous class.private final CodeBlock
JavaComposer.createComment4Constant
(CodeBlock comment) Creates the comment for a constant.final FieldSpec
JavaComposer.createConstant
(CharSequence name, int value, CodeBlock comment) Creates an integer constant.final FieldSpec
JavaComposer.createConstant
(CharSequence name, Type type, CodeBlock value, CodeBlock comment) Creates a constant.final FieldSpec
JavaComposer.createConstant
(CharSequence name, String value, CodeBlock comment) Creates a String constant.private final FieldSpec
JavaComposer.createConstant
(CharSequence name, TypeName type, Number value, CodeBlock comment) Creates a numerical constant.final FieldSpec
JavaComposer.createConstant
(CharSequence name, TypeName type, CodeBlock value, CodeBlock comment) Creates a constant.
A constant is an initialisedpublic final static
field.final MethodSpec
JavaComposer.createEqualsMethod
(CodeBlock body) Returns aMethodSpec
instance for an implementation of the methodObject.equals(Object)
.final MethodSpec
JavaComposer.createHashCodeMethod
(CodeBlock body) Returns aMethodSpec
instance for an implementation of the methodObject.hashCode()
.final MethodSpec
JavaComposer.createToStringMethod
(CodeBlock body) Returns aMethodSpec
instance for an implementation of the methodObject.toString()
.MethodSpec.Builder.defaultValue
(CodeBlock defaultValue) Sets the default value for this method.FieldSpec.Builder.initializer
(CodeBlock codeBlock) Sets the initializer for the field.Joins this code block with the given code blocks into a single newCodeBlock
instance, each separated by the given separator.Joins this code block with the given code blocks into a single newCodeBlock
instance, each separated by the given separator. -
Uses of CodeBlock in org.tquadrat.foundation.javacomposer.internal
Classes in org.tquadrat.foundation.javacomposer.internal that implement CodeBlockModifier and TypeClassDescriptionfinal class
The implementation ofCodeBlock
for a fragment of a*.java
file.Methods in org.tquadrat.foundation.javacomposer.internal that return CodeBlockModifier and TypeMethodDescriptionfinal CodeBlock
Joins this code block with the given code blocks into a single newCodeBlock
instance, each separated by the given separator.final CodeBlock
Joins this code block with the given code blocks into a single newCodeBlock
instance, each separated by the given separator.CodeProcessorImpl.process
(StringTemplatePREVIEW template) Methods in org.tquadrat.foundation.javacomposer.internal that return types with arguments of type CodeBlockModifier and TypeMethodDescriptionClassSpecImpl.anonymousTypeArguments()
Returns the anonymous type arguments.TypeSpecImpl.anonymousTypeArguments()
Returns the anonymous type arguments.ParameterSpecImpl.javadoc()
Returns the Javadoc comment for this parameter.Methods in org.tquadrat.foundation.javacomposer.internal with parameters of type CodeBlockModifier and TypeMethodDescriptionAdds aCodeBlock
instance.Adds code for the lambda body.Adds code for the method.final TypeSpecImpl.BuilderImpl
TypeSpecImpl.BuilderImpl.addEnumConstant
(CharSequence name, CodeBlock javaDoc) Adds anenum
constant for the type to build.AnnotationTypeSpecImpl.BuilderImpl.addInitializerBlock
(CodeBlock block) Adds code to the initializer block.InterfaceSpecImpl.BuilderImpl.addInitializerBlock
(CodeBlock block) Adds code to the initializer block.TypeSpecImpl.BuilderImpl.addInitializerBlock
(CodeBlock block) Adds code to the initializer block.FieldSpecImpl.BuilderImpl.addJavadoc
(CodeBlock block) Adds a Javadoc comment for the field.MethodSpecImpl.BuilderImpl.addJavadoc
(CodeBlock block) Adds a Javadoc comment for the method.ParameterSpecImpl.BuilderImpl.addJavadoc
(CodeBlock block) Adds text to the JavaDoc for the parameter.final TypeSpecImpl.BuilderImpl
TypeSpecImpl.BuilderImpl.addJavadoc
(CodeBlock block) Adds text to the Javadoc for the type.AnnotationSpecImpl.BuilderImpl.addMember
(CharSequence name, CodeBlock codeBlock) Adds a building block.AnnotationTypeSpecImpl.BuilderImpl.addStaticBlock
(CodeBlock block) Adds a static block for the type.TypeSpecImpl.BuilderImpl.addStaticBlock
(CodeBlock block) Adds a static block for the type.CodeBlockImpl.BuilderImpl.addWithoutDebugInfo
(CodeBlock codeBlock) Adds aCodeBlock
instance without prepending any debug output.MethodSpecImpl.BuilderImpl.defaultValue
(CodeBlock defaultValue) Sets the default value for this method.FieldSpecImpl.BuilderImpl.initializer
(CodeBlock codeBlock) Sets the initializer for the field.final CodeBlock
Joins this code block with the given code blocks into a single newCodeBlock
instance, each separated by the given separator.final CodeBlock
Joins this code block with the given code blocks into a single newCodeBlock
instance, each separated by the given separator.private static final Stream
<CodeBlockImpl> CodeBlockImpl.makeCodeBlockStream
(CodeBlock head, CodeBlock... tail) Composes a stream from the givenCodeBlock
instances.