Class DoubleProperty<K>
java.lang.Object
This is the double specific version of numeric property
-
Constructor Summary
ConstructorsConstructorDescriptionDoubleProperty(String name) Creates a double property with the given name.DoubleProperty(String name, Double value) Creates a double property with the given name and initial value. -
Method Summary
Modifier and TypeMethodDescriptiondoubleReturns the value as a primitive, if the value is null/nullable this will fail...Methods inherited from class NumericProperty
isNullable, set, setNullableMethods inherited from class PropertyBase
addChangeListener, bindGlobalGetListener, bindGlobalSetListener, firePropertyChanged, getClientProperty, getGenericType, getLabel, getName, putClientProperty, removeChangeListener, setLabel, stopListening, validateCollectionTypeMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Constructor Details
-
DoubleProperty
Creates a double property with the given name.
Parameters
name: the property name.
-
DoubleProperty
-
-
Method Details
-
getDouble
public double getDouble()Returns the value as a primitive, if the value is null/nullable this will fail...
Returns
the numeric value
-