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(value: Any): 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 addAs[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
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

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

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

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

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

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

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

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

    Definition Classes
    AnyRef → Any
  15. def insert(index: Int, value: Any): 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
  16. def insertAs[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. 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
  18. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  19. val name: String

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

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

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

    Definition Classes
    AnyRef
  23. 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
  24. def replace(index: Int, value: Any): 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
  25. def replaceAs[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. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  27. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from GenericColumn

Inherited from AnyRef

Inherited from Any

Ungrouped