Class CodeBlockImpl
- All Implemented Interfaces:
CodeBlock
CodeBlock
for a fragment of a *.java
file.- Author:
- Square,Inc.
- Modified by:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: CodeBlockImpl.java 1105 2024-02-28 12:58:46Z tquadrat $
- Since:
- 0.0.5
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.javacomposer.internal.CodeBlockImpl"
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final class
The implementation ofCodeBlock.Builder
as the builder for a newCodeBlockImpl
instance.private static final class
A helper class that supports to join code blocks.Nested classes/interfaces inherited from interface org.tquadrat.foundation.javacomposer.CodeBlock
CodeBlock.Builder
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Pattern
The regular expression that is used to determine whether a parameter name starts with a lowercase character.The arguments.Lazily initialised return value oftoString()
for this code block.private final JavaComposer
The reference to the factory.A heterogeneous list containing string literals and value placeholders.The static imports.static final Pattern
The regular expression that is used to obtain the argument name from a format string. -
Constructor Summary
ConstructorsConstructorDescriptionCodeBlockImpl
(CodeBlockImpl.BuilderImpl builder) Creates a newCodeBlockImpl
instance. -
Method Summary
Modifier and TypeMethodDescriptionargs()
Returns the arguments.final boolean
Returns the format parts from this code block.final JavaComposer
Returns theJavaComposer
factory.Returns the static imports for this code block.final int
hashCode()
private final String
The initializer form_CachedString
.final boolean
isEmpty()
Checks whether this code block is empty.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.final Collector
<CodeBlockImpl, ?, CodeBlockImpl> ACollector
implementation that joinsCodeBlock
instances together into one new code block, separated by the given separator.final Collector
<CodeBlockImpl, ?, CodeBlockImpl> ACollector
implementation that joinsCodeBlock
instances together into one new code block, separated by the given separator.private static final Stream
<CodeBlockImpl> makeCodeBlockStream
(CodeBlock head, CodeBlock... tail) Composes a stream from the givenCodeBlock
instances.Creates a new builder that is initialised with the components of this code block.final String
toString()
-
Field Details
-
m_Args
The arguments. -
m_CachedString
Lazily initialised return value oftoString()
for this code block. -
m_Composer
The reference to the factory. -
m_FormatParts
A heterogeneous list containing string literals and value placeholders. -
m_StaticImports
The static imports. -
LOWERCASE
The regular expression that is used to determine whether a parameter name starts with a lowercase character. -
NAMED_ARGUMENT
The regular expression that is used to obtain the argument name from a format string.
-
-
Constructor Details
-
CodeBlockImpl
Creates a newCodeBlockImpl
instance.- Parameters:
builder
- The builder for this instance.
-
-
Method Details
-
args
Returns the arguments.- Returns:
- The arguments.
-
equals
-
formatParts
Returns the format parts from this code block.- Returns:
- The format parts.
-
getFactory
Returns theJavaComposer
factory.- Returns:
- The reference to the factory.
-
getStaticImports
Returns the static imports for this code block.- Returns:
- The static imports.
-
hashCode
-
initialiseCachedString
The initializer form_CachedString
.- Returns:
- The return value for
toString()
.
-
isEmpty
Checks whether this code block is empty. -
join
Joins this code block with the given code blocks into a single new
CodeBlock
instance, each separated by the given separator.For example, joining "
String s
", "Object o
" and "int i
" using ",
" as the separator would produce "String s, Object o, int i
". -
join
public final CodeBlock join(String separator, String prefix, String suffix, CodeBlock... codeBlocks) Joins this code block with the given code blocks into a single new
CodeBlock
instance, each separated by the given separator. The given prefix will be prepended to the newCodeBloc
, and the given suffix will be appended to it.For example, joining "
String s
", "Object o
" and "int i
" using ",
" as the separator would produce "String s, Object o, int i
". -
joining
A
Collector
implementation that joinsCodeBlock
instances together into one new code block, separated by the given separator.For example, joining "
String s
", "Object o
" and "int i
" using ",
" as the separator would produce "String s, Object o, int i
".- Parameters:
separator
- The separator.- Returns:
- The new collector.
-
joining
public final Collector<CodeBlockImpl,?, joiningCodeBlockImpl> (String separator, String prefix, String suffix) A
Collector
implementation that joinsCodeBlock
instances together into one new code block, separated by the given separator. The given prefix will be prepended to the newCodeBloc
, and the given suffix will be appended to it.For example, joining "
String s
", "Object o
" and "int i
" using ",
" as the separator, and "int func(
" as the prefix and ")
" as the suffix respectively would produce "int func( String s, Object o, int i )
".- Parameters:
separator
- The separator.prefix
- The prefix.suffix
- The suffix.- Returns:
- The new collector.
-
makeCodeBlockStream
Composes a stream from the givenCodeBlock
instances.- Parameters:
head
- The first code block.tail
- The other code blocks.- Returns:
- The
Stream
instance with theCodeBlock
instances.
-
toBuilder
Creates a new builder that is initialised with the components of this code block. -
toString
-