Class GcHashCodeBuilder
Assists in implementing 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.
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 isSmoker;
...
public int hashCode() {
// you pick a hard-coded, randomly chosen, non-zero, odd number
// ideally different for each class
return new GcHashCodeBuilder(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 GcHashCodeBuilder.reflectionHashCode(this);
}
- Since:
- 1.0
- Version:
- $Id: GcHashCodeBuilder.java 161243 2005-04-14 04:30:28Z ggregory $
-
Constructor Summary
ConstructorsConstructorDescriptionUses two hard coded choices for the constants needed to build ahashCode.GcHashCodeBuilder(int initialNonZeroOddNumber, int multiplierNonZeroOddNumber) Two randomly chosen, non-zero, odd numbers must be passed in. -
Method Summary
Modifier 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.static intreflectionHashCode(int initialNonZeroOddNumber, int multiplierNonZeroOddNumber, Object object) This method uses reflection to build a valid hash code.static intreflectionHashCode(int initialNonZeroOddNumber, int multiplierNonZeroOddNumber, Object object, boolean testTransients) This method uses reflection to build a valid hash code.static intreflectionHashCode(int initialNonZeroOddNumber, int multiplierNonZeroOddNumber, Object object, boolean testTransients, Class reflectUpToClass) This method uses reflection to build a valid hash code.static intreflectionHashCode(Object object) This method uses reflection to build a valid hash code.static intreflectionHashCode(Object object, boolean testTransients) This method uses reflection to build a valid hash code.intReturn the computedhashCode.
-
Constructor Details
-
GcHashCodeBuilder
public GcHashCodeBuilder()Uses two hard coded choices for the constants needed to build a
hashCode. -
GcHashCodeBuilder
public GcHashCodeBuilder(int initialNonZeroOddNumber, int multiplierNonZeroOddNumber) 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 valuemultiplierNonZeroOddNumber- a non-zero, odd number used as the multiplier- Throws:
IllegalArgumentException- if the number is zero or even
-
-
Method Details
-
reflectionHashCode
This method uses reflection to build a valid hash code.
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.
- Parameters:
object- the Object to create ahashCodefor- Returns:
- int hash code
- Throws:
IllegalArgumentException- if the object isnull
-
reflectionHashCode
This method uses reflection to build a valid hash code.
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.
- Parameters:
object- the Object to create ahashCodefortestTransients- whether to include transient fields- Returns:
- int hash code
- Throws:
IllegalArgumentException- if the object isnull
-
reflectionHashCode
public static int reflectionHashCode(int initialNonZeroOddNumber, int multiplierNonZeroOddNumber, Object object) This method uses reflection to build a valid 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.
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 valuemultiplierNonZeroOddNumber- a non-zero, odd number used as the multiplierobject- the Object to create ahashCodefor- Returns:
- int hash code
- Throws:
IllegalArgumentException- if the Object isnullIllegalArgumentException- if the number is zero or even
-
reflectionHashCode
public static int reflectionHashCode(int initialNonZeroOddNumber, int multiplierNonZeroOddNumber, Object object, boolean testTransients) This method uses reflection to build a valid 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.
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 valuemultiplierNonZeroOddNumber- a non-zero, odd number used as the multiplierobject- the Object to create ahashCodefortestTransients- whether to include transient fields- Returns:
- int hash code
- Throws:
IllegalArgumentException- if the Object isnullIllegalArgumentException- if the number is zero or even
-
reflectionHashCode
public static int reflectionHashCode(int initialNonZeroOddNumber, int multiplierNonZeroOddNumber, Object object, boolean testTransients, Class reflectUpToClass) This method uses reflection to build a valid 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 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.
- Parameters:
initialNonZeroOddNumber- a non-zero, odd number used as the initial valuemultiplierNonZeroOddNumber- a non-zero, odd number used as the multiplierobject- the Object to create ahashCodefortestTransients- whether to include transient fieldsreflectUpToClass- the superclass to reflect up to (inclusive), may benull- Returns:
- int hash code
- Throws:
IllegalArgumentException- if the Object isnullIllegalArgumentException- if the number is zero or even- Since:
- 2.0
-
appendSuper
Adds the result of super.hashCode() to this builder.
- Parameters:
superHashCode- the result of callingsuper.hashCode()- Returns:
- this GcHashCodeBuilder, used to chain calls.
- Since:
- 2.0
-
append
Append a
hashCodefor anObject.- Parameters:
object- the Object to add to thehashCode- Returns:
- this
-
append
Append a
hashCodefor along.- Parameters:
value- the long to add to thehashCode- Returns:
- this
-
append
Append a
hashCodefor anint.- Parameters:
value- the int to add to thehashCode- Returns:
- this
-
append
Append a
hashCodefor ashort.- Parameters:
value- the short to add to thehashCode- Returns:
- this
-
append
Append a
hashCodefor achar.- Parameters:
value- the char to add to thehashCode- Returns:
- this
-
append
Append a
hashCodefor abyte.- Parameters:
value- the byte to add to thehashCode- Returns:
- this
-
append
Append a
hashCodefor adouble.- Parameters:
value- the double to add to thehashCode- Returns:
- this
-
append
Append a
hashCodefor afloat.- Parameters:
value- the float to add to thehashCode- Returns:
- this
-
append
Append a
hashCodefor aboolean.This adds
iConstant * 1to thehashCodeand not a1231or1237as done in java.lang.Boolean. This is in accordance with theEffective Java
design.- Parameters:
value- the boolean to add to thehashCode- Returns:
- this
-
append
Append a
hashCodefor anObjectarray.- Parameters:
array- the array to add to thehashCode- Returns:
- this
-
append
Append a
hashCodefor alongarray.- Parameters:
array- the array to add to thehashCode- Returns:
- this
-
append
Append a
hashCodefor anintarray.- Parameters:
array- the array to add to thehashCode- Returns:
- this
-
append
Append a
hashCodefor ashortarray.- Parameters:
array- the array to add to thehashCode- Returns:
- this
-
append
Append a
hashCodefor achararray.- Parameters:
array- the array to add to thehashCode- Returns:
- this
-
append
Append a
hashCodefor abytearray.- Parameters:
array- the array to add to thehashCode- Returns:
- this
-
append
Append a
hashCodefor adoublearray.- Parameters:
array- the array to add to thehashCode- Returns:
- this
-
append
Append a
hashCodefor afloatarray.- Parameters:
array- the array to add to thehashCode- Returns:
- this
-
append
Append a
hashCodefor abooleanarray.- Parameters:
array- the array to add to thehashCode- Returns:
- this
-
toHashCode
public int toHashCode()Return the computed
hashCode.- Returns:
hashCodebased on the fields appended
-