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. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  19. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. def get[T](type: Class[T], pos: Int)(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[T]): T
    Definition Classes
    Tuple
  21. 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

  22. 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
  23. 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

  24. 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
  25. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  26. 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

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

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

  29. 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
  30. 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

  31. 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
  32. 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

  33. 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
  34. 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

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

  37. 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
  38. 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

  39. 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
  40. 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

  41. 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
  42. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  43. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  44. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  45. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  46. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  47. def size(): Int

    returns

    the tuple size

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

Inherited from Tuple

Inherited from AnyRef

Inherited from Any

Ungrouped