Class HashCodeBuilder
Object.hashCode() methods.
 
 This class enables a good hashCode method to be built for any class. It follows the rules laid out in
 the book Effective Java by Joshua Bloch. Writing a
 good hashCode method is actually quite difficult. This class aims to simplify the process.
 
The following is the approach taken. When appending a data field, the current total is multiplied by the multiplier then a relevant value for that data type is added. For example, if the current hashCode is 17, and the multiplier is 37, then appending the integer 45 will create a hash code of 674, namely 17 * 37 + 45.
 All relevant fields from the object should be included in the hashCode method. Derived fields may be
 excluded. In general, any field used in the equals method must be used in the hashCode
 method.
 
To use this class write code as follows:
 public class Person {
   String name;
   int age;
   boolean smoker;
   ...
   public int hashCode() {
     // you pick a hard-coded, randomly chosen, non-zero, odd number
     // ideally different for each class
     return new HashCodeBuilder(17, 37).
       append(name).
       append(age).
       append(smoker).
       toHashCode();
   }
 }
 
 
 If required, the superclass hashCode() can be added using appendSuper(int).
 
 Alternatively, there is a method that uses reflection to determine the fields to test. Because these fields are
 usually private, the method, reflectionHashCode, uses AccessibleObject.setAccessible
 to change the visibility of the fields. This will fail under a security manager, unless the appropriate permissions
 are set up correctly. It is also slower than testing explicitly.
 
A typical invocation for this method would look like:
 public int hashCode() {
   return HashCodeBuilder.reflectionHashCode(this);
 }
 
 The HashCodeExclude annotation can be used to exclude fields from being
 used by the reflectionHashCode methods.
- Since:
- 1.0
- 
Constructor SummaryConstructorsConstructorDescriptionUses two hard coded choices for the constants needed to build ahashCode.HashCodeBuilder(int initialOddNumber, int multiplierOddNumber) Two randomly chosen, odd numbers must be passed in.
- 
Method SummaryModifier and TypeMethodDescriptionappend(boolean value) Append ahashCodefor aboolean.append(boolean[] array) Append ahashCodefor abooleanarray.append(byte value) Append ahashCodefor abyte.append(byte[] array) Append ahashCodefor abytearray.append(char value) Append ahashCodefor achar.append(char[] array) Append ahashCodefor achararray.append(double value) Append ahashCodefor adouble.append(double[] array) Append ahashCodefor adoublearray.append(float value) Append ahashCodefor afloat.append(float[] array) Append ahashCodefor afloatarray.append(int value) Append ahashCodefor anint.append(int[] array) Append ahashCodefor anintarray.append(long value) Append ahashCodefor along.append(long[] array) Append ahashCodefor alongarray.append(short value) Append ahashCodefor ashort.append(short[] array) Append ahashCodefor ashortarray.Append ahashCodefor anObject.Append ahashCodefor anObjectarray.appendSuper(int superHashCode) Adds the result of super.hashCode() to this builder.build()Returns the computedhashCode.booleanImplements equals using the hash code.inthashCode()The computedhashCodefrom toHashCode() is returned due to the likelihood of bugs in mis-calling toHashCode() and the unlikeliness of it mattering what the hashCode for HashCodeBuilder itself is.static intreflectionHashCode(int initialNonZeroOddNumber, int multiplierNonZeroOddNumber, Object object) Uses reflection to build a valid hash code from the fields ofobject.static intreflectionHashCode(int initialNonZeroOddNumber, int multiplierNonZeroOddNumber, Object object, boolean testTransients) Uses reflection to build a valid hash code from the fields ofobject.static <T> intreflectionHashCode(int initialNonZeroOddNumber, int multiplierNonZeroOddNumber, T object, boolean testTransients, Class<? super T> reflectUpToClass, String... excludeFields) Uses reflection to build a valid hash code from the fields ofobject.static intreflectionHashCode(Object object, boolean testTransients) Uses reflection to build a valid hash code from the fields ofobject.static intreflectionHashCode(Object object, String... excludeFields) Uses reflection to build a valid hash code from the fields ofobject.static intreflectionHashCode(Object object, Collection<String> excludeFields) Uses reflection to build a valid hash code from the fields ofobject.intReturns the computedhashCode.
- 
Constructor Details- 
HashCodeBuilderpublic HashCodeBuilder()Uses two hard coded choices for the constants needed to build ahashCode.
- 
HashCodeBuilderTwo randomly chosen, odd numbers must be passed in. Ideally these should be different for each class, however this is not vital.Prime numbers are preferred, especially for the multiplier. - Parameters:
- initialOddNumber- an odd number used as the initial value
- multiplierOddNumber- an odd number used as the multiplier
- Throws:
- IllegalArgumentException- if the number is even
 
 
- 
- 
Method Details- 
reflectionHashCodepublic static int reflectionHashCode(int initialNonZeroOddNumber, int multiplierNonZeroOddNumber, Object object) Uses reflection to build a valid hash code from the fields ofobject.It uses AccessibleObject.setAccessibleto gain access to private fields. This means that it will throw a security exception if run under a security manager, if the permissions are not set up correctly. It is also not as efficient as testing explicitly.Transient members will be not be used, as they are likely derived fields, and not part of the value of the Object.Static fields will not be tested. Superclass fields will be included. Two randomly chosen, non-zero, odd numbers must be passed in. Ideally these should be different for each class, however this is not vital. Prime numbers are preferred, especially for the multiplier. - Parameters:
- initialNonZeroOddNumber- a non-zero, odd number used as the initial value. This will be the returned value if no fields are found to include in the hash code
- multiplierNonZeroOddNumber- a non-zero, odd number used as the multiplier
- object- the Object to create a- hashCodefor
- Returns:
- int hash code
- Throws:
- NullPointerException- if the Object is- null
- IllegalArgumentException- if the number is zero or even
- See Also:
 
- 
reflectionHashCodepublic static int reflectionHashCode(int initialNonZeroOddNumber, int multiplierNonZeroOddNumber, Object object, boolean testTransients) Uses reflection to build a valid hash code from the fields ofobject.It uses AccessibleObject.setAccessibleto gain access to private fields. This means that it will throw a security exception if run under a security manager, if the permissions are not set up correctly. It is also not as efficient as testing explicitly.If the TestTransients parameter is set to true, transient members will be tested, otherwise they are ignored, as they are likely derived fields, and not part of the value of theObject.Static fields will not be tested. Superclass fields will be included. Two randomly chosen, non-zero, odd numbers must be passed in. Ideally these should be different for each class, however this is not vital. Prime numbers are preferred, especially for the multiplier. - Parameters:
- initialNonZeroOddNumber- a non-zero, odd number used as the initial value. This will be the returned value if no fields are found to include in the hash code
- multiplierNonZeroOddNumber- a non-zero, odd number used as the multiplier
- object- the Object to create a- hashCodefor
- testTransients- whether to include transient fields
- Returns:
- int hash code
- Throws:
- NullPointerException- if the Object is- null
- IllegalArgumentException- if the number is zero or even
- See Also:
 
- 
reflectionHashCodepublic static <T> int reflectionHashCode(int initialNonZeroOddNumber, int multiplierNonZeroOddNumber, T object, boolean testTransients, Class<? super T> reflectUpToClass, String... excludeFields) Uses reflection to build a valid hash code from the fields ofobject.It uses AccessibleObject.setAccessibleto gain access to private fields. This means that it will throw a security exception if run under a security manager, if the permissions are not set up correctly. It is also not as efficient as testing explicitly.If the TestTransients parameter is set to true, transient members will be tested, otherwise they are ignored, as they are likely derived fields, and not part of the value of theObject.Static fields will not be included. Superclass fields will be included up to and including the specified superclass. A null superclass is treated as java.lang.Object. Two randomly chosen, non-zero, odd numbers must be passed in. Ideally these should be different for each class, however this is not vital. Prime numbers are preferred, especially for the multiplier. - Type Parameters:
- T- the type of the object involved
- Parameters:
- initialNonZeroOddNumber- a non-zero, odd number used as the initial value. This will be the returned value if no fields are found to include in the hash code
- multiplierNonZeroOddNumber- a non-zero, odd number used as the multiplier
- object- the Object to create a- hashCodefor
- testTransients- whether to include transient fields
- reflectUpToClass- the superclass to reflect up to (inclusive), may be- null
- excludeFields- array of field names to exclude from use in calculation of hash code
- Returns:
- int hash code
- Throws:
- NullPointerException- if the Object is- null
- IllegalArgumentException- if the number is zero or even
- Since:
- 2.0
- See Also:
 
- 
reflectionHashCodeUses reflection to build a valid hash code from the fields ofobject.This constructor uses two hard coded choices for the constants needed to build a hash code. It uses AccessibleObject.setAccessibleto gain access to private fields. This means that it will throw a security exception if run under a security manager, if the permissions are not set up correctly. It is also not as efficient as testing explicitly.If the TestTransients parameter is set to true, transient members will be tested, otherwise they are ignored, as they are likely derived fields, and not part of the value of theObject.Static fields will not be tested. Superclass fields will be included. If no fields are found to include in the hash code, the result of this method will be constant. - Parameters:
- object- the Object to create a- hashCodefor
- testTransients- whether to include transient fields
- Returns:
- int hash code
- Throws:
- NullPointerException- if the object is- null
- See Also:
 
- 
reflectionHashCodeUses reflection to build a valid hash code from the fields ofobject.This constructor uses two hard coded choices for the constants needed to build a hash code. It uses AccessibleObject.setAccessibleto gain access to private fields. This means that it will throw a security exception if run under a security manager, if the permissions are not set up correctly. It is also not as efficient as testing explicitly.Transient members will be not be used, as they are likely derived fields, and not part of the value of the Object.Static fields will not be tested. Superclass fields will be included. If no fields are found to include in the hash code, the result of this method will be constant. - Parameters:
- object- the Object to create a- hashCodefor
- excludeFields- Collection of String field names to exclude from use in calculation of hash code
- Returns:
- int hash code
- Throws:
- NullPointerException- if the object is- null
- See Also:
 
- 
reflectionHashCodeUses reflection to build a valid hash code from the fields ofobject.This constructor uses two hard coded choices for the constants needed to build a hash code. It uses AccessibleObject.setAccessibleto gain access to private fields. This means that it will throw a security exception if run under a security manager, if the permissions are not set up correctly. It is also not as efficient as testing explicitly.Transient members will be not be used, as they are likely derived fields, and not part of the value of the Object.Static fields will not be tested. Superclass fields will be included. If no fields are found to include in the hash code, the result of this method will be constant. - Parameters:
- object- the Object to create a- hashCodefor
- excludeFields- array of field names to exclude from use in calculation of hash code
- Returns:
- int hash code
- Throws:
- NullPointerException- if the object is- null
- See Also:
 
- 
appendAppend ahashCodefor aboolean.This adds 1when true, and0when false to thehashCode.This is in contrast to the standard Boolean.hashCode()handling, which computes ahashCodevalue of1231forBooleaninstances that representtrueor1237forBooleaninstances that representfalse.This is in accordance with the Effective Java design. - Parameters:
- value- the boolean to add to the- hashCode
- Returns:
- thisinstance.
 
- 
appendAppend ahashCodefor abooleanarray.- Parameters:
- array- the array to add to the- hashCode
- Returns:
- thisinstance.
 
- 
appendAppend ahashCodefor abyte.- Parameters:
- value- the byte to add to the- hashCode
- Returns:
- thisinstance.
 
- 
appendAppend ahashCodefor abytearray.- Parameters:
- array- the array to add to the- hashCode
- Returns:
- thisinstance.
 
- 
appendAppend ahashCodefor achar.- Parameters:
- value- the char to add to the- hashCode
- Returns:
- thisinstance.
 
- 
appendAppend ahashCodefor achararray.- Parameters:
- array- the array to add to the- hashCode
- Returns:
- thisinstance.
 
- 
appendAppend ahashCodefor adouble.- Parameters:
- value- the double to add to the- hashCode
- Returns:
- thisinstance.
 
- 
appendAppend ahashCodefor adoublearray.- Parameters:
- array- the array to add to the- hashCode
- Returns:
- thisinstance.
 
- 
appendAppend ahashCodefor afloat.- Parameters:
- value- the float to add to the- hashCode
- Returns:
- thisinstance.
 
- 
appendAppend ahashCodefor afloatarray.- Parameters:
- array- the array to add to the- hashCode
- Returns:
- thisinstance.
 
- 
appendAppend ahashCodefor anint.- Parameters:
- value- the int to add to the- hashCode
- Returns:
- thisinstance.
 
- 
appendAppend ahashCodefor anintarray.- Parameters:
- array- the array to add to the- hashCode
- Returns:
- thisinstance.
 
- 
appendAppend ahashCodefor along.- Parameters:
- value- the long to add to the- hashCode
- Returns:
- thisinstance.
 
- 
appendAppend ahashCodefor alongarray.- Parameters:
- array- the array to add to the- hashCode
- Returns:
- thisinstance.
 
- 
appendAppend ahashCodefor anObject.- Parameters:
- object- the Object to add to the- hashCode
- Returns:
- thisinstance.
 
- 
appendAppend ahashCodefor anObjectarray.- Parameters:
- array- the array to add to the- hashCode
- Returns:
- thisinstance.
 
- 
appendAppend ahashCodefor ashort.- Parameters:
- value- the short to add to the- hashCode
- Returns:
- thisinstance.
 
- 
appendAppend ahashCodefor ashortarray.- Parameters:
- array- the array to add to the- hashCode
- Returns:
- thisinstance.
 
- 
appendSuperAdds the result of super.hashCode() to this builder.- Parameters:
- superHashCode- the result of calling- super.hashCode()
- Returns:
- thisinstance.
- Since:
- 2.0
 
- 
buildReturns the computedhashCode.
- 
equalsImplements equals using the hash code.
- 
hashCodeThe computedhashCodefrom toHashCode() is returned due to the likelihood of bugs in mis-calling toHashCode() and the unlikeliness of it mattering what the hashCode for HashCodeBuilder itself is.
- 
toHashCodeReturns the computedhashCode.- Returns:
- hashCodebased on the fields appended
 
 
-