Package com.helixframework.delta
Interface DeltaSummary
- All Known Implementing Classes:
DefaultDeltaSummary
public interface DeltaSummary
Summary counts for a computed delta.
-
Method Summary
Modifier and TypeMethodDescriptionintReturns the number of add operations.intReturns the total number of atomic changes.booleanchanged()Returns whether any changes were detected.intReturns the number of remove operations.intReturns the number of replace operations.
-
Method Details
-
changed
boolean changed()Returns whether any changes were detected.- Returns:
truewhen 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
-