-
- Type Parameters:
V
- type of the contained values.
- All Superinterfaces:
Range<V>
- All Known Implementing Classes:
NumericRange
public interface WritableRange<V> extends Range<V>
- Since:
- 1.0.0
-
-
Field Summary
-
Fields inherited from interface io.github.mmm.base.range.Range
BOUND_END_EXCLUSIVE, BOUND_END_INCLUSIVE, BOUND_SEPARATOR, BOUND_START_EXCLUSIVE, BOUND_START_INCLUSIVE, MAX_UNBOUND, MIN_UNBOUND, PROPERTY_MAX, PROPERTY_MIN
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setMax(V max)
void
setMin(V min)
-
-
-
Method Detail
-
setMin
void setMin(V min)
- Parameters:
min
- the new value ofRange.getMin()
.
-
setMax
void setMax(V max)
- Parameters:
max
- the new value ofRange.getMax()
.
-
-