Package opennlp.tools.namefind
Class NameSampleTypeFilter
- java.lang.Object
-
- opennlp.tools.util.FilterObjectStream<NameSample,NameSample>
-
- opennlp.tools.namefind.NameSampleTypeFilter
-
- All Implemented Interfaces:
AutoCloseable,ObjectStream<NameSample>
public class NameSampleTypeFilter extends FilterObjectStream<NameSample,NameSample>
Astreamwhich removesname sampleswhich do not have a certain type.
-
-
Constructor Summary
Constructors Constructor Description NameSampleTypeFilter(String[] types, ObjectStream<NameSample> samples)Initializes aNameSampleTypeFilter.NameSampleTypeFilter(Set<String> types, ObjectStream<NameSample> samples)Initializes aNameSampleTypeFilter.
-
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
-
-
-
-
Constructor Detail
-
NameSampleTypeFilter
public NameSampleTypeFilter(String[] types, ObjectStream<NameSample> samples)
Initializes aNameSampleTypeFilter.- Parameters:
types- An array with types to use.samples- AnObjectStreamwith the samples to filter.
-
NameSampleTypeFilter
public NameSampleTypeFilter(Set<String> types, ObjectStream<NameSample> samples)
Initializes aNameSampleTypeFilter.- Parameters:
types- ASetwith types to use.samples- AnObjectStreamwith the samples to filter.
-
-
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.
-
-