Package opennlp.tools.formats.convert
Class POSToTokenSampleStream
- java.lang.Object
-
- opennlp.tools.util.FilterObjectStream<POSSample,TokenSample>
-
- opennlp.tools.formats.convert.POSToTokenSampleStream
-
- All Implemented Interfaces:
AutoCloseable,ObjectStream<TokenSample>
@Internal public class POSToTokenSampleStream extends FilterObjectStream<POSSample,TokenSample>
Note: Do not use this class, internal use only!
-
-
Constructor Summary
Constructors Constructor Description POSToTokenSampleStream(Detokenizer detokenizer, ObjectStream<POSSample> samples)Initializes aPOSToTokenSampleStream.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TokenSampleread()Returns the nextObjectStreamobject.-
Methods inherited from class opennlp.tools.util.FilterObjectStream
close, reset
-
-
-
-
Constructor Detail
-
POSToTokenSampleStream
public POSToTokenSampleStream(Detokenizer detokenizer, ObjectStream<POSSample> samples)
Initializes aPOSToTokenSampleStream.- Parameters:
detokenizer- TheDetokenizerto use. Must not benull.samples- Thesamplesas input. Must not benull.- Throws:
IllegalArgumentException- Thrown if parameters are invalid.
-
-
Method Detail
-
read
public TokenSample read() throws IOException
Description copied from interface:ObjectStreamReturns the nextObjectStreamobject. Calling this method repeatedly until it returnsnullwill return each object from the underlying source exactly once.- Returns:
- The next object or
nullto signal that the stream is exhausted. - Throws:
IOException- Thrown if there is an error during reading.
-
-