Class Diff

java.lang.Object
com.day.util.diff.Diff

public class Diff extends Object
A class to compare vectors of objects.
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    static class 
    The result of the diff.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    boolean
    Deprecated.
    boolean
    Deprecated.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Diff(Object[] a, Object[] b)
    Constructor to find differences between two arrays.
  • Method Summary

    Modifier and Type
    Method
    Description
    diff_2(boolean reverse)
    Compute the difference between the 2 arrays.

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • heuristic

      @Deprecated public boolean heuristic
      Deprecated.
      When set to true, the comparison uses a heuristic to speed it up. With this heuristic, for files with a constant small density of changes, the algorithm is linear in the file size.
    • no_discards

      @Deprecated public boolean no_discards
      Deprecated.
      When set to true, the algorithm returns a guaranteed minimal set of changes. This makes things slower, sometimes much slower.
  • Constructor Details

    • Diff

      public Diff(Object[] a, Object[] b)
      Constructor to find differences between two arrays.
      Parameters:
      a - left "document"
      b - right document
  • Method Details

    • diff_2

      public Diff.Change diff_2(boolean reverse)
      Compute the difference between the 2 arrays.