Interface MergeResolver
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
DefaultMergeResolver
Interface for determining whether two
Implementations define the specific logic and criteria for merging timeline ranges.
TimeLineRange objects can be merged together.Implementations define the specific logic and criteria for merging timeline ranges.
- Since:
- 1.0
-
Method Summary
Modifier and TypeMethodDescriptionbooleanisMergeable(TimeLineRange rangeA, TimeLineRange rangeB) Determines whether two timeline ranges can be merged together.
-
Method Details
-
isMergeable
Determines whether two timeline ranges can be merged together. The specific criteria for merging depends on the implementation.- Parameters:
rangeA- the firstTimeLineRangeto evaluaterangeB- the secondTimeLineRangeto evaluate- Returns:
- true if the ranges can be merged, false otherwise
-