Uses of Class
org.apache.commons.lang3.builder.DiffBuilder.Builder
-
Packages that use DiffBuilder.Builder Package Description org.apache.commons.lang3.builder Provides classes to create consistentequals(Object)
,toString()
,hashCode()
, andcompareTo(Object)
methods. -
-
Uses of DiffBuilder.Builder in org.apache.commons.lang3.builder
Methods in org.apache.commons.lang3.builder that return DiffBuilder.Builder Modifier and Type Method Description static <T> DiffBuilder.Builder<T>
DiffBuilder. builder()
Constructs a newDiffBuilder.Builder
.DiffBuilder.Builder<T>
DiffBuilder.Builder. setLeft(T left)
Sets the left object.DiffBuilder.Builder<T>
DiffBuilder.Builder. setRight(T right)
Sets the right object.DiffBuilder.Builder<T>
DiffBuilder.Builder. setStyle(ToStringStyle style)
Sets the style will to use when outputting the objects,null
uses the default.DiffBuilder.Builder<T>
DiffBuilder.Builder. setTestObjectsEquals(boolean testObjectsEquals)
Sets whether to test if left and right are the same or equal.DiffBuilder.Builder<T>
DiffBuilder.Builder. setToStringFormat(java.lang.String toStringFormat)
Sets the two-argument format string forString.format(String, Object...)
, for example"%s differs from %s"
.
-