E
- the type of the objects that are read by this IterableInputConverterpublic abstract class InputStreamIterableInputConverter<E> extends java.lang.Object implements IterableInputConverter<E>
InputStream
. This class can be extended by an implementation of IterableInputConverter that makes use
of an InputStream as its input source. The created Iterator can then iterate over the list of objects that are being
converted from the data that is being read from the InputStream.Constructor and Description |
---|
InputStreamIterableInputConverter() |
Modifier and Type | Method and Description |
---|---|
java.io.InputStream |
getInputStream()
Returns the InputStream where this IterableInputConverter will read its data from.
|
void |
setInputStream(java.io.InputStream inputStream)
Sets the InputStream to be used as the input source for this IterableInputConverter.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
iterator
public java.io.InputStream getInputStream()
public void setInputStream(java.io.InputStream inputStream)
inputStream
- The InputStream to use as the input source for this IterableInputConverter.