Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 86 of 86 for newHashMap (0.12 sec)

  1. src/main/java/org/codelibs/fess/es/user/bsentity/dbmeta/UserDbm.java

        //                                       Column Property
        //                                       ---------------
        protected final Map<String, PropertyGateway> _epgMap = newHashMap();
        {
            setupEpg(_epgMap, et -> ((User) et).getBusinessCategory(), (et, vl) -> ((User) et).setBusinessCategory(DfTypeUtil.toString(vl)),
                    "businessCategory");
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 27K bytes
    - Viewed (0)
  2. guava/src/com/google/common/net/MediaType.java

      private static final String VIDEO_TYPE = "video";
      private static final String FONT_TYPE = "font";
    
      private static final String WILDCARD = "*";
    
      private static final Map<MediaType, MediaType> KNOWN_TYPES = Maps.newHashMap();
    
      private static MediaType createConstant(String type, String subtype) {
        MediaType mediaType =
            addKnownType(new MediaType(type, subtype, ImmutableListMultimap.<String, String>of()));
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Sep 26 19:15:09 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Maps.java

       */
      @SuppressWarnings("NonApiType") // acts as a direct substitute for a constructor call
      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: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Maps.java

       */
      @SuppressWarnings("NonApiType") // acts as a direct substitute for a constructor call
      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: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  5. 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: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 21:13:09 UTC 2024
    - 89.1K bytes
    - Viewed (0)
  6. 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: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 21:13:09 UTC 2024
    - 89.1K bytes
    - Viewed (0)
Back to top