Uses of Interface
org.globus.ws.enumeration.EnumIterator

Packages that use EnumIterator
org.globus.ws.enumeration   
 

Uses of EnumIterator in org.globus.ws.enumeration
 

Classes in org.globus.ws.enumeration that implement EnumIterator
 class IndexedObjectFileEnumIterator
          A memory efficient implementation of the EnumIterator interface that can enumerate over data stored in an indexed object file created by IndexedObjectFileWriter.
 class SimpleEnumIterator
          A basic EnumIterator implementation that can enumerate over in-memory data passed either as an array of objects or a list (List).
 

Fields in org.globus.ws.enumeration declared as EnumIterator
protected  EnumIterator EnumResource.iter
           
 

Methods in org.globus.ws.enumeration that return EnumIterator
 EnumIterator EnumResource.getIterator()
          Gets the data iterator.
 

Methods in org.globus.ws.enumeration with parameters of type EnumIterator
 EnumResource EnumResourceHome.createEnumeration(EnumIterator iterator, boolean persistent)
          Create a transient or persistent enumeration resource with the given iterator and visibility properties created from the context.
 EnumResource EnumResourceHome.createEnumeration(EnumIterator iterator, VisibilityProperties visibility, boolean persistent)
          Create a transient or persistent enumeration resource with the given iterator and visibility properties.
 

Constructors in org.globus.ws.enumeration with parameters of type EnumIterator
EnumResource(EnumIterator iter, VisibilityProperties visibility)
          Creates EnumResource with given iterator and visibility properties.
TransientEnumResource(EnumIterator iter, VisibilityProperties visibility)