Packages

class Tuple extends AnyRef

A general purpose tuple.

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

Instance Constructors

  1. new Tuple(_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

  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

  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

  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

  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

  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

  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

  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

  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

  13. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  14. def asJava: AnyRef
  15. def clear(): Unit
  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
  21. 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

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

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

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

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

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

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

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

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

  31. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  32. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  33. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  34. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  35. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  36. def size(): Int

    returns

    the tuple size

  37. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  38. def toString(): String
    Definition Classes
    AnyRef → Any
  39. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  40. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  41. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped