Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for unmodifiableList (2.65 sec)

  1. guava/src/com/google/common/collect/FilteredEntryMultimap.java

            return null;
          } else if (unfiltered instanceof SetMultimap) {
            return Collections.unmodifiableSet(Sets.newLinkedHashSet(result));
          } else {
            return Collections.unmodifiableList(result);
          }
        }
    
        @Override
        Set<K> createKeySet() {
          @WeakOuter
          class KeySetImpl extends Maps.KeySet<K, Collection<V>> {
            KeySetImpl() {
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Wed Oct 06 00:47:57 GMT 2021
    - 11.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/FilteredEntryMultimap.java

            return null;
          } else if (unfiltered instanceof SetMultimap) {
            return Collections.unmodifiableSet(Sets.newLinkedHashSet(result));
          } else {
            return Collections.unmodifiableList(result);
          }
        }
    
        @Override
        Set<K> createKeySet() {
          @WeakOuter
          class KeySetImpl extends Maps.KeySet<K, Collection<V>> {
            KeySetImpl() {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Apr 24 19:38:27 GMT 2024
    - 11.9K bytes
    - Viewed (0)
Back to top