- All Implemented Interfaces:
- NumberExpression,- Observable,- Property<Number>,- ReadOnlyProperty<Number>,- ObservableFloatValue,- ObservableNumberValue,- ObservableValue<Number>,- WritableFloatValue,- WritableNumberValue,- WritableValue<Number>,- StyleableProperty<Number>
public class SimpleStyleableFloatProperty extends StyleableFloatProperty
This class extends 
SimpleFloatProperty and provides a full
 implementation of a StyleableProperty.
 This class is used to make a FloatProperty,
 that would otherwise be implemented as a SimpleFloatProperty,
 styleable by CSS.- Since:
- JavaFX 8.0
- See Also:
- SimpleFloatProperty,- CssMetaData,- StyleableProperty,- StyleableFloatProperty
- 
Constructor SummaryConstructors Constructor Description 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.
- 
Method SummaryMethods declared in class javafx.beans.property.FloatPropertyBasefireValueChangedEvent, invalidated, toStringMethods declared in class javafx.beans.property.FloatPropertyasObject, floatPropertyMethods declared in class javafx.beans.property.ReadOnlyFloatPropertyreadOnlyFloatPropertyMethods declared in class javafx.beans.binding.FloatExpressionadd, add, add, add, divide, divide, divide, divide, floatExpression, floatExpression, multiply, multiply, multiply, multiply, negate, subtract, subtract, subtract, subtractMethods declared in class javafx.beans.binding.NumberExpressionBasenumberExpressionMethods declared in class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods declared in interface javafx.beans.binding.NumberExpressionadd, asString, asString, asString, divide, greaterThan, greaterThan, greaterThan, greaterThan, greaterThan, greaterThanOrEqualTo, greaterThanOrEqualTo, greaterThanOrEqualTo, greaterThanOrEqualTo, greaterThanOrEqualTo, isEqualTo, isEqualTo, isEqualTo, isEqualTo, isEqualTo, isEqualTo, isEqualTo, isEqualTo, isNotEqualTo, isNotEqualTo, isNotEqualTo, isNotEqualTo, isNotEqualTo, isNotEqualTo, isNotEqualTo, isNotEqualTo, lessThan, lessThan, lessThan, lessThan, lessThan, lessThanOrEqualTo, lessThanOrEqualTo, lessThanOrEqualTo, lessThanOrEqualTo, lessThanOrEqualTo, multiply, subtractMethods declared in interface javafx.beans.ObservableaddListener, removeListenerMethods declared in interface javafx.beans.value.ObservableFloatValuegetMethods declared in interface javafx.beans.value.ObservableNumberValuedoubleValue, floatValue, intValue, longValueMethods declared in interface javafx.beans.value.ObservableValueaddListener, getValue, removeListenerMethods declared in interface javafx.beans.property.Propertybind, bindBidirectional, isBound, unbind, unbindBidirectionalMethods declared in interface javafx.beans.property.ReadOnlyPropertygetBean, getNameMethods declared in interface javafx.css.StyleablePropertyapplyStyle, getCssMetaData, getStyleOriginMethods declared in interface javafx.beans.value.WritableFloatValueget, set, setValueMethods declared in interface javafx.beans.value.WritableValuegetValue
- 
Constructor Details- 
SimpleStyleableFloatPropertyThe constructor of theSimpleStyleableFloatProperty.- Parameters:
- cssMetaData- the CssMetaData associated with this- StyleableProperty
 
- 
SimpleStyleableFloatPropertypublic SimpleStyleableFloatProperty(CssMetaData<? extends Styleable,Number> cssMetaData, Float initialValue)The constructor of theSimpleStyleableFloatProperty.- Parameters:
- cssMetaData- the CssMetaData associated with this- StyleableProperty
- initialValue- the initial value of the wrapped- Object
 
- 
SimpleStyleableFloatPropertypublic SimpleStyleableFloatProperty(CssMetaData<? extends Styleable,Number> cssMetaData, Object bean, String name)The constructor of theSimpleStyleableFloatProperty.- Parameters:
- cssMetaData- the CssMetaData associated with this- StyleableProperty
- bean- the bean of this- FloatProperty
- name- the name of this- FloatProperty
 
- 
SimpleStyleableFloatPropertypublic SimpleStyleableFloatProperty(CssMetaData<? extends Styleable,Number> cssMetaData, Object bean, String name, Float initialValue)The constructor of theSimpleStyleableFloatProperty.- Parameters:
- cssMetaData- the CssMetaData associated with this- StyleableProperty
- bean- the bean of this- FloatProperty
- name- the name of this- FloatProperty
- initialValue- the initial value of the wrapped- Object
 
 
-