com.maxifier.mxcache.hashing.IntArrayHashingStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mxcache-runtime Show documentation
Show all versions of mxcache-runtime Show documentation
Constains all classes necessary for launching a MxCache-instrumentated application
/*
* Copyright (c) 2008-2014 Maxifier Ltd. All Rights Reserved.
*/
package com.maxifier.mxcache.hashing;
import java.io.ObjectStreamException;
import java.util.Arrays;
/**
* @author Alexander Kochurov ([email protected])
*/
public final class IntArrayHashingStrategy implements gnu.trove.strategy.HashingStrategy {
private static final long serialVersionUID = 100L;
private static final IntArrayHashingStrategy INSTANCE = new IntArrayHashingStrategy();
private IntArrayHashingStrategy() {}
public static IntArrayHashingStrategy getInstance() {
return INSTANCE;
}
@Override
public int computeHashCode(int[] object) {
return Arrays.hashCode(object);
}
@Override
public boolean equals(int[] o1, int[] o2) {
return Arrays.equals(o1, o2);
}
private Object readResolve() throws ObjectStreamException {
return INSTANCE;
}
}