Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for newLinkedHashMap (0.09 sec)

  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}
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 49.9K bytes
    - Viewed (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(
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Dec 11 22:56:33 UTC 2025
    - 62.7K bytes
    - Viewed (0)
  3. 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(
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Dec 11 22:56:33 UTC 2025
    - 65K bytes
    - Viewed (0)
Back to top