Class CodeWriter
- java.lang.Object
-
- software.amazon.smithy.utils.AbstractCodeWriter<CodeWriter>
-
- software.amazon.smithy.utils.CodeWriter
-
- Direct Known Subclasses:
CodegenWriter
@Deprecated public class CodeWriter extends AbstractCodeWriter<CodeWriter>
Deprecated.preferSimpleCodeWriteror a custom subclass ofAbstractCodeWriter.
-
-
Constructor Summary
Constructors Constructor Description CodeWriter()Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description CodeWritercall(java.lang.Runnable task)Deprecated.Allows calling out to arbitrary code for things like looping or conditional writes without breaking method chaining.CodeWritercloseBlock(java.lang.String textAfterNewline, java.lang.Object... args)Deprecated.Closes a block of syntax by writing a newline, dedenting, then writing text.voidcopySettingsFrom(CodeWriter other)Deprecated.static CodeWritercreateDefault()Deprecated.Creates a default instance of a CodeWriter that uses "\n" for newlines, flattens multiple successive blank lines into a single blank line, and adds a trailing new line if needed when converting the CodeWriter to a string.CodeWriterdedent()Deprecated.Removes one level of indentation from all lines.CodeWriterdedent(int levels)Deprecated.Removes a specific number of indentations from all lines.CodeWriterdisableNewlines()Deprecated.Disables the automatic appending of newlines in the current state.CodeWriterenableNewlines()Deprecated.Enables the automatic appending of newlines in the current state.CodeWriterensureNewline()Deprecated.Ensures that the last text written to the writer was a newline as defined in the current state and inserts one if necessary.CodeWriterindent()Deprecated.Indents all text one level.CodeWriterindent(int levels)Deprecated.Indents all text a specific number of levels.CodeWriterinsertTrailingNewline()Deprecated.Configures the AbstractCodeWriter to always append a newline at the end of the text if one is not already present.CodeWriterinsertTrailingNewline(boolean trailingNewline)Deprecated.Configures the AbstractCodeWriter to always append a newline at the end of the text if one is not already present.CodeWriteronSection(java.lang.String sectionName, java.util.function.Consumer<java.lang.Object> interceptor)Deprecated.Registers a function that intercepts the contents of a section and writes to theAbstractCodeWriterwith the updated contents.CodeWriteronSectionAppend(java.lang.String sectionName, java.lang.Runnable writeAfter)Deprecated.CodeWriteronSectionPrepend(java.lang.String sectionName, java.lang.Runnable writeBefore)Deprecated.CodeWriteropenBlock(java.lang.String textBeforeNewline, java.lang.Object... args)Deprecated.Opens a block of syntax by writing text, a newline, then indenting.CodeWriteropenBlock(java.lang.String textBeforeNewline, java.lang.String textAfterNewline, java.lang.Object[] args, java.lang.Runnable f)Deprecated.Opens a block of syntax by writingtextBeforeNewline, a newline, then indenting, then executes the givenRunnable, then closes the block of syntax by writing a newline, dedenting, then writingtextAfterNewline.CodeWriteropenBlock(java.lang.String textBeforeNewline, java.lang.String textAfterNewline, java.lang.Object arg1, java.lang.Object arg2, java.lang.Object arg3, java.lang.Object arg4, java.lang.Object arg5, java.lang.Runnable f)Deprecated.Opens a block of syntax by writingtextBeforeNewline, a newline, then indenting, then executes the givenRunnable, then closes the block of syntax by writing a newline, dedenting, then writingtextAfterNewline.CodeWriteropenBlock(java.lang.String textBeforeNewline, java.lang.String textAfterNewline, java.lang.Object arg1, java.lang.Object arg2, java.lang.Object arg3, java.lang.Object arg4, java.lang.Runnable f)Deprecated.Opens a block of syntax by writingtextBeforeNewline, a newline, then indenting, then executes the givenRunnable, then closes the block of syntax by writing a newline, dedenting, then writingtextAfterNewline.CodeWriteropenBlock(java.lang.String textBeforeNewline, java.lang.String textAfterNewline, java.lang.Object arg1, java.lang.Object arg2, java.lang.Object arg3, java.lang.Runnable f)Deprecated.Opens a block of syntax by writingtextBeforeNewline, a newline, then indenting, then executes the givenRunnable, then closes the block of syntax by writing a newline, dedenting, then writingtextAfterNewline.CodeWriteropenBlock(java.lang.String textBeforeNewline, java.lang.String textAfterNewline, java.lang.Object arg1, java.lang.Object arg2, java.lang.Runnable f)Deprecated.Opens a block of syntax by writingtextBeforeNewline, a newline, then indenting, then executes the givenRunnable, then closes the block of syntax by writing a newline, dedenting, then writingtextAfterNewline.CodeWriteropenBlock(java.lang.String textBeforeNewline, java.lang.String textAfterNewline, java.lang.Object arg1, java.lang.Runnable f)Deprecated.Opens a block of syntax by writingtextBeforeNewline, a newline, then indenting, then executes the givenRunnable, then closes the block of syntax by writing a newline, dedenting, then writingtextAfterNewline.CodeWriteropenBlock(java.lang.String textBeforeNewline, java.lang.String textAfterNewline, java.lang.Runnable f)Deprecated.Opens a block of syntax by writingtextBeforeNewline, a newline, then indenting, then executes the givenRunnable, then closes the block of syntax by writing a newline, dedenting, then writingtextAfterNewline.CodeWriterpopState()Deprecated.Pops the current AbstractCodeWriter state from the state stack.CodeWriterpushFilteredState(java.util.function.Function<java.lang.String,java.lang.String> filter)Deprecated.Pushes an anonymous named state that is always passed through the given filter function before being written to the writer.CodeWriterpushState()Deprecated.Copies and pushes the current state to the state stack.CodeWriterpushState(java.lang.String sectionName)Deprecated.Copies and pushes the current state to the state stack using a named state that can be intercepted by functions registered withAbstractCodeWriter.onSection(CodeInterceptor).CodeWriterputContext(java.lang.String key, java.lang.Object value)Deprecated.Adds a named key-value pair to the context of the current state.CodeWriterputContext(java.util.Map<java.lang.String,java.lang.Object> mappings)Deprecated.Adds a map of named key-value pair to the context of the current state.CodeWriterputFormatter(char identifier, java.util.function.BiFunction<java.lang.Object,java.lang.String,java.lang.String> formatFunction)Deprecated.Adds a custom formatter expression to the current state of theAbstractCodeWriter.CodeWriterremoveContext(java.lang.String key)Deprecated.Removes a named key-value pair from the context of the current state.CodeWritersetExpressionStart(char expressionStart)Deprecated.Sets the character used to start expressions in the current state when callingAbstractCodeWriter.write(java.lang.Object, java.lang.Object...),AbstractCodeWriter.writeInline(java.lang.Object, java.lang.Object...),AbstractCodeWriter.openBlock(java.lang.String, java.lang.Object...), etc.CodeWritersetIndentText(java.lang.String indentText)Deprecated.Sets the text used for indentation (defaults to four spaces).CodeWritersetNewline(char newline)Deprecated.Sets the character used to represent newlines in the current state ("\n" is the default).CodeWritersetNewline(java.lang.String newline)Deprecated.Sets the character used to represent newlines in the current state ("\n" is the default).CodeWritersetNewlinePrefix(java.lang.String newlinePrefix)Deprecated.Sets a prefix to prepend to every line after a new line is added (except for an inserted trailing newline).CodeWritertrimBlankLines()Deprecated.Ensures that no more than one blank line occurs in succession.CodeWritertrimBlankLines(int trimBlankLines)Deprecated.Ensures that no more than the given number of newlines can occur in succession, removing consecutive newlines that exceed the given threshold.CodeWritertrimTrailingSpaces()Deprecated.Enables the trimming of trailing spaces on a line.CodeWritertrimTrailingSpaces(boolean trimTrailingSpaces)Deprecated.Configures if trailing spaces on a line are removed.CodeWriterunwrite(java.lang.Object content, java.lang.Object... args)Deprecated.Remove the most recent text written to the AbstractCodeWriter if and only if the last written text is exactly equal to the given expanded content string.CodeWriterwrite(java.lang.Object content, java.lang.Object... args)Deprecated.Writes text to the AbstractCodeWriter and appends a newline.CodeWriterwriteInline(java.lang.Object content, java.lang.Object... args)Deprecated.Writes text to the AbstractCodeWriter without appending a newline.CodeWriterwriteOptional(java.lang.Object content)Deprecated.Optionally writes text to the AbstractCodeWriter and appends a newline if a value is present.CodeWriterwriteWithNoFormatting(java.lang.Object content)Deprecated.Writes text to the AbstractCodeWriter and appends a newline.-
Methods inherited from class software.amazon.smithy.utils.AbstractCodeWriter
consumer, copySettingsFrom, enableStackTraceComments, format, formatLiteral, formatWithStackTraceElement, getContext, getContext, getDebugInfo, getDebugInfo, getExpressionStart, getIndentLevel, getIndentText, getInsertTrailingNewline, getNewline, getNewlinePrefix, getTrimBlankLines, getTrimTrailingSpaces, injectSection, isStackTraceRelevant, onSection, pushState, toString, writeInlineWithNoFormatting
-
-
-
-
Method Detail
-
createDefault
public static CodeWriter createDefault()
Deprecated.Creates a default instance of a CodeWriter that uses "\n" for newlines, flattens multiple successive blank lines into a single blank line, and adds a trailing new line if needed when converting the CodeWriter to a string.- Returns:
- Returns the created and configured CodeWriter.
-
onSectionPrepend
@Deprecated public CodeWriter onSectionPrepend(java.lang.String sectionName, java.lang.Runnable writeBefore)
Deprecated.Prepends to the contents of a named section.writer.onSectionPrepend("foo", () -> { writer.write("This text is added before the rest of the section."); });- Parameters:
sectionName- The name of the section to intercept.writeBefore- A runnable that prepends to a section by mutating the writer.- Returns:
- Returns the CodeWriter.
- See Also:
as an alternative that allows more explicit whitespace handling.
-
onSectionAppend
@Deprecated public CodeWriter onSectionAppend(java.lang.String sectionName, java.lang.Runnable writeAfter)
Deprecated.Appends to the contents of a named section.writer.onSectionAppend("foo", () -> { writer.write("This text is added after the rest of the section."); });- Parameters:
sectionName- The name of the section to intercept.writeAfter- A runnable that appends to a section by mutating the writer.- Returns:
- Returns the CodeWriter.
- See Also:
as an alternative that allows more explicit whitespace handling.
-
copySettingsFrom
public void copySettingsFrom(CodeWriter other)
Deprecated.
-
putFormatter
public CodeWriter putFormatter(char identifier, java.util.function.BiFunction<java.lang.Object,java.lang.String,java.lang.String> formatFunction)
Deprecated.Description copied from class:AbstractCodeWriterAdds a custom formatter expression to the current state of theAbstractCodeWriter.The provided
identifierstring must match the following ABNF:%x21-23 ; ( '!' - '#' ) / %x25-2F ; ( '%' - '/' ) / %x3A-60 ; ( ':' - '`' ) / %x7B-7E ; ( '{' - '~' )- Overrides:
putFormatterin classAbstractCodeWriter<CodeWriter>- Parameters:
identifier- Formatter identifier to associate with this formatter.formatFunction- Formatter function that formats the given object as a String. The formatter is give the value to format as an object (use .toString to access the string contents) and the current indentation string of the AbstractCodeWriter.- Returns:
- Returns self.
-
setExpressionStart
public CodeWriter setExpressionStart(char expressionStart)
Deprecated.Description copied from class:AbstractCodeWriterSets the character used to start expressions in the current state when callingAbstractCodeWriter.write(java.lang.Object, java.lang.Object...),AbstractCodeWriter.writeInline(java.lang.Object, java.lang.Object...),AbstractCodeWriter.openBlock(java.lang.String, java.lang.Object...), etc.By default,
$is used to start expressions (for example$L. However, some programming languages frequently give syntactic meaning to$, making this an inconvenient syntactic character for the AbstractCodeWriter. In these cases, the character used to start a AbstractCodeWriter expression can be changed. Just like$, the custom start character can be escaped using two subsequent start characters (e.g.,$$).- Overrides:
setExpressionStartin classAbstractCodeWriter<CodeWriter>- Parameters:
expressionStart- Character to use to start expressions.- Returns:
- Returns self.
-
pushState
public CodeWriter pushState()
Deprecated.Description copied from class:AbstractCodeWriterCopies and pushes the current state to the state stack.This method is used to prepare for a corresponding
AbstractCodeWriter.popState()operation later. It stores the current state of the AbstractCodeWriter into a stack and keeps it active. After pushing, mutations can be made to the state of the AbstractCodeWriter without affecting the previous state on the stack. Changes to the state of the AbstractCodeWriter can be undone by usingAbstractCodeWriter.popState(), which Returns self state to the state it was in before callingpushState.- Overrides:
pushStatein classAbstractCodeWriter<CodeWriter>- Returns:
- Returns the code writer.
-
pushState
public CodeWriter pushState(java.lang.String sectionName)
Deprecated.Description copied from class:AbstractCodeWriterCopies and pushes the current state to the state stack using a named state that can be intercepted by functions registered withAbstractCodeWriter.onSection(CodeInterceptor).The text written while in this state is buffered and passed to each state interceptor. If no text is written by the section or an interceptor, nothing is changed on the
AbstractCodeWriter. This behavior allows for placeholder sections to be added intoAbstractCodeWritergenerators in order to provide extension points that can be otherwise empty.- Overrides:
pushStatein classAbstractCodeWriter<CodeWriter>- Parameters:
sectionName- Name of the section to set on the state.- Returns:
- Returns the code writer.
-
pushFilteredState
public CodeWriter pushFilteredState(java.util.function.Function<java.lang.String,java.lang.String> filter)
Deprecated.Description copied from class:AbstractCodeWriterPushes an anonymous named state that is always passed through the given filter function before being written to the writer.- Overrides:
pushFilteredStatein classAbstractCodeWriter<CodeWriter>- Parameters:
filter- Function that maps over the entire section when popped.- Returns:
- Returns the code writer.
-
popState
public CodeWriter popState()
Deprecated.Description copied from class:AbstractCodeWriterPops the current AbstractCodeWriter state from the state stack.This method is used to reverse a previous
AbstractCodeWriter.pushState()operation. It configures the current AbstractCodeWriter state to what it was before the last precedingpushStatecall.- Overrides:
popStatein classAbstractCodeWriter<CodeWriter>- Returns:
- Returns self.
-
onSection
public CodeWriter onSection(java.lang.String sectionName, java.util.function.Consumer<java.lang.Object> interceptor)
Deprecated.Description copied from class:AbstractCodeWriterRegisters a function that intercepts the contents of a section and writes to theAbstractCodeWriterwith the updated contents.The
interceptorfunction is expected to have a reference to theAbstractCodeWriterand to mutate it when they are invoked. Each interceptor is invoked in their own isolated pushed/popped states.The text provided to
interceptordoes not contain a trailing new line. A trailing new line is expected to be injected automatically when the results of intercepting the contents are written to theAbstractCodeWriter. A result is only written if the interceptors write a non-null, non-empty string, allowing for empty placeholders to be added that don't affect the resulting layout of the code.SimpleCodeWriter = new SimpleCodeWriter(); // Prepend text to a section named "foo". writer.onSectionPrepend("foo", () -> writer.write("A")); // Write text to a section, and ensure that the original // text is written too. writer.onSection("foo", text -> { // Write before the original text. writer.write("A"); // Write the original text of the section. writer.writeWithNoFormatting(text); // Write more text to the section. writer.write("C"); }); // Create the section, write to it, then close the section. writer.pushState("foo").write("B").popState(); assert(writer.toString().equals("A\nB\nC\n"));Newline handling
This method is a wrapper around
AbstractCodeWriter.onSection(CodeInterceptor)that has several limitations:- The provided
interceptoris expected to have a reference to anAbstractCodeWriterso that write calls can be made. - The handling of newlines is much less precise. If you want to
give interceptors full control over how newlines are injected, then
AbstractCodeWriter.onSection(CodeInterceptor)must be used directly and careful use ofAbstractCodeWriter.writeInlineWithNoFormatting(Object)is required when writing the previous contents to the interceptor. - Interceptors do not have access to strongly typed event data
like
CodeInterceptors do.
The newline handling functionality provided by this method can be reproduced using a
CodeInterceptorby removing trailing newlines usingAbstractCodeWriter.removeTrailingNewline(String).SimpleCodeWriter = new SimpleCodeWriter(); CodeInterceptor<CodeSection, SimpleCodeWriter> interceptor = CodeInterceptor.forName(sectionName, (w, p) -> { String trimmedContent = removeTrailingNewline(p); interceptor.accept(trimmedContent); }) writer.onSection(interceptor);- Overrides:
onSectionin classAbstractCodeWriter<CodeWriter>- Parameters:
sectionName- The name of the section to intercept.interceptor- The function to intercept with.- Returns:
- Returns self.
- The provided
-
disableNewlines
public CodeWriter disableNewlines()
Deprecated.Description copied from class:AbstractCodeWriterDisables the automatic appending of newlines in the current state.Methods like
AbstractCodeWriter.write(java.lang.Object, java.lang.Object...),AbstractCodeWriter.openBlock(java.lang.String, java.lang.Object...), andAbstractCodeWriter.closeBlock(java.lang.String, java.lang.Object...)will not automatically append newlines when a state has this flag set.- Overrides:
disableNewlinesin classAbstractCodeWriter<CodeWriter>- Returns:
- Returns self.
-
enableNewlines
public CodeWriter enableNewlines()
Deprecated.Description copied from class:AbstractCodeWriterEnables the automatic appending of newlines in the current state.- Overrides:
enableNewlinesin classAbstractCodeWriter<CodeWriter>- Returns:
- Returns self.
-
setNewline
public CodeWriter setNewline(java.lang.String newline)
Deprecated.Description copied from class:AbstractCodeWriterSets the character used to represent newlines in the current state ("\n" is the default).When the provided string is empty (""), then newlines are disabled in the current state. This is exactly equivalent to calling
AbstractCodeWriter.disableNewlines(), and does not actually change the newline character of the current state.Setting the newline character to a non-empty string implicitly enables newlines in the current state.
- Overrides:
setNewlinein classAbstractCodeWriter<CodeWriter>- Parameters:
newline- Newline character to use.- Returns:
- Returns self.
-
setNewline
public CodeWriter setNewline(char newline)
Deprecated.Description copied from class:AbstractCodeWriterSets the character used to represent newlines in the current state ("\n" is the default).This call also enables newlines in the current state by calling
AbstractCodeWriter.enableNewlines().- Overrides:
setNewlinein classAbstractCodeWriter<CodeWriter>- Parameters:
newline- Newline character to use.- Returns:
- Returns self.
-
setIndentText
public CodeWriter setIndentText(java.lang.String indentText)
Deprecated.Description copied from class:AbstractCodeWriterSets the text used for indentation (defaults to four spaces).- Overrides:
setIndentTextin classAbstractCodeWriter<CodeWriter>- Parameters:
indentText- Indentation text.- Returns:
- Returns self.
-
trimTrailingSpaces
public CodeWriter trimTrailingSpaces()
Deprecated.Description copied from class:AbstractCodeWriterEnables the trimming of trailing spaces on a line.- Overrides:
trimTrailingSpacesin classAbstractCodeWriter<CodeWriter>- Returns:
- Returns self.
-
trimTrailingSpaces
public CodeWriter trimTrailingSpaces(boolean trimTrailingSpaces)
Deprecated.Description copied from class:AbstractCodeWriterConfigures if trailing spaces on a line are removed.- Overrides:
trimTrailingSpacesin classAbstractCodeWriter<CodeWriter>- Parameters:
trimTrailingSpaces- Set to true to trim trailing spaces.- Returns:
- Returns self.
-
trimBlankLines
public CodeWriter trimBlankLines()
Deprecated.Description copied from class:AbstractCodeWriterEnsures that no more than one blank line occurs in succession.- Overrides:
trimBlankLinesin classAbstractCodeWriter<CodeWriter>- Returns:
- Returns self.
-
trimBlankLines
public CodeWriter trimBlankLines(int trimBlankLines)
Deprecated.Description copied from class:AbstractCodeWriterEnsures that no more than the given number of newlines can occur in succession, removing consecutive newlines that exceed the given threshold.- Overrides:
trimBlankLinesin classAbstractCodeWriter<CodeWriter>- Parameters:
trimBlankLines- Number of allowed consecutive newlines. Set to -1 to perform no trimming. Set to 0 to allow no blank lines. Set to 1 or more to allow for no more than N consecutive blank lines.- Returns:
- Returns self.
-
insertTrailingNewline
public CodeWriter insertTrailingNewline()
Deprecated.Description copied from class:AbstractCodeWriterConfigures the AbstractCodeWriter to always append a newline at the end of the text if one is not already present.This setting is not captured as part of push/popState.
- Overrides:
insertTrailingNewlinein classAbstractCodeWriter<CodeWriter>- Returns:
- Returns self.
-
insertTrailingNewline
public CodeWriter insertTrailingNewline(boolean trailingNewline)
Deprecated.Description copied from class:AbstractCodeWriterConfigures the AbstractCodeWriter to always append a newline at the end of the text if one is not already present.This setting is not captured as part of push/popState.
- Overrides:
insertTrailingNewlinein classAbstractCodeWriter<CodeWriter>- Parameters:
trailingNewline- True if a newline is added.- Returns:
- Returns self.
-
setNewlinePrefix
public CodeWriter setNewlinePrefix(java.lang.String newlinePrefix)
Deprecated.Description copied from class:AbstractCodeWriterSets a prefix to prepend to every line after a new line is added (except for an inserted trailing newline).- Overrides:
setNewlinePrefixin classAbstractCodeWriter<CodeWriter>- Parameters:
newlinePrefix- Newline prefix to use.- Returns:
- Returns self.
-
indent
public CodeWriter indent()
Deprecated.Description copied from class:AbstractCodeWriterIndents all text one level.- Overrides:
indentin classAbstractCodeWriter<CodeWriter>- Returns:
- Returns self.
-
indent
public CodeWriter indent(int levels)
Deprecated.Description copied from class:AbstractCodeWriterIndents all text a specific number of levels.- Overrides:
indentin classAbstractCodeWriter<CodeWriter>- Parameters:
levels- Number of levels to indent.- Returns:
- Returns self.
-
dedent
public CodeWriter dedent()
Deprecated.Description copied from class:AbstractCodeWriterRemoves one level of indentation from all lines.- Overrides:
dedentin classAbstractCodeWriter<CodeWriter>- Returns:
- Returns self.
-
dedent
public CodeWriter dedent(int levels)
Deprecated.Description copied from class:AbstractCodeWriterRemoves a specific number of indentations from all lines.Set to -1 to dedent back to 0 (root).
- Overrides:
dedentin classAbstractCodeWriter<CodeWriter>- Parameters:
levels- Number of levels to remove.- Returns:
- Returns self.
-
openBlock
public CodeWriter openBlock(java.lang.String textBeforeNewline, java.lang.Object... args)
Deprecated.Description copied from class:AbstractCodeWriterOpens a block of syntax by writing text, a newline, then indenting.String result = new SimpleCodeWriter() .openBlock("public final class $L {", "Foo") .openBlock("public void main(String[] args) {") .write("System.out.println(args[0]);") .closeBlock("}") .closeBlock("}") .toString();- Overrides:
openBlockin classAbstractCodeWriter<CodeWriter>- Parameters:
textBeforeNewline- Text to write before writing a newline and indenting.args- String arguments to use for formatting.- Returns:
- Returns this.
-
openBlock
public CodeWriter openBlock(java.lang.String textBeforeNewline, java.lang.String textAfterNewline, java.lang.Runnable f)
Deprecated.Description copied from class:AbstractCodeWriterOpens a block of syntax by writingtextBeforeNewline, a newline, then indenting, then executes the givenRunnable, then closes the block of syntax by writing a newline, dedenting, then writingtextAfterNewline.SimpleCodeWriter = new SimpleCodeWriter(); writer.openBlock("public final class $L {", "}", "Foo", () -> { writer.openBlock("public void main(String[] args) {", "}", () -> { writer.write("System.out.println(args[0]);"); }) });- Overrides:
openBlockin classAbstractCodeWriter<CodeWriter>- Parameters:
textBeforeNewline- Text to write before writing a newline and indenting.textAfterNewline- Text to write after writing a newline and indenting.f- Runnable function to execute inside of the block.- Returns:
- Returns this.
-
openBlock
public CodeWriter openBlock(java.lang.String textBeforeNewline, java.lang.String textAfterNewline, java.lang.Object arg1, java.lang.Runnable f)
Deprecated.Description copied from class:AbstractCodeWriterOpens a block of syntax by writingtextBeforeNewline, a newline, then indenting, then executes the givenRunnable, then closes the block of syntax by writing a newline, dedenting, then writingtextAfterNewline.- Overrides:
openBlockin classAbstractCodeWriter<CodeWriter>- Parameters:
textBeforeNewline- Text to write before writing a newline and indenting.textAfterNewline- Text to write after writing a newline and indenting.arg1- First positional argument to substitute intotextBeforeNewline.f- Runnable function to execute inside of the block.- Returns:
- Returns this.
-
openBlock
public CodeWriter openBlock(java.lang.String textBeforeNewline, java.lang.String textAfterNewline, java.lang.Object arg1, java.lang.Object arg2, java.lang.Runnable f)
Deprecated.Description copied from class:AbstractCodeWriterOpens a block of syntax by writingtextBeforeNewline, a newline, then indenting, then executes the givenRunnable, then closes the block of syntax by writing a newline, dedenting, then writingtextAfterNewline.- Overrides:
openBlockin classAbstractCodeWriter<CodeWriter>- Parameters:
textBeforeNewline- Text to write before writing a newline and indenting.textAfterNewline- Text to write after writing a newline and indenting.arg1- First positional argument to substitute intotextBeforeNewline.arg2- Second positional argument to substitute intotextBeforeNewline.f- Runnable function to execute inside of the block.- Returns:
- Returns this.
-
openBlock
public CodeWriter openBlock(java.lang.String textBeforeNewline, java.lang.String textAfterNewline, java.lang.Object arg1, java.lang.Object arg2, java.lang.Object arg3, java.lang.Runnable f)
Deprecated.Description copied from class:AbstractCodeWriterOpens a block of syntax by writingtextBeforeNewline, a newline, then indenting, then executes the givenRunnable, then closes the block of syntax by writing a newline, dedenting, then writingtextAfterNewline.- Overrides:
openBlockin classAbstractCodeWriter<CodeWriter>- Parameters:
textBeforeNewline- Text to write before writing a newline and indenting.textAfterNewline- Text to write after writing a newline and indenting.arg1- First positional argument to substitute intotextBeforeNewline.arg2- Second positional argument to substitute intotextBeforeNewline.arg3- Third positional argument to substitute intotextBeforeNewline.f- Runnable function to execute inside of the block.- Returns:
- Returns this.
-
openBlock
public CodeWriter openBlock(java.lang.String textBeforeNewline, java.lang.String textAfterNewline, java.lang.Object arg1, java.lang.Object arg2, java.lang.Object arg3, java.lang.Object arg4, java.lang.Runnable f)
Deprecated.Description copied from class:AbstractCodeWriterOpens a block of syntax by writingtextBeforeNewline, a newline, then indenting, then executes the givenRunnable, then closes the block of syntax by writing a newline, dedenting, then writingtextAfterNewline.- Overrides:
openBlockin classAbstractCodeWriter<CodeWriter>- Parameters:
textBeforeNewline- Text to write before writing a newline and indenting.textAfterNewline- Text to write after writing a newline and indenting.arg1- First positional argument to substitute intotextBeforeNewline.arg2- Second positional argument to substitute intotextBeforeNewline.arg3- Third positional argument to substitute intotextBeforeNewline.arg4- Fourth positional argument to substitute intotextBeforeNewline.f- Runnable function to execute inside of the block.- Returns:
- Returns this.
-
openBlock
public CodeWriter openBlock(java.lang.String textBeforeNewline, java.lang.String textAfterNewline, java.lang.Object arg1, java.lang.Object arg2, java.lang.Object arg3, java.lang.Object arg4, java.lang.Object arg5, java.lang.Runnable f)
Deprecated.Description copied from class:AbstractCodeWriterOpens a block of syntax by writingtextBeforeNewline, a newline, then indenting, then executes the givenRunnable, then closes the block of syntax by writing a newline, dedenting, then writingtextAfterNewline.- Overrides:
openBlockin classAbstractCodeWriter<CodeWriter>- Parameters:
textBeforeNewline- Text to write before writing a newline and indenting.textAfterNewline- Text to write after writing a newline and indenting.arg1- First positional argument to substitute intotextBeforeNewline.arg2- Second positional argument to substitute intotextBeforeNewline.arg3- Third positional argument to substitute intotextBeforeNewline.arg4- Fourth positional argument to substitute intotextBeforeNewline.arg5- Fifth positional argument to substitute intotextBeforeNewline.f- Runnable function to execute inside of the block.- Returns:
- Returns this.
-
openBlock
public CodeWriter openBlock(java.lang.String textBeforeNewline, java.lang.String textAfterNewline, java.lang.Object[] args, java.lang.Runnable f)
Deprecated.Description copied from class:AbstractCodeWriterOpens a block of syntax by writingtextBeforeNewline, a newline, then indenting, then executes the givenRunnable, then closes the block of syntax by writing a newline, dedenting, then writingtextAfterNewline.- Overrides:
openBlockin classAbstractCodeWriter<CodeWriter>- Parameters:
textBeforeNewline- Text to write before writing a newline and indenting.textAfterNewline- Text to write after writing a newline and indenting.args- Arguments to substitute intotextBeforeNewline.f- Runnable function to execute inside of the block.- Returns:
- Returns this.
-
closeBlock
public CodeWriter closeBlock(java.lang.String textAfterNewline, java.lang.Object... args)
Deprecated.Description copied from class:AbstractCodeWriterCloses a block of syntax by writing a newline, dedenting, then writing text.- Overrides:
closeBlockin classAbstractCodeWriter<CodeWriter>- Parameters:
textAfterNewline- Text to write after writing a newline and dedenting.args- String arguments to use for formatting.- Returns:
- Returns this.
-
writeWithNoFormatting
public CodeWriter writeWithNoFormatting(java.lang.Object content)
Deprecated.Description copied from class:AbstractCodeWriterWrites text to the AbstractCodeWriter and appends a newline.The provided text does not use any kind of expression formatting.
Indentation and the newline prefix is only prepended if the writer's cursor is at the beginning of a newline.
Stack trace comments are written along with the given content if
AbstractCodeWriter.enableStackTraceComments(boolean)was called withtrue.- Overrides:
writeWithNoFormattingin classAbstractCodeWriter<CodeWriter>- Parameters:
content- Content to write.- Returns:
- Returns self.
-
call
public CodeWriter call(java.lang.Runnable task)
Deprecated.Description copied from class:AbstractCodeWriterAllows calling out to arbitrary code for things like looping or conditional writes without breaking method chaining.- Overrides:
callin classAbstractCodeWriter<CodeWriter>- Parameters:
task- Method to invoke.- Returns:
- Returns this.
-
write
public CodeWriter write(java.lang.Object content, java.lang.Object... args)
Deprecated.Description copied from class:AbstractCodeWriterWrites text to the AbstractCodeWriter and appends a newline.The provided text is automatically formatted using variadic arguments.
Indentation and the newline prefix is only prepended if the writer's cursor is at the beginning of a newline.
If a subclass overrides this method, it should first perform formatting and then delegate to
AbstractCodeWriter.writeWithNoFormatting(java.lang.Object)to perform the actual write.- Overrides:
writein classAbstractCodeWriter<CodeWriter>- Parameters:
content- Content to write.args- String arguments to use for formatting.- Returns:
- Returns self.
-
writeInline
public CodeWriter writeInline(java.lang.Object content, java.lang.Object... args)
Deprecated.Description copied from class:AbstractCodeWriterWrites text to the AbstractCodeWriter without appending a newline.The provided text is automatically formatted using variadic arguments.
Indentation and the newline prefix is only prepended if the writer's cursor is at the beginning of a newline.
If newlines are present in the given string, each of those lines will receive proper indentation.
If a subclass overrides this method, it should first perform formatting and then delegate to
AbstractCodeWriter.writeInlineWithNoFormatting(java.lang.Object)to perform the actual write.- Overrides:
writeInlinein classAbstractCodeWriter<CodeWriter>- Parameters:
content- Content to write.args- String arguments to use for formatting.- Returns:
- Returns self.
-
ensureNewline
public CodeWriter ensureNewline()
Deprecated.Description copied from class:AbstractCodeWriterEnsures that the last text written to the writer was a newline as defined in the current state and inserts one if necessary.- Overrides:
ensureNewlinein classAbstractCodeWriter<CodeWriter>- Returns:
- Returns self.
-
writeOptional
public CodeWriter writeOptional(java.lang.Object content)
Deprecated.Description copied from class:AbstractCodeWriterOptionally writes text to the AbstractCodeWriter and appends a newline if a value is present.If the provided
contentvalue isnull, nothing is written. If the providedcontentvalue is an emptyOptional, nothing is written. If the result of callingtoStringoncontentresults in an empty string, nothing is written. Finally, if the value is a non-empty string, the content is written to theAbstractCodeWriterat the current level of indentation, and a newline is appended.- Overrides:
writeOptionalin classAbstractCodeWriter<CodeWriter>- Parameters:
content- Content to write if present.- Returns:
- Returns self.
-
unwrite
public CodeWriter unwrite(java.lang.Object content, java.lang.Object... args)
Deprecated.Description copied from class:AbstractCodeWriterRemove the most recent text written to the AbstractCodeWriter if and only if the last written text is exactly equal to the given expanded content string.This can be useful, for example, for use cases like removing trailing commas from lists of values.
For example, the following will remove ", there." from the end of the AbstractCodeWriter:
SimpleCodeWriter = new SimpleCodeWriter(); writer.writeInline("Hello, there."); writer.unwrite(", there."); assert(writer.toString().equals("Hello\n"));However, the following call to unwrite will do nothing because the last text written to the AbstractCodeWriter does not match:
SimpleCodeWriter = new SimpleCodeWriter(); writer.writeInline("Hello."); writer.unwrite("there."); assert(writer.toString().equals("Hello.\n"));- Overrides:
unwritein classAbstractCodeWriter<CodeWriter>- Parameters:
content- Content to write.args- String arguments to use for formatting.- Returns:
- Returns self.
-
putContext
public CodeWriter putContext(java.lang.String key, java.lang.Object value)
Deprecated.Description copied from class:AbstractCodeWriterAdds a named key-value pair to the context of the current state.These context values can be referenced by named interpolated parameters.
- Overrides:
putContextin classAbstractCodeWriter<CodeWriter>- Parameters:
key- Key to add to the context.value- Value to associate with the key.- Returns:
- Returns self.
-
putContext
public CodeWriter putContext(java.util.Map<java.lang.String,java.lang.Object> mappings)
Deprecated.Description copied from class:AbstractCodeWriterAdds a map of named key-value pair to the context of the current state.These context values can be referenced by named interpolated parameters.
- Overrides:
putContextin classAbstractCodeWriter<CodeWriter>- Parameters:
mappings- Key value pairs to add.- Returns:
- Returns self.
-
removeContext
public CodeWriter removeContext(java.lang.String key)
Deprecated.Description copied from class:AbstractCodeWriterRemoves a named key-value pair from the context of the current state.This method has no effect if the parent state defines the context key value pair.
- Overrides:
removeContextin classAbstractCodeWriter<CodeWriter>- Parameters:
key- Key to add to remove from the current context.- Returns:
- Returns self.
-
-