TraverseArrayEnumerator
Kind of class: | public class |
---|---|
Package: | |
Inherits from: |
|
Classpath: | org.asaplibrary.data.array.TraverseArrayEnumerator |
File last modified: | Wednesday, 11 May 2011, 18:33:22 |
-
TraverseArrayEnumeratorEvent with type:
UPDATE
-
TraverseArrayEnumeratorEvent with type:
UPDATE
If the delegate validation method exists and only if the delegate method returns true.
Summary
-
TraverseArrayEnumerator
(inObjects:Array = null, inDoLoop:Boolean = false)
- Creates a new array enumerator.
-
setTraverseOptions
(inTraverseOptions:uint) : void
- Sets the traversal options.
-
setLoop
(inDoLoop:Boolean) : void
- Set the looping property of the enumerator.
-
addDelegate
(inDelegateObject:ITraverseArrayDelegate) : void
- A delegate may prohibit the enumerator to update.
-
setCurrentObject
(inObject:Object) : void
- getNextObject () : *
- Increments the location pointer by one and returns the object from the array at that location.
- getPreviousObject () : *
- Decrements the location pointer by one and returns the object from the array at that location.
- hasNextObject () : Boolean
- Checks if there is an object after the current object.
- hasPreviousObject () : Boolean
- Checks if there is an object before the current object.
Instance methods inherited from ArrayEnumerator- getNextObject () : *
Constructor
TraverseArrayEnumerator
Creates a new array enumerator. Optionally stores a pointer to array inArray.
Instance methods
addDelegate
A delegate may prohibit the enumerator to update. Adds a delegate object that implements ITraverseArrayDelegate to validate the current object. Each delegate method is called in update, if a delegate object has been set. The delegate's validation method ITraverseArrayDelegate.mayUpdateToObject is called to evaluate the new node if it may be updated.
getNextObject
Increments the location pointer by one and returns the object from the array at that location.
- Calls update.
- (Deliberately untyped) The object at the new location. Returns null if the location pointer has moved past the end of the array and inTraverseOptions is not set to TraverseArrayOptions.LOOP.
getPreviousObject
Decrements the location pointer by one and returns the object from the array at that location.
- Calls update.
- (Deliberately untyped) The object at the new location. Returns null if the location pointer has moved past the end of the array and inTraverseOptions is not set to TraverseArrayOptions.LOOP.
hasNextObject
Checks if there is an object after the current object.
- True: there is a next object; false: the current object is the last.
hasPreviousObject
Checks if there is an object before the current object.
- True: there is a next object; false: the current object is the first.
setCurrentObject
setLoop
Set the looping property of the enumerator.
setTraverseOptions
Sets the traversal options.