Package opennlp.tools.namefind
Class NameSampleDataStream
- java.lang.Object
-
- opennlp.tools.util.FilterObjectStream<String,NameSample>
-
- opennlp.tools.namefind.NameSampleDataStream
-
- All Implemented Interfaces:
AutoCloseable,ObjectStream<NameSample>
public class NameSampleDataStream extends FilterObjectStream<String,NameSample>
TheNameSampleDataStreamclass converts taggedstringsprovided by aDataStreamtoNameSampleobjects. It uses text that is one-sentence per line and tokenized with names identified by:<START>and<END>tags.
-
-
Constructor Summary
Constructors Constructor Description NameSampleDataStream(ObjectStream<String> in)Initializes aNameSampleDataStreamwith givenpsisamples.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description NameSampleread()Returns the nextObjectStreamobject.-
Methods inherited from class opennlp.tools.util.FilterObjectStream
close, reset
-
-
-
-
Field Detail
-
START_TAG_PREFIX
public static final String START_TAG_PREFIX
- See Also:
- Constant Field Values
-
START_TAG
public static final String START_TAG
- See Also:
- Constant Field Values
-
END_TAG
public static final String END_TAG
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
NameSampleDataStream
public NameSampleDataStream(ObjectStream<String> in)
Initializes aNameSampleDataStreamwith givenpsisamples.- Parameters:
in- Thestreamof data samples.
-
-
Method Detail
-
read
public NameSample 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.
-
-