lapisx.enum
Class FilteredEnumeration

java.lang.Object
  extended bylapisx.enum.FilteredEnumeration
All Implemented Interfaces:
Enumeration
Direct Known Subclasses:
LibraryGenerator, RelopGenerator

public abstract class FilteredEnumeration
extends Object
implements Enumeration

Enumeration which transforms the elements of another enumeration.


Constructor Summary
FilteredEnumeration(Enumeration e)
           
 
Method Summary
 boolean hasMoreElements()
           
 Object nextElement()
           
abstract  void transform(Object o)
           
 void yield(Object obj)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

FilteredEnumeration

public FilteredEnumeration(Enumeration e)
Method Detail

hasMoreElements

public boolean hasMoreElements()
Specified by:
hasMoreElements in interface Enumeration

nextElement

public Object nextElement()
Specified by:
nextElement in interface Enumeration

yield

public void yield(Object obj)

transform

public abstract void transform(Object o)