Package com.mchange.io.impl
Class IOStringEnumerationHelperBase
- java.lang.Object
-
- com.mchange.io.impl.IOStringEnumerationHelperBase
-
- All Implemented Interfaces:
IOEnumeration
,IOStringEnumeration
public abstract class IOStringEnumerationHelperBase extends java.lang.Object implements IOStringEnumeration
-
-
Constructor Summary
Constructors Constructor Description IOStringEnumerationHelperBase()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description boolean
hasMoreElements()
abstract boolean
hasMoreStrings()
java.lang.Object
nextElement()
abstract java.lang.String
nextString()
-
-
-
Method Detail
-
hasMoreStrings
public abstract boolean hasMoreStrings() throws java.io.IOException
- Specified by:
hasMoreStrings
in interfaceIOStringEnumeration
- Throws:
java.io.IOException
-
nextString
public abstract java.lang.String nextString() throws java.io.IOException
- Specified by:
nextString
in interfaceIOStringEnumeration
- Throws:
java.io.IOException
-
hasMoreElements
public final boolean hasMoreElements() throws java.io.IOException
- Specified by:
hasMoreElements
in interfaceIOEnumeration
- Throws:
java.io.IOException
-
nextElement
public final java.lang.Object nextElement() throws java.io.IOException
- Specified by:
nextElement
in interfaceIOEnumeration
- Throws:
java.io.IOException
-
-