Package opennlp.tools.ml.maxent.io
Class BinaryGISModelWriter
- java.lang.Object
-
- opennlp.tools.ml.model.AbstractModelWriter
-
- opennlp.tools.ml.maxent.io.GISModelWriter
-
- opennlp.tools.ml.maxent.io.BinaryGISModelWriter
-
public class BinaryGISModelWriter extends GISModelWriter
AGISModelWriterthat writes models in a binary format.- See Also:
GISModel
-
-
Constructor Summary
Constructors Constructor Description BinaryGISModelWriter(AbstractModel model, DataOutputStream dos)BinaryGISModelWriter(AbstractModel model, File f)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()Closes the underlyingDataOutputStream.voidwriteDouble(double d)Writes a singledoubleto the underlyingDataOutputStream.voidwriteInt(int i)Writes a singleintto the underlyingDataOutputStream.voidwriteUTF(String s)Writes aStringto the underlyingDataOutputStream.-
Methods inherited from class opennlp.tools.ml.maxent.io.GISModelWriter
persist
-
-
-
-
Constructor Detail
-
BinaryGISModelWriter
public BinaryGISModelWriter(AbstractModel model, File f) throws IOException
InstantiatesBinaryGISModelWritervia anGIS modeland aFile.Prepares writing of a
modelto the file. Based on whether the file's suffix contains.gz, it detects whether the file is gzipped or not.- Parameters:
model- TheGIS modelwhich is to be persisted.f- TheFilein which the model is to be persisted.- Throws:
IOException- Thrown if IO errors occurred.- See Also:
GISModel
-
BinaryGISModelWriter
public BinaryGISModelWriter(AbstractModel model, DataOutputStream dos)
- Parameters:
model- TheGIS modelwhich is to be persisted.dos- TheDataOutputStreamwhich is used to persist themodel. Thedosmust be opened.
-
-
Method Detail
-
writeUTF
public void writeUTF(String s) throws IOException
Writes aStringto the underlyingDataOutputStream.- Specified by:
writeUTFin classAbstractModelWriter- Parameters:
s- TheUTF encodedcharacters.- Throws:
IOException- Thrown if IO errors occurred.
-
writeInt
public void writeInt(int i) throws IOExceptionWrites a singleintto the underlyingDataOutputStream.- Specified by:
writeIntin classAbstractModelWriter- Parameters:
i- Theintvalue.- Throws:
IOException- Thrown if IO errors occurred.
-
writeDouble
public void writeDouble(double d) throws IOExceptionWrites a singledoubleto the underlyingDataOutputStream.- Specified by:
writeDoublein classAbstractModelWriter- Parameters:
d- Thedoublevalue.- Throws:
IOException- Thrown if IO errors occurred.
-
close
public void close() throws IOExceptionDescription copied from class:AbstractModelWriterCloses the underlyingDataOutputStream.- Specified by:
closein classAbstractModelWriter- Throws:
IOException- Thrown if IO errors occurred.
-
-