io.eels

Frame

trait Frame extends AnyRef

Self Type
Frame
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Frame
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def buffer: Buffer

  2. abstract def schema: FrameSchema

Concrete Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def ++(frame: Frame): Frame

  5. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  6. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  7. def addColumn(name: String, defaultValue: String): Frame

  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def collect(pf: PartialFunction[Row, Row]): Frame

  11. def drop(k: Int): Frame

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

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

    Definition Classes
    AnyRef → Any
  14. def except(other: Frame): Frame

  15. def exists(p: (Row) ⇒ Boolean): Plan[Boolean]

  16. def filter(column: String, p: (String) ⇒ Boolean): Frame

    Filters where the given column matches the given predicate.

  17. def filter(p: (Row) ⇒ Boolean): Frame

  18. def filterNot(p: (Row) ⇒ Boolean): Frame

  19. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. def find(p: (Row) ⇒ Boolean): Plan[Option[Row]]

  21. def forall(p: (Row) ⇒ Boolean): Plan[Boolean]

  22. def foreach[U](f: (Row) ⇒ U): Frame

    Execute a side effect function for every row in the frame, returning the same Frame.

    Execute a side effect function for every row in the frame, returning the same Frame.

    f

    the function to execute

    returns

    this frame, to allow for builder style chaining

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

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

    Definition Classes
    AnyRef → Any
  25. def head: Plan[Option[Row]]

  26. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  27. def join(other: Frame): Frame

  28. def map(f: (Row) ⇒ Row): Frame

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

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

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

    Definition Classes
    AnyRef
  32. def projection(columns: Seq[String]): Frame

  33. def projection(first: String, rest: String*): Frame

  34. def removeColumn(name: String): Frame

  35. def size: Plan[Long]

  36. def step(k: Int): Frame

    Returns a new Frame where only each "step" row is retained.

    Returns a new Frame where only each "step" row is retained. Ie, if step is 2 then rows 1,3,5,7 will be retainined and if step was 10, then 1,11,21,31 etc.

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

    Definition Classes
    AnyRef
  38. def takeWhile(column: String, pred: (String) ⇒ Boolean): Frame

  39. def takeWhile(pred: (Row) ⇒ Boolean): Frame

  40. def to(sink: Sink): ConcurrentPlan[Long]

  41. def toList: Plan[List[Row]]

  42. def toString(): String

    Definition Classes
    AnyRef → Any
  43. def union(other: Frame): Frame

  44. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped