case class RowImpl(values: Array[Option[ChannelBuffer]], rowFormat: RowFormat) extends Row with Product with Serializable

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RowImpl
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Row
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RowImpl(values: Array[Option[ChannelBuffer]], rowFormat: RowFormat)

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  8. final def get[T](index: Int)(implicit decoder: ValueDecoder[T]): T

    Danger zone! If T is primitive, and the column is NULL, we explicitly cast null to T which will result in unexpected results:

    Danger zone! If T is primitive, and the column is NULL, we explicitly cast null to T which will result in unexpected results:

    null.asInstanceOf[Int] // 0 null.asInstanceOf[Boolean] // false

    And so forth. Therefore, use of get is discouraged, with getOption or getTry preferred.

    Definition Classes
    RowImplRow
  9. final def get[T](name: String)(implicit decoder: ValueDecoder[T]): T

    Danger zone! See get[T](Int) below

    Danger zone! See get[T](Int) below

    Definition Classes
    RowImplRow
  10. final def getAnyOption(name: String): Option[Any]
    Definition Classes
    RowImplRow
  11. final def getAnyOption(index: Int): Option[Any]
    Definition Classes
    RowImplRow
  12. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  13. final def getOption[T](index: Int)(implicit decoder: ValueDecoder[T]): Option[T]
    Definition Classes
    RowImplRow
  14. final def getOption[T](name: String)(implicit decoder: ValueDecoder[T]): Option[T]
    Definition Classes
    RowImplRow
  15. final def getOrElse[T](name: String, default: ⇒ T)(implicit decoder: ValueDecoder[T]): T
    Definition Classes
    RowImplRow
  16. final def getOrElse[T](index: Int, default: ⇒ T)(implicit decoder: ValueDecoder[T]): T
    Definition Classes
    RowImplRow
  17. final def getTry[T](index: Int)(implicit decoder: ValueDecoder[T]): Try[T]
    Definition Classes
    RowImplRow
  18. final def getTry[T](name: String)(implicit decoder: ValueDecoder[T]): Try[T]
    Definition Classes
    RowImplRow
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  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. val rowFormat: RowFormat
  24. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  25. val values: Array[Option[ChannelBuffer]]
  26. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. 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 Row

Inherited from AnyRef

Inherited from Any

Ungrouped