Class IntBitSet.IntBitSetIterator

java.lang.Object
org.apache.uima.internal.util.IntBitSet.IntBitSetIterator
All Implemented Interfaces:
IntListIterator
Enclosing class:
IntBitSet

private class IntBitSet.IntBitSetIterator extends Object implements IntListIterator
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected int
    This is the bit set position which is -1 (if invalid) or the position in the bit set of the key - offset If the offset is not 0, then the position != key
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    protected
     
  • Method Summary

    Modifier and Type
    Method
    Description
    final boolean
    Check if there is a next element.
    boolean
    Check if there is a previous element.
    void
    Move the iterator to the end of the underlying index.
    void
    Move the iterator to the start of the underlying index.
    final int
    Return the next feature structure and increment the iterator.
    int
    Return the previous feature structure and decrement the iterator.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • curKey

      protected int curKey
      This is the bit set position which is -1 (if invalid) or the position in the bit set of the key - offset If the offset is not 0, then the position != key
  • Constructor Details

    • IntBitSetIterator

      protected IntBitSetIterator()
  • Method Details