Uses of Class
org.apache.cayenne.util.EqualsBuilder

Packages that use EqualsBuilder
Package
Description
General utility classes.
  • Uses of EqualsBuilder in org.apache.cayenne.util

    Methods in org.apache.cayenne.util that return EqualsBuilder
    Modifier and Type
    Method
    Description
    EqualsBuilder.append(boolean[] lhs, boolean[] rhs)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Deep comparison of array of boolean.
    EqualsBuilder.append(boolean lhs, boolean rhs)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Test if two booleanss are equal.
    EqualsBuilder.append(byte[] lhs, byte[] rhs)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Deep comparison of array of byte.
    EqualsBuilder.append(byte lhs, byte rhs)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Test if two bytes are equal.
    EqualsBuilder.append(char[] lhs, char[] rhs)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Deep comparison of array of char.
    EqualsBuilder.append(char lhs, char rhs)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Test if two chars are equal.
    EqualsBuilder.append(double[] lhs, double[] rhs)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Deep comparison of array of double.
    EqualsBuilder.append(double lhs, double rhs)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Test if two doubles are equal by testing that the pattern of bits returned by doubleToLong are equal.
    EqualsBuilder.append(float[] lhs, float[] rhs)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Deep comparison of array of float.
    EqualsBuilder.append(float lhs, float rhs)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Test if two floats are equal byt testing that the pattern of bits returned by doubleToLong are equal.
    EqualsBuilder.append(int[] lhs, int[] rhs)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Deep comparison of array of int.
    EqualsBuilder.append(int lhs, int rhs)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Test if two ints are equal.
    EqualsBuilder.append(long[] lhs, long[] rhs)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Deep comparison of array of long.
    EqualsBuilder.append(long lhs, long rhs)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Test if two long s are equal.
    EqualsBuilder.append(short[] lhs, short[] rhs)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Deep comparison of array of short.
    EqualsBuilder.append(short lhs, short rhs)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Test if two shorts are equal.
    EqualsBuilder.append(Object[] lhs, Object[] rhs)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Performs a deep comparison of two Object arrays.
    EqualsBuilder.append(Object lhs, Object rhs)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Test if two Objects are equal using their equals method.
    EqualsBuilder.appendSuper(boolean superEquals)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Adds the result of super.equals() to this builder.