Package | Description |
---|---|
org.scijava.table | |
org.scijava.table.io | |
org.scijava.ui.swing.viewer.table |
Modifier and Type | Interface and Description |
---|---|
interface |
BoolTable
A table of
boolean values. |
interface |
ByteTable
A table of byte-precision integer values.
|
interface |
CharTable
A table of
char values. |
interface |
DoubleTable
A table of double-precision floating point values.
|
interface |
FloatTable
A table of float-precision floating point values.
|
interface |
GenericTable
A flexible table capable of storing any values as
Object s. |
interface |
IntTable
A table of int-precision integer values.
|
interface |
LongTable
A table of long-precision integer values.
|
interface |
ShortTable
A table of short-precision integer values.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractTable<C extends Column<? extends T>,T>
Abstract superclass for column-oriented
Table implementations. |
class |
DefaultBoolTable
Default implementation of
BoolTable . |
class |
DefaultByteTable
Default implementation of
ByteTable . |
class |
DefaultCharTable
Default implementation of
CharTable . |
class |
DefaultDoubleTable
Default implementation of
DoubleTable . |
class |
DefaultFloatTable
Default implementation of
FloatTable . |
class |
DefaultGenericTable
Default implementation of
GenericTable . |
class |
DefaultIntTable
Default implementation of
IntTable . |
class |
DefaultLongTable
Default implementation of
LongTable . |
class |
DefaultShortTable
Default implementation of
ShortTable . |
Modifier and Type | Method and Description |
---|---|
static <T> Table<Column<T>,T> |
Tables.wrap(List<? extends Map<?,T>> data,
List<String> rowHeaders)
Creates a table wrapping a list of maps.
|
static <T> Table<Column<T>,T> |
Tables.wrap(List<T> data,
String colHeader,
List<String> rowHeaders)
Creates a single-column table wrapping a list.
|
static <T> Table<Column<T>,T> |
Tables.wrap(Map<?,T> data,
String colHeader)
Creates a single-column table wrapping a map.
|
Modifier and Type | Method and Description |
---|---|
void |
DefaultTableIOPlugin.save(Table table,
Location destination,
TableIOOptions options) |
Modifier and Type | Method and Description |
---|---|
default Table<?,?> |
TableIOService.open(Location source) |
default Table<?,?> |
TableIOPlugin.open(Location source) |
Table<?,?> |
TableIOService.open(Location source,
TableIOOptions options) |
default Table<?,?> |
TableIOPlugin.open(Location source,
TableIOOptions options)
Opens data from the given source.
|
Table<?,?> |
DefaultTableIOService.open(Location source,
TableIOOptions options) |
Table<?,?> |
TableIOService.open(String source,
TableIOOptions options) |
Table<?,?> |
DefaultTableIOService.open(String source,
TableIOOptions options) |
Modifier and Type | Method and Description |
---|---|
default Class<Table> |
TableIOPlugin.getDataType() |
Modifier and Type | Method and Description |
---|---|
default void |
TableIOService.save(Table<?,?> table,
Location destination) |
void |
TableIOService.save(Table<?,?> table,
Location destination,
TableIOOptions options) |
default void |
TableIOPlugin.save(Table<?,?> data,
Location destination,
TableIOOptions options)
Saves the given data to the specified destination.
|
void |
DefaultTableIOService.save(Table<?,?> table,
Location destination,
TableIOOptions options) |
void |
TableIOService.save(Table<?,?> table,
String destination,
TableIOOptions options) |
void |
DefaultTableIOService.save(Table<?,?> table,
String destination,
TableIOOptions options) |
default void |
TableIOPlugin.save(Table data,
Location destination) |
Constructor and Description |
---|
TableModel(Table<?,?> table) |
Copyright © 2015–2022 SciJava. All rights reserved.