| Interface | Description |
|---|---|
| SubCommand |
| Class | Description |
|---|---|
| ClientCLIConfig | |
| CommandConfig | |
| CommandGetApp | |
| CommandGetFile | |
| CommandGetJob | |
| CommandHelp | |
| CommandKill | |
| CommandKillall | |
| CommandList | |
| CommandListApp | |
| CommandListFiles | |
| CommandLoadApp | |
| CommandRun | |
| CommandSchedule | |
| FileConfiguration | |
| Launcher | |
| MainCommand | |
| TableFormatter |
Use like this:
```
TableFormatter tf = new TableFormatter("title a", "title b", "title c");
tf.feed("A1", "B1", "C1");
tf.feed("A2", "B2 boooooooom", "C2");
tf.feed("A3", "B3", "C3");
System.err.println(tf.titles());
for (String line : tf.lines()) {
System.err.println(line);
}
```
Provides output like this:
```
title a | title b | title c
======= | ============ | =======
A1 | B1 | C1
A2 | B2 booooooom | C2
A3 | B3 | C3
```
|
| TableFormatter.TableFormatIterator | |
| TimestampHelper |