Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for unmodifiableSet (0.06 sec)

  1. android/guava/src/com/google/common/graph/DirectedGraphConnections.java

            predecessorCount,
            successorCount);
      }
    
      @Override
      public Set<N> adjacentNodes() {
        if (orderedNodeConnections == null) {
          return Collections.unmodifiableSet(adjacentNodeValues.keySet());
        } else {
          return new AbstractSet<N>() {
            @Override
            public UnmodifiableIterator<N> iterator() {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Sat Jan 18 02:54:30 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Multisets.java

          return (Multiset<E>) delegate;
        }
    
        @LazyInit transient @Nullable Set<E> elementSet;
    
        Set<E> createElementSet() {
          return Collections.unmodifiableSet(delegate.elementSet());
        }
    
        @Override
        public Set<E> elementSet() {
          Set<E> es = elementSet;
          return (es == null) ? elementSet = createElementSet() : es;
        }
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 18:35:44 UTC 2025
    - 41.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Multisets.java

          return (Multiset<E>) delegate;
        }
    
        @LazyInit transient @Nullable Set<E> elementSet;
    
        Set<E> createElementSet() {
          return Collections.unmodifiableSet(delegate.elementSet());
        }
    
        @Override
        public Set<E> elementSet() {
          Set<E> es = elementSet;
          return (es == null) ? elementSet = createElementSet() : es;
        }
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 18:35:44 UTC 2025
    - 41.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Multimaps.java

          } 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) {
            return Collections.unmodifiableList((List<E>) collection);
          } else {
            return Collections.unmodifiableCollection(collection);
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 18:35:44 UTC 2025
    - 86.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Maps.java

       */
      static <K extends @Nullable Object, V extends @Nullable Object>
          Set<Entry<K, V>> unmodifiableEntrySet(Set<Entry<K, V>> entrySet) {
        return new UnmodifiableEntrySet<>(Collections.unmodifiableSet(entrySet));
      }
    
      /**
       * Returns an unmodifiable view of the specified map entry. The {@link Entry#setValue} operation
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Sep 23 17:50:58 UTC 2025
    - 157.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Maps.java

       */
      static <K extends @Nullable Object, V extends @Nullable Object>
          Set<Entry<K, V>> unmodifiableEntrySet(Set<Entry<K, V>> entrySet) {
        return new UnmodifiableEntrySet<>(Collections.unmodifiableSet(entrySet));
      }
    
      /**
       * Returns an unmodifiable view of the specified map entry. The {@link Entry#setValue} operation
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Nov 17 22:50:48 UTC 2025
    - 163.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/LocalCache.java

    import static com.google.common.util.concurrent.MoreExecutors.directExecutor;
    import static com.google.common.util.concurrent.Uninterruptibles.getUninterruptibly;
    import static java.lang.Math.min;
    import static java.util.Collections.unmodifiableSet;
    import static java.util.concurrent.TimeUnit.NANOSECONDS;
    
    import com.google.common.annotations.GwtCompatible;
    import com.google.common.annotations.GwtIncompatible;
    import com.google.common.annotations.J2ktIncompatible;
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Sep 11 19:35:11 UTC 2025
    - 148.9K bytes
    - Viewed (0)
Back to top