-
StringBuilderGen.append(char constant)
Appends the given char constant to this StringBuilder.
StringBuilderGen.append(io.quarkus.gizmo2.Expr expr)
Appends the string value of given expr to this StringBuilder.
Appends the given String constant to this StringBuilder.
Appends the given code point to this StringBuilder.
Appends the given code point to this StringBuilder.
StringBuilderGen.of(io.quarkus.gizmo2.Var stringBuilder,
io.quarkus.gizmo2.creator.BlockCreator bc)
Creates a StringBuilder generator that helps to generate a chain of
append calls and a final toString call.
StringBuilderGen.ofNew(int capacity,
io.quarkus.gizmo2.creator.BlockCreator bc)
Allocates a local variable in the given block as if by
new StringBuilder(capacity)
and passes it to
of(Var, BlockCreator).
StringBuilderGen.ofNew(io.quarkus.gizmo2.creator.BlockCreator bc)
Allocates a local variable in the given block as if by
new StringBuilder()
and passes it to
of(Var, BlockCreator).