Click or drag to resize

ILongArrayEnumerator Interface

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
An IEnumerator for ILongArray.

Namespace:  Tangosol.Util
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public interface ILongArrayEnumerator : IEnumerator

The ILongArrayEnumerator type exposes the following members.

Properties
  NameDescription
Public propertyCurrent
Gets the current element in the collection.
(Inherited from IEnumerator.)
Public propertyIndex
Returns the index of the current value, which is the value returned by the most recent call to the MoveNext method.
Top
Methods
  NameDescription
Public methodGetValue
Returns the current value, which is the same value returned by the most recent call to the MoveNext method, or the most recent value passed to SetValue if SetValue were called after the MoveNext method.
Public methodMoveNext
Advances the enumerator to the next element of the collection.
(Inherited from IEnumerator.)
Public methodReset
Sets the enumerator to its initial position, which is before the first element in the collection.
(Inherited from IEnumerator.)
Public methodSetValue
Stores a new value at the current value index, returning the value that was replaced. The index of the current value is obtainable by reading the Index property.
Top
See Also