Copyright © 2011 Citra Technologies. All Rights Reserved.

com.citra.pivot.olap.data
Interface TupleCursor

All Superinterfaces:
OlapCursor
All Known Subinterfaces:
ValueCursor

public interface TupleCursor
extends OlapCursor

TupleCursor is a cursor that retrieves and assigns olap tuples at a given position.


Method Summary
 OlapTuple getCurrentTuple()
          Returns the current tuple of the cursor.
 void setCurrentTuple(OlapTuple tuple)
          Assigns a tuple at the current position of the cursor.
 
Methods inherited from interface com.citra.pivot.olap.data.OlapCursor
getPosition, getPositionCount, next, reset, setPosition
 

Method Detail

getCurrentTuple

OlapTuple getCurrentTuple()
Returns the current tuple of the cursor.

Returns:
the cursor's current tuple

setCurrentTuple

void setCurrentTuple(OlapTuple tuple)
                     throws OlapCursorException
Assigns a tuple at the current position of the cursor.

Parameters:
tuple - the tuple to assign
Throws:
OlapCursorException

Copyright © 2011 Citra Technologies. All Rights Reserved.