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 iterator: Iterator[Row]

    Attributes
    protected
  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, value: 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 drop(k: Int): Frame

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

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

    Definition Classes
    AnyRef → Any
  13. def exists(p: (Row) ⇒ Boolean): Boolean

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

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

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

  17. def finalize(): Unit

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

  19. def forall(p: (Row) ⇒ Boolean): Boolean

  20. 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

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

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

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

  24. final def isInstanceOf[T0]: Boolean

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

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

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

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

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

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

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

  32. def reduceLeft(f: (Row, Row) ⇒ Row): Frame

  33. def removeColumn(name: String): Frame

  34. def size: Long

  35. 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.

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

    Definition Classes
    AnyRef
  37. def to(sink: Sink): Unit

  38. def toList: List[Row]

  39. def toString(): String

    Definition Classes
    AnyRef → Any
  40. def union(frame: Frame): Frame

  41. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped