Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for unmodifiableList (0.19 sec)

  1. 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