All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.sirix.index.art.EntryIterator Maven / Gradle / Ivy

package io.sirix.index.art;

import java.util.Map;

final class EntryIterator extends PrivateEntryIterator> {
  EntryIterator(AdaptiveRadixTree tree, LeafNode first) {
    super(tree, first);
  }

  @Override
  public Map.Entry next() {
    return nextEntry();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy