|
Oracle® Coherence Java API Reference Release 12.1.2.0.3 E26043-02 |
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Object
com.tangosol.util.Base
com.tangosol.util.AbstractLongArray
com.tangosol.util.SimpleLongArray
public class SimpleLongArray
An implementation of LongArray that stores values in an array, thus is actually an "IntArray". Optimized for 0-based arrays. Null values are not considered to be entries, thus will not affect "first" and "last" and will not show up in the iterator. Note: not designed to be thread safe.
| Nested Class Summary | |
|---|---|
class |
SimpleLongArray.IteratorAn Iterator that adds a "current element" concept, similar to the Map.Entry interface. |
| Field Summary | |
|---|---|
static java.lang.Object[] |
EMPTYEmpty array of objects. |
static long |
MAXMaximum index value. |
| Fields inherited from interface com.tangosol.util.LongArray |
|---|
NOT_FOUND |
| Constructor Summary | |
|---|---|
SimpleLongArray()Construct an empty SimpleLongArray. |
|
| Method Summary | |
|---|---|
long |
add(java.lang.Object oValue)Add the passed element value to the LongArray and return the index at which the element value was stored. |
void |
clear()Remove all nodes from the LongArray. |
java.lang.Object |
clone()Make a clone of the LongArray. |
boolean |
contains(java.lang.Object oValue)Determine if the LongArray contains the specified element. |
boolean |
exists(long lIndex)Determine if the specified index is in use. |
java.lang.Object |
get(long lIndex)Return the value stored at the specified index. |
long |
getFirstIndex()Determine the first index that exists in the LongArray. |
long |
getLastIndex()Determine the last index that exists in the LongArray. |
int |
getSize()Determine the size of the LongArray. |
long |
indexOf(java.lang.Object oValue, long lIndex)Return the index in this LongArray of the first occurrence of the specified element such that (index >= lIndex), or NOT_FOUND if this LongArray does not contain the specified element. |
boolean |
isEmpty()Test for empty LongArray. |
LongArray.Iterator |
iterator()Obtain a LongArray.Iterator of the contents of the LongArray. |
LongArray.Iterator |
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. |
long |
lastIndexOf(java.lang.Object oValue, long lIndex)Return the index in this LongArray of the last occurrence of the specified element such that (index <= lIndex), or NOT_FOUND if this LongArray does not contain the specified element. |
java.lang.Object |
remove(long lIndex)Remove the specified index from the LongArray, returning its associated value. |
LongArray.Iterator |
reverseIterator()Obtain a LongArray.Iterator of the contents of the LongArray in reverse order (decreasing indices). |
LongArray.Iterator |
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. |
java.lang.Object |
set(long lIndex, java.lang.Object oValue)Add the passed item to the LongArray at the specified index. |
| Methods inherited from class com.tangosol.util.AbstractLongArray |
|---|
equals, hashCode, indexOf, lastIndexOf, toString |
| Field Detail |
|---|
public static final long MAX
public static final java.lang.Object[] EMPTY
| Constructor Detail |
|---|
public SimpleLongArray()
| Method Detail |
|---|
public java.lang.Object get(long lIndex)
get in interface LongArrayget in class AbstractLongArraylIndex - a long index value
public java.lang.Object set(long lIndex,
java.lang.Object oValue)
If the index is already used, the passed value will replace the current value stored with the key, and the replaced value will be returned.
It is expected that LongArray implementations will "grow" as necessary to support the specified index.
set in interface LongArraylIndex - a long index valueoValue - the object to store at the specified indexpublic long add(java.lang.Object oValue)
add in interface LongArrayadd in class AbstractLongArrayoValue - the object to add to the LongArraypublic boolean exists(long lIndex)
exists in interface LongArrayexists in class AbstractLongArraylIndex - a long index valuepublic java.lang.Object remove(long lIndex)
remove in interface LongArrayremove in class AbstractLongArraylIndex - the index into the LongArraypublic boolean contains(java.lang.Object oValue)
More formally, returns true if and only if this LongArray contains at least one element e such that (oValue==null ? e==null : oValue.equals(e)).
contains in interface LongArraycontains in class AbstractLongArrayoValue - element whose presence in this list is to be testedpublic void clear()
clear in interface LongArrayclear in class AbstractLongArraypublic boolean isEmpty()
isEmpty in interface LongArrayisEmpty in class AbstractLongArraypublic int getSize()
getSize in interface LongArraygetSize in class AbstractLongArraypublic LongArray.Iterator iterator()
iterator in interface LongArraypublic LongArray.Iterator iterator(long lIndex)
iterator in interface LongArraylIndex - the LongArray index to iterate frompublic LongArray.Iterator reverseIterator()
reverseIterator in interface LongArraypublic LongArray.Iterator reverseIterator(long lIndex)
reverseIterator in interface LongArraylIndex - the LongArray index to iterate frompublic long getFirstIndex()
getFirstIndex in interface LongArraygetFirstIndex in class AbstractLongArraypublic long getLastIndex()
getLastIndex in interface LongArraygetLastIndex in class AbstractLongArray
public long indexOf(java.lang.Object oValue,
long lIndex)
indexOf in interface LongArrayindexOf in class AbstractLongArray
public long lastIndexOf(java.lang.Object oValue,
long lIndex)
lastIndexOf in interface LongArraylastIndexOf in class AbstractLongArraypublic java.lang.Object clone()
clone in interface LongArrayclone in class AbstractLongArray
|
Oracle® Coherence Java API Reference Release 12.1.2.0.3 E26043-02 |
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||