Use addColumn() to add a new column to a Table object. Typically, you will want to specify a title, so the column may be easily referenced later by name. (If no title is specified, the new column's title will be null .) A column type may also be specified, in which case all value
()
| 1815 | * @see Table#removeColumn(String) |
| 1816 | */ |
| 1817 | public void addColumn() { |
| 1818 | addColumn(null, STRING); |
| 1819 | } |
| 1820 | |
| 1821 | |
| 1822 | /** |