Class

net.tixxit.delimited.DelimitedFormat

Partial

Related Doc: package DelimitedFormat

Permalink

case class Partial(separator: Option[String] = None, quote: Option[String] = None, quoteEscape: Option[String] = None, rowDelim: Option[RowDelim] = None, allowRowDelimInQuotes: Boolean = true) extends GuessDelimitedFormat with Product with Serializable

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Partial
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. GuessDelimitedFormat
  7. DelimitedFormatStrategy
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Partial(separator: Option[String] = None, quote: Option[String] = None, quoteEscape: Option[String] = None, rowDelim: Option[RowDelim] = None, allowRowDelimInQuotes: Boolean = true)

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. val allowRowDelimInQuotes: Boolean

    Permalink
  5. def apply(str: String): DelimitedFormat

    Permalink

    Performs a very naive guess of the DelimitedFormat.

    Performs a very naive guess of the DelimitedFormat. This uses weighted frequencies of occurences of common separators, row-delimiters, quotes, quote escapes, etc. and simply selects the max for each.

    This supports:

    * \r\n and \n as row delimiters, * ',', '\t', ';', and '|' as field delimiters, * '"', and as quote delimiter, * the quote delimiter or \ for quote escapes.

    Definition Classes
    PartialGuessDelimitedFormat
  6. def apply(reader: Reader): (DelimitedFormat, Reader)

    Permalink

    Makes a guess at the format of the CSV accessed by reader.

    Makes a guess at the format of the CSV accessed by reader. This returns the format, as well as the a new pushback reader to be used in place of reader. The original reader will have some data read out of it. The returned reader will contain all the original reader's data.

    Definition Classes
    GuessDelimitedFormat
  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. def clone(): AnyRef

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

    Permalink
    Definition Classes
    AnyRef
  10. def finalize(): Unit

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  16. val quote: Option[String]

    Permalink
  17. val quoteEscape: Option[String]

    Permalink
  18. val rowDelim: Option[RowDelim]

    Permalink
  19. val separator: Option[String]

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

    Permalink
    Definition Classes
    AnyRef
  21. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. def withQuote(quote: String): Partial

    Permalink
    Definition Classes
    PartialDelimitedFormatStrategy
  25. def withQuoteEscape(quoteEscape: String): Partial

    Permalink
    Definition Classes
    PartialDelimitedFormatStrategy
  26. def withRowDelim(rowDelim: String): Partial

    Permalink
    Definition Classes
    PartialDelimitedFormatStrategy
  27. def withRowDelim(rowDelim: RowDelim): Partial

    Permalink
    Definition Classes
    PartialDelimitedFormatStrategy
  28. def withRowDelimInQuotes(allowRowDelimInQuotes: Boolean): Partial

    Permalink
    Definition Classes
    PartialDelimitedFormatStrategy
  29. def withSeparator(separator: String): Partial

    Permalink
    Definition Classes
    PartialDelimitedFormatStrategy

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from GuessDelimitedFormat

Inherited from DelimitedFormatStrategy

Inherited from AnyRef

Inherited from Any

Ungrouped