Creates an AtomicLongMap.
()
| 63 | |
| 64 | |
| 65 | public static <K> AtomicLongMap<K> create() { |
| 66 | return new AtomicLongMap<K>(new ConcurrentHashMap<K, AtomicLong>()); |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * Creates an {@code AtomicLongMap} with the same mappings as the specified {@code Map}. |