Uses of Class
org.apache.commons.lang3.builder.CompareToBuilder
Packages that use CompareToBuilder
Package
Description
Assists in creating consistent
equals(Object)
, toString()
, hashCode()
, and compareTo(Object)
methods.-
Uses of CompareToBuilder in org.apache.commons.lang3.builder
Methods in org.apache.commons.lang3.builder that return CompareToBuilderModifier and TypeMethodDescriptionCompareToBuilder.append
(boolean[] lhs, boolean[] rhs) Appends to thebuilder
the deep comparison of twoboolean
arrays.CompareToBuilder.append
(boolean lhs, boolean rhs) Appends to thebuilder
the comparison of twobooleans
s.CompareToBuilder.append
(byte[] lhs, byte[] rhs) Appends to thebuilder
the deep comparison of twobyte
arrays.CompareToBuilder.append
(byte lhs, byte rhs) Appends to thebuilder
the comparison of twobyte
s.CompareToBuilder.append
(char[] lhs, char[] rhs) Appends to thebuilder
the deep comparison of twochar
arrays.CompareToBuilder.append
(char lhs, char rhs) Appends to thebuilder
the comparison of twochar
s.CompareToBuilder.append
(double[] lhs, double[] rhs) Appends to thebuilder
the deep comparison of twodouble
arrays.CompareToBuilder.append
(double lhs, double rhs) Appends to thebuilder
the comparison of twodouble
s.CompareToBuilder.append
(float[] lhs, float[] rhs) Appends to thebuilder
the deep comparison of twofloat
arrays.CompareToBuilder.append
(float lhs, float rhs) Appends to thebuilder
the comparison of twofloat
s.CompareToBuilder.append
(int[] lhs, int[] rhs) Appends to thebuilder
the deep comparison of twoint
arrays.CompareToBuilder.append
(int lhs, int rhs) Appends to thebuilder
the comparison of twoint
s.CompareToBuilder.append
(long[] lhs, long[] rhs) Appends to thebuilder
the deep comparison of twolong
arrays.CompareToBuilder.append
(long lhs, long rhs) Appends to thebuilder
the comparison of twolong
s.CompareToBuilder.append
(short[] lhs, short[] rhs) Appends to thebuilder
the deep comparison of twoshort
arrays.CompareToBuilder.append
(short lhs, short rhs) Appends to thebuilder
the comparison of twoshort
s.Appends to thebuilder
the deep comparison of twoObject
arrays.CompareToBuilder.append
(Object[] lhs, Object[] rhs, Comparator<?> comparator) Appends to thebuilder
the deep comparison of twoObject
arrays.Appends to thebuilder
the comparison of twoObject
s.CompareToBuilder.append
(Object lhs, Object rhs, Comparator<?> comparator) Appends to thebuilder
the comparison of twoObject
s.CompareToBuilder.appendSuper
(int superCompareTo) Appends to thebuilder
thecompareTo(Object)
result of the superclass.Methods in org.apache.commons.lang3.builder with parameters of type CompareToBuilderModifier and TypeMethodDescriptionprivate static void
CompareToBuilder.reflectionAppend
(Object lhs, Object rhs, Class<?> clazz, CompareToBuilder builder, boolean useTransients, String[] excludeFields) Appends tobuilder
the comparison oflhs
torhs
using the fields defined inclazz
.