Package opennlp.tools.ml.maxent.io
Class BinaryQNModelWriter
- java.lang.Object
-
- opennlp.tools.ml.model.AbstractModelWriter
-
- opennlp.tools.ml.maxent.io.GISModelWriter
-
- opennlp.tools.ml.maxent.io.QNModelWriter
-
- opennlp.tools.ml.maxent.io.BinaryQNModelWriter
-
public class BinaryQNModelWriter extends QNModelWriter
-
-
Constructor Summary
Constructors Constructor Description BinaryQNModelWriter(AbstractModel model, DataOutputStream dos)
Constructor which takes a GISModel and a DataOutputStream and prepares itself to write the model to that stream.BinaryQNModelWriter(AbstractModel model, File f)
Constructor which takes a GISModel and a File and prepares itself to write the model to that file.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
void
writeDouble(double d)
void
writeInt(int i)
void
writeUTF(String s)
-
Methods inherited from class opennlp.tools.ml.maxent.io.QNModelWriter
persist
-
-
-
-
Constructor Detail
-
BinaryQNModelWriter
public BinaryQNModelWriter(AbstractModel model, File f) throws IOException
Constructor which takes a GISModel and a File and prepares itself to write the model to that file. Detects whether the file is gzipped or not based on whether the suffix contains ".gz".- Parameters:
model
- The GISModel which is to be persisted.f
- The File in which the model is to be persisted.- Throws:
IOException
-
BinaryQNModelWriter
public BinaryQNModelWriter(AbstractModel model, DataOutputStream dos)
Constructor which takes a GISModel and a DataOutputStream and prepares itself to write the model to that stream.- Parameters:
model
- The GISModel which is to be persisted.dos
- The stream which will be used to persist the model.
-
-
Method Detail
-
writeUTF
public void writeUTF(String s) throws IOException
- Specified by:
writeUTF
in classAbstractModelWriter
- Throws:
IOException
-
writeInt
public void writeInt(int i) throws IOException
- Specified by:
writeInt
in classAbstractModelWriter
- Throws:
IOException
-
writeDouble
public void writeDouble(double d) throws IOException
- Specified by:
writeDouble
in classAbstractModelWriter
- Throws:
IOException
-
close
public void close() throws IOException
- Specified by:
close
in classAbstractModelWriter
- Throws:
IOException
-
-