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