Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for verified (0.14 sec)

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

        @SuppressWarnings("unchecked") // we will only ever read these
        Entry<K, V>[] entries2 = (Entry<K, V>[]) entries;
        return copyOf(Arrays.asList(entries2));
      }
    
      /**
       * Verifies that {@code key} and {@code value} are non-null, and returns a new immutable entry
       * with those values.
       *
       * <p>A call to {@link Entry#setValue} on the returned entry will always throw {@link
    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)
  2. guava/src/com/google/common/collect/ImmutableMap.java

        @SuppressWarnings("unchecked") // we will only ever read these
        Entry<K, V>[] entries2 = (Entry<K, V>[]) entries;
        return RegularImmutableMap.fromEntries(entries2);
      }
    
      /**
       * Verifies that {@code key} and {@code value} are non-null, and returns a new immutable entry
       * with those values.
       *
       * <p>A call to {@link Entry#setValue} on the returned entry will always throw {@link
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 44.1K bytes
    - Viewed (0)
Back to top