fi.pelam.csv.cell

StringCell

final case class StringCell(cellKey: CellKey, serializedString: String) extends Cell with Product with Serializable

The most basic subtype of Cell.

This cell type simply contains the raw data from a position in a CSV text file.

cellKey

the location of the cell in the CSV file.

serializedString

simply the string from the CSV file.

Source
StringCell.scala
Note

However note that any possible quoting is removed and no separator or CSV line ending characters are included.

The lower level CSV parser API CsvReader produces these.

Linear Supertypes
Serializable, Serializable, Product, Equals, Cell, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. StringCell
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Cell
  7. AnyRef
  8. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new StringCell(cellKey: CellKey, serializedString: String)

    cellKey

    the location of the cell in the CSV file.

    serializedString

    simply the string from the CSV file.

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. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  5. val cellKey: CellKey

    the location of the cell in the CSV file.

    the location of the cell in the CSV file.

    Definition Classes
    StringCellCell
  6. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def colIndex: Int

    Shortcut to index in CellKey.colKey

    Shortcut to index in CellKey.colKey

    Definition Classes
    Cell
  8. def colKey: ColKey

    Shortcut to CellKey.colKey

    Shortcut to CellKey.colKey

    Definition Classes
    Cell
  9. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  10. def finalize(): Unit

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

    Definition Classes
    AnyRef → Any
  12. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  16. def rowIndex: Int

    Shortcut to index in CellKey.rowKey

    Shortcut to index in CellKey.rowKey

    Definition Classes
    Cell
  17. def rowKey: RowKey

    Shortcut to CellKey.rowKey

    Shortcut to CellKey.rowKey

    Definition Classes
    Cell
  18. val serializedString: String

    simply the string from the CSV file.

    simply the string from the CSV file.

    Definition Classes
    StringCellCell
  19. def shortString(): String

    Shorter version of toString to be used in debug table outputs.

    Shorter version of toString to be used in debug table outputs. Should identify cell type and value in small amount of text.

    Definition Classes
    StringCellCell
  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  21. def toString(): String

    Definition Classes
    Cell → AnyRef → Any
  22. def updatedCellKey(cellKey: CellKey): Cell

    Make a copy of this cell, but with different cell key.

    Make a copy of this cell, but with different cell key.

    Definition Classes
    StringCellCell
  23. def value: String

    This cell type does not interpret the data contained in the raw CSV cell it represents in any way.

    This cell type does not interpret the data contained in the raw CSV cell it represents in any way.

    returns

    same as serializedString

    Definition Classes
    StringCellCell
  24. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Cell

Inherited from AnyRef

Inherited from Any

Ungrouped