com.mchange.io
Interface IOEnumeration

All Known Subinterfaces:
ByteArrayEnumeration, FileEnumeration, IntEnumeration, IOByteArrayEnumeration, IOStringEnumeration, MEnumeration, StringEnumeration
All Known Implementing Classes:
DirectoryDescendingFileFinderImpl, EmptyMEnumeration, IntEnumerationHelperBase, IOStringEnumerationHelperBase, QuotesAndWhitespaceTokenizer, StringEnumerationHelperBase

public interface IOEnumeration

A generalized version of Enumeration, to be used by Enumerations whose retrieval of elements involves file or network access

java.util.Enumeration ought to extend a class like this, but it doesn't...


Method Summary
 boolean hasMoreElements()
           
 java.lang.Object nextElement()
           
 

Method Detail

hasMoreElements

boolean hasMoreElements()
                        throws java.io.IOException
Throws:
java.io.IOException

nextElement

java.lang.Object nextElement()
                             throws java.io.IOException
Throws:
java.io.IOException