Package opennlp.tools.formats
Class ConllXPOSSampleStream
- All Implemented Interfaces:
- AutoCloseable,- ObjectStream<POSSample>
Parses the data from the CONLL 06 shared task into POS Samples.
 
More information about the data format can be found here.
Note: Do not use this class, internal use only!
- 
Constructor SummaryConstructorsConstructorDescriptionConllXPOSSampleStream(InputStreamFactory in, Charset charset) Initializes aConllXPOSSampleStream.ConllXPOSSampleStream(ObjectStream<String> lineStream) Initializes aConllXPOSSampleStream.
- 
Method SummaryMethods inherited from class opennlp.tools.util.FilterObjectStreamclose, reset
- 
Constructor Details- 
ConllXPOSSampleStreamInitializes aConllXPOSSampleStream.- Parameters:
- lineStream- A- line streamrepresenting the input.
 
- 
ConllXPOSSampleStreamInitializes aConllXPOSSampleStream.- Parameters:
- in- The- InputStreamFactoryto use.
- charset- The- Charsetto interpret characters with.
- Throws:
- IOException- Thrown if IO errors occurred during initialization.
 
 
- 
- 
Method Details- 
readDescription 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.
 
 
-