public static interface Range.Builder extends CopyableBuilder<Range.Builder,Range>
Modifier and Type | Method and Description |
---|---|
Range.Builder |
from(Integer from)
The minimum value in the range.
|
Range.Builder |
step(Integer step)
The step value for the range.
|
Range.Builder |
to(Integer to)
The maximum value in the range.
|
copy
applyMutation, build
Range.Builder from(Integer from)
The minimum value in the range.
from
- The minimum value in the range.Range.Builder to(Integer to)
The maximum value in the range.
to
- The maximum value in the range.Range.Builder step(Integer step)
The step value for the range. For example, if you have a range of 5,000 to 10,000, with a step value of 1,000, the valid values start at 5,000 and step up by 1,000. Even though 7,500 is within the range, it isn't a valid value for the range. The valid values are 5,000, 6,000, 7,000, 8,000...
step
- The step value for the range. For example, if you have a range of 5,000 to 10,000, with a step value
of 1,000, the valid values start at 5,000 and step up by 1,000. Even though 7,500 is within the range,
it isn't a valid value for the range. The valid values are 5,000, 6,000, 7,000, 8,000...Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.