| Interface | Description |
|---|---|
| Edge |
Tuple sub-interface that represents an edge in a graph structure.
|
| Node |
Tuple sub-interface that represents a node in a graph or tree structure.
|
| Tuple |
Tuples are objects representing a row of a data table, providing
a simplified interface to table data.
|
| Class | Description |
|---|---|
| CascadedTable |
Table subclass featuring a "cascaded" table design - a CascadedTable can
have a parent table, from which it inherits a potentially filtered set of
rows and columns.
|
| Graph |
A Graph models a network of nodes connected by a collection of edges.
|
| Schema |
The Schema class represents a description of a Table's columns, including
column names, data types, and default values.
|
| SpanningTree |
Special tree instance for storing a spanning tree over a graph
instance.
|
| Table |
A Table organizes a collection of data into rows and columns, each row
containing a data record, and each column containing data values for a
named data field with a specific data type.
|
| Table.ColumnEntry |
Helper class that encapsulates a map entry for a column, including the
column itself and its metadata and index.
|
| Tree |
Graph subclass that models a tree structure of hierarchical
parent-child relationships.
|
| Exception | Description |
|---|---|
| DataReadOnlyException |
Exception indicating an attempt to write to a read-only data value was made.
|
| DataTypeException |
Exception indicating an incompatible data type assignment.
|