sqlest.extractor

ListMultiRowExtractor

Related Doc: package extractor

case class ListMultiRowExtractor[Row, A](inner: Extractor[Row, A]) extends Extractor[Row, List[A]] with SimpleExtractor[Row, List[A]] with Product with Serializable

An extractor that accumulates results from rows into a list.

Linear Supertypes
Serializable, Serializable, Product, Equals, SimpleExtractor[Row, List[A]], Extractor[Row, List[A]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ListMultiRowExtractor
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. SimpleExtractor
  7. Extractor
  8. AnyRef
  9. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ListMultiRowExtractor(inner: Extractor[Row, A])

Type Members

  1. type Accumulator = Queue[Option[A]]

    Definition Classes
    ListMultiRowExtractorExtractor
  2. type SingleResult = List[A]

    Definition Classes
    SimpleExtractor

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. def accumulate(accumulator: Queue[Option[A]], row: Row): Accumulator

    Definition Classes
    ListMultiRowExtractorExtractor
  5. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  6. def asOption: OptionExtractor[Row, List[A]]

    Definition Classes
    Extractor
  7. def checkNullValueAndGet[T](t: Option[T]): T

    Attributes
    protected
    Definition Classes
    Extractor
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def emit(accumulator: Queue[Option[A]]): Option[List[A]]

    Definition Classes
    ListMultiRowExtractorExtractor
  10. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  11. def extractAll(rows: Iterable[Row]): List[List[A]]

    Definition Classes
    SimpleExtractor
  12. def extractHeadOption(rows: Iterable[Row]): Option[List[A]]

    Definition Classes
    SimpleExtractor
  13. def finalize(): Unit

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

    Definition Classes
    AnyRef → Any
  15. def groupBy[B](groupBy: Extractor[Row, B]): GroupedExtractor[Row, List[A], B]

    Definition Classes
    SimpleExtractor
  16. def initialize(row: Row): Queue[Option[A]]

    Definition Classes
    ListMultiRowExtractorExtractor
  17. val inner: Extractor[Row, A]

  18. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  19. def map[B](func: (List[A]) ⇒ B): MappedExtractor[Row, List[A], B]

    Definition Classes
    Extractor
  20. final def ne(arg0: AnyRef): Boolean

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

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

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

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from SimpleExtractor[Row, List[A]]

Inherited from Extractor[Row, List[A]]

Inherited from AnyRef

Inherited from Any

Ungrouped