Copyright © 2011 Citra Technologies. All Rights Reserved.

com.citra.pivot.olap.data
Interface ValueCursor

All Superinterfaces:
OlapCursor, TupleCursor

public interface ValueCursor
extends TupleCursor

ValueCursor is a cursor that retrieves and assigns olap cell values for a given tuple.


Method Summary
 OlapCell getCurrentValue()
          Returns the current value as an olap cell.
 void setCurrentValue(OlapCell value)
          Assigns a value at the current position of the cursor.
 
Methods inherited from interface com.citra.pivot.olap.data.TupleCursor
getCurrentTuple, setCurrentTuple
 
Methods inherited from interface com.citra.pivot.olap.data.OlapCursor
getPosition, getPositionCount, next, reset, setPosition
 

Method Detail

getCurrentValue

OlapCell getCurrentValue()
Returns the current value as an olap cell.

Returns:
the cursor's current value

setCurrentValue

void setCurrentValue(OlapCell value)
                     throws OlapCursorException
Assigns a value at the current position of the cursor.

Parameters:
value - the value to assign
Throws:
OlapCursorException

Copyright © 2011 Citra Technologies. All Rights Reserved.