|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.commons.lang.builder.HashCodeBuilder net.sf.oness.common.model.bo.CollectionIgnoringHashCodeBuilder
Customized EqualsBuilder ignoring Collection fields.
Only append(Object, Object) was modified
Constructor Summary | |
CollectionIgnoringHashCodeBuilder()
Constructor. |
|
CollectionIgnoringHashCodeBuilder(int initialNonZeroOddNumber,
int multiplierNonZeroOddNumber)
Constructor. |
Method Summary | |
org.apache.commons.lang.builder.HashCodeBuilder |
append(boolean value)
Append a hashCode for a boolean .
|
org.apache.commons.lang.builder.HashCodeBuilder |
append(boolean[] array)
Append a hashCode for a boolean array.
|
org.apache.commons.lang.builder.HashCodeBuilder |
append(byte value)
Append a hashCode for a byte .
|
org.apache.commons.lang.builder.HashCodeBuilder |
append(byte[] array)
Append a hashCode for a byte array.
|
org.apache.commons.lang.builder.HashCodeBuilder |
append(char value)
Append a hashCode for a char .
|
org.apache.commons.lang.builder.HashCodeBuilder |
append(char[] array)
Append a hashCode for a char array.
|
org.apache.commons.lang.builder.HashCodeBuilder |
append(double value)
Append a hashCode for a double .
|
org.apache.commons.lang.builder.HashCodeBuilder |
append(double[] array)
Append a hashCode for a double array.
|
org.apache.commons.lang.builder.HashCodeBuilder |
append(float value)
Append a hashCode for a float .
|
org.apache.commons.lang.builder.HashCodeBuilder |
append(float[] array)
Append a hashCode for a float array.
|
org.apache.commons.lang.builder.HashCodeBuilder |
append(int value)
Append a hashCode for an int .
|
org.apache.commons.lang.builder.HashCodeBuilder |
append(int[] array)
Append a hashCode for an int array.
|
org.apache.commons.lang.builder.HashCodeBuilder |
append(long value)
Append a hashCode for a long .
|
org.apache.commons.lang.builder.HashCodeBuilder |
append(long[] array)
Append a hashCode for a long array.
|
org.apache.commons.lang.builder.HashCodeBuilder |
append(java.lang.Object object)
Append a hashCode for an Object .
|
org.apache.commons.lang.builder.HashCodeBuilder |
append(java.lang.Object[] array)
Append a hashCode for an Object array.
|
org.apache.commons.lang.builder.HashCodeBuilder |
append(short value)
Append a hashCode for a short .
|
org.apache.commons.lang.builder.HashCodeBuilder |
append(short[] array)
Append a hashCode for a short array.
|
org.apache.commons.lang.builder.HashCodeBuilder |
appendSuper(int superHashCode)
Adds the result of super.hashCode() to this builder. |
static int |
reflectionHashCode(int initialNonZeroOddNumber,
int multiplierNonZeroOddNumber,
java.lang.Object object)
This method uses reflection to build a valid hash code. |
static int |
reflectionHashCode(int initialNonZeroOddNumber,
int multiplierNonZeroOddNumber,
java.lang.Object object,
boolean testTransients)
This method uses reflection to build a valid hash code. |
static int |
reflectionHashCode(int initialNonZeroOddNumber,
int multiplierNonZeroOddNumber,
java.lang.Object object,
boolean testTransients,
java.lang.Class reflectUpToClass)
This method uses reflection to build a valid hash code. |
static int |
reflectionHashCode(java.lang.Object object)
This method uses reflection to build a valid hash code. |
static int |
reflectionHashCode(java.lang.Object object,
boolean testTransients)
This method uses reflection to build a valid hash code. |
int |
toHashCode()
Return the computed hashCode .
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public CollectionIgnoringHashCodeBuilder()
Constructor.
This constructor uses two hard coded choices for the constants needed to
build a hashCode
.
public CollectionIgnoringHashCodeBuilder(int initialNonZeroOddNumber, int multiplierNonZeroOddNumber)
Constructor.
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.
initialNonZeroOddNumber
- a non-zero, odd number used as the initial valuemultiplierNonZeroOddNumber
- a non-zero, odd number used as the multiplier
java.lang.IllegalArgumentException
- if the number is zero or evenMethod Detail |
public static int reflectionHashCode(java.lang.Object object)
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.setAccessible
to 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.
object
- the Object to create a hashCode
for
java.lang.IllegalArgumentException
- if the object is null
public static int reflectionHashCode(java.lang.Object object, boolean testTransients)
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.setAccessible
to 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 the Object
.
Static fields will not be tested. Superclass fields will be included.
object
- the Object to create a hashCode
fortestTransients
- whether to include transient fields
java.lang.IllegalArgumentException
- if the object is null
public static int reflectionHashCode(int initialNonZeroOddNumber, int multiplierNonZeroOddNumber, java.lang.Object object)
This method uses reflection to build a valid hash code.
It uses AccessibleObject.setAccessible
to 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.
initialNonZeroOddNumber
- a non-zero, odd number used as the initial valuemultiplierNonZeroOddNumber
- a non-zero, odd number used as the multiplierobject
- the Object to create a hashCode
for
java.lang.IllegalArgumentException
- if the Object is null
java.lang.IllegalArgumentException
- if the number is zero or evenpublic static int reflectionHashCode(int initialNonZeroOddNumber, int multiplierNonZeroOddNumber, java.lang.Object object, boolean testTransients)
This method uses reflection to build a valid hash code.
It uses AccessibleObject.setAccessible
to 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 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.
initialNonZeroOddNumber
- a non-zero, odd number used as the initial valuemultiplierNonZeroOddNumber
- a non-zero, odd number used as the multiplierobject
- the Object to create a hashCode
fortestTransients
- whether to include transient fields
java.lang.IllegalArgumentException
- if the Object is null
java.lang.IllegalArgumentException
- if the number is zero or evenpublic static int reflectionHashCode(int initialNonZeroOddNumber, int multiplierNonZeroOddNumber, java.lang.Object object, boolean testTransients, java.lang.Class reflectUpToClass)
This method uses reflection to build a valid hash code.
It uses AccessibleObject.setAccessible
to 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 the Object
.
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.
initialNonZeroOddNumber
- a non-zero, odd number used as the initial valuemultiplierNonZeroOddNumber
- a non-zero, odd number used as the multiplierobject
- the Object to create a hashCode
fortestTransients
- whether to include transient fieldsreflectUpToClass
- the superclass to reflect up to (inclusive), may be
null
java.lang.IllegalArgumentException
- if the Object is null
java.lang.IllegalArgumentException
- if the number is zero or evenpublic org.apache.commons.lang.builder.HashCodeBuilder appendSuper(int superHashCode)
Adds the result of super.hashCode() to this builder.
superHashCode
- the result of calling super.hashCode()
public org.apache.commons.lang.builder.HashCodeBuilder append(java.lang.Object object)
Append a hashCode
for an Object
.
Collections are ignored.
object
- the Object to add to the hashCode
public org.apache.commons.lang.builder.HashCodeBuilder append(long value)
Append a hashCode
for a long
.
value
- the long to add to the hashCode
public org.apache.commons.lang.builder.HashCodeBuilder append(int value)
Append a hashCode
for an int
.
value
- the int to add to the hashCode
public org.apache.commons.lang.builder.HashCodeBuilder append(short value)
Append a hashCode
for a short
.
value
- the short to add to the hashCode
public org.apache.commons.lang.builder.HashCodeBuilder append(char value)
Append a hashCode
for a char
.
value
- the char to add to the hashCode
public org.apache.commons.lang.builder.HashCodeBuilder append(byte value)
Append a hashCode
for a byte
.
value
- the byte to add to the hashCode
public org.apache.commons.lang.builder.HashCodeBuilder append(double value)
Append a hashCode
for a double
.
value
- the double to add to the hashCode
public org.apache.commons.lang.builder.HashCodeBuilder append(float value)
Append a hashCode
for a float
.
value
- the float to add to the hashCode
public org.apache.commons.lang.builder.HashCodeBuilder append(boolean value)
Append a hashCode
for a boolean
.
value
- the boolean to add to the hashCode
public org.apache.commons.lang.builder.HashCodeBuilder append(java.lang.Object[] array)
Append a hashCode
for an Object
array.
array
- the array to add to the hashCode
public org.apache.commons.lang.builder.HashCodeBuilder append(long[] array)
Append a hashCode
for a long
array.
array
- the array to add to the hashCode
public org.apache.commons.lang.builder.HashCodeBuilder append(int[] array)
Append a hashCode
for an int
array.
array
- the array to add to the hashCode
public org.apache.commons.lang.builder.HashCodeBuilder append(short[] array)
Append a hashCode
for a short
array.
array
- the array to add to the hashCode
public org.apache.commons.lang.builder.HashCodeBuilder append(char[] array)
Append a hashCode
for a char
array.
array
- the array to add to the hashCode
public org.apache.commons.lang.builder.HashCodeBuilder append(byte[] array)
Append a hashCode
for a byte
array.
array
- the array to add to the hashCode
public org.apache.commons.lang.builder.HashCodeBuilder append(double[] array)
Append a hashCode
for a double
array.
array
- the array to add to the hashCode
public org.apache.commons.lang.builder.HashCodeBuilder append(float[] array)
Append a hashCode
for a float
array.
array
- the array to add to the hashCode
public org.apache.commons.lang.builder.HashCodeBuilder append(boolean[] array)
Append a hashCode
for a boolean
array.
array
- the array to add to the hashCode
public int toHashCode()
Return the computed hashCode
.
hashCode
based on the fields appended
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |