Object/Trait

org.emmalanguage.io.csv

CSVConverter

Related Docs: trait CSVConverter | package csv

Permalink

object CSVConverter extends Serializable

Factory methods and implicit instances of CSV converters.

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CSVConverter
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

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. def apply[T](implicit converter: CSVConverter[T]): CSVConverter[T]

    Permalink

    Summons an implicit codec for type T available in scope.

  5. implicit def arrayCSVConverter[A](implicit A: CSVColumn[A], ctag: ClassTag[A]): CSVConverter[Array[A]]

    Permalink

    Creates an Array codec from an element column.

    Creates an Array codec from an element column. In this way only flat arrays are supported. A ClassTag is required to decode instances.

  6. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. implicit def dataBagCSVConverter[A](implicit arg0: CSVColumn[A], arg1: Meta[A]): CSVConverter[DataBag[A]]

    Permalink

    Creates a DataBag codec from an element column.

    Creates a DataBag codec from an element column. Note: data must be collected before encoding.

  9. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. implicit def genericCSVConverter[T, R <: HList](implicit gen: Aux[T, R], R: Lazy[CSVConverter[R]]): CSVConverter[T]

    Permalink

    Generates a codec for a case class, given codecs for its fields.

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

    Permalink
    Definition Classes
    AnyRef → Any
  14. implicit def hConsCSVConverter[H, T <: HList](implicit H: Lazy[CSVConverter[H]], T: Lazy[CSVConverter[T]]): CSVConverter[::[H, T]]

    Permalink

    Inductively generates a codec for an HList, given codecs for its elements.

  15. implicit val hNilCSVConverter: CSVConverter[HNil]

    Permalink

    An empty codec for HNil.

  16. def hashCode(): Int

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

    Permalink
    Definition Classes
    Any
  18. def iso[A, B](implicit iso: <=>[A, B], underlying: CSVConverter[A]): CSVConverter[B]

    Permalink

    Derives a new codec for type B from an existing codec for type A, given an (implicit) isomorphism between A and B.

  19. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  22. implicit def singleColumnCSVConverter[T](implicit T: CSVColumn[T]): CSVConverter[T]

    Permalink

    Creates a codec with a single column.

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  25. implicit def traversableCSVConverter[T[x] <: Traversable[x], A](implicit TA: CanBuild[A, T[A]], A: CSVColumn[A]): CSVConverter[T[A]]

    Permalink

    Creates a codec for a Traversable collection from an element column.

    Creates a codec for a Traversable collection from an element column. In this way only flat collections are supported.

  26. final def wait(): Unit

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

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

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

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped