use of org.apache.jena.tdb2.store.nodetable.NodeTableTRDF in project jena by apache.
the class LoaderOps method ntDataFile.
/**
* Get the node storage for a {@Link NodeTable}
*/
public static TransBinaryDataFile ntDataFile(NodeTable nt) {
NodeTableTRDF ntt = (NodeTableTRDF) (nt.baseNodeTable());
BinaryDataFile bdf = ntt.getData();
TransBinaryDataFile tbdf = (TransBinaryDataFile) bdf;
return tbdf;
}
Aggregations