SNTTable Class Documentation#

Package: sc.fiji.snt.analysis

Extension of DefaultGenericTable with (minor) scripting conveniences.

Methods#

Utilities Methods#

clear()#
clone()#

Getters Methods#

get(int)#
getColumnCount()#
getColumnHeader(int)#
getColumnIndex(String)#
getFirst()#
getLast()#
getRowCount()#
getRowHeader(int)#
getRowIndex(String)#
getSummaryRow()#

Visualization Methods#

createOrUpdateDisplay()#

Creates a new display or updates an existing one.

If no display exists, creates a new table display window. If a display already exists, updates it with the current table contents.

I/O Operations Methods#

static fromFile(String, String)

Script-friendly method for loading tabular data from a file/URL.

Other Methods#

add(int, Object)#
addAll(Collection)#
addColumn(String, [D)#
addFirst(Object)#

Sets a SciJava context to this table.

addGenericColumn(String, Collection)#
addLast(Object)#
appendColumn()#
appendColumns(String;)#
appendRow(String)#
appendRows(String;)#
appendToLastRow(String, Object)#

Appends a value to the last row in the specified column.

If the table is empty, a new row is created first. The value is then set in the specified column of the last row.

contains(Object)#
containsAll(Collection)#
ensureCapacity(int)#
fillEmptyCells(Object)#

Fills all empty cells in the table with the specified value.

Iterates through all cells in the table and replaces null values with the provided replacement value.

forEach(Consumer)#
geColumnHeaders(String)#
geColumnStats(int, int, int)#
geRowStats(String, int, int)#

See Also#