Packages

class Row extends Tuple

Represents single row of the result set.

Linear Supertypes
Tuple, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Row
  2. Tuple
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Row(_asJava: AnyRef)

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. def addBoolean(value: Boolean): Tuple

    Add a boolean value at the end of the tuple.

    Add a boolean value at the end of the tuple. * @param value the value

    returns

    a reference to this, so the API can be used fluently

    Definition Classes
    Tuple
  5. def addBuffer(value: Buffer): Tuple

    Add a buffer value at the end of the tuple.

    Add a buffer value at the end of the tuple. * @param value the value

    returns

    a reference to this, so the API can be used fluently

    Definition Classes
    Tuple
  6. def addDouble(value: Double): Tuple

    Add a double value at the end of the tuple.

    Add a double value at the end of the tuple. * @param value the value

    returns

    a reference to this, so the API can be used fluently

    Definition Classes
    Tuple
  7. def addFloat(value: Float): Tuple

    Add a float value at the end of the tuple.

    Add a float value at the end of the tuple. * @param value the value

    returns

    a reference to this, so the API can be used fluently

    Definition Classes
    Tuple
  8. def addInteger(value: Int): Tuple

    Add an integer value at the end of the tuple.

    Add an integer value at the end of the tuple. * @param value the value

    returns

    a reference to this, so the API can be used fluently

    Definition Classes
    Tuple
  9. def addLong(value: Long): Tuple

    Add a long value at the end of the tuple.

    Add a long value at the end of the tuple. * @param value the value

    returns

    a reference to this, so the API can be used fluently

    Definition Classes
    Tuple
  10. def addShort(value: Short): Tuple

    Add a short value at the end of the tuple.

    Add a short value at the end of the tuple. * @param value the value

    returns

    a reference to this, so the API can be used fluently

    Definition Classes
    Tuple
  11. def addString(value: String): Tuple

    Add a string value at the end of the tuple.

    Add a string value at the end of the tuple. * @param value the value

    returns

    a reference to this, so the API can be used fluently

    Definition Classes
    Tuple
  12. def addValue(value: AnyRef): Tuple

    Add an object value at the end of the tuple.

    Add an object value at the end of the tuple. * @param value the value

    returns

    a reference to this, so the API can be used fluently

    Definition Classes
    Tuple
  13. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  14. def asJava: AnyRef
    Definition Classes
    Tuple
  15. def clear(): Unit
    Definition Classes
    Tuple
  16. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  17. def deepToString(): String

    returns

    A String containing the Object#toString value of each element, separated by a comma (,) character

    Definition Classes
    Tuple
  18. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  20. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  21. def get[T](type: Class[T], pos: Int)(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[T]): T
    Definition Classes
    Tuple
  22. def getBoolean(name: String): Boolean

    Get a boolean value at pos.

    Get a boolean value at pos. * @param name the column

    returns

    the value or null

  23. def getBoolean(pos: Int): Boolean

    Get a boolean value at pos.

    Get a boolean value at pos. * @param pos the position

    returns

    the value or null

    Definition Classes
    Tuple
  24. def getBuffer(name: String): Buffer

    Get a buffer value at pos.

    Get a buffer value at pos. * @param name the column

    returns

    the value or null

  25. def getBuffer(pos: Int): Buffer

    Get a buffer value at pos.

    Get a buffer value at pos. * @param pos the position

    returns

    the value or null

    Definition Classes
    Tuple
  26. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  27. def getColumnIndex(name: String): Int

    Get a column position for the given column name.

    Get a column position for the given column name. * @param name the column name

    returns

    the column name or -1 if not found

  28. def getColumnName(pos: Int): String

    Get a column name at pos.

    Get a column name at pos. * @param pos the column position

    returns

    the column name or null

  29. def getDouble(name: String): Double

    Get a double value at pos.

    Get a double value at pos. * @param name the column

    returns

    the value or null

  30. def getDouble(pos: Int): Double

    Get a double value at pos.

    Get a double value at pos. * @param pos the position

    returns

    the value or null

    Definition Classes
    Tuple
  31. def getFloat(name: String): Float

    Get a float value at pos.

    Get a float value at pos. * @param name the column

    returns

    the value or null

  32. def getFloat(pos: Int): Float

    Get a float value at pos.

    Get a float value at pos. * @param pos the position

    returns

    the value or null

    Definition Classes
    Tuple
  33. def getInteger(name: String): Int

    Get an integer value at pos.

    Get an integer value at pos. * @param name the column

    returns

    the value or null

  34. def getInteger(pos: Int): Int

    Get an integer value at pos.

    Get an integer value at pos. * @param pos the position

    returns

    the value or null

    Definition Classes
    Tuple
  35. def getLong(name: String): Long

    Get a long value at pos.

    Get a long value at pos. * @param name the column

    returns

    the value or null

  36. def getLong(pos: Int): Long

    Get a long value at pos.

    Get a long value at pos. * @param pos the position

    returns

    the value or null

    Definition Classes
    Tuple
  37. def getShort(name: String): Short

    Get a short value at pos.

    Get a short value at pos. * @param name the column

    returns

    the value or null

  38. def getShort(pos: Int): Short

    Get a short value at pos.

    Get a short value at pos. * @param pos the position

    returns

    the value or null

    Definition Classes
    Tuple
  39. def getString(name: String): String

    Get a string value at pos.

    Get a string value at pos. * @param name the column

    returns

    the value or null

  40. def getString(pos: Int): String

    Get a string value at pos.

    Get a string value at pos. * @param pos the position

    returns

    the value or null

    Definition Classes
    Tuple
  41. def getValue(name: String): AnyRef

    Get an object value at pos.

    Get an object value at pos. * @param name the column

    returns

    the value or null

  42. def getValue(pos: Int): AnyRef

    Get an object value at pos.

    Get an object value at pos. * @param pos the position

    returns

    the value or null

    Definition Classes
    Tuple
  43. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  44. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  45. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  46. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  47. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  48. def size(): Int

    returns

    the tuple size

    Definition Classes
    Tuple
  49. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  50. def toString(): String
    Definition Classes
    AnyRef → Any
  51. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  52. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  53. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from Tuple

Inherited from AnyRef

Inherited from Any

Ungrouped