Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for newLinkedHashMap (0.09 seconds)

  1. src/main/java/org/codelibs/core/collection/CollectionsUtil.java

         * @param <V> the value type of {@link LinkedHashMap}
         * @return a new instance of {@link LinkedHashMap}
         * @see LinkedHashMap#LinkedHashMap()
         */
        public static <K, V> LinkedHashMap<K, V> newLinkedHashMap() {
            return new LinkedHashMap<>();
        }
    
        /**
         * Creates and returns a new instance of {@link LinkedHashMap}.
         *
         * @param <K> the key type of {@link LinkedHashMap}
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Thu Jul 31 08:16:49 GMT 2025
    - 49.9K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/collect/MapsTest.java

              capacity >= expectedSize);
        }
      }
    
      public void testLinkedHashMap() {
        @SuppressWarnings("UseCollectionConstructor") // test of factory method
        LinkedHashMap<Integer, Integer> map = Maps.newLinkedHashMap();
        assertEquals(emptyMap(), map);
      }
    
      public void testLinkedHashMapWithInitialMap() {
        Map<String, String> map =
            new LinkedHashMap<String, String>(
                ImmutableMap.of(
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 63.2K bytes
    - Click Count (0)
Back to Top