java.lang.Object
com.esri.arcgisruntime.data.Domain
com.esri.arcgisruntime.data.RangeDomain
- All Implemented Interfaces:
JsonSerializable
A range domain specifies a valid range of attribute values for a numeric
Field
.
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
Modifier and TypeMethodDescriptionGets the max value of the RangeDomain.Gets the min value of the RangeDomain.Methods inherited from class com.esri.arcgisruntime.data.Domain
fromJson, getFieldType, getName, getUnknownJson, getUnsupportedJson, toJson
-
Method Details
-
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
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
-