Package opennlp.tools.util.model
Class DictionarySerializer
- java.lang.Object
-
- opennlp.tools.util.model.DictionarySerializer
-
- All Implemented Interfaces:
ArtifactSerializer<Dictionary>
public class DictionarySerializer extends Object implements ArtifactSerializer<Dictionary>
-
-
Constructor Summary
Constructors Constructor Description DictionarySerializer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Dictionary
create(InputStream in)
Creates the artifact from the providedInputStream
.void
serialize(Dictionary dictionary, OutputStream out)
Serializes the artifact to the providedOutputStream
.
-
-
-
Method Detail
-
create
public Dictionary create(InputStream in) throws IOException
Description copied from interface:ArtifactSerializer
Creates the artifact from the providedInputStream
. TheInputStream
remains open.- Specified by:
create
in interfaceArtifactSerializer<Dictionary>
- Returns:
- the artifact
- Throws:
IOException
-
serialize
public void serialize(Dictionary dictionary, OutputStream out) throws IOException
Description copied from interface:ArtifactSerializer
Serializes the artifact to the providedOutputStream
. TheOutputStream
remains open.- Specified by:
serialize
in interfaceArtifactSerializer<Dictionary>
- Throws:
IOException
-
-