Sparksee
6.0.2
|
Value list. More...
Instance Methods | |
(int) | - count |
Number of elements in the list. More... | |
(id) | - init |
Constructor. More... | |
(void) | - clear |
Clears the list. | |
(void) | - add: |
Adds a value to the end of the list. More... | |
(STSValue *) | - get: |
Returns the Value at the specified position in the list. More... | |
(id) | - initWithArray: |
Creates a new ValueList instance from the given array. | |
(id) | - initWithNSEnumerator: |
Creates a new ValueList instance from the given NSEnumerator. | |
(STSValueListIterator *) | - iterator |
Gets a new ValueListIterator. | |
Value list.
It stores a Value list.
Use ValueListIterator to access all elements into this collection.
- (void) add: | (STSValue *) | value |
Adds a value to the end of the list.
value | [in] The value to add |
- (int) count |
Number of elements in the list.
- (STSValue*) get: | (int) | index |
Returns the Value at the specified position in the list.
index | [in] Index of the element to return, starting at 0. |
- (id) init |
Constructor.
This creates an empty list.