com.github.martincooper.datatable

DataColumn

class DataColumn[T] extends GenericColumn

Strongly typed data column.

Linear Supertypes
GenericColumn, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. DataColumn
  2. GenericColumn
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new DataColumn(columnName: String, columnData: Iterable[T])(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[T])

Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  4. def add[V](value: V)(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[V]): Try[GenericColumn]

    Returns a new DataColumn[T] with the value added at the end.

    Returns a new DataColumn[T] with the value added at the end.

    Definition Classes
    DataColumnGenericColumn
  5. def add(value: DataValue): Try[GenericColumn]

    Returns a new DataColumn[T] with the value added at the end.

    Returns a new DataColumn[T] with the value added at the end.

    Definition Classes
    DataColumnGenericColumn
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def buildFromRows(rowIndexes: Iterable[Int]): Try[DataColumn[T]]

    Builds a new DataColumn[T] from the values at the specified index.

    Builds a new DataColumn[T] from the values at the specified index.

    Definition Classes
    DataColumnGenericColumn
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. val columnType: scala.reflect.api.JavaUniverse.Type

    Definition Classes
    DataColumnGenericColumn
  10. val data: Vector[T]

    Definition Classes
    DataColumnGenericColumn
  11. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  15. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  16. def insert[V](index: Int, value: V)(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[V]): Try[GenericColumn]

    Returns a new DataColumn[T] with the value inserted at the specified index.

    Returns a new DataColumn[T] with the value inserted at the specified index.

    Definition Classes
    DataColumnGenericColumn
  17. def insert(index: Int, value: DataValue): Try[GenericColumn]

    Returns a new DataColumn[T] with the value inserted at the specified index.

    Returns a new DataColumn[T] with the value inserted at the specified index.

    Definition Classes
    DataColumnGenericColumn
  18. val isComparable: Boolean

    Checks if the current type for this column has a default compare method.

    Checks if the current type for this column has a default compare method.

    Definition Classes
    DataColumnGenericColumn
  19. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  20. val name: String

    Definition Classes
    DataColumnGenericColumn
  21. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  22. final def notify(): Unit

    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  24. def remove(index: Int): Try[DataColumn[T]]

    Returns a new DataColumn[T] with the value at the specified removed.

    Returns a new DataColumn[T] with the value at the specified removed.

    Definition Classes
    DataColumnGenericColumn
  25. def replace[V](index: Int, value: V)(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[V]): Try[GenericColumn]

    Returns a new DataColumn[T] with the new value replacing the one at the specified index.

    Returns a new DataColumn[T] with the new value replacing the one at the specified index.

    Definition Classes
    DataColumnGenericColumn
  26. def replace(index: Int, value: DataValue): Try[GenericColumn]

    Returns a new DataColumn[T] with the new value replacing the one at the specified index.

    Returns a new DataColumn[T] with the new value replacing the one at the specified index.

    Definition Classes
    DataColumnGenericColumn
  27. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  28. def toString(): String

    Definition Classes
    DataColumn → AnyRef → Any
  29. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from GenericColumn

Inherited from AnyRef

Inherited from Any

Ungrouped