Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 22 of 22 for ForwardingCollection (0.23 seconds)

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

          }
        };
      }
    
      /** The implementation of {@link Multimaps#unmodifiableEntries}. */
      static class UnmodifiableEntries<K extends @Nullable Object, V extends @Nullable Object>
          extends ForwardingCollection<Entry<K, V>> {
        private final Collection<Entry<K, V>> entries;
    
        UnmodifiableEntries(Collection<Entry<K, V>> entries) {
          this.entries = entries;
        }
    
        @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 157.6K bytes
    - Click Count (0)
  2. guava/src/com/google/common/collect/Maps.java

          }
        };
      }
    
      /** The implementation of {@link Multimaps#unmodifiableEntries}. */
      static class UnmodifiableEntries<K extends @Nullable Object, V extends @Nullable Object>
          extends ForwardingCollection<Entry<K, V>> {
        private final Collection<Entry<K, V>> entries;
    
        UnmodifiableEntries(Collection<Entry<K, V>> entries) {
          this.entries = entries;
        }
    
        @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 163.4K bytes
    - Click Count (0)
Back to Top