Java HashMap Create hashmap()

Here you can find the source of hashmap()

Description

hashmap

License

LGPL

Declaration

public static <K, V> HashMap<K, V> hashmap() 

Method Source Code

//package com.java2s;
//License from project: LGPL 

import java.util.HashMap;

public class Main {
    public static <K, V> HashMap<K, V> hashmap() {
        return new HashMap<K, V>();
    }/* w w  w .  ja v a 2 s .  c om*/
}

Related

  1. getHashMap(Object... args)
  2. getHashMapFromArrayList( ArrayList lines, int keyIndex)
  3. getHashMapFromMap( Map map, K key)
  4. hashMap()
  5. hashMap()
  6. hashMap(Entry... entries)
  7. hashMap(Entry... entries)
  8. hashMap(Object... kvs)
  9. hashMapRange(int upTo)