com.twitter.finagle.exp.mysql

StringEncodedRow

class StringEncodedRow extends Row

Defines a row where the data is presumed to be encoded with the mysql text-based protocol. http://dev.mysql.com/doc/internals/en/com-query-response.html#packet-ProtocolText::ResultsetRow

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

Instance Constructors

  1. new StringEncodedRow(rawRow: Buffer, fields: IndexedSeq[Field], indexMap: Map[String, Int])

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. final def ==(arg0: AnyRef): Boolean

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

    Definition Classes
    Any
  6. def apply(columnIndex: Option[Int]): Option[Value]

    Attributes
    protected
    Definition Classes
    Row
  7. def apply(columnName: String): Option[Value]

    Retrieves the Value in the column with the given name.

    Retrieves the Value in the column with the given name.

    columnName

    name of the column.

    returns

    Some(Value) if the column exists with the given name. Otherwise, None.

    Definition Classes
    Row
  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. val buffer: BufferReader

  10. def clone(): AnyRef

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

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

    Definition Classes
    AnyRef → Any
  13. val fields: IndexedSeq[Field]

    Contains a Field object for each Column in the Row.

    Contains a Field object for each Column in the Row. The data is 0-indexed so fields(0) contains the column meta-data for the first column in the Row.

    Definition Classes
    StringEncodedRowRow
  14. def finalize(): Unit

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

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

    Definition Classes
    AnyRef → Any
  17. def indexOf(name: String): Option[Int]

    Retrieves the index of the column with the given name.

    Retrieves the index of the column with the given name.

    returns

    Some(Int) if the column exists with the given name. Otherwise, None.

    Definition Classes
    StringEncodedRowRow
  18. final def isInstanceOf[T0]: Boolean

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

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

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

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

    Definition Classes
    AnyRef
  23. def toString(): String

    Definition Classes
    AnyRef → Any
  24. lazy val values: IndexedSeq[Value]

    Convert the string representation of each value into an appropriate Value object.

    Convert the string representation of each value into an appropriate Value object. http://dev.mysql.com/doc/internals/en/com-query-response.html#packet-ProtocolText::ResultsetRow

    Definition Classes
    StringEncodedRowRow
  25. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from Row

Inherited from AnyRef

Inherited from Any

Ungrouped