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>
AnArtifactSerializer
implementation formodels
.
-
-
Constructor Summary
Constructors Constructor Description ChunkerModelSerializer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ChunkerModel
create(InputStream in)
Creates an artifact from the providedInputStream
.void
serialize(ChunkerModel artifact, OutputStream out)
Serializes an artifact to the providedOutputStream
.
-
-
-
Method Detail
-
create
public ChunkerModel create(InputStream in) throws IOException
Description copied from interface:ArtifactSerializer
Creates an artifact from the providedInputStream
.Note: The
InputStream
remains open.- Specified by:
create
in interfaceArtifactSerializer<ChunkerModel>
- Parameters:
in
- A valid, openInputStream
ready to read from.- Returns:
- A valid
artifact
. - Throws:
IOException
- Thrown if IO errors occurred during creation.
-
serialize
public void serialize(ChunkerModel artifact, OutputStream out) throws IOException
Description copied from interface:ArtifactSerializer
Serializes an artifact to the providedOutputStream
.Note: The
OutputStream
remains open.- Specified by:
serialize
in interfaceArtifactSerializer<ChunkerModel>
- Parameters:
artifact
- A validartifact
.out
- A valid, openOutputStream
ready to write to.- Throws:
IOException
- Thrown if IO errors occurred during serialization.
-
-