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