Utility class which implements the concept of Integer value ranges. That is you can use a string to specify a range of values. You can use '-' and ',' to create blocks of value ranges. Then using Iterator
Example:
@author Mark Bednarczyk @author Sly Technologies, Inc.
start
up to end
with an increment of step
. The value of start
is always included. The value of end
is included only if the difference between end-start
is a multiple of step
. The step
can be positive or negative, but never 0. It must have the same signum as of end-start
.
@author Jan Koehnlein - Initial contribution and API
@since 2.3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|