Package com.esri.arcgisruntime.data
Class RangeDomain
- java.lang.Object
 - 
- com.esri.arcgisruntime.data.Domain
 - 
- com.esri.arcgisruntime.data.RangeDomain
 
 
 
- 
- All Implemented Interfaces:
 JsonSerializable
public final class RangeDomain extends Domain
A range domain specifies a valid range of attribute values for a numericField.A range domain can be applied to short-integer, long-integer, float, double, and date attribute types. For a
ServiceFeatureTable, field values are checked against this domain when the edits are applied to the service.- Since:
 - 100.0.0
 
 
- 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectgetMaxValue()Gets the max value of the RangeDomain.ObjectgetMinValue()Gets the min value of the RangeDomain.- 
Methods inherited from class com.esri.arcgisruntime.data.Domain
fromJson, getFieldType, getName, getUnknownJson, getUnsupportedJson, toJson 
 - 
 
 - 
 
- 
- 
Method Detail
- 
getMaxValue
public Object getMaxValue()
Gets the max value of the RangeDomain. The value can be of one of the following types:- Short
 - Integer
 - Long
 - Float
 - Double
 - Calendar
 
- Returns:
 - the max value
 - Since:
 - 100.0.0
 
 
- 
getMinValue
public Object getMinValue()
Gets the min value of the RangeDomain. The value can be of one of the following types:- Short
 - Integer
 - Long
 - Float
 - Double
 - Calendar
 
- Returns:
 - the min value
 - Since:
 - 100.0.0
 
 
 - 
 
 -