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