Packages

object CSVUtils

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

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( ... ) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def filterCommentAndEmpty(iter: Iterator[String], options: CSVOptions): Iterator[String]
  9. def filterCommentAndEmpty(lines: Dataset[String], options: CSVOptions): Dataset[String]

    Filter ignorable rows for CSV dataset (lines empty and starting with comment).

    Filter ignorable rows for CSV dataset (lines empty and starting with comment). This is currently being used in CSV schema inference.

  10. def filterHeaderLine(iter: Iterator[String], firstLine: String, options: CSVOptions): Iterator[String]

    Skip the given first line so that only data can remain in a dataset.

    Skip the given first line so that only data can remain in a dataset. This is similar with dropHeaderLine below and currently being used in CSV schema inference.

  11. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. def makeSafeHeader(row: Array[String], caseSensitive: Boolean, options: CSVOptions): Array[String]

    Generates a header from the given row which is null-safe and duplicate-safe.

  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. def sample(csv: RDD[Array[String]], options: CSVOptions): RDD[Array[String]]

    Sample CSV RDD as configured by samplingRatio.

  20. def sample(csv: Dataset[String], options: CSVOptions): Dataset[String]

    Sample CSV dataset as configured by samplingRatio.

  21. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  22. def toString(): String
    Definition Classes
    AnyRef → Any
  23. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped