Class

com.twitter.finagle.postgres

RowImpl

Related Doc: package postgres

Permalink

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)

    Permalink

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  7. def finalize(): Unit

    Permalink
    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

    Permalink

    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

    Permalink

    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]

    Permalink
    Definition Classes
    RowImplRow
  11. final def getAnyOption(index: Int): Option[Any]

    Permalink
    Definition Classes
    RowImplRow
  12. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  13. final def getOption[T](index: Int)(implicit decoder: ValueDecoder[T]): Option[T]

    Permalink
    Definition Classes
    RowImplRow
  14. final def getOption[T](name: String)(implicit decoder: ValueDecoder[T]): Option[T]

    Permalink
    Definition Classes
    RowImplRow
  15. final def getOrElse[T](name: String, default: ⇒ T)(implicit decoder: ValueDecoder[T]): T

    Permalink
    Definition Classes
    RowImplRow
  16. final def getOrElse[T](index: Int, default: ⇒ T)(implicit decoder: ValueDecoder[T]): T

    Permalink
    Definition Classes
    RowImplRow
  17. final def getTry[T](index: Int)(implicit decoder: ValueDecoder[T]): Try[T]

    Permalink
    Definition Classes
    RowImplRow
  18. final def getTry[T](name: String)(implicit decoder: ValueDecoder[T]): Try[T]

    Permalink
    Definition Classes
    RowImplRow
  19. final def isInstanceOf[T0]: Boolean

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

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

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

    Permalink
    Definition Classes
    AnyRef
  23. val rowFormat: RowFormat

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

    Permalink
    Definition Classes
    AnyRef
  25. val values: Array[Option[ChannelBuffer]]

    Permalink
  26. final def wait(): Unit

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

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

    Permalink
    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