Uses of Class
org.jjazz.utilities.api.Diff.Difference
Packages that use Diff.Difference
-
Uses of Diff.Difference in org.jjazz.utilities.api
Methods in org.jjazz.utilities.api that return types with arguments of type Diff.DifferenceModifier and TypeMethodDescriptionstatic <T> List<Diff.Difference> Compute differences for the two lists, using the default comparison mechanism between the objects, such asequalsandcompareTo.static <T> List<Diff.Difference> Diff.diff(List<T> a, List<T> b, Comparator<T> comp) Compute differences for the two lists, using the specified comparison mechanism.static <T> List<Diff.Difference> Diff.diff(T[] a, T[] b) Compute differences for the two arrays, using the default comparison mechanism between the objects, such asequalsandcompareTo.static <T> List<Diff.Difference> Diff.diff(T[] a, T[] b, Comparator<T> comp) Compute differences for the two arrays, using the specified comparison mechanism.