Package opennlp.tools.ml.model
Class BinaryFileDataReader
java.lang.Object
opennlp.tools.ml.model.BinaryFileDataReader
- All Implemented Interfaces:
DataReader
A
DataReader
that reads files from a binary format.-
Constructor Summary
-
Method Summary
-
Constructor Details
-
BinaryFileDataReader
InstantiatesBinaryFileDataReader
via aFile
and creates aDataInputStream
for it. Based on whether the file's suffix contains.gz
, it detects whether the file is gzipped or not.- Parameters:
f
- TheFile
that references the model to be read.- Throws:
IOException
-
BinaryFileDataReader
- Parameters:
in
- TheInputStream
that references the model to be read.
-
BinaryFileDataReader
InstantiatesBinaryFileDataReader
via anDataInputStream
.- Parameters:
in
- TheDataInputStream
that references the model to be read.
-
-
Method Details
-
readDouble
- Specified by:
readDouble
in interfaceDataReader
- Returns:
- Reads and returns a
double
value. - Throws:
IOException
- Thrown if IO errors occurred during read operation.
-
readInt
- Specified by:
readInt
in interfaceDataReader
- Returns:
- Reads and returns an
int
value. - Throws:
IOException
- Thrown if IO errors occurred during read operation.
-
readUTF
- Specified by:
readUTF
in interfaceDataReader
- Returns:
- Reads and returns
UTF-encoded characters
. - Throws:
IOException
- Thrown if IO errors occurred during read operation.
-