Class TypeFriendlyHashMap<K,​V>

    • Constructor Detail

      • TypeFriendlyHashMap

        public TypeFriendlyHashMap​(int initialCapacity,
                                   float loadFactor)
        Constructs a new TypeFriendlyHashMap
        Parameters:
        initialCapacity - The initial capacity of the map
        loadFactor - The load factor of the map
      • TypeFriendlyHashMap

        public TypeFriendlyHashMap​(int initialCapacity)
        Constructs a new TypeFriendlyHashMap
        Parameters:
        initialCapacity - The initial capacity of the map
      • TypeFriendlyHashMap

        public TypeFriendlyHashMap​(Map<? extends K,​? extends V> m)
        Constructs a new TypeFriendlyHashMap, pre-populating it with a copy of the input map
        Parameters:
        m - the map to copy
        See Also:
        HashMap(Map)