Module javafx.base

Interface WritableFloatValue

All Superinterfaces:
WritableNumberValue, WritableValue<Number>
All Known Implementing Classes:
FloatProperty, FloatPropertyBase, JavaBeanFloatProperty, ReadOnlyFloatWrapper, SimpleFloatProperty, SimpleStyleableFloatProperty, StyleableFloatProperty

public interface WritableFloatValue
extends WritableNumberValue
A writable float value.
Since:
JavaFX 2.0
See Also:
WritableValue, WritableNumberValue
  • Method Summary

    Modifier and Type Method Description
    float get()
    Get the wrapped value.
    void set​(float value)
    Set the wrapped value.
    void setValue​(Number value)
    Set the wrapped value.

    Methods inherited from interface javafx.beans.value.WritableValue

    getValue
  • Method Details