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 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 Details

    • 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