public class PlainTextByLineStream extends Object implements ObjectStream<String>
String
object.Constructor and Description |
---|
PlainTextByLineStream(InputStreamFactory inputStreamFactory,
Charset charset) |
PlainTextByLineStream(InputStreamFactory inputStreamFactory,
String charsetName) |
Modifier and Type | Method and Description |
---|---|
void |
close()
Closes the
ObjectStream and releases all allocated
resources. |
String |
read()
Returns the next object.
|
void |
reset()
Repositions the stream at the beginning and the previously seen object sequence
will be repeated exactly.
|
public PlainTextByLineStream(InputStreamFactory inputStreamFactory, String charsetName) throws IOException
IOException
public PlainTextByLineStream(InputStreamFactory inputStreamFactory, Charset charset) throws IOException
IOException
public String read() throws IOException
ObjectStream
read
in interface ObjectStream<String>
IOException
- if there is an error during readingpublic void reset() throws IOException
ObjectStream
reset
in interface ObjectStream<String>
IOException
- if there is an error during reseting the streampublic void close() throws IOException
ObjectStream
ObjectStream
and releases all allocated
resources. After close was called its not allowed to call
read or reset.close
in interface AutoCloseable
close
in interface ObjectStream<String>
IOException
- if there is an error during closing the streamCopyright © 2020 The Apache Software Foundation. All rights reserved.