- java.lang.Object
-
- org.postgresql.pljava.internal.TupleTable
-
public class TupleTable extends Object
TheSPITupleTable
correspons to the internal PostgreSQLSPITupleTable
type.- Author:
- Thomas Hallgren
-
-
Method Summary
Modifier and Type Method Description int
getCount()
Returns the number ofTuple
instances contained in this table.Tuple
getSlot(int position)
Returns theTuple
at the given index.TupleDesc
getTupleDesc()
-
-
-
Method Detail
-
getTupleDesc
public final TupleDesc getTupleDesc()
-
getCount
public final int getCount()
Returns the number ofTuple
instances contained in this table.
-
getSlot
public final Tuple getSlot(int position)
Returns theTuple
at the given index.- Parameters:
position
- Index of desired slot. First slot has index zero.
-
-