All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.polaris.core.map.SoftKeyHashMap Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package io.polaris.core.map;

import io.polaris.core.map.reference.SoftKeyReference;

import java.util.HashMap;
import java.util.Map;

/**
 * @author Qt
 * @since 1.8
 */
public class SoftKeyHashMap extends KeyReferenceMap {

	public SoftKeyHashMap(int initialCapacity, float loadFactor) {
		super(new HashMap<>(initialCapacity, loadFactor), SoftKeyReference::new);
	}

	public SoftKeyHashMap(int initialCapacity) {
		super(new HashMap<>(initialCapacity), SoftKeyReference::new);
	}

	public SoftKeyHashMap() {
		super(new HashMap<>(), SoftKeyReference::new);
	}

	public SoftKeyHashMap(Map t) {
		super(new HashMap<>(), SoftKeyReference::new);
		putAll(t);
	}


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy