java.lang.Object
io.jenetics.util.LongRange
- All Implemented Interfaces:
Serializable
Long range class.
- Since:
- 3.2
- Version:
- 6.0
- See Also:
- Implementation Note:
- This class is immutable and thread-safe.
-
Method Summary
Modifier and TypeMethodDescriptionboolean
contains
(long value) Checks whether the givenvalue
is within the range[min, max)
.boolean
int
hashCode()
Return the intersection ofthis
range with theother
.long
max()
Return the maximum value of the long range.long
min()
Return the minimum value of the long range.static LongRange
of
(long value) Return a new (half-open) range, which contains only the given value:[value, value + 1)
.static LongRange
of
(long min, long max) Create a newLongRange
object with the givenmin
andmax
values.stream()
toString()
-
Method Details
-
min
Return the minimum value of the long range.- Returns:
- the minimum value of the long range
-
max
Return the maximum value of the long range.- Returns:
- the maximum value of the long range
-
contains
Checks whether the givenvalue
is within the range[min, max)
.- Parameters:
value
- the value to check- Returns:
true
if thevalue
is with the range[min, max)
,false
otherwise- Since:
- 8.0
-
intersect
Return the intersection ofthis
range with theother
.- Parameters:
other
- the intersection range orOptional.empty()
if there is none- Returns:
- the range intersection
- Since:
- 8.0
-
stream
Returns a sequential orderedLongStream
frommin()
(inclusive) tomax()
(exclusive) by an incremental step of1
.An equivalent sequence of increasing values can be produced sequentially using a
for
loop as follows:for (long i = range.min(); i < range.max(); ++i) { // ... }
- Returns:
- a sequential
LongStream
for the range oflong
elements - Since:
- 3.4
-
of
Create a newLongRange
object with the givenmin
andmax
values.- Parameters:
min
- the lower bound of the long rangemax
- the upper bound of the long range- Returns:
- a new
LongRange
object - Throws:
IllegalArgumentException
- ifmin > max
-
of
Return a new (half-open) range, which contains only the given value:[value, value + 1)
.- Parameters:
value
- the value of the created (half-open) integer range- Returns:
- a new (half-open) range, which contains only the given value
- Since:
- 4.0
-
hashCode
-
equals
-
toString
-