Beispiel #1
0
 /**
  * {@inheritDoc}
  *
  * @see java.util.NavigableSet#ceiling(java.lang.Object)
  * @since 1.6
  */
 public E ceiling(E e) {
   return backingMap.ceilingKey(e);
 }
Beispiel #2
0
 /**
  * @throws ClassCastException {@inheritDoc}
  * @throws NullPointerException if the specified element is null and this set uses natural
  *     ordering, or its comparator does not permit null elements
  * @since 1.6
  */
 public E ceiling(E e) {
   return m.ceilingKey(e);
 }