use of org.sirix.axis.temporal.LastAxis in project sirix by sirixdb.
the class DBNode method getLast.
@Override
public DBNode getLast() {
moveRtx();
final AbstractTemporalAxis axis = new LastAxis(mRtx);
return axis.hasNext() ? new DBNode(axis.getTrx(), mCollection) : null;
}
Aggregations