Package

kantan.csv

engine

Permalink

package engine

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

Type Members

  1. trait ReaderEngine extends AnyRef

    Permalink

    Provides kantan.csv with CSV parsing functionality.

    Provides kantan.csv with CSV parsing functionality.

    All methods that will need to create a new instance of CsvReader expect and rely on an implicit ReaderEngine parameter. This allows third party libraries to plug into kantan.csv and replace the default parser at the cost of a simple import.

  2. trait WriterEngine extends AnyRef

    Permalink

    Provides factory-like services for CsvWriter.

    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.

    See also

    ReaderEngine

Value Members

  1. object ReaderEngine

    Permalink

    Provides instance creation methods and default implementations.

  2. object WriterEngine

    Permalink

    Provides creation methods and default implementations.

  3. implicit def javaIterator(it: Iterator[Array[String]]): Iterator[Seq[String]]

    Permalink

    Converts a java iterator of arrays of strings into a scala iterator of sequence of strings.

    Converts a java iterator of arrays of strings into a scala iterator of sequence of strings.

    This is useful when writing ReaderEngine implementations for Java libraries.

Inherited from AnyRef

Inherited from Any

Ungrouped