o

ceesvee

CsvParser

object CsvParser

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

Type Members

  1. sealed trait Error extends AnyRef
  2. trait Options extends AnyRef
  3. case class State(leftover: String, insideQuote: Boolean) extends Product with Serializable

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[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. def ignoreLine(line: String): Boolean
  12. def isBlank(line: String): Boolean
  13. def isComment(line: String): Boolean
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. def parse[C[_]](in: Iterator[String], options: Options)(implicit f: Factory[String, C[String]]): Iterator[C[String]]

    Parses the given strings into CSV fields.

    Parses the given strings into CSV fields.

    The given strings must contain new lines as this method splits on them.

    Blank lines and lines starting with '#' are ignored.

    Annotations
    @throws("if a line is longer than `maximumLineLength`")
  19. def parseLine[C[_]](line: String)(implicit f: Factory[String, C[String]]): C[String]

    Parse a line into a collection of CSV fields.

    Parse a line into a collection of CSV fields.

    Annotations
    @SuppressWarnings()
  20. def splitLines(in: Iterator[String], options: Options): Iterator[String]

    Splits the given strings into CSV lines by splitting on either '\r\n' and '\n'.

    Splits the given strings into CSV lines by splitting on either '\r\n' and '\n'.

    Both '"' and '\' are valid escapes for nested double quotes.

    Annotations
    @throws("if a line is longer than `maximumLineLength`")
  21. def splitStrings[C[S] <: Iterable[S]](strings: C[String], state: State)(implicit f: Factory[String, C[String]]): (State, C[String])
    Annotations
    @SuppressWarnings()
  22. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  23. def toString(): String
    Definition Classes
    AnyRef → Any
  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  27. object Error
  28. object Options
  29. object State extends Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped