示例#1
0
 /**
  * Get the smallest key that is larger than the given key, or null if no such key exists.
  *
  * @param key the key (may not be null)
  * @return the result
  */
 public K higherKey(K key) {
   // TODO transactional higherKey
   return map.higherKey(key);
 }