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