Home | History | Annotate | Download | only in collect

Lines Matching defs:subMap

476    * <p>The {@link SortedMap#headMap} documentation states that a submap of a
477 * submap throws an {@link IllegalArgumentException} if passed a {@code toKey}
491 * <p>The {@link SortedMap#headMap} documentation states that a submap of a
492 * submap throws an {@link IllegalArgumentException} if passed a {@code toKey}
507 * <p>The {@link SortedMap#subMap} documentation states that a submap of a
508 * submap throws an {@link IllegalArgumentException} if passed a {@code
516 public ImmutableSortedMap<K, V> subMap(K fromKey, K toKey) {
517 return subMap(fromKey, true, toKey, false);
525 * <p>The {@link SortedMap#subMap} documentation states that a submap of a
526 * submap throws an {@link IllegalArgumentException} if passed a {@code
536 public ImmutableSortedMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey,
549 * <p>The {@link SortedMap#tailMap} documentation states that a submap of a
550 * submap throws an {@link IllegalArgumentException} if passed a {@code
565 * <p>The {@link SortedMap#tailMap} documentation states that a submap of a
566 * submap throws an {@link IllegalArgumentException} if passed a {@code