public class TokenizerStream extends java.lang.Object implements ObjectStream<TokenSample>
TokenizerStream
uses a tokenizer to tokenize the
input string and output TokenSample
s.Constructor and Description |
---|
TokenizerStream(Tokenizer tokenizer,
ObjectStream<java.lang.String> input) |
Modifier and Type | Method and Description |
---|---|
void |
close()
Closes the
ObjectStream and releases all allocated
resources. |
TokenSample |
read()
Returns the next object.
|
void |
reset()
Repositions the stream at the beginning and the previously seen object sequence
will be repeated exactly.
|
public TokenizerStream(Tokenizer tokenizer, ObjectStream<java.lang.String> input)
public TokenSample read() throws java.io.IOException
ObjectStream
read
in interface ObjectStream<TokenSample>
java.io.IOException
- if there is an error during readingpublic void close() throws java.io.IOException
ObjectStream
ObjectStream
and releases all allocated
resources. After close was called its not allowed to call
read or reset.close
in interface java.lang.AutoCloseable
close
in interface ObjectStream<TokenSample>
java.io.IOException
- if there is an error during closing the streampublic void reset() throws java.io.IOException, java.lang.UnsupportedOperationException
ObjectStream
reset
in interface ObjectStream<TokenSample>
java.io.IOException
- if there is an error during reseting the streamjava.lang.UnsupportedOperationException
Copyright © 2010 - 2020 Adobe. All Rights Reserved