Package opennlp.tools.util.model
Class ByteArraySerializer
java.lang.Object
opennlp.tools.util.model.ByteArraySerializer
- All Implemented Interfaces:
ArtifactSerializer<byte[]>
An
ArtifactSerializer
implementation for binary data, kept in byte[]
.-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbyte[]
create
(InputStream in) Creates an artifact from the providedInputStream
.void
serialize
(byte[] artifact, OutputStream out) Serializes an artifact to the providedOutputStream
.
-
Constructor Details
-
ByteArraySerializer
public ByteArraySerializer()
-
-
Method Details
-
create
Description copied from interface:ArtifactSerializer
Creates an artifact from the providedInputStream
.Note: The
InputStream
remains open.- Specified by:
create
in interfaceArtifactSerializer<byte[]>
- Parameters:
in
- A valid, openInputStream
ready to read from.- Returns:
- A valid
artifact
. - Throws:
IOException
- Thrown if IO errors occurred during creation.
-
serialize
Description copied from interface:ArtifactSerializer
Serializes an artifact to the providedOutputStream
.Note: The
OutputStream
remains open.- Specified by:
serialize
in interfaceArtifactSerializer<byte[]>
- Parameters:
artifact
- A validartifact
.out
- A valid, openOutputStream
ready to write to.- Throws:
IOException
- Thrown if IO errors occurred during serialization.
-