Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for sortedSet (0.05 sec)

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

          implements SortedSet<E> {
    
        FilteredSortedSet(SortedSet<E> unfiltered, Predicate<? super E> predicate) {
          super(unfiltered, predicate);
        }
    
        @Override
        public @Nullable Comparator<? super E> comparator() {
          return ((SortedSet<E>) unfiltered).comparator();
        }
    
        @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 81.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Multimaps.java

        }
    
        @Override
        public SortedSet<V> get(@ParametricNullness K key) {
          return Collections.unmodifiableSortedSet(delegate().get(key));
        }
    
        @Override
        public SortedSet<V> removeAll(@Nullable Object key) {
          throw new UnsupportedOperationException();
        }
    
        @Override
        public SortedSet<V> replaceValues(@ParametricNullness K key, Iterable<? extends V> values) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 86.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Multimaps.java

        }
    
        @Override
        public SortedSet<V> get(@ParametricNullness K key) {
          return Collections.unmodifiableSortedSet(delegate().get(key));
        }
    
        @Override
        public SortedSet<V> removeAll(@Nullable Object key) {
          throw new UnsupportedOperationException();
        }
    
        @Override
        public SortedSet<V> replaceValues(@ParametricNullness K key, Iterable<? extends V> values) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 86.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/collection/CollectionsUtil.java

         * @param s the sorted set to be placed in the created set
         * @return a new instance of {@link ConcurrentSkipListSet}
         * @see ConcurrentSkipListSet#ConcurrentSkipListSet(SortedSet)
         */
        public static <E> ConcurrentSkipListSet<E> newConcurrentSkipListSet(final SortedSet<? extends E> s) {
            return new ConcurrentSkipListSet<E>(s);
        }
    
        /**
         * Creates and returns a new instance of {@link CopyOnWriteArrayList}.
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 49.9K bytes
    - Viewed (0)
Back to top