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