org.apache.commons.ognl
Class IteratorElementsAccessor

java.lang.Object
  extended by org.apache.commons.ognl.IteratorElementsAccessor
All Implemented Interfaces:
ElementsAccessor

public class IteratorElementsAccessor
extends Object
implements ElementsAccessor

Implementation of the ElementsAccessor interface for Iterators, which simply returns the target iterator itself.

Author:
Luke Blanshard (blanshlu@netscape.net), Drew Davidson (drew@ognl.org)

Constructor Summary
IteratorElementsAccessor()
           
 
Method Summary
 Enumeration<?> getElements(Object target)
          Returns an iterator over the elements of the given target object.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

IteratorElementsAccessor

public IteratorElementsAccessor()
Method Detail

getElements

public Enumeration<?> getElements(Object target)
Returns an iterator over the elements of the given target object.

Specified by:
getElements in interface ElementsAccessor
Parameters:
target - the object to get the elements of
Returns:
an iterator over the elements of the given object


Copyright © 1997-2013 The Apache Software Foundation. All Rights Reserved.