Uses of Class
org.eclipse.collections.impl.list.Interval
Packages that use Interval
-
Uses of Interval in org.eclipse.collections.impl.list
Methods in org.eclipse.collections.impl.list that return IntervalModifier and TypeMethodDescriptionInterval.by(int newStep) This instancebymethod allows Interval to act as a fluent builder for itself.static IntervalInterval.evensFromTo(int from, int to) Returns an Interval representing the even values from the value from to the value to.static IntervalInterval.from(int newFrom) This staticfrommethod allows Interval to act as a fluent builder for itself.static IntervalInterval.fromTo(int from, int to) Returns an Interval starting from the value from to the specified value to with a step value of 1.static IntervalInterval.fromToBy(int from, int to, int stepBy) Returns an Interval for the range of integers inclusively between from and to with the specified stepBy value.static IntervalInterval.fromToExclusive(int from, int to) Returns an Interval starting from the value from until the specified value to (exclusive) with a step value of 1.static IntervalInterval.oddsFromTo(int from, int to) Returns an Interval representing the odd values from the value from to the value to.static IntervalInterval.oneTo(int count) Returns an Interval starting from 1 to the specified count value with a step value of 1.static IntervalInterval.oneToBy(int count, int step) Returns an Interval starting from 1 to the specified count value with a step value of step.Interval.reverseThis()Returns a new interval with the from and to values reversed and the step value negated.Interval.subList(int fromIndex, int toIndex) Interval.to(int newTo) This instancetomethod allows Interval to act as a fluent builder for itself.static IntervalInterval.zero()Returns an Interval starting at zero.static IntervalInterval.zeroTo(int count) Returns an Interval starting from 0 to the specified count value with a step value of 1.static IntervalInterval.zeroToBy(int count, int step) Returns an Interval starting from 0 to the specified count value with a step value of step.