Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for WrappedSortedSet (0.08 sec)

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

        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: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Multimaps.java

          } 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) {
            return new WrappedSet(key, (Set<V>) collection);
          } else {
            return new WrappedCollection(key, collection, null);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 16 21:21:17 UTC 2024
    - 86.3K bytes
    - Viewed (0)
Back to top