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>
TheNameSampleDataStream
class converts taggedstrings
provided by aDataStream
toNameSample
objects. 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 aNameSampleDataStream
with givenpsi
samples.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description NameSample
read()
Returns the nextObjectStream
object.-
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 aNameSampleDataStream
with givenpsi
samples.- Parameters:
in
- Thestream
of data samples.
-
-
Method Detail
-
read
public NameSample read() throws IOException
Description copied from interface:ObjectStream
Returns the nextObjectStream
object. Calling this method repeatedly until it returnsnull
will return each object from the underlying source exactly once.- Returns:
- The next object or
null
to signal that the stream is exhausted. - Throws:
IOException
- Thrown if there is an error during reading.
-
-