- java.lang.Object
-
- picocli.CommandLine.Help.Column
-
- Enclosing class:
- CommandLine.Help
public static class CommandLine.Help.Column extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
CommandLine.Help.Column.Overflow
Policy for handling text that is longer than the column width: span multiple columns, wrap to the next row, or simply truncate the portion that doesn't fit.
-
Field Summary
Fields Modifier and Type Field Description int
indent
Indent (number of empty spaces at the start of the column preceding the text value)CommandLine.Help.Column.Overflow
overflow
Policy that determines how to handle values larger than the column width.int
width
Column width in characters
-
Constructor Summary
Constructors Constructor Description Column(int width, int indent, CommandLine.Help.Column.Overflow overflow)
-
-
-
Field Detail
-
width
public final int width
Column width in characters
-
indent
public int indent
Indent (number of empty spaces at the start of the column preceding the text value)
-
overflow
public final CommandLine.Help.Column.Overflow overflow
Policy that determines how to handle values larger than the column width.
-
-
Constructor Detail
-
Column
public Column(int width, int indent, CommandLine.Help.Column.Overflow overflow)
-
-