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