Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for unmodifiableSortedSet (0.17 sec)

  1. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedSet.java

        this(Sets.newTreeSet(comparator));
      }
    
      ImmutableSortedSet(SortedSet<E> sortedDelegate) {
        super(sortedDelegate);
        this.sortedDelegate = Collections.unmodifiableSortedSet(sortedDelegate);
      }
    
      @Override
      public Comparator<? super E> comparator() {
        return sortedDelegate.comparator();
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 18:32:41 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Tables.java

          return unmodifiableSortedMap(
              Maps.transformValues(delegate().rowMap(), Collections::unmodifiableMap));
        }
    
        @Override
        public SortedSet<R> rowKeySet() {
          return Collections.unmodifiableSortedSet(delegate().rowKeySet());
        }
    
        @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0;
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 24.9K bytes
    - Viewed (0)
Back to top