Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for WrappedNavigableSet (0.2 sec)

  1. android/guava/src/com/google/common/collect/AbstractSortedSetMultimap.java

        }
      }
    
      @Override
      Collection<V> wrapCollection(@ParametricNullness K key, Collection<V> collection) {
        if (collection instanceof NavigableSet) {
          return new WrappedNavigableSet(key, (NavigableSet<V>) collection, null);
        } else {
          return new WrappedSortedSet(key, (SortedSet<V>) collection, null);
        }
      }
    
      // Following Javadoc copied from Multimap and SortedSetMultimap.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 21:08:00 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/AbstractSortedSetMultimap.java

        }
      }
    
      @Override
      Collection<V> wrapCollection(@ParametricNullness K key, Collection<V> collection) {
        if (collection instanceof NavigableSet) {
          return new WrappedNavigableSet(key, (NavigableSet<V>) collection, null);
        } else {
          return new WrappedSortedSet(key, (SortedSet<V>) collection, null);
        }
      }
    
      // Following Javadoc copied from Multimap and SortedSetMultimap.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 21:08:00 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

              getSortedSetDelegate().tailSet(fromElement),
              (getAncestor() == null) ? this : getAncestor());
        }
      }
    
      @WeakOuter
      class WrappedNavigableSet extends WrappedSortedSet implements NavigableSet<V> {
        WrappedNavigableSet(
            @ParametricNullness K key,
            NavigableSet<V> delegate,
            @CheckForNull WrappedCollection ancestor) {
          super(key, delegate, ancestor);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 48K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

              getSortedSetDelegate().tailSet(fromElement),
              (getAncestor() == null) ? this : getAncestor());
        }
      }
    
      @WeakOuter
      class WrappedNavigableSet extends WrappedSortedSet implements NavigableSet<V> {
        WrappedNavigableSet(
            @ParametricNullness K key,
            NavigableSet<V> delegate,
            @CheckForNull WrappedCollection ancestor) {
          super(key, delegate, ancestor);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 46.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Multimaps.java

          if (collection instanceof List) {
            return wrapList(key, (List<V>) collection, null);
          } else if (collection instanceof NavigableSet) {
            return new WrappedNavigableSet(key, (NavigableSet<V>) collection, null);
          } else if (collection instanceof SortedSet) {
            return new WrappedSortedSet(key, (SortedSet<V>) collection, null);
          } else if (collection instanceof Set) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Multimaps.java

          if (collection instanceof List) {
            return wrapList(key, (List<V>) collection, null);
          } else if (collection instanceof NavigableSet) {
            return new WrappedNavigableSet(key, (NavigableSet<V>) collection, null);
          } else if (collection instanceof SortedSet) {
            return new WrappedSortedSet(key, (SortedSet<V>) collection, null);
          } else if (collection instanceof Set) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top