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

com.maxifier.mxcache.hashing.DoubleArrayHashingStrategy Maven / Gradle / Ivy

/*
 * 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 DoubleArrayHashingStrategy implements gnu.trove.strategy.HashingStrategy {
    private static final long serialVersionUID = 100L;

    private static final DoubleArrayHashingStrategy INSTANCE = new DoubleArrayHashingStrategy();

    private DoubleArrayHashingStrategy() {}

    public static DoubleArrayHashingStrategy getInstance() {
        return INSTANCE;
    }

    @Override
    public int computeHashCode(double[] object) {
        return Arrays.hashCode(object);
    }

    @Override
    public boolean equals(double[] o1, double[] o2) {
        return Arrays.equals(o1, o2);
    }

    private Object readResolve() throws ObjectStreamException {
        return INSTANCE;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy