Package opennlp.tools.formats
Class NameFinderCensus90NameStream
java.lang.Object
opennlp.tools.formats.NameFinderCensus90NameStream
- All Implemented Interfaces:
- AutoCloseable,- ObjectStream<StringList>
@Internal
public class NameFinderCensus90NameStream
extends Object
implements ObjectStream<StringList>
This class helps to read the US Census data from the files to build a
 StringList for each dictionary entry in the name-finder dictionary.
 The entries in the source file are as follows:
 
SMITH 1.006 1.006 1
- The first field is the name (in ALL CAPS).
- The next field is a frequency in percent.
- The next is a cumulative frequency in percent.
- The last is a ranking.
Note: Do not use this class, internal use only!
- 
Constructor SummaryConstructorsConstructorDescriptionNameFinderCensus90NameStream(InputStreamFactory in, Charset encoding) NameFinderCensus90NameStream(ObjectStream<String> lineStream) Initializes aNameFinderCensus90NameStreamviaObjectStream<String>.
- 
Method SummaryModifier and TypeMethodDescriptionvoidclose()Closes theObjectStreamand releases all allocated resources.read()Returns the nextObjectStreamobject.voidreset()Repositions the stream at the beginning and the previously seen object sequence will be repeated exactly.
- 
Constructor Details- 
NameFinderCensus90NameStreamInitializes aNameFinderCensus90NameStreamviaObjectStream<String>.- Parameters:
- lineStream- An- ObjectStream<String>that represents the input file to be attached to this class.
 
- 
NameFinderCensus90NameStreamInitializes aNameFinderCensus90NameStreamvia anInputStreamFactoryand aCharset. Opens an associated stream object with the specified encoding specified.- Parameters:
- in- The- InputStreamFactoryfor the input file.
- encoding- the- Charsetto apply to the input stream.
- Throws:
- IOException- Thrown if IO errors occurred.
 
 
- 
- 
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.- Specified by:
- readin interface- ObjectStream<StringList>
- Returns:
- The next object or nullto signal that the stream is exhausted.
- Throws:
- IOException- Thrown if there is an error during reading.
 
- 
resetDescription copied from interface:ObjectStreamRepositions the stream at the beginning and the previously seen object sequence will be repeated exactly. This method can be used to re-read the stream if multiple passes over the objects are required.The implementation of this method is optional. - Specified by:
- resetin interface- ObjectStream<StringList>
- Throws:
- IOException- Thrown if there is an error during resetting the stream.
- UnsupportedOperationException- Thrown if the- reset()is not supported. By default, this is the case.
 
- 
closeDescription copied from interface:ObjectStreamCloses theObjectStreamand releases all allocated resources. After close was called, it's not allowed to callObjectStream.read()orObjectStream.reset().- Specified by:
- closein interface- AutoCloseable
- Specified by:
- closein interface- ObjectStream<StringList>
- Throws:
- IOException- Thrown if there is an error during closing the stream.
 
 
-