All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.core.Enumerator

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.core.Enumerator

public class Enumerator
extends NativeObject
This class wraps the Objective-C class NSEnumerator.


Constructor Index

 o Enumerator()
This default constructor is equivalent to Objective-C's [[NSEnumerator alloc] init].
 o Enumerator(boolean, int)
Protected constructor used by the bridge to wrap an Objective-C object.

Method Index

 o allObjects()
A wrapper for the - allObjects Objective-C instance method.
 o nextObject()
A wrapper for the - nextObject Objective-C instance method.

Constructors

 o Enumerator
 protected Enumerator(boolean shouldAllocate,
                      int objcObject)
Protected constructor used by the bridge to wrap an Objective-C object. It should never be invoked directly.

 o Enumerator
 public Enumerator()
This default constructor is equivalent to Objective-C's [[NSEnumerator alloc] init].

Methods

 o nextObject
 public native Object nextObject()
A wrapper for the - nextObject Objective-C instance method.

 o allObjects
 public native Array allObjects()
A wrapper for the - allObjects Objective-C instance method.


All Packages  Class Hierarchy  This Package  Previous  Next  Index