SparkseeNet 6.1.0
com.sparsity.sparksee.gdb.ValuesIterator Class Reference

Values iterator class. More...

Public Member Functions

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

◆ Close()

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

Closes the ValuesIterator instance.

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

◆ HasNext()

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.

◆ IsClosed()

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.

◆ Next()

com.sparsity.sparksee.gdb.Value com.sparsity.sparksee.gdb.ValuesIterator.Next ( )

Gets the next element to traverse.

Returns
The next element.