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>
AnArtifactSerializerimplementation formodels.
-
-
Constructor Summary
Constructors Constructor Description POSModelSerializer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description POSModelcreate(InputStream in)Creates an artifact from the providedInputStream.voidserialize(POSModel artifact, OutputStream out)Serializes an artifact to the providedOutputStream.
-
-
-
Method Detail
-
create
public POSModel create(InputStream in) throws IOException
Description copied from interface:ArtifactSerializerCreates an artifact from the providedInputStream.Note: The
InputStreamremains open.- Specified by:
createin interfaceArtifactSerializer<POSModel>- Parameters:
in- A valid, openInputStreamready to read from.- Returns:
- A valid
artifact. - Throws:
IOException- Thrown if IO errors occurred during creation.
-
serialize
public void serialize(POSModel artifact, OutputStream out) throws IOException
Description copied from interface:ArtifactSerializerSerializes an artifact to the providedOutputStream.Note: The
OutputStreamremains open.- Specified by:
serializein interfaceArtifactSerializer<POSModel>- Parameters:
artifact- A validartifact.out- A valid, openOutputStreamready to write to.- Throws:
IOException- Thrown if IO errors occurred during serialization.
-
-