Module java.desktop

Interface AccessibleValue

    • Method Detail

      • getCurrentAccessibleValue

        Number getCurrentAccessibleValue()
        Get the value of this object as a Number. If the value has not been set, the return value will be null.
        Returns:
        value of the object
        See Also:
        setCurrentAccessibleValue(java.lang.Number)
      • setCurrentAccessibleValue

        boolean setCurrentAccessibleValue​(Number n)
        Set the value of this object as a Number.
        Parameters:
        n - the number to use for the value
        Returns:
        true if the value was set; else false
        See Also:
        getCurrentAccessibleValue()
      • getMinimumAccessibleValue

        Number getMinimumAccessibleValue()
        Get the minimum value of this object as a Number.
        Returns:
        minimum value of the object; null if this object does not have a minimum value
        See Also:
        getMaximumAccessibleValue()
      • getMaximumAccessibleValue

        Number getMaximumAccessibleValue()
        Get the maximum value of this object as a Number.
        Returns:
        maximum value of the object; null if this object does not have a maximum value
        See Also:
        getMinimumAccessibleValue()