Java org.apache.commons.lang.builder HashCodeBuilder fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.lang.builder HashCodeBuilder fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.lang.builder HashCodeBuilder.

The text is from its open source code.

Constructor

HashCodeBuilder()

Uses two hard coded choices for the constants needed to build a hashCode.

HashCodeBuilder(int initialNonZeroOddNumber, int multiplierNonZeroOddNumber)

Two randomly chosen, non-zero, odd numbers must be passed in.

Method

HashCodeBuilderappend(boolean value)

Append a hashCode for a boolean.

HashCodeBuilderappend(boolean[] array)

Append a hashCode for a boolean array.

HashCodeBuilderappend(byte value)

Append a hashCode for a byte.

HashCodeBuilderappend(byte[] array)

Append a hashCode for a byte array.

HashCodeBuilderappend(char value)

Append a hashCode for a char.

HashCodeBuilderappend(char[] array)

Append a hashCode for a char array.

HashCodeBuilderappend(double value)

Append a hashCode for a double.

HashCodeBuilderappend(double[] array)

Append a hashCode for a double array.

HashCodeBuilderappend(float value)

Append a hashCode for a float.

HashCodeBuilderappend(float[] array)

Append a hashCode for a float array.

HashCodeBuilderappend(int value)

Append a hashCode for an int.

HashCodeBuilderappend(int[] array)

Append a hashCode for an int array.

HashCodeBuilderappend(long value)

Append a hashCode for a long.

HashCodeBuilderappend(long[] array)

Append a hashCode for a long array.

HashCodeBuilderappend(Object object)

Append a hashCode for an Object.

HashCodeBuilderappend(Object[] array)

Append a hashCode for an Object array.

HashCodeBuilderappend(short value)

Append a hashCode for a short.

HashCodeBuilderappend(short[] array)

Append a hashCode for a short array.

HashCodeBuilderappendSuper(int superHashCode)

Adds the result of super.hashCode() to this builder.

inthashCode()
Returns a hash code value for the object.
inttoHashCode()

Return the computed hashCode.

StringtoString()
Returns a string representation of the object.