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