Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 63 of 63 for NewHashMap (1.98 sec)

  1. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertHasArrayInterfaces(new TypeToken<NoInterface[]>() {});
      }
    
      public void testGetGenericInterfaces_withInterfaces() {
        Map<Class<?>, Type> interfaceMap = Maps.newHashMap();
        for (TypeToken<?> interfaceType :
            new TypeToken<Implementation<Integer, String>>() {}.getGenericInterfaces()) {
          interfaceMap.put(interfaceType.getRawType(), interfaceType.getType());
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Maps.java

       * href="http://goo.gl/iz2Wi">"diamond" syntax</a>.
       *
       * @return a new, empty {@code HashMap}
       */
      public static <K extends @Nullable Object, V extends @Nullable Object>
          HashMap<K, V> newHashMap() {
        return new HashMap<>();
      }
    
      /**
       * Creates a <i>mutable</i> {@code HashMap} instance with the same mappings as the specified map.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Maps.java

       * href="http://goo.gl/iz2Wi">"diamond" syntax</a>.
       *
       * @return a new, empty {@code HashMap}
       */
      public static <K extends @Nullable Object, V extends @Nullable Object>
          HashMap<K, V> newHashMap() {
        return new HashMap<>();
      }
    
      /**
       * Creates a <i>mutable</i> {@code HashMap} instance with the same mappings as the specified map.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
Back to top