com.github.martincooper

datatable

package datatable

Visibility
  1. Public
  2. All

Type Members

  1. class DataColumn[T] extends GenericColumn

    Strongly typed data column.

  2. class DataRow extends AnyRef

    Allows access to the underlying data in a row format.

  3. case class DataSet extends Product with Serializable

    DataSet stores a collection of DataTables

  4. class DataTable extends IndexedSeq[DataRow] with ModifiableByName[GenericColumn, DataTable]

    DataTable class.

    DataTable class. Handles the immutable storage of data in a Row / Column format.

  5. case class DataTableException(message: String, cause: Throwable = null) extends Exception with Product with Serializable

  6. class DataView extends IndexedSeq[DataRow]

    Provides a view over a DataTable to store filtered data sets.

  7. trait GenericColumn extends ModifiableByIndex[Any, GenericColumn]

    Generic Column Trait.

    Generic Column Trait. Allows a collection of columns storing data of distinct types to be stored in a generic collection.

  8. trait Modifiable[I, V, R] extends AnyRef

    Trait defining add / update / insert / delete.

  9. trait ModifiableByIndex[V, R] extends Modifiable[Int, V, R]

    Modifiable, with an integer indexer.

  10. trait ModifiableByName[V, R] extends ModifiableByIndex[V, R]

    Modifiable, with additional string (name) indexer.

Value Members

  1. object DataColumnBuilder

  2. object DataSet extends Serializable

    DataSet companion object.

  3. object DataTable

  4. object DataTableFormatter

    Handles the output of a DataTable in a displayable format.

  5. object DataView

  6. object GenericColumn

  7. object VectorExtensions

Ungrouped