Example usage for Java org.apache.commons.lang3.builder EqualsBuilder fields, constructors, methods, implement or subclass
The text is from its open source code.
boolean | isEquals If the fields tested are equals. |
EqualsBuilder() Constructor for EqualsBuilder. Starts off assuming that equals is |
EqualsBuilder | append(final Object lhs, final Object rhs) Test if two |
EqualsBuilder | append(final long lhs, final long rhs) Test if two |
EqualsBuilder | append(final int lhs, final int rhs) Test if two |
EqualsBuilder | append(final short lhs, final short rhs) Test if two |
EqualsBuilder | append(final char lhs, final char rhs) Test if two |
EqualsBuilder | append(final byte lhs, final byte rhs) Test if two |
EqualsBuilder | append(final double lhs, final double rhs) Test if two This handles NaNs, Infinities, and It is compatible with the hash code generated by |
EqualsBuilder | append(final float lhs, final float rhs) Test if two This handles NaNs, Infinities, and It is compatible with the hash code generated by |
EqualsBuilder | append(final boolean lhs, final boolean rhs) Test if two |
EqualsBuilder | append(final Object[] lhs, final Object[] rhs) Performs a deep comparison of two This also will be called for the top level of multi-dimensional, ragged, and multi-typed arrays. |
EqualsBuilder | append(final long[] lhs, final long[] rhs) Deep comparison of array of |
EqualsBuilder | append(final int[] lhs, final int[] rhs) Deep comparison of array of |
EqualsBuilder | append(final short[] lhs, final short[] rhs) Deep comparison of array of |
EqualsBuilder | append(final char[] lhs, final char[] rhs) Deep comparison of array of |
EqualsBuilder | append(final byte[] lhs, final byte[] rhs) Deep comparison of array of |
EqualsBuilder | append(final double[] lhs, final double[] rhs) Deep comparison of array of |
EqualsBuilder | append(final float[] lhs, final float[] rhs) Deep comparison of array of |
EqualsBuilder | append(final boolean[] lhs, final boolean[] rhs) Deep comparison of array of |
EqualsBuilder | appendSuper(final boolean superEquals) Adds the result of |
Boolean | build() Returns |
boolean | reflectionEquals(final Object lhs, final Object rhs, final Collection This method uses reflection to determine if the two It uses |
boolean | reflectionEquals(final Object lhs, final Object rhs, final String... excludeFields) This method uses reflection to determine if the two It uses |
boolean | reflectionEquals(final Object lhs, final Object rhs, final boolean testTransients) This method uses reflection to determine if the two It uses |
boolean | reflectionEquals(final Object lhs, final Object rhs, final boolean testTransients, final Class> reflectUpToClass, final String... excludeFields) This method uses reflection to determine if the two It uses |