Class Range
- java.lang.Object
-
- com.funnelback.publicui.search.model.padre.Range
-
public class Range extends Object
A range of values (used for numeric metadata ranges)- Since:
- 11.0
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Double
getMaximum()
The maximum value in the rangeDouble
getMinimum()
The minimum value in the rangevoid
setMaximum(Double maximum)
The maximum value in the rangevoid
setMinimum(Double minimum)
The minimum value in the range
-
-
-
Method Detail
-
getMinimum
public Double getMinimum()
The minimum value in the range
-
setMinimum
public void setMinimum(Double minimum)
The minimum value in the range
-
getMaximum
public Double getMaximum()
The maximum value in the range
-
setMaximum
public void setMaximum(Double maximum)
The maximum value in the range
-
-