Uses of Class
com.cedarsoftware.util.IntervalSet
Packages that use IntervalSet
-
Uses of IntervalSet in com.cedarsoftware.util
Methods in com.cedarsoftware.util that return IntervalSetModifier and TypeMethodDescriptionIntervalSet.difference(IntervalSet<T> other) Returns a new IntervalSet that is the difference of this set minus the other.IntervalSet.intersection(IntervalSet<T> other) Returns a new IntervalSet that is the intersection of this set and the other.IntervalSet.union(IntervalSet<T> other) Returns a new IntervalSet that is the union of this set and the other.Methods in com.cedarsoftware.util with parameters of type IntervalSetModifier and TypeMethodDescriptionIntervalSet.difference(IntervalSet<T> other) Returns a new IntervalSet that is the difference of this set minus the other.IntervalSet.intersection(IntervalSet<T> other) Returns a new IntervalSet that is the intersection of this set and the other.booleanIntervalSet.intersects(IntervalSet<T> other) Returns true if this set intersects (overlaps) with the other set.IntervalSet.union(IntervalSet<T> other) Returns a new IntervalSet that is the union of this set and the other.Constructors in com.cedarsoftware.util with parameters of type IntervalSetModifierConstructorDescriptionIntervalSet(IntervalSet<T> other) Copy constructor: creates a deep copy of the given IntervalSet, including mode, intervals, and custom functions.