| java.lang.Object org.apache.jetspeed.util.HashCodeBuilder
HashCodeBuilder | public class HashCodeBuilder (Code) | | HashCode generation routines.
This class enables a good hashcode to be built for any class. It follows
the rules laid out in the book Effective Java, by Joshua Bloch. Writing a
good hashCode is actually quite difficult. This class aims to simplify the
process.
All relevant fields from the object should be included in the hashCode. 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 HashCodeBuilder(17, 37).
append(name).
append(age).
append(smoker).
toHashCode();
}
}
Alternatively, there is a method that uses reflection to determine
the fields to test. Because these fields are usually private, the method,
reflectionHashCode , uses Field.setAccessible to
change the visibility of the fields. This will fail under a security manager,
unless the appropriate permissions are set. It is also slower than testing
explicitly.
A typical invocation for this method would look like:
public boolean hashCode(Object o) {
return HashCodeBuilder.reflectionHashCode(this);
}
author: Stephen Colebourne version: $Id: HashCodeBuilder.java 517121 2007-03-12 07:45:49Z ate $ |
Constructor Summary | |
public | HashCodeBuilder() Constructor for HashCodeBuilder. | public | HashCodeBuilder(int initialNonZeroOddNumber, int multiplierNonZeroOddNumber) Constructor for HashCodeBuilder.
Two randomly chosen, non-zero, odd numbers must be passed in. |
HashCodeBuilder | public HashCodeBuilder()(Code) | | Constructor for HashCodeBuilder.
This constructor uses two hard coded choices for the constants needed
to build a hashCode.
|
HashCodeBuilder | public HashCodeBuilder(int initialNonZeroOddNumber, int multiplierNonZeroOddNumber)(Code) | | Constructor for HashCodeBuilder.
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 Parameters: multiplierNonZeroOddNumber - a non-zero, odd number used as the multiplier throws: IllegalArgumentException - if the number is zero or even |
append | public HashCodeBuilder append(Object object)(Code) | | Append a hashCode for an Object.
Parameters: object - the object to add to the hashCode this |
append | public HashCodeBuilder append(long value)(Code) | | Append a hashCode for a long.
Parameters: value - the long to add to the hashCode this |
append | public HashCodeBuilder append(int value)(Code) | | Append a hashCode for an int.
Parameters: value - the int to add to the hashCode this |
append | public HashCodeBuilder append(short value)(Code) | | Append a hashCode for a short.
Parameters: value - the short to add to the hashCode this |
append | public HashCodeBuilder append(char value)(Code) | | Append a hashCode for a char.
Parameters: value - the char to add to the hashCode this |
append | public HashCodeBuilder append(byte value)(Code) | | Append a hashCode for a byte.
Parameters: value - the byte to add to the hashCode this |
append | public HashCodeBuilder append(double value)(Code) | | Append a hashCode for a double.
Parameters: value - the double to add to the hashCode this |
append | public HashCodeBuilder append(float value)(Code) | | Append a hashCode for a float.
Parameters: value - the float to add to the hashCode this |
append | public HashCodeBuilder append(boolean value)(Code) | | Append a hashCode for a long.
Parameters: value - the long to add to the hashCode this |
append | public HashCodeBuilder append(Object[] array)(Code) | | Append a hashCode for an Object array.
Parameters: array - the array to add to the hashCode this |
append | public HashCodeBuilder append(long[] array)(Code) | | Append a hashCode for a long array.
Parameters: array - the array to add to the hashCode this |
append | public HashCodeBuilder append(int[] array)(Code) | | Append a hashCode for an int array.
Parameters: array - the array to add to the hashCode this |
append | public HashCodeBuilder append(short[] array)(Code) | | Append a hashCode for a short array.
Parameters: array - the array to add to the hashCode this |
append | public HashCodeBuilder append(char[] array)(Code) | | Append a hashCode for a char array.
Parameters: array - the array to add to the hashCode this |
append | public HashCodeBuilder append(byte[] array)(Code) | | Append a hashCode for a byte array.
Parameters: array - the array to add to the hashCode this |
append | public HashCodeBuilder append(double[] array)(Code) | | Append a hashCode for a double array.
Parameters: array - the array to add to the hashCode this |
append | public HashCodeBuilder append(float[] array)(Code) | | Append a hashCode for a float array.
Parameters: array - the array to add to the hashCode this |
append | public HashCodeBuilder append(boolean[] array)(Code) | | Append a hashCode for a boolean array.
Parameters: array - the array to add to the hashCode this |
reflectionHashCode | public static int reflectionHashCode(Object object)(Code) | | This method uses reflection to build a valid hash code.
It uses Field.setAccessible to gain access to private fields. This means
that it will throw a security exception if run under a security manger, if
the permissions are not set up.
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.
This constructor uses two hard coded choices for the constants needed
to build a hash code.
Parameters: object - the object to create a hash code for int hash code throws: IllegalArgumentException - if the object is null |
reflectionHashCode | public static int reflectionHashCode(Object object, boolean testTransients)(Code) | | This method uses reflection to build a valid hash code.
It uses Field.setAccessible to gain access to private fields. This means
that it will throw a security exception if run under a security manger, if
the permissions are not set up.
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 the object.
Static fields will not be tested.
This constructor uses two hard coded choices for the constants needed
to build a hash code.
Parameters: object - the object to create a hash code for Parameters: testTransients - whether to include transient fields int hash code throws: IllegalArgumentException - if the object is null |
reflectionHashCode | public static int reflectionHashCode(int initialNonZeroOddNumber, int multiplierNonZeroOddNumber, Object object)(Code) | | This method uses reflection to build a valid hash code.
It uses Field.setAccessible to gain access to private fields. This means
that it will throw a security exception if run under a security manger, if
the permissions are not set up.
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.
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 Parameters: multiplierNonZeroOddNumber - a non-zero, odd number used as the multiplier Parameters: object - the object to create a hash code for int hash code throws: IllegalArgumentException - if the object is null throws: IllegalArgumentException - if the number is zero or even |
reflectionHashCode | public static int reflectionHashCode(int initialNonZeroOddNumber, int multiplierNonZeroOddNumber, Object object, boolean testTransients)(Code) | | This method uses reflection to build a valid hash code.
It uses Field.setAccessible to gain access to private fields. This means
that it will throw a security exception if run under a security manger, if
the permissions are not set up.
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 the object.
Static fields will not be tested.
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 - Parameters: multiplierNonZeroOddNumber - Parameters: object - the object to create a hash code for Parameters: testTransients - whether to include transient fields int hash code throws: IllegalArgumentException - if the object is null throws: IllegalArgumentException - if the number is zero or even |
toHashCode | public int toHashCode()(Code) | | Return the computed hashCode
int hashCode based on the fields appended |
|
|