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