Class BooleanListIterator

java.lang.Object
com.sparsity.sparksee.gdb.BooleanListIterator
All Implemented Interfaces:
Iterator<Boolean>

public class BooleanListIterator extends Object implements Iterator<Boolean>
BooleanList iterator class.

Iterator to traverse all the strings into a BooleanList instance.

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

    • next

      public Boolean next()
      See nextBoolean().

      Specified by:
      next in interface Iterator<Boolean>
    • nextBoolean

      public boolean nextBoolean()
      Gets the next element.

    • hasNext

      public boolean hasNext()
      Gets if there are more elements.

      Specified by:
      hasNext in interface Iterator<Boolean>
      Returns:
      TRUE if there are more elements, FALSE otherwise.
    • remove

      public void remove()
      Operation not supported.

      Specified by:
      remove in interface Iterator<Boolean>