@webref table:method @brief Gets all values in the specified column @param columnName title of the column to search @see Table#getInt(int, int) @see Table#getFloat(int, int) @see Table#getString(int, int) @see Table#setInt(int, int, int) @see Table#setFloat(int, int, float) @see Table#setString(int,
(String columnName)
| 3555 | * @see Table#setString(int, int, String) |
| 3556 | */ |
| 3557 | public String[] getStringColumn(String columnName) { |
| 3558 | int col = getColumnIndex(columnName); |
| 3559 | return (col == -1) ? null : getStringColumn(col); |
| 3560 | } |
| 3561 | |
| 3562 | |
| 3563 | /** |
no test coverage detected