gnu.trove.strategy.IdentityHashingStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
High performance collections for Java
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 - 2024 Weber Informatics LLC | Privacy Policy