Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Freeman (0.07 sec)

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

        /**
         * Creates and returns a new instance of {@link TreeMap}.
         *
         * @param <K> the key type of {@link TreeMap}
         * @param <V> the value type of {@link TreeMap}
         * @return a new instance of {@link TreeMap}
         * @see TreeMap#TreeMap()
         */
        public static <K, V> TreeMap<K, V> newTreeMap() {
            return new TreeMap<>();
        }
    
        /**
    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. src/main/java/org/codelibs/core/collection/Maps.java

         *
         * @param <KEY> the key type of the <code>Map</code>
         * @param <VALUE> the value type of the <code>Map</code>
         * @param key the key to be added to the <code>Map</code>
         * @param value the value to be added to the <code>Map</code>
         * @return a {@literal Maps} for constructing a {@link TreeMap} with the specified key and value
         */
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 7.2K bytes
    - Viewed (0)
Back to top