Uses of Class
com.tangosol.util.PrimitiveSparseArray.Iterator

Package
Description
Contains various generic utilities.
  • Uses of PrimitiveSparseArray.Iterator in com.tangosol.util

    Modifier and Type
    Method
    Description
    PrimitiveSparseArray.iterator()
    Obtain a LongArray.Iterator of the contents of the LongArray.
    PrimitiveSparseArray.iterator(long lIndex)
    Obtain a LongArray.Iterator of the contents of the LongArray, starting at a particular index such that the first call to next will set the location of the iterator at the first existent index that is greater than or equal to the specified index, or will throw a NoSuchElementException if there is no such existent index.
    PrimitiveSparseArray.reverseIterator()
    Obtain a LongArray.Iterator of the contents of the LongArray in reverse order (decreasing indices).
    PrimitiveSparseArray.reverseIterator(long lIndex)
    Obtain a LongArray.Iterator of the contents of the LongArray in reverse order (decreasing indices), starting at a particular index such that the first call to next will set the location of the iterator at the first existent index that is less than or equal to the specified index, or will throw a NoSuchElementException if there is no such existent index.