org.allenai.pipeline

ColumnFormats

Related Doc: package pipeline

trait ColumnFormats extends AnyRef

Support for persisting to a column-delimited file. Persisted object can be a case-class or Tuple. Each field of the object must be a primitive type (Int, Double, String) and will be written as a column in the output file.

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ColumnFormats
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
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. implicit object BooleanToString extends StringSerializable[Boolean]

  5. implicit object DoubleToString extends StringSerializable[Double]

  6. implicit object FloatToString extends StringSerializable[Float]

  7. implicit object IntToString extends StringSerializable[Int]

  8. implicit object StringToString extends StringSerializable[String]

  9. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  10. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. def columnArrayFormat[T](sep: Char = '\t')(implicit arg0: SS[T], arg1: ClassTag[T]): SS[Array[T]]

  12. def columnFormat[P1, T <: Product](construct: (P1) ⇒ T)(implicit p1Parser: SS[P1]): SS[T]

  13. def columnFormat2[P1, P2, T <: Product](construct: (P1, P2) ⇒ T, sep: Char = '\t')(implicit p1Parser: SS[P1], p2Parser: SS[P2]): SS[T]

  14. def columnFormat3[P1, P2, P3, T <: Product](construct: (P1, P2, P3) ⇒ T, sep: Char = '\t')(implicit p1Parser: SS[P1], p2Parser: SS[P2], p3Parser: SS[P3]): SS[T]

  15. def columnFormat4[P1, P2, P3, P4, T <: Product](construct: (P1, P2, P3, P4) ⇒ T, sep: Char = '\t')(implicit p1Parser: SS[P1], p2Parser: SS[P2], p3Parser: SS[P3], p4Parser: SS[P4]): SS[T]

  16. def columnFormat5[P1, P2, P3, P4, P5, T <: Product](construct: (P1, P2, P3, P4, P5) ⇒ T, sep: Char = '\t')(implicit p1Parser: SS[P1], p2Parser: SS[P2], p3Parser: SS[P3], p4Parser: SS[P4], p5Parser: SS[P5]): SS[T]

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

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

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

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

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

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

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

    Definition Classes
    AnyRef
  24. final def notify(): Unit

    Definition Classes
    AnyRef
  25. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  26. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  27. def toString(): String

    Definition Classes
    AnyRef → Any
  28. implicit def tuple2ColumnFormat[T1, T2](sep: Char = '\t')(implicit arg0: SS[T1], arg1: SS[T2]): SS[(T1, T2)]

  29. implicit def tuple3ColumnFormat[T1, T2, T3](sep: Char = '\t')(implicit arg0: SS[T1], arg1: SS[T2], arg2: SS[T3]): SS[(T1, T2, T3)]

  30. implicit def tuple4ColumnFormat[T1, T2, T3, T4](sep: Char = '\t')(implicit arg0: SS[T1], arg1: SS[T2], arg2: SS[T3], arg3: SS[T4]): SS[(T1, T2, T3, T4)]

  31. implicit def tuple5ColumnFormat[T1, T2, T3, T4, T5](sep: Char = '\t')(implicit arg0: SS[T1], arg1: SS[T2], arg2: SS[T3], arg3: SS[T4], arg4: SS[T5]): SS[(T1, T2, T3, T4, T5)]

  32. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped