Class 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 Detail

      • getMaxValue

        public java.lang.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 java.lang.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