Trait

org.emmalanguage.api

DataBagCompanion

Related Doc: package api

Permalink

trait DataBagCompanion[E] extends AnyRef

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

Abstract Value Members

  1. abstract def apply[A](values: Seq[A])(implicit arg0: Meta[A], env: E): DataBag[A]

    Permalink

    Sequence constructor.

    Sequence constructor.

    A

    The element type for the DataBag.

    values

    The values contained in the bag.

    env

    An execution environment instance.

  2. abstract def empty[A](implicit arg0: Meta[A], env: E): DataBag[A]

    Permalink

    Empty constructor.

    Empty constructor.

    A

    The element type for the DataBag.

    env

    An execution environment instance.

  3. abstract def readCSV[A](path: String, format: CSV)(implicit arg0: Meta[A], arg1: CSVConverter[A], env: E): DataBag[A]

    Permalink

    Reads a DataBag from the specified path using in a CSV format.

    Reads a DataBag from the specified path using in a CSV format.

    A

    the type of elements to read.

    path

    The location where the data will be read from.

    format

    The CSV format configuration.

    env

    An execution environment instance.

  4. abstract def readParquet[A](path: String, format: Parquet)(implicit arg0: Meta[A], arg1: ParquetConverter[A], env: E): DataBag[A]

    Permalink

    Reads a DataBag into the specified path using a Parquet format.

    Reads a DataBag into the specified path using a Parquet format.

    A

    the type of elements to read.

    path

    The location where the data will be read from.

    format

    The Parquet format configuration.

    env

    An execution environment instance.

  5. abstract def readText(path: String)(implicit env: E): DataBag[String]

    Permalink

    Reads a DataBag[String] elements from the specified path.

    Reads a DataBag[String] elements from the specified path.

    path

    The location where the data will be read from.

    env

    An execution environment instance.

Concrete 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. final def asInstanceOf[T0]: T0

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

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

    Permalink
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. def from[DColl[_], A](coll: DColl[A])(implicit conv: (DColl[A]) ⇒ DataBag[A]): DataBag[A]

    Permalink

    Distributed collection constructor.

    Distributed collection constructor.

    A

    The element type for the DataBag.

    coll

    A distributed collection with input values.

    conv

    A distributed collection converter.

  10. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  11. def hashCode(): Int

    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. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  17. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  18. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped