Package com.surrealdb

Class ValueIterator

java.lang.Object
com.surrealdb.Native
com.surrealdb.ValueIterator
All Implemented Interfaces:
Iterator<Value>

public class ValueIterator extends Native implements Iterator<Value>
The ValueIterator class provides an iterator for the Value type, allowing iteration over a collection of Value objects, typically used within the context of array structures that extend the functionality provided by the library.

This class implements the Iterator interface for the Value type, enabling standard iteration mechanisms such as hasNext and next methods.

Methods: - hasNext(): Checks if there are more elements in the collection to iterate over. - next(): Returns the next Value in the iteration.