Class RangeDomainDescription

    • Method Detail

      • 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