Packages

trait WriterEngine extends AnyRef

Provides factory-like services for CsvWriter.

Functions that create instances of CsvWriter, either as part of their return types or for internal operations, can declare an implicit CsvWriter parameter. If one is imported explicitly (such as the Jackson engine), it will be used. Otherwise, the internal one is always in scope.

Source
WriterEngine.scala
See also

ReaderEngine

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. WriterEngine
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def writerFor(writer: Writer, conf: CsvConfiguration): CsvWriter[Seq[String]]

    Creates a new instance of CsvWriter that writes encoded data to the specified writer.

    Creates a new instance of CsvWriter that writes encoded data to the specified writer.

    writer

    where to write encoded data.

    conf

    column separator.