fi.pelam.csv.stream

CsvWriter

final class CsvWriter extends AnyRef

Opposite of CsvReader. The API is simple. There are just 3 public methods. One to write a single cell and another to write a TraversableOnce of cells.

The third method goToNextRow should be called last after the last cell to write the line feed at the end of the file.

The cells are expected to be in top to bottom left to right order. The sequence of cells can contain holes. Empty cells in CSV data will be emitted for those.

This class handles quoting, but all other special processing is handled by fi.pelam.csv.cell.Cell.serializedString implementations.

Source
CsvWriter.scala
Note

This class does not flush or close the output stream. Client must take care of that.

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

Instance Constructors

  1. new CsvWriter(output: Writer, separator: Char = defaultSeparatorChar)

    output

    Java writer to write the CSV data to.

    separator

    Optionally specify CSV separator to use.

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. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

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

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

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

    Definition Classes
    AnyRef → Any
  10. def goToNextRow(): Unit

    This method can be used to force final line feed to CSV file that some programs might expect.

    This method can be used to force final line feed to CSV file that some programs might expect.

    If emitted between cells keyed to successive rows, this has no effect.

  11. def hashCode(): Int

    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. val output: Writer

    Java writer to write the CSV data to.

  17. val separator: Char

    Optionally specify CSV separator to use.

  18. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  19. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. def write(cells: TraversableOnce[Cell]): Unit

    Shortcut to call write for each cell in a traversable.

    Shortcut to call write for each cell in a traversable.

    The cells are expected to be in CellKey order.

    cells

    sequence of cells to be written.

  24. def write(cell: Cell): Unit

    Write a single cell to output stream.

    Write a single cell to output stream.

    Will throw a RuntimeException if cell with succeeding CellKey has already been written. This is because cells are expected to be written in natural order of CellKeys (rows top down, columns right to left).

    cell

    to write.

Inherited from AnyRef

Inherited from Any

Ungrouped