Uses of Class
org.eclipse.collections.impl.list.primitive.LongInterval

Packages that use LongInterval 
Package Description
org.eclipse.collections.impl.list.primitive
This package contains implementations of the primitive list interfaces.
  • Uses of LongInterval in org.eclipse.collections.impl.list.primitive

    Methods in org.eclipse.collections.impl.list.primitive that return LongInterval 
    Modifier and Type Method Description
    LongInterval LongInterval.by​(long newStep)
    This instance by method allows LongInterval to act as a fluent builder for itself.
    static LongInterval LongInterval.evensFromTo​(long from, long to)
    Returns an LongInterval representing the even values from the value from to the value to.
    static LongInterval LongInterval.from​(long newFrom)
    This static from method allows LongInterval to act as a fluent builder for itself.
    static LongInterval LongInterval.fromTo​(long from, long to)
    Returns an LongInterval starting from the value from to the specified value to with a step value of 1.
    static LongInterval LongInterval.fromToBy​(long from, long to, long stepBy)
    Returns an LongInterval for the range of integers inclusively between from and to with the specified stepBy value.
    static LongInterval LongInterval.oddsFromTo​(long from, long to)
    Returns an LongInterval representing the odd values from the value from to the value to.
    static LongInterval LongInterval.oneTo​(long count)
    Returns an LongInterval starting from 1 to the specified count value with a step value of 1.
    static LongInterval LongInterval.oneToBy​(long count, long step)
    Returns an LongInterval starting from 1 to the specified count value with a step value of step.
    LongInterval LongInterval.to​(long newTo)
    This instance to method allows LongInterval to act as a fluent builder for itself.
    LongInterval LongInterval.toReversed()
    Returns a new LongInterval with the from and to values reversed and the step value negated.
    static LongInterval LongInterval.zero()
    Returns an LongInterval starting at zero.
    static LongInterval LongInterval.zeroTo​(long count)
    Returns an LongInterval starting from 0 to the specified count value with a step value of 1.
    static LongInterval LongInterval.zeroToBy​(long count, long step)
    Returns an LongInterval starting from 0 to the specified count value with a step value of step.