polya
Class PolylistEnum

java.lang.Object
  |
  +--polya.PolylistEnum

public class PolylistEnum
extends java.lang.Object
implements java.util.Enumeration

PolylistEnum is an enumeration class for the class Polylist. It implements the interface java.util.Enumeration, i.e. the methods: hasMoreElements() and nextElement().


Constructor Summary
PolylistEnum(Polylist L)
          PolylistEnum constructs a PolylistEnum from a Polylist.
 
Method Summary
 boolean hasMoreElements()
          hasMoreElements() indicates whether there are more elements left in the enumeration.
 java.lang.Object nextElement()
          nextElement returns the next element in the enumeration.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PolylistEnum

public PolylistEnum(Polylist L)
PolylistEnum constructs a PolylistEnum from a Polylist.
Method Detail

hasMoreElements

public boolean hasMoreElements()
hasMoreElements() indicates whether there are more elements left in the enumeration.
Specified by:
hasMoreElements in interface java.util.Enumeration

nextElement

public java.lang.Object nextElement()
nextElement returns the next element in the enumeration.
Specified by:
nextElement in interface java.util.Enumeration