Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
package org.jvnet.jaxb2_commons.lang;
import org.jvnet.jaxb2_commons.locator.ObjectLocator;
public interface HashCodeStrategy2 {
public int hashCode(ObjectLocator locator, int hashCode, boolean value, boolean valueSet);
public int hashCode(ObjectLocator locator, int hashCode, byte value, boolean valueSet);
public int hashCode(ObjectLocator locator, int hashCode, char value, boolean valueSet);
public int hashCode(ObjectLocator locator, int hashCode, double value, boolean valueSet);
public int hashCode(ObjectLocator locator, int hashCode, float value, boolean valueSet);
public int hashCode(ObjectLocator locator, int hashCode, int value, boolean valueSet);
public int hashCode(ObjectLocator locator, int hashCode, long value, boolean valueSet);
public int hashCode(ObjectLocator locator, int hashCode, short value, boolean valueSet);
public int hashCode(ObjectLocator locator, int hashCode, Object value, boolean valueSet);
public int hashCode(ObjectLocator locator, int hashCode, boolean[] value, boolean valueSet);
public int hashCode(ObjectLocator locator, int hashCode, byte[] value, boolean valueSet);
public int hashCode(ObjectLocator locator, int hashCode, char[] value, boolean valueSet);
public int hashCode(ObjectLocator locator, int hashCode, double[] value, boolean valueSet);
public int hashCode(ObjectLocator locator, int hashCode, float[] value, boolean valueSet);
public int hashCode(ObjectLocator locator, int hashCode, int[] value, boolean valueSet);
public int hashCode(ObjectLocator locator, int hashCode, long[] value, boolean valueSet);
public int hashCode(ObjectLocator locator, int hashCode, short[] value, boolean valueSet);
public int hashCode(ObjectLocator locator, int hashCode, Object[] value, boolean valueSet);
}