SparkseeNet  6.0.2
Public Member Functions | List of all members
com.sparsity.sparksee.gdb.ValuesIterator Class Reference

Values iterator class. More...

Public Member Functions

boolean IsClosed ()
 Gets if ValuesIterator instance has been closed or not.
 
void Close ()
 Closes the ValuesIterator instance.
 
bool HasNext ()
 Gets if there are more elements to traverse.
 
com.sparsity.sparksee.gdb.Value Next ()
 Gets the next element to traverse.
 

Detailed Description

Values iterator class.

It allows for traversing all the elements into a Values instance.

Author
Sparsity Technologies http://www.sparsity-technologies.com

Member Function Documentation

void com.sparsity.sparksee.gdb.ValuesIterator.Close ( )

Closes the ValuesIterator instance.

It must be called to ensure the integrity of all data.

bool com.sparsity.sparksee.gdb.ValuesIterator.HasNext ( )

Gets if there are more elements to traverse.

Returns
TRUE if there are more elements to traverse, FALSE otherwise.
boolean com.sparsity.sparksee.gdb.ValuesIterator.IsClosed ( )

Gets if ValuesIterator instance has been closed or not.

See Also
Close()
Returns
TRUE if the ValuesIterator instance has been closed, FALSE otherwise.
com.sparsity.sparksee.gdb.Value com.sparsity.sparksee.gdb.ValuesIterator.Next ( )

Gets the next element to traverse.

Returns
The next element.