Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for All (0.11 sec)

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

         * @since 11.0
         */
        @CanIgnoreReturnValue
        public Builder<K, V> put(Entry<? extends K, ? extends V> entry) {
          return put(entry.getKey(), entry.getValue());
        }
    
        /**
         * Associates all of the given map's keys and values in the built map. If the same key is put
         * more than once, {@link #buildOrThrow} will fail, while {@link #buildKeepingLast} will keep
         * the last value put for that key.
         *
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 41.7K bytes
    - Viewed (0)
Back to top