Uses of Class
org.eclipse.collections.impl.list.primitive.IntInterval
Packages that use IntInterval
Package
Description
This package contains implementations of the primitive list interfaces.
-
Uses of IntInterval in org.eclipse.collections.impl.list.primitive
Methods in org.eclipse.collections.impl.list.primitive that return IntIntervalModifier and TypeMethodDescriptionIntInterval.by(int newStep) This instancebymethod allows IntInterval to act as a fluent builder for itself.static IntIntervalIntInterval.evensFromTo(int from, int to) Returns an IntInterval representing the even values from the value from to the value to.static IntIntervalIntInterval.from(int newFrom) This staticfrommethod allows IntInterval to act as a fluent builder for itself.static IntIntervalIntInterval.fromTo(int from, int to) Returns an IntInterval starting from the value from to the specified value to with a step value of 1.static IntIntervalIntInterval.fromToBy(int from, int to, int stepBy) Returns an IntInterval for the range of integers inclusively between from and to with the specified stepBy value.static IntIntervalIntInterval.oddsFromTo(int from, int to) Returns an IntInterval representing the odd values from the value from to the value to.static IntIntervalIntInterval.oneTo(int count) Returns an IntInterval starting from 1 to the specified count value with a step value of 1.static IntIntervalIntInterval.oneToBy(int count, int step) Returns an IntInterval starting from 1 to the specified count value with a step value of step.IntInterval.to(int newTo) This instancetomethod allows IntInterval to act as a fluent builder for itself.IntInterval.toReversed()Returns a new IntInterval with the from and to values reversed and the step value negated.static IntIntervalIntInterval.zero()Returns an IntInterval starting at zero.static IntIntervalIntInterval.zeroTo(int count) Returns an IntInterval starting from 0 to the specified count value with a step value of 1.static IntIntervalIntInterval.zeroToBy(int count, int step) Returns an IntInterval starting from 0 to the specified count value with a step value of step.