Uses of Class
java.lang.Number
-
Packages that use Number Package Description java.awt Contains all of the classes for creating user interfaces and for painting graphics and images.java.lang Provides classes that are fundamental to the design of the Java programming language.java.math Provides classes for performing arbitrary-precision integer arithmetic (BigInteger) and arbitrary-precision decimal arithmetic (BigDecimal).java.text Provides classes and interfaces for handling text, dates, numbers, and messages in a manner independent of natural languages.java.util.concurrent.atomic A small toolkit of classes that support lock-free thread-safe programming on single variables.javafx.beans.binding Provides classes that create and operate on aBindingthat calculates a value that depends on one or more sources.javafx.beans.property The packagejavafx.beans.propertydefines read-only properties and writable properties, plus a number of implementations.javafx.beans.property.adapter Provides various classes that act as adapters between a regular Java Bean property and a correspondingJavaFX Property.javafx.beans.value The packagejavafx.beans.valuecontains the two fundamental interfacesObservableValueandWritableValueand all of its sub-interfaces.javafx.css Provides API for making properties styleable via CSS and for supporting pseudo-class state.javafx.css.converter Provides variousStyleConverterclasses that convert CSS parsed values.javafx.scene.chart The JavaFX User Interface provides a set of chart components that are a very convenient way for data visualization.javafx.util.converter This package is for standard string converters for JavaFX.javax.accessibility Defines a contract between user-interface components and an assistive technology that provides access to those components.javax.management Provides the core classes for the Java Management Extensions.javax.management.monitor Provides the definition of the monitor classes.javax.swing Provides a set of "lightweight" (all-Java language) components that, to the maximum degree possible, work the same on all platforms.javax.xml.datatype Defines XML/Java Type Mappings. -
-
Uses of Number in java.awt
Methods in java.awt that return Number Modifier and Type Method Description NumberButton.AccessibleAWTButton. getCurrentAccessibleValue()Get the value of this object as a Number.NumberCheckbox.AccessibleAWTCheckbox. getCurrentAccessibleValue()Get the value of this object as a Number.NumberCheckboxMenuItem.AccessibleAWTCheckboxMenuItem. getCurrentAccessibleValue()Get the value of this object as a Number.NumberMenuItem.AccessibleAWTMenuItem. getCurrentAccessibleValue()Get the value of this object as a Number.NumberScrollbar.AccessibleAWTScrollBar. getCurrentAccessibleValue()Get the accessible value of this object.NumberButton.AccessibleAWTButton. getMaximumAccessibleValue()Get the maximum value of this object as a Number.NumberCheckbox.AccessibleAWTCheckbox. getMaximumAccessibleValue()Get the maximum value of this object as a Number.NumberCheckboxMenuItem.AccessibleAWTCheckboxMenuItem. getMaximumAccessibleValue()Get the maximum value of this object as a Number.NumberMenuItem.AccessibleAWTMenuItem. getMaximumAccessibleValue()Get the maximum value of this object as a Number.NumberScrollbar.AccessibleAWTScrollBar. getMaximumAccessibleValue()Get the maximum accessible value of this object.NumberButton.AccessibleAWTButton. getMinimumAccessibleValue()Get the minimum value of this object as a Number.NumberCheckbox.AccessibleAWTCheckbox. getMinimumAccessibleValue()Get the minimum value of this object as a Number.NumberCheckboxMenuItem.AccessibleAWTCheckboxMenuItem. getMinimumAccessibleValue()Get the minimum value of this object as a Number.NumberMenuItem.AccessibleAWTMenuItem. getMinimumAccessibleValue()Get the minimum value of this object as a Number.NumberScrollbar.AccessibleAWTScrollBar. getMinimumAccessibleValue()Get the minimum accessible value of this object.Methods in java.awt with parameters of type Number Modifier and Type Method Description booleanButton.AccessibleAWTButton. setCurrentAccessibleValue(Number n)Set the value of this object as a Number.booleanCheckbox.AccessibleAWTCheckbox. setCurrentAccessibleValue(Number n)Set the value of this object as a Number.booleanCheckboxMenuItem.AccessibleAWTCheckboxMenuItem. setCurrentAccessibleValue(Number n)Set the value of this object as a Number.booleanMenuItem.AccessibleAWTMenuItem. setCurrentAccessibleValue(Number n)Set the value of this object as a Number.booleanScrollbar.AccessibleAWTScrollBar. setCurrentAccessibleValue(Number n)Set the value of this object as a Number. -
Uses of Number in java.lang
Subclasses of Number in java.lang Modifier and Type Class Description classByteTheByteclass wraps a value of primitive typebytein an object.classDoubleTheDoubleclass wraps a value of the primitive typedoublein an object.classFloatTheFloatclass wraps a value of primitive typefloatin an object.classIntegerTheIntegerclass wraps a value of the primitive typeintin an object.classLongTheLongclass wraps a value of the primitive typelongin an object.classShortTheShortclass wraps a value of primitive typeshortin an object. -
Uses of Number in java.math
Subclasses of Number in java.math Modifier and Type Class Description classBigDecimalImmutable, arbitrary-precision signed decimal numbers.classBigIntegerImmutable arbitrary-precision integers. -
Uses of Number in java.text
Methods in java.text that return Number Modifier and Type Method Description NumberChoiceFormat. parse(String text, ParsePosition status)Parses a Number from the input text.NumberDecimalFormat. parse(String text, ParsePosition pos)Parses text from a string to produce aNumber.NumberNumberFormat. parse(String source)Parses text from the beginning of the given string to produce a number.abstract NumberNumberFormat. parse(String source, ParsePosition parsePosition)Returns a Long if possible (e.g., within the range [Long.MIN_VALUE, Long.MAX_VALUE] and with no decimals), otherwise a Double. -
Uses of Number in java.util.concurrent.atomic
Subclasses of Number in java.util.concurrent.atomic Modifier and Type Class Description classAtomicIntegerAnintvalue that may be updated atomically.classAtomicLongAlongvalue that may be updated atomically.classDoubleAccumulatorOne or more variables that together maintain a runningdoublevalue updated using a supplied function.classDoubleAdderOne or more variables that together maintain an initially zerodoublesum.classLongAccumulatorOne or more variables that together maintain a runninglongvalue updated using a supplied function.classLongAdderOne or more variables that together maintain an initially zerolongsum. -
Uses of Number in javafx.beans.binding
Methods in javafx.beans.binding with type parameters of type Number Modifier and Type Method Description static <T extends Number>
DoubleExpressionDoubleExpression. doubleExpression(ObservableValue<T> value)Returns aDoubleExpressionthat wraps anObservableValue.static <T extends Number>
FloatExpressionFloatExpression. floatExpression(ObservableValue<T> value)Returns aFloatExpressionthat wraps anObservableValue.static <T extends Number>
IntegerExpressionIntegerExpression. integerExpression(ObservableValue<T> value)Returns anIntegerExpressionthat wraps anObservableValue.static <T extends Number>
LongExpressionLongExpression. longExpression(ObservableValue<T> value)Returns aLongExpressionthat wraps anObservableValue.static <S extends Number>
NumberExpressionBaseNumberExpressionBase. numberExpression(ObservableNumberValue value)Returns anNumberExpressionBasethat wraps aObservableNumberValue.Method parameters in javafx.beans.binding with type arguments of type Number Modifier and Type Method Description voidDoubleBinding. addListener(ChangeListener<? super Number> listener)voidFloatBinding. addListener(ChangeListener<? super Number> listener)voidIntegerBinding. addListener(ChangeListener<? super Number> listener)voidLongBinding. addListener(ChangeListener<? super Number> listener)static DoubleBindingBindings. doubleValueAt(ObservableList<? extends Number> op, int index)Creates a newDoubleBindingthat contains the element of anObservableListat the specified position.static DoubleBindingBindings. doubleValueAt(ObservableList<? extends Number> op, ObservableIntegerValue index)Creates a newDoubleBindingthat contains the element of anObservableListat the specified position.static DoubleBindingBindings. doubleValueAt(ObservableList<? extends Number> op, ObservableNumberValue index)Creates a newDoubleBindingthat contains the element of anObservableListat the specified position.static <K> DoubleBindingBindings. doubleValueAt(ObservableMap<K,? extends Number> op, ObservableValue<? extends K> key)Creates a newDoubleBindingthat contains the mapping of a specific key in anObservableMap.static <K> DoubleBindingBindings. doubleValueAt(ObservableMap<K,? extends Number> op, K key)Creates a newDoubleBindingthat contains the mapping of a specific key in anObservableMap.static FloatBindingBindings. floatValueAt(ObservableList<? extends Number> op, int index)Creates a newFloatBindingthat contains the element of anObservableListat the specified position.static FloatBindingBindings. floatValueAt(ObservableList<? extends Number> op, ObservableIntegerValue index)Creates a newFloatBindingthat contains the element of anObservableListat the specified position.static FloatBindingBindings. floatValueAt(ObservableList<? extends Number> op, ObservableNumberValue index)Creates a newFloatBindingthat contains the element of anObservableListat the specified position.static <K> FloatBindingBindings. floatValueAt(ObservableMap<K,? extends Number> op, ObservableValue<? extends K> key)Creates a newFloatBindingthat contains the mapping of a specific key in anObservableMap.static <K> FloatBindingBindings. floatValueAt(ObservableMap<K,? extends Number> op, K key)Creates a newFloatBindingthat contains the mapping of a specific key in anObservableMap.static IntegerBindingBindings. integerValueAt(ObservableList<? extends Number> op, int index)Creates a newIntegerBindingthat contains the element of anObservableListat the specified position.static IntegerBindingBindings. integerValueAt(ObservableList<? extends Number> op, ObservableIntegerValue index)Creates a newIntegerBindingthat contains the element of anObservableListat the specified position.static IntegerBindingBindings. integerValueAt(ObservableList<? extends Number> op, ObservableNumberValue index)Creates a newIntegerBindingthat contains the element of anObservableListat the specified position.static <K> IntegerBindingBindings. integerValueAt(ObservableMap<K,? extends Number> op, ObservableValue<? extends K> key)Creates a newIntegerBindingthat contains the mapping of a specific key in anObservableMap.static <K> IntegerBindingBindings. integerValueAt(ObservableMap<K,? extends Number> op, K key)Creates a newIntegerBindingthat contains the mapping of a specific key in anObservableMap.static LongBindingBindings. longValueAt(ObservableList<? extends Number> op, int index)Creates a newLongBindingthat contains the element of anObservableListat the specified position.static LongBindingBindings. longValueAt(ObservableList<? extends Number> op, ObservableIntegerValue index)Creates a newLongBindingthat contains the element of anObservableListat the specified position.static LongBindingBindings. longValueAt(ObservableList<? extends Number> op, ObservableNumberValue index)Creates a newLongBindingthat contains the element of anObservableListat the specified position.static <K> LongBindingBindings. longValueAt(ObservableMap<K,? extends Number> op, ObservableValue<? extends K> key)Creates a newLongBindingthat contains the mapping of a specific key in anObservableMap.static <K> LongBindingBindings. longValueAt(ObservableMap<K,? extends Number> op, K key)Creates a newLongBindingthat contains the mapping of a specific key in anObservableMap.voidDoubleBinding. removeListener(ChangeListener<? super Number> listener)voidFloatBinding. removeListener(ChangeListener<? super Number> listener)voidIntegerBinding. removeListener(ChangeListener<? super Number> listener)voidLongBinding. removeListener(ChangeListener<? super Number> listener) -
Uses of Number in javafx.beans.property
Methods in javafx.beans.property with type parameters of type Number Modifier and Type Method Description static <T extends Number>
ReadOnlyDoublePropertyReadOnlyDoubleProperty. readOnlyDoubleProperty(ReadOnlyProperty<T> property)Returns aReadOnlyDoublePropertythat wraps aReadOnlyProperty.static <T extends Number>
ReadOnlyFloatPropertyReadOnlyFloatProperty. readOnlyFloatProperty(ReadOnlyProperty<T> property)Returns aReadOnlyFloatPropertythat wraps aReadOnlyProperty.static <T extends Number>
ReadOnlyIntegerPropertyReadOnlyIntegerProperty. readOnlyIntegerProperty(ReadOnlyProperty<T> property)Returns aReadOnlyIntegerPropertythat wraps aReadOnlyProperty.static <T extends Number>
ReadOnlyLongPropertyReadOnlyLongProperty. readOnlyLongProperty(ReadOnlyProperty<T> property)Returns aReadOnlyLongPropertythat wraps aReadOnlyProperty.Methods in javafx.beans.property with parameters of type Number Modifier and Type Method Description voidDoubleProperty. setValue(Number v)Set the wrapped value.voidFloatProperty. setValue(Number v)Set the wrapped value.voidIntegerProperty. setValue(Number v)Set the wrapped value.voidLongProperty. setValue(Number v)Set the wrapped value.Method parameters in javafx.beans.property with type arguments of type Number Modifier and Type Method Description voidDoublePropertyBase. addListener(ChangeListener<? super Number> listener)voidFloatPropertyBase. addListener(ChangeListener<? super Number> listener)voidIntegerPropertyBase. addListener(ChangeListener<? super Number> listener)voidLongPropertyBase. addListener(ChangeListener<? super Number> listener)voidReadOnlyDoublePropertyBase. addListener(ChangeListener<? super Number> listener)voidReadOnlyFloatPropertyBase. addListener(ChangeListener<? super Number> listener)voidReadOnlyIntegerPropertyBase. addListener(ChangeListener<? super Number> listener)voidReadOnlyLongPropertyBase. addListener(ChangeListener<? super Number> listener)voidDoublePropertyBase. bind(ObservableValue<? extends Number> rawObservable)Create a unidirection binding for thisProperty.voidFloatPropertyBase. bind(ObservableValue<? extends Number> rawObservable)Create a unidirection binding for thisProperty.voidIntegerPropertyBase. bind(ObservableValue<? extends Number> rawObservable)Create a unidirection binding for thisProperty.voidLongPropertyBase. bind(ObservableValue<? extends Number> rawObservable)Create a unidirection binding for thisProperty.voidDoubleProperty. bindBidirectional(Property<Number> other)Create a bidirectional binding between thisPropertyand another one.voidFloatProperty. bindBidirectional(Property<Number> other)Create a bidirectional binding between thisPropertyand another one.voidIntegerProperty. bindBidirectional(Property<Number> other)Create a bidirectional binding between thisPropertyand another one.voidLongProperty. bindBidirectional(Property<Number> other)Create a bidirectional binding between thisPropertyand another one.voidDoublePropertyBase. removeListener(ChangeListener<? super Number> listener)voidFloatPropertyBase. removeListener(ChangeListener<? super Number> listener)voidIntegerPropertyBase. removeListener(ChangeListener<? super Number> listener)voidLongPropertyBase. removeListener(ChangeListener<? super Number> listener)voidReadOnlyDoublePropertyBase. removeListener(ChangeListener<? super Number> listener)voidReadOnlyFloatPropertyBase. removeListener(ChangeListener<? super Number> listener)voidReadOnlyIntegerPropertyBase. removeListener(ChangeListener<? super Number> listener)voidReadOnlyLongPropertyBase. removeListener(ChangeListener<? super Number> listener)voidDoubleProperty. unbindBidirectional(Property<Number> other)Remove a bidirectional binding between thisPropertyand another one.voidFloatProperty. unbindBidirectional(Property<Number> other)Remove a bidirectional binding between thisPropertyand another one.voidIntegerProperty. unbindBidirectional(Property<Number> other)Remove a bidirectional binding between thisPropertyand another one.voidLongProperty. unbindBidirectional(Property<Number> other)Remove a bidirectional binding between thisPropertyand another one. -
Uses of Number in javafx.beans.property.adapter
Method parameters in javafx.beans.property.adapter with type arguments of type Number Modifier and Type Method Description voidJavaBeanDoubleProperty. addListener(ChangeListener<? super Number> listener)Adds aChangeListenerwhich will be notified whenever the value of theObservableValuechanges.voidJavaBeanFloatProperty. addListener(ChangeListener<? super Number> listener)Adds aChangeListenerwhich will be notified whenever the value of theObservableValuechanges.voidJavaBeanIntegerProperty. addListener(ChangeListener<? super Number> listener)Adds aChangeListenerwhich will be notified whenever the value of theObservableValuechanges.voidJavaBeanLongProperty. addListener(ChangeListener<? super Number> listener)Adds aChangeListenerwhich will be notified whenever the value of theObservableValuechanges.voidJavaBeanDoubleProperty. bind(ObservableValue<? extends Number> observable)Create a unidirection binding for thisProperty.voidJavaBeanFloatProperty. bind(ObservableValue<? extends Number> observable)Create a unidirection binding for thisProperty.voidJavaBeanIntegerProperty. bind(ObservableValue<? extends Number> observable)Create a unidirection binding for thisProperty.voidJavaBeanLongProperty. bind(ObservableValue<? extends Number> observable)Create a unidirection binding for thisProperty.voidJavaBeanDoubleProperty. removeListener(ChangeListener<? super Number> listener)Removes the given listener from the list of listeners, that are notified whenever the value of theObservableValuechanges.voidJavaBeanFloatProperty. removeListener(ChangeListener<? super Number> listener)Removes the given listener from the list of listeners, that are notified whenever the value of theObservableValuechanges.voidJavaBeanIntegerProperty. removeListener(ChangeListener<? super Number> listener)Removes the given listener from the list of listeners, that are notified whenever the value of theObservableValuechanges.voidJavaBeanLongProperty. removeListener(ChangeListener<? super Number> listener)Removes the given listener from the list of listeners, that are notified whenever the value of theObservableValuechanges. -
Uses of Number in javafx.beans.value
Methods in javafx.beans.value with parameters of type Number Modifier and Type Method Description voidWritableDoubleValue. setValue(Number value)Set the wrapped value.voidWritableFloatValue. setValue(Number value)Set the wrapped value.voidWritableIntegerValue. setValue(Number value)Set the wrapped value.voidWritableLongValue. setValue(Number value)Set the wrapped value. -
Uses of Number in javafx.css
Methods in javafx.css that return types with arguments of type Number Modifier and Type Method Description CssMetaData<S,Number>StyleablePropertyFactory. createSizeCssMetaData(String property, Function<S,StyleableProperty<Number>> function)Create a CssMetaData<S, Number> with initial value of0d, and inherit flag defaulting to false.CssMetaData<S,Number>StyleablePropertyFactory. createSizeCssMetaData(String property, Function<S,StyleableProperty<Number>> function, Number initialValue)Create a CssMetaData<S, Number> with initial value, and inherit flag defaulting to false.CssMetaData<S,Number>StyleablePropertyFactory. createSizeCssMetaData(String property, Function<S,StyleableProperty<Number>> function, Number initialValue, boolean inherits)Create a CssMetaData<S, Number> with initial value, and inherit flag.StyleableProperty<Number>StyleablePropertyFactory. createStyleableNumberProperty(S styleable, String propertyName, String cssProperty)Create a StyleableProperty<Number> using previously created CssMetaData for the givencssProperty.StyleableProperty<Number>StyleablePropertyFactory. createStyleableNumberProperty(S styleable, String propertyName, String cssProperty, Function<S,StyleableProperty<Number>> function)Create a StyleableProperty<Number>.StyleableProperty<Number>StyleablePropertyFactory. createStyleableNumberProperty(S styleable, String propertyName, String cssProperty, Function<S,StyleableProperty<Number>> function, Number initialValue)Create a StyleableProperty<Number> with initial value.StyleableProperty<Number>StyleablePropertyFactory. createStyleableNumberProperty(S styleable, String propertyName, String cssProperty, Function<S,StyleableProperty<Number>> function, Number initialValue, boolean inherits)Create a StyleableProperty<Number> with initial value and inherit flag.CssMetaData<? extends Styleable,Number>SimpleStyleableDoubleProperty. getCssMetaData()Reflect back the CssMetaData that corresponds to thisjavafx.beans.property.StyleablePropertyCssMetaData<? extends Styleable,Number>SimpleStyleableFloatProperty. getCssMetaData()Reflect back the CssMetaData that corresponds to thisjavafx.beans.property.StyleablePropertyCssMetaData<? extends Styleable,Number>SimpleStyleableIntegerProperty. getCssMetaData()Reflect back the CssMetaData that corresponds to thisjavafx.beans.property.StyleablePropertyCssMetaData<? extends Styleable,Number>SimpleStyleableLongProperty. getCssMetaData()Reflect back the CssMetaData that corresponds to thisjavafx.beans.property.StyleablePropertystatic StyleConverter<?,Number>StyleConverter. getSizeConverter()CSS length and number values are parsed into a Size object that is converted to a Number before the value is applied.Methods in javafx.css with parameters of type Number Modifier and Type Method Description voidStyleableDoubleProperty. applyStyle(StyleOrigin origin, Number v)This method is called from CSS code to set the value of the property.voidStyleableFloatProperty. applyStyle(StyleOrigin origin, Number v)This method is called from CSS code to set the value of the property.voidStyleableIntegerProperty. applyStyle(StyleOrigin origin, Number v)This method is called from CSS code to set the value of the property.voidStyleableLongProperty. applyStyle(StyleOrigin origin, Number v)This method is called from CSS code to set the value of the property.CssMetaData<S,Number>StyleablePropertyFactory. createSizeCssMetaData(String property, Function<S,StyleableProperty<Number>> function, Number initialValue)Create a CssMetaData<S, Number> with initial value, and inherit flag defaulting to false.CssMetaData<S,Number>StyleablePropertyFactory. createSizeCssMetaData(String property, Function<S,StyleableProperty<Number>> function, Number initialValue, boolean inherits)Create a CssMetaData<S, Number> with initial value, and inherit flag.StyleableProperty<Number>StyleablePropertyFactory. createStyleableNumberProperty(S styleable, String propertyName, String cssProperty, Function<S,StyleableProperty<Number>> function, Number initialValue)Create a StyleableProperty<Number> with initial value.StyleableProperty<Number>StyleablePropertyFactory. createStyleableNumberProperty(S styleable, String propertyName, String cssProperty, Function<S,StyleableProperty<Number>> function, Number initialValue, boolean inherits)Create a StyleableProperty<Number> with initial value and inherit flag.Method parameters in javafx.css with type arguments of type Number Modifier and Type Method Description voidStyleableDoubleProperty. bind(ObservableValue<? extends Number> observable)Create a unidirection binding for thisProperty.voidStyleableFloatProperty. bind(ObservableValue<? extends Number> observable)Create a unidirection binding for thisProperty.voidStyleableIntegerProperty. bind(ObservableValue<? extends Number> observable)Create a unidirection binding for thisProperty.voidStyleableLongProperty. bind(ObservableValue<? extends Number> observable)Create a unidirection binding for thisProperty.CssMetaData<S,Number>StyleablePropertyFactory. createSizeCssMetaData(String property, Function<S,StyleableProperty<Number>> function)Create a CssMetaData<S, Number> with initial value of0d, and inherit flag defaulting to false.CssMetaData<S,Number>StyleablePropertyFactory. createSizeCssMetaData(String property, Function<S,StyleableProperty<Number>> function, Number initialValue)Create a CssMetaData<S, Number> with initial value, and inherit flag defaulting to false.CssMetaData<S,Number>StyleablePropertyFactory. createSizeCssMetaData(String property, Function<S,StyleableProperty<Number>> function, Number initialValue, boolean inherits)Create a CssMetaData<S, Number> with initial value, and inherit flag.StyleableProperty<Number>StyleablePropertyFactory. createStyleableNumberProperty(S styleable, String propertyName, String cssProperty, Function<S,StyleableProperty<Number>> function)Create a StyleableProperty<Number>.StyleableProperty<Number>StyleablePropertyFactory. createStyleableNumberProperty(S styleable, String propertyName, String cssProperty, Function<S,StyleableProperty<Number>> function, Number initialValue)Create a StyleableProperty<Number> with initial value.StyleableProperty<Number>StyleablePropertyFactory. createStyleableNumberProperty(S styleable, String propertyName, String cssProperty, Function<S,StyleableProperty<Number>> function, Number initialValue, boolean inherits)Create a StyleableProperty<Number> with initial value and inherit flag.Constructor parameters in javafx.css with type arguments of type Number Constructor Description SimpleStyleableDoubleProperty(CssMetaData<? extends Styleable,Number> cssMetaData)The constructor of theSimpleStyleableDoubleProperty.SimpleStyleableDoubleProperty(CssMetaData<? extends Styleable,Number> cssMetaData, Double initialValue)The constructor of theSimpleStyleableDoubleProperty.SimpleStyleableDoubleProperty(CssMetaData<? extends Styleable,Number> cssMetaData, Object bean, String name)The constructor of theSimpleStyleableDoubleProperty.SimpleStyleableDoubleProperty(CssMetaData<? extends Styleable,Number> cssMetaData, Object bean, String name, Double initialValue)The constructor of theSimpleStyleableDoubleProperty.SimpleStyleableFloatProperty(CssMetaData<? extends Styleable,Number> cssMetaData)The constructor of theSimpleStyleableFloatProperty.SimpleStyleableFloatProperty(CssMetaData<? extends Styleable,Number> cssMetaData, Float initialValue)The constructor of theSimpleStyleableFloatProperty.SimpleStyleableFloatProperty(CssMetaData<? extends Styleable,Number> cssMetaData, Object bean, String name)The constructor of theSimpleStyleableFloatProperty.SimpleStyleableFloatProperty(CssMetaData<? extends Styleable,Number> cssMetaData, Object bean, String name, Float initialValue)The constructor of theSimpleStyleableFloatProperty.SimpleStyleableIntegerProperty(CssMetaData<? extends Styleable,Number> cssMetaData)The constructor of theSimpleStyleableIntegerProperty.SimpleStyleableIntegerProperty(CssMetaData<? extends Styleable,Number> cssMetaData, Integer initialValue)The constructor of theSimpleStyleableIntegerProperty.SimpleStyleableIntegerProperty(CssMetaData<? extends Styleable,Number> cssMetaData, Object bean, String name)The constructor of theSimpleStyleableIntegerProperty.SimpleStyleableIntegerProperty(CssMetaData<? extends Styleable,Number> cssMetaData, Object bean, String name, Integer initialValue)The constructor of theSimpleStyleableIntegerProperty.SimpleStyleableLongProperty(CssMetaData<? extends Styleable,Number> cssMetaData)The constructor of theSimpleStyleableLongProperty.SimpleStyleableLongProperty(CssMetaData<? extends Styleable,Number> cssMetaData, Long initialValue)The constructor of theSimpleStyleableLongProperty.SimpleStyleableLongProperty(CssMetaData<? extends Styleable,Number> cssMetaData, Object bean, String name)The constructor of theSimpleStyleableLongProperty.SimpleStyleableLongProperty(CssMetaData<? extends Styleable,Number> cssMetaData, Object bean, String name, Long initialValue)The constructor of theSimpleStyleableLongProperty. -
Uses of Number in javafx.css.converter
Methods in javafx.css.converter that return Number Modifier and Type Method Description NumberFontConverter.FontSizeConverter. convert(ParsedValue<ParsedValue<?,Size>,Number> value, Font font)NumberSizeConverter. convert(ParsedValue<ParsedValue<?,Size>,Number> value, Font font)Number[]SizeConverter.SequenceConverter. convert(ParsedValue<ParsedValue[],Number[]> value, Font font)Methods in javafx.css.converter that return types with arguments of type Number Modifier and Type Method Description static StyleConverter<ParsedValue<?,Size>,Number>SizeConverter. getInstance()Method parameters in javafx.css.converter with type arguments of type Number Modifier and Type Method Description NumberFontConverter.FontSizeConverter. convert(ParsedValue<ParsedValue<?,Size>,Number> value, Font font)NumberSizeConverter. convert(ParsedValue<ParsedValue<?,Size>,Number> value, Font font) -
Uses of Number in javafx.scene.chart
Classes in javafx.scene.chart with type parameters of type Number Modifier and Type Class Description classValueAxis<T extends Number>An axis whose data is defined as Numbers.Methods in javafx.scene.chart that return Number Modifier and Type Method Description NumberNumberAxis.DefaultFormatter. fromString(String string)Converts the string provided into a Number defined by the this converter.Methods in javafx.scene.chart that return types with arguments of type Number Modifier and Type Method Description protected List<Number>NumberAxis. calculateMinorTickMarks()Calculates a list of the data values for every minor tick markprotected List<Number>NumberAxis. calculateTickValues(double length, Object range)Calculates a list of all the data values for each tick mark in rangeMethods in javafx.scene.chart with parameters of type Number Modifier and Type Method Description protected StringNumberAxis. getTickMarkLabel(Number value)Get the string label name for a tick mark with the given value.protected Dimension2DNumberAxis. measureTickMarkSize(Number value, Object range)Measures the size of the label for a given tick mark value.StringNumberAxis.DefaultFormatter. toString(Number object)Converts the object provided into its string form. -
Uses of Number in javafx.util.converter
Methods in javafx.util.converter that return Number Modifier and Type Method Description NumberNumberStringConverter. fromString(String value)Converts the string provided into an object defined by the specific converter.Methods in javafx.util.converter with parameters of type Number Modifier and Type Method Description StringNumberStringConverter. toString(Number value)Converts the object provided into its string form. -
Uses of Number in javax.accessibility
Methods in javax.accessibility that return Number Modifier and Type Method Description NumberAccessibleValue. getCurrentAccessibleValue()Get the value of this object as aNumber.NumberAccessibleValue. getMaximumAccessibleValue()Get the maximum value of this object as aNumber.NumberAccessibleValue. getMinimumAccessibleValue()Get the minimum value of this object as aNumber.Methods in javax.accessibility with parameters of type Number Modifier and Type Method Description booleanAccessibleValue. setCurrentAccessibleValue(Number n)Set the value of this object as aNumber. -
Uses of Number in javax.management
Methods in javax.management with parameters of type Number Modifier and Type Method Description static ValueExpQuery. value(Number val)Returns a numeric value expression that can be used in any Query call that expects a ValueExp. -
Uses of Number in javax.management.monitor
Methods in javax.management.monitor that return Number Modifier and Type Method Description NumberCounterMonitor. getDerivedGauge()Deprecated.As of JMX 1.2, replaced byCounterMonitor.getDerivedGauge(ObjectName)NumberCounterMonitor. getDerivedGauge(ObjectName object)Gets the derived gauge of the specified object, if this object is contained in the set of observed MBeans, ornullotherwise.NumberCounterMonitorMBean. getDerivedGauge()Deprecated.As of JMX 1.2, replaced byCounterMonitorMBean.getDerivedGauge(ObjectName)NumberCounterMonitorMBean. getDerivedGauge(ObjectName object)Gets the derived gauge for the specified MBean.NumberGaugeMonitor. getDerivedGauge()Deprecated.As of JMX 1.2, replaced byGaugeMonitor.getDerivedGauge(ObjectName)NumberGaugeMonitor. getDerivedGauge(ObjectName object)Gets the derived gauge of the specified object, if this object is contained in the set of observed MBeans, ornullotherwise.NumberGaugeMonitorMBean. getDerivedGauge()Deprecated.As of JMX 1.2, replaced byGaugeMonitorMBean.getDerivedGauge(ObjectName)NumberGaugeMonitorMBean. getDerivedGauge(ObjectName object)Gets the derived gauge for the specified MBean.NumberGaugeMonitor. getHighThreshold()Gets the high threshold value common to all observed MBeans.NumberGaugeMonitorMBean. getHighThreshold()Gets the high threshold value.NumberCounterMonitor. getInitThreshold()Gets the initial threshold value common to all observed objects.NumberCounterMonitorMBean. getInitThreshold()Gets the initial threshold value common to all observed objects.NumberGaugeMonitor. getLowThreshold()Gets the low threshold value common to all observed MBeans.NumberGaugeMonitorMBean. getLowThreshold()Gets the low threshold value.NumberCounterMonitor. getModulus()Gets the modulus value common to all observed MBeans.NumberCounterMonitorMBean. getModulus()Gets the modulus value.NumberCounterMonitor. getOffset()Gets the offset value common to all observed MBeans.NumberCounterMonitorMBean. getOffset()Gets the offset value.NumberCounterMonitor. getThreshold()Deprecated.As of JMX 1.2, replaced byCounterMonitor.getThreshold(ObjectName)NumberCounterMonitor. getThreshold(ObjectName object)Gets the current threshold value of the specified object, if this object is contained in the set of observed MBeans, ornullotherwise.NumberCounterMonitorMBean. getThreshold()Deprecated.As of JMX 1.2, replaced byCounterMonitorMBean.getThreshold(ObjectName)NumberCounterMonitorMBean. getThreshold(ObjectName object)Gets the threshold value for the specified MBean.Methods in javax.management.monitor with parameters of type Number Modifier and Type Method Description voidCounterMonitor. setInitThreshold(Number value)Sets the initial threshold value common to all observed objects.voidCounterMonitorMBean. setInitThreshold(Number value)Sets the initial threshold value common to all observed MBeans.voidCounterMonitor. setModulus(Number value)Sets the modulus value common to all observed MBeans.voidCounterMonitorMBean. setModulus(Number value)Sets the modulus value.voidCounterMonitor. setOffset(Number value)Sets the offset value common to all observed MBeans.voidCounterMonitorMBean. setOffset(Number value)Sets the offset value.voidCounterMonitor. setThreshold(Number value)Deprecated.As of JMX 1.2, replaced byCounterMonitor.setInitThreshold(java.lang.Number)voidCounterMonitorMBean. setThreshold(Number value)Deprecated.As of JMX 1.2, replaced byCounterMonitorMBean.setInitThreshold(java.lang.Number)voidGaugeMonitor. setThresholds(Number highValue, Number lowValue)Sets the high and the low threshold values common to all observed MBeans.voidGaugeMonitorMBean. setThresholds(Number highValue, Number lowValue)Sets the high and the low threshold values. -
Uses of Number in javax.swing
Methods in javax.swing that return Number Modifier and Type Method Description NumberAbstractButton.AccessibleAbstractButton. getCurrentAccessibleValue()Get the value of this object as a Number.NumberJInternalFrame.AccessibleJInternalFrame. getCurrentAccessibleValue()Get the value of this object as a Number.NumberJInternalFrame.JDesktopIcon.AccessibleJDesktopIcon. getCurrentAccessibleValue()Gets the value of this object as aNumber.NumberJProgressBar.AccessibleJProgressBar. getCurrentAccessibleValue()Gets the accessible value of this object.NumberJScrollBar.AccessibleJScrollBar. getCurrentAccessibleValue()Get the accessible value of this object.NumberJSlider.AccessibleJSlider. getCurrentAccessibleValue()Get the accessible value of this object.NumberJSpinner.AccessibleJSpinner. getCurrentAccessibleValue()Get the value of this object as a Number.NumberJSplitPane.AccessibleJSplitPane. getCurrentAccessibleValue()Gets the accessible value of this object.NumberAbstractButton.AccessibleAbstractButton. getMaximumAccessibleValue()Get the maximum value of this object as a Number.NumberJInternalFrame.AccessibleJInternalFrame. getMaximumAccessibleValue()Get the maximum value of this object as a Number.NumberJInternalFrame.JDesktopIcon.AccessibleJDesktopIcon. getMaximumAccessibleValue()Gets the maximum value of this object as aNumber.NumberJProgressBar.AccessibleJProgressBar. getMaximumAccessibleValue()Gets the maximum accessible value of this object.NumberJScrollBar.AccessibleJScrollBar. getMaximumAccessibleValue()Get the maximum accessible value of this object.NumberJSlider.AccessibleJSlider. getMaximumAccessibleValue()Get the maximum accessible value of this object.NumberJSpinner.AccessibleJSpinner. getMaximumAccessibleValue()Get the maximum value of this object as a Number.NumberJSplitPane.AccessibleJSplitPane. getMaximumAccessibleValue()Gets the maximum accessible value of this object.NumberAbstractButton.AccessibleAbstractButton. getMinimumAccessibleValue()Get the minimum value of this object as a Number.NumberJInternalFrame.AccessibleJInternalFrame. getMinimumAccessibleValue()Get the minimum value of this object as a Number.NumberJInternalFrame.JDesktopIcon.AccessibleJDesktopIcon. getMinimumAccessibleValue()Gets the minimum value of this object as aNumber.NumberJProgressBar.AccessibleJProgressBar. getMinimumAccessibleValue()Gets the minimum accessible value of this object.NumberJScrollBar.AccessibleJScrollBar. getMinimumAccessibleValue()Get the minimum accessible value of this object.NumberJSlider.AccessibleJSlider. getMinimumAccessibleValue()Get the minimum accessible value of this object.NumberJSpinner.AccessibleJSpinner. getMinimumAccessibleValue()Get the minimum value of this object as a Number.NumberJSplitPane.AccessibleJSplitPane. getMinimumAccessibleValue()Gets the minimum accessible value of this object.NumberSpinnerNumberModel. getNumber()Returns the value of the current element of the sequence.NumberSpinnerNumberModel. getStepSize()Returns the size of the value change computed by thegetNextValueandgetPreviousValuemethods.Methods in javax.swing with parameters of type Number Modifier and Type Method Description static <M,I> RowFilter<M,I>RowFilter. numberFilter(RowFilter.ComparisonType type, Number number, int... indices)Returns aRowFilterthat includes entries that have at least oneNumbervalue meeting the specified criteria.booleanAbstractButton.AccessibleAbstractButton. setCurrentAccessibleValue(Number n)Set the value of this object as a Number.booleanJInternalFrame.AccessibleJInternalFrame. setCurrentAccessibleValue(Number n)Set the value of this object as a Number.booleanJInternalFrame.JDesktopIcon.AccessibleJDesktopIcon. setCurrentAccessibleValue(Number n)Sets the value of this object as aNumber.booleanJProgressBar.AccessibleJProgressBar. setCurrentAccessibleValue(Number n)Sets the value of this object as aNumber.booleanJScrollBar.AccessibleJScrollBar. setCurrentAccessibleValue(Number n)Set the value of this object as a Number.booleanJSlider.AccessibleJSlider. setCurrentAccessibleValue(Number n)Set the value of this object as a Number.booleanJSpinner.AccessibleJSpinner. setCurrentAccessibleValue(Number n)Set the value of this object as a Number.booleanJSplitPane.AccessibleJSplitPane. setCurrentAccessibleValue(Number n)Sets the value of this object as a Number.voidSpinnerNumberModel. setStepSize(Number stepSize)Changes the size of the value change computed by thegetNextValueandgetPreviousValuemethods.Constructors in javax.swing with parameters of type Number Constructor Description SpinnerNumberModel(Number value, Comparable<?> minimum, Comparable<?> maximum, Number stepSize)Constructs aSpinnerModelthat represents a closed sequence of numbers fromminimumtomaximum. -
Uses of Number in javax.xml.datatype
Methods in javax.xml.datatype that return Number Modifier and Type Method Description abstract NumberDuration. getField(DatatypeConstants.Field field)Gets the value of a field.
-