Interface DiffResult<E>

  • Type Parameters:
    E - the type of compared elements

    public interface DiffResult<E>
    The result of the execution of a diff on two lists.
    Version:
    $Id: e06d95169b1382059440af9b131d1f9a96d41781 $
    • Method Detail

      • getNext

        List<E> getNext()
        Returns:
        the list before the modification
      • getPrevious

        List<E> getPrevious()
        Returns:
        the list after the modification
      • getLog

        LogQueue getLog()
        Returns:
        the log of what append during the diff executing
      • getPatch

        Patch<E> getPatch()
        Returns:
        the produced patch