- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for unmodifiableSortedSet (0.09 seconds)
-
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/UnmodifiableSortedMultiset.java
} @Override public Comparator<? super E> comparator() { return delegate().comparator(); } @Override SortedSet<E> createElementSet() { return Collections.unmodifiableSortedSet(delegate().elementSet()); } @Override public SortedSet<E> elementSet() { return (SortedSet<E>) super.elementSet(); }
Created: 2025-12-26 12:43 - Last Modified: 2025-02-13 17:34 - 3.2K bytes - Click Count (0) -
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(); }
Created: 2025-12-26 12:43 - Last Modified: 2025-08-06 18:32 - 15.5K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/Multimaps.java
if (collection instanceof NavigableSet) { return Sets.unmodifiableNavigableSet((NavigableSet<E>) collection); } else if (collection instanceof SortedSet) { return Collections.unmodifiableSortedSet((SortedSet<E>) collection); } else if (collection instanceof Set) { return Collections.unmodifiableSet((Set<E>) collection); } else if (collection instanceof List) {
Created: 2025-12-26 12:43 - Last Modified: 2025-09-22 18:35 - 86.5K bytes - Click Count (0) -
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; } /**
Created: 2025-12-26 12:43 - Last Modified: 2025-09-22 18:35 - 24.9K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/Sets.java
private final SortedSet<E> unmodifiableDelegate; UnmodifiableNavigableSet(NavigableSet<E> delegate) { this.delegate = checkNotNull(delegate); this.unmodifiableDelegate = Collections.unmodifiableSortedSet(delegate); } @Override protected SortedSet<E> delegate() { return unmodifiableDelegate; } @Override public @Nullable E lower(@ParametricNullness E e) {
Created: 2025-12-26 12:43 - Last Modified: 2025-09-22 18:35 - 81.6K bytes - Click Count (0)