TraverseArrayOptions

Kind of class: public class
Package:
Inherits from:
  • none
Classpath: org.asaplibrary.data.array.TraverseArrayOptions
File last modified: Wednesday, 11 May 2011, 18:33:35
Array traverse options used by TraverseArrayEnumerator. The state options use bitwise operators, see ButtonStates for an example.

Summary

Constants
  • NONE : uint
    • The enumerator does nothing.
  • LOOP : uint
    • The enumerator loops past the last item.

Constants

LOOP

static const LOOP:uint = (1 << 1)

The enumerator loops past the last item.

NONE

static const NONE:uint = (1 << 0)

The enumerator does nothing.