Skip navigation links

Oracle® Fusion Middleware Java API Reference for Oracle Coherence
12c (12.1.3.0.0)

E47890-01


com.tangosol.util
Class PrimitiveSparseArray.Iterator

java.lang.Object
  extended by com.tangosol.util.PrimitiveSparseArray.Iterator

All Implemented Interfaces:
com.oracle.common.collections.LongArray.Iterator, java.lang.Cloneable, java.util.Iterator
Enclosing class:
PrimitiveSparseArray

public class PrimitiveSparseArray.Iterator
extends java.lang.Object
implements LongArray.Iterator

Iterator over long values stored in the tree.


Constructor Summary
protected PrimitiveSparseArray.Iterator(com.oracle.common.collections.AbstractSparseArray.Node head, int fromdir, boolean fForward)
          Instantiate a new PrimitiveIterator at the specified location and direction.

 

Method Summary
 long getPrimitiveValue()
          Returns the current value, which is the same value returned by the most recent call to the nextPrimitive method, or the most recent value passed to setPrimitiveValue if setPrimitiveValue were called after the nextPrimitive method.
 long nextPrimitive()
          Returns the next element (as a long) in the iteration.
 long setPrimitiveValue(long lValue)
          Stores a new value at the current value index, returning the value that was replaced.

 

Methods inherited from interface com.oracle.common.collections.LongArray.Iterator
getIndex, getValue, hasNext, next, remove, setValue

 

Constructor Detail

PrimitiveSparseArray.Iterator

protected PrimitiveSparseArray.Iterator(com.oracle.common.collections.AbstractSparseArray.Node head,
                                        int fromdir,
                                        boolean fForward)
Instantiate a new PrimitiveIterator at the specified location and direction.
Parameters:
head - the node at which to start the crawl
fromdir - the direction in which to start the crawl

Method Detail

nextPrimitive

public long nextPrimitive()
Returns the next element (as a long) in the iteration.
Returns:
the next element (as a long) in the iteration
Throws:
java.util.NoSuchElementException - iteration has no more elements

getPrimitiveValue

public long getPrimitiveValue()
Returns the current value, which is the same value returned by the most recent call to the nextPrimitive method, or the most recent value passed to setPrimitiveValue if setPrimitiveValue were called after the nextPrimitive method.
Returns:
the current value
Throws:
java.lang.IllegalStateException - if the next method has not yet been called, or the remove method has already been called after the last call to the next method.

setPrimitiveValue

public long setPrimitiveValue(long lValue)
Stores a new value at the current value index, returning the value that was replaced. The index of the current value is obtainable by calling the getIndex method.
Returns:
the replaced value
Throws:
java.lang.IllegalStateException - if the next method has not yet been called, or the remove method has already been called after the last call to the next method.

Skip navigation links

Oracle® Fusion Middleware Java API Reference for Oracle Coherence
12c (12.1.3.0.0)

E47890-01


Copyright © 2000, 2014, Oracle and/or its affiliates. All rights reserved.