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

org.conqat.lib.commons.collections.IdentitySetMap Maven / Gradle / Ivy

There is a newer version: 2024.7.2
Show newest version
package org.conqat.lib.commons.collections;

import java.util.IdentityHashMap;
import java.util.Map;
import java.util.Set;

/**
 * Variant of the {@link SetMap} that compares keys by reference instead of equality.
 */
public class IdentitySetMap extends SetMap {

	private static final long serialVersionUID = 1L;

	@Override
	protected Map> createUnderlyingMap() {
		return new IdentityHashMap<>();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy