SimpleEnumerator Constructor (Object, Int32, Int32, Boolean, Boolean) |
Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Construct the simple enumerator based on an array of objects,
making a copy of the array if specified.
Namespace:
Tangosol.Util
Assembly:
Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntaxpublic SimpleEnumerator(
Object[] items,
int start,
int countItems,
bool forward,
bool copy
)
Parameters
- items
- Type: SystemObject
Array of objects to enumerate.
- start
- Type: SystemInt32
The first object position.
- countItems
- Type: SystemInt32
The number of objects to enumerate.
- forward
- Type: SystemBoolean
true to iterate forwards, false to iterate from the
end backwards to the beginning.
- copy
- Type: SystemBoolean
Pass true to make a copy of the array or false if
the array's contents will not change.
See Also