-
EqualsBuilder.append(boolean[] lhs,
boolean[] rhs)
Deep comparison of array of boolean
.
EqualsBuilder.append(boolean lhs,
boolean rhs)
Test if two booleans
s are equal.
EqualsBuilder.append(byte[] lhs,
byte[] rhs)
Deep comparison of array of byte
.
EqualsBuilder.append(byte lhs,
byte rhs)
Test if two byte
s are equal.
EqualsBuilder.append(char[] lhs,
char[] rhs)
Deep comparison of array of char
.
EqualsBuilder.append(char lhs,
char rhs)
Test if two char
s are equal.
EqualsBuilder.append(double[] lhs,
double[] rhs)
Deep comparison of array of double
.
EqualsBuilder.append(double lhs,
double rhs)
Test if two double
s are equal by testing that the pattern of bits
returned by doubleToLong
are equal.
EqualsBuilder.append(float[] lhs,
float[] rhs)
Deep comparison of array of float
.
EqualsBuilder.append(float lhs,
float rhs)
Test if two float
s are equal byt testing that the pattern of bits
returned by doubleToLong are equal.
EqualsBuilder.append(int[] lhs,
int[] rhs)
Deep comparison of array of int
.
EqualsBuilder.append(int lhs,
int rhs)
Test if two int
s are equal.
EqualsBuilder.append(long[] lhs,
long[] rhs)
Deep comparison of array of long
.
EqualsBuilder.append(long lhs,
long rhs)
Test if two long
s are equal.
EqualsBuilder.append(short[] lhs,
short[] rhs)
Deep comparison of array of short
.
EqualsBuilder.append(short lhs,
short rhs)
Test if two short
s are equal.
Performs a deep comparison of two Object
arrays.
Test if two Object
s are equal using their equals
method.
Adds the result of super.equals()
to this builder.