コード例 #1
0
 public K getKey() {
   return entry != null ? entry.getKey(position) : null;
 }
コード例 #2
0
 public V getValue() {
   return entry != null ? entry.getValue(position) : null;
 }
コード例 #3
0
 public void assign(final OMVRBTreeEntry<K, V> entry) {
   this.entry = entry;
   this.position = entry != null ? entry.getTree().getPageIndex() : -1;
 }