Interface DeltaSummary

All Known Implementing Classes:
DefaultDeltaSummary

public interface DeltaSummary
Summary counts for a computed delta.
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Returns the number of add operations.
    int
    Returns the total number of atomic changes.
    boolean
    Returns whether any changes were detected.
    int
    Returns the number of remove operations.
    int
    Returns the number of replace operations.
  • Method Details

    • changed

      boolean changed()
      Returns whether any changes were detected.
      Returns:
      true when documents differ
    • changeCount

      int changeCount()
      Returns the total number of atomic changes.
      Returns:
      total change count
    • addedCount

      int addedCount()
      Returns the number of add operations.
      Returns:
      added count
    • removedCount

      int removedCount()
      Returns the number of remove operations.
      Returns:
      removed count
    • replacedCount

      int replacedCount()
      Returns the number of replace operations.
      Returns:
      replaced count