public Iterator<StoredNode> getNodeIterator(final StoredNode node) {
if(node == null) {
throw new IllegalArgumentException("The node parameter cannot be null.");
}
try {
return new NodeIterator(this, domDb, node, false);
} catch(final BTreeException | IOException e) {
LOG.warn("failed to create node iterator", e);
}
return null;
}