gnu.trove.strategy.IdentityHashingStrategy Maven / Gradle / Ivy
The newest version!
package gnu.trove.strategy;
/**
* A {@link gnu.trove.strategy.HashingStrategy} that does identity comparisons
* (==) and uses {@link System#identityHashCode(Object)} for hashCode generation.
*/
public class IdentityHashingStrategy implements HashingStrategy {
static final long serialVersionUID = -5188534454583764904L;
/**
* A single instance that can be shared with multiple collections.
* This instance is thread safe.
*/
public static final IdentityHashingStrategy
© 2015 - 2025 Weber Informatics LLC | Privacy Policy