public class ADPOSSampleStream extends Object implements ObjectStream<POSSample>
Constructor and Description |
---|
ADPOSSampleStream(InputStream in,
String charsetName,
boolean expandME,
boolean includeFeatures)
Creates a new
POSSample stream from a InputStream |
ADPOSSampleStream(ObjectStream<String> lineStream,
boolean expandME,
boolean includeFeatures)
Creates a new
POSSample stream from a line stream, i.e. |
Modifier and Type | Method and Description |
---|---|
void |
close()
Closes the
ObjectStream and releases all allocated
resources. |
POSSample |
read()
Returns the next object.
|
void |
reset()
Repositions the stream at the beginning and the previously seen object sequence
will be repeated exactly.
|
public ADPOSSampleStream(ObjectStream<String> lineStream, boolean expandME, boolean includeFeatures)
POSSample
stream from a line stream, i.e.
ObjectStream
< String
>, that could be a
PlainTextByLineStream
object.lineStream
- a stream of lines as String
expandME
- if true will expand the multiword expressions, each word of the
expression will have the POS Tag that was attributed to the
expression plus the prefix B- or I- (CONLL convention)includeFeatures
- if true will combine the POS Tag with the feature tagspublic ADPOSSampleStream(InputStream in, String charsetName, boolean expandME, boolean includeFeatures)
POSSample
stream from a InputStream
in
- the Corpus InputStream
charsetName
- the charset of the Arvores Deitadas CorpusexpandME
- if true will expand the multiword expressions, each word of the
expression will have the POS Tag that was attributed to the
expression plus the prefix B- or I- (CONLL convention)includeFeatures
- if true will combine the POS Tag with the feature tagspublic POSSample read() throws IOException
ObjectStream
read
in interface ObjectStream<POSSample>
IOException
public void reset() throws IOException, UnsupportedOperationException
ObjectStream
reset
in interface ObjectStream<POSSample>
IOException
UnsupportedOperationException
public void close() throws IOException
ObjectStream
ObjectStream
and releases all allocated
resources. After close was called its not allowed to call
read or reset.close
in interface ObjectStream<POSSample>
IOException
Copyright © 2016 The Apache Software Foundation. All rights reserved.