java.lang.Object
org.tquadrat.foundation.javacomposer.internal.LineWrapper
All Implemented Interfaces:
Closeable, AutoCloseable

@ClassVersion(sourceVersion="$Id: LineWrapper.java 1105 2024-02-28 12:58:46Z tquadrat $") @API(status=INTERNAL, since="0.0.5") public final class LineWrapper extends Object implements Closeable
Implements soft line wrapping on an Appendable. To use, append characters using append(CharSequence) or soft-wrapping spaces using wrappingSpace(int).
Author:
Square,Inc.
Modified by:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: LineWrapper.java 1105 2024-02-28 12:58:46Z tquadrat $
Since:
0.0.5
UML Diagram
UML Diagram for "org.tquadrat.foundation.javacomposer.internal.LineWrapper"

UML Diagram for "org.tquadrat.foundation.javacomposer.internal.LineWrapper"

UML Diagram for "org.tquadrat.foundation.javacomposer.internal.LineWrapper"
  • Field Details

  • Constructor Details

    • LineWrapper

      public LineWrapper(Appendable out, String indent, int columnLimit)
      Creates a new LineWrapper instance.
      Parameters:
      out - The output target.
      indent - The indentation string.
      columnLimit - The maximum line length.
  • Method Details

    • append

      public final void append(CharSequence input) throws IOException
      Emits the given String. This may be buffered to permit line wraps to be inserted.
      Parameters:
      input - The string to emit.
      Throws:
      IOException - A problem occurred when writing to the output target.
    • close

      public final void close() throws IOException
      This implementation flushes any outstanding text and forbid future writes to this line wrapper.
      Specified by:
      close in interface AutoCloseable
      Specified by:
      close in interface Closeable
      Throws:
      IOException
    • flush

      private final void flush(LineWrapper.FlushType flushType) throws IOException
      Writes the space followed by any buffered text that follows it.
      Parameters:
      flushType - The flush type.
      Throws:
      IOException - A problem occurred when writing to the output target.
    • wrappingSpace

      public final void wrappingSpace(int indentLevel) throws IOException
      Emits either a space or a newline character.
      Parameters:
      indentLevel - The indentation level.
      Throws:
      IOException - A problem occurred when writing to the output target.
    • zeroWidthSpace

      public final void zeroWidthSpace(int indentLevel) throws IOException
      Emits a newline character if the line will exceed its limit, otherwise do nothing.
      Parameters:
      indentLevel - The indentation level.
      Throws:
      IOException - A problem occurred when writing to the output target.