Class RangeDomainDescription

java.lang.Object
com.esri.arcgisruntime.data.DomainDescription
com.esri.arcgisruntime.data.RangeDomainDescription

public final class RangeDomainDescription extends DomainDescription
An object that describes a RangeDomain to be created.

Creation of domains is currently only supported on mobile geodatabases, either created in ArcGIS Pro or via Geodatabase.createAsync(String).

Since:
100.14.0
  • Constructor Details

  • Method Details

    • getMaxValue

      public Object getMaxValue()
      Gets the range domain's maximum value.

      For fields that utilize a range domain, the field type must match the type of the min and max values.

      Returns:
      the range domain's maximum value
      Since:
      100.14.0
    • setMaxValue

      public void setMaxValue(Object maxValue)
      Sets the range domain's maximum value.

      For fields that utilize a range domain, the field type must match the type of the min and max values.

      Parameters:
      maxValue - the range domain's maximum value
      Throws:
      IllegalArgumentException - if maxValue is null
      Since:
      100.14.0
    • getMinValue

      public Object getMinValue()
      Gets the range domain's minimum value.

      For fields that utilize a range domain, the field type must match the type of the minimum and maximum values.

      Returns:
      the range domain's minimum value
      Since:
      100.14.0
    • setMinValue

      public void setMinValue(Object minValue)
      Sets the range domain's minimum value.

      For fields that utilize a range domain, the field type must match the type of the minimum and maximum values.

      Parameters:
      minValue - the range domain's minimum value
      Throws:
      IllegalArgumentException - if minValue is null
      Since:
      100.14.0