Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AbstractMapEntry (0.18 sec)

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

     * common.collect} as a superclass.
     */
    @GwtCompatible(serializable = true)
    @ElementTypesAreNonnullByDefault
    class ImmutableEntry<K extends @Nullable Object, V extends @Nullable Object>
        extends AbstractMapEntry<K, V> implements Serializable {
      @ParametricNullness final K key;
      @ParametricNullness final V value;
    
      ImmutableEntry(@ParametricNullness K key, @ParametricNullness V value) {
        this.key = key;
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Jan 19 21:29:44 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableEntry.java

     * common.collect} as a superclass.
     */
    @GwtCompatible(serializable = true)
    @ElementTypesAreNonnullByDefault
    class ImmutableEntry<K extends @Nullable Object, V extends @Nullable Object>
        extends AbstractMapEntry<K, V> implements Serializable {
      @ParametricNullness final K key;
      @ParametricNullness final V value;
    
      ImmutableEntry(@ParametricNullness K key, @ParametricNullness V value) {
        this.key = key;
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Jan 19 21:29:44 GMT 2023
    - 1.7K bytes
    - Viewed (0)
Back to top