Class NumericProperty

    • Constructor Detail

      • NumericProperty

        protected NumericProperty​(Number value,
                                  NumericProperty pattern)
        Creates a NumericProperty based on {
        Parameters:
        value - the for the {
        pattern - a valid NumericProperty
      • NumericProperty

        public NumericProperty​(NumericPropertyKeyword type,
                               Number... params)
        Constructor used by XMLConverter to create a NumericProperty with fully specified set of parameters
        Parameters:
        type - the type of this NumericProperty, set by one of the NumericPropertyKeyword constants
        params - the numeric parameters in the following order: value, minimum, maximum, dimension factor.
        See Also:
        XMLConverter
      • NumericProperty

        public NumericProperty​(NumericProperty num)
        A copy constructor for NumericProperty
        Parameters:
        num - another NumericProperty that is going to be replicated
    • Method Detail

      • getValue

        public Object getValue()
        Description copied from interface: Property
        Retrieves the value of this Property.
        Specified by:
        getValue in interface Property
        Returns:
        an object representing the value of this Property
      • validate

        public boolean validate()
      • setValue

        public void setValue​(Number value)
        Sets the value of this NumericProperty -- if and only if the new value is confined within the definition domain for this NumericProperty. Checks whether
        Parameters:
        value - the value to be set to this property
      • setDomain

        public void setDomain​(Number minimum,
                              Number maximum)
                       throws IllegalArgumentException
        Sets the definition domain for this NumericProperty.
        Parameters:
        minimum - the minimum value
        maximum - the maximum value
        Throws:
        IllegalArgumentException - if any two of minimum, maximum, or this.value have different primitive types (e.g. a double and an int).
      • getMinimum

        public Number getMinimum()
      • getMaximum

        public Number getMaximum()
      • toString

        public String toString()
        Prints out the type and value of this NumericProperty.
        Overrides:
        toString in class Object
      • valueInCurrentUnits

        public Number valueInCurrentUnits()
      • errorInCurrentUnits

        public Number errorInCurrentUnits()
      • getDimensionFactor

        public Number getDimensionFactor()
      • setDimensionFactor

        public void setDimensionFactor​(Number dimensionFactor)
      • setVisibleByDefault

        public void setVisibleByDefault​(boolean autoAdjustable)
      • isVisibleByDefault

        public boolean isVisibleByDefault()
      • getError

        public Number getError()
      • setError

        public void setError​(Number error)
      • getDescriptor

        public String getDescriptor​(boolean addHtmlTag)
        Description copied from interface: Property
        Creates a String to describe this property (often used in GUI applications).
        Specified by:
        getDescriptor in interface Property
        Parameters:
        addHtmlTag - if true, adds the 'html' tags at both ends of the descriptor String.
        Returns:
        a String, with or without 'html' tags, describing this Property
      • setDescriptor

        public void setDescriptor​(String descriptor)
      • getAbbreviation

        public String getAbbreviation​(boolean addHtmlTags)
      • setAbbreviation

        public void setAbbreviation​(String abbreviation)
      • equals

        public boolean equals​(Object o)
        The Object o is considered to be equal to this NumericProperty if (a) it is of the same class; (b) its value is the same as for this NumericProperty, and (c) if it is specified by the same NumericPropertyKeyword.
        Overrides:
        equals in class Object
      • isDiscrete

        public boolean isDiscrete()
      • setDiscrete

        public void setDiscrete​(boolean discrete)
      • isDefaultSearchVariable

        public boolean isDefaultSearchVariable()
      • isOptimisable

        public boolean isOptimisable()
      • setDefaultSearchVariable

        public void setDefaultSearchVariable​(boolean defaultSearchVariable)
      • setOptimisable

        public void setOptimisable​(boolean optimisable)
      • getDimensionDelta

        public Number getDimensionDelta()
      • getBounds

        public Segment getBounds()
        Represents the bounds specified for this numeric property as a Segment object. The bound numbers are taken by their double values and assigned to the segment.
        Returns:
        the bounds in which this property is allowed to change
      • formattedOutput

        public String formattedOutput()
        Uses a NumericPropertyFormatter to generate a formatted output
        Specified by:
        formattedOutput in interface Property
        Returns:
        a formatted string output with the value (and error -- if available) of this numeric property