Class CommandLine.Help.TextTable

java.lang.Object
org.apache.logging.log4j.core.tools.picocli.CommandLine.Help.TextTable
Enclosing class:
CommandLine.Help

public static class CommandLine.Help.TextTable extends Object

Responsible for spacing out CommandLine.Help.Ansi.Text values according to the CommandLine.Help.Column definitions the table was created with. Columns have a width, indentation, and an overflow policy that decides what to do if a value is longer than the column's width.

  • Field Details

    • columns

      public final CommandLine.Help.Column[] columns
      The column definitions of this table.
    • columnValues

      protected final List<CommandLine.Help.Ansi.Text> columnValues
      The char[] slots of the TextTable to copy text values into.
    • indentWrappedLines

      public int indentWrappedLines
      By default, indent wrapped lines by 2 spaces.
    • ansi

      private final CommandLine.Help.Ansi ansi
  • Constructor Details

    • TextTable

      public TextTable(CommandLine.Help.Ansi ansi)
      Constructs a TextTable with five columns as follows:
      1. required option/parameter marker (width: 2, indent: 0, TRUNCATE on overflow)
      2. short option name (width: 2, indent: 0, TRUNCATE on overflow)
      3. comma separator (width: 1, indent: 0, TRUNCATE on overflow)
      4. long option name(s) (width: 24, indent: 1, SPAN multiple columns on overflow)
      5. description line(s) (width: 51, indent: 1, WRAP to next row on overflow)
      Parameters:
      ansi - whether to emit ANSI escape codes or not
    • TextTable

      public TextTable(CommandLine.Help.Ansi ansi, int... columnWidths)
      Constructs a new TextTable with columns with the specified width, all SPANning multiple columns on overflow except the last column which WRAPS to the next row.
      Parameters:
      ansi - whether to emit ANSI escape codes or not
      columnWidths - the width of the table columns (all columns have zero indent)
    • TextTable

      public TextTable(CommandLine.Help.Ansi ansi, CommandLine.Help.Column... columns)
      Constructs a TextTable with the specified columns.
      Parameters:
      ansi - whether to emit ANSI escape codes or not
      columns - columns to construct this TextTable with
  • Method Details

    • textAt

      public CommandLine.Help.Ansi.Text textAt(int row, int col)
      Returns the Text slot at the specified row and column to write a text value into.
      Parameters:
      row - the row of the cell whose Text to return
      col - the column of the cell whose Text to return
      Returns:
      the Text object at the specified row and column
      Since:
      2.0
    • cellAt

      @Deprecated public CommandLine.Help.Ansi.Text cellAt(int row, int col)
      Deprecated.
      use textAt(int, int) instead
      Returns the Text slot at the specified row and column to write a text value into.
      Parameters:
      row - the row of the cell whose Text to return
      col - the column of the cell whose Text to return
      Returns:
      the Text object at the specified row and column
    • rowCount

      public int rowCount()
      Returns the current number of rows of this TextTable.
      Returns:
      the current number of rows in this TextTable
    • addEmptyRow

      public void addEmptyRow()
      Adds the required char[] slots for a new row to the columnValues field.
    • addRowValues

      public void addRowValues(String... values)
      Parameters:
      values - the text values to display in each column of the current row
    • addRowValues

      public void addRowValues(CommandLine.Help.Ansi.Text... values)
      Adds a new empty row, then calls putValue for each of the specified values, adding more empty rows if the return value indicates that the value spanned multiple columns or was wrapped to multiple rows.
      Parameters:
      values - the values to write into a new row in this TextTable
      Throws:
      IllegalArgumentException - if the number of values exceeds the number of Columns in this table
    • putValue

      public CommandLine.Help.TextTable.Cell putValue(int row, int col, CommandLine.Help.Ansi.Text value)
      Writes the specified value into the cell at the specified row and column and returns the last row and column written to. Depending on the Column's Overflow policy, the value may span multiple columns or wrap to multiple rows when larger than the column width.
      Parameters:
      row - the target row in the table
      col - the target column in the table to write to
      value - the value to write
      Returns:
      a Cell indicating the position in the table that was last written to (since 2.0)
      Throws:
      IllegalArgumentException - if the specified row exceeds the table's row count
      Since:
      2.0 (previous versions returned a java.awt.Point object)
    • length

      private static int length(CommandLine.Help.Ansi.Text str)
    • copy

      private int copy(BreakIterator line, CommandLine.Help.Ansi.Text text, CommandLine.Help.Ansi.Text columnValue, int offset)
    • copy

      private static int copy(CommandLine.Help.Ansi.Text value, CommandLine.Help.Ansi.Text destination, int offset)
    • toString

      public StringBuilder toString(StringBuilder text)
      Copies the text representation that we built up from the options into the specified StringBuilder.
      Parameters:
      text - the StringBuilder to write into
      Returns:
      the specified StringBuilder object (to allow method chaining and a more fluid API)
    • toString

      public String toString()
      Overrides:
      toString in class Object