Top Description Interfaces Classes
module javafx.base

Package javafx.beans.property


The package javafx.beans.property defines read-only properties and writable properties, plus a number of implementations.

Read-only Properties

Read-only properties have two getters, get() returns the primitive value, getValue() returns the boxed value.

It is possible to observe read-only properties for changes. They define methods to add and remove InvalidationListeners and ChangeListeners.

To get the context of a read-only property, two methods getBean() and getName() are defined. They return the containing bean and the name of a property.

Writable Properties

In addition to the functionality defined for read-only properties, writable properties contain the following methods.

A writable property defines two setters in addition to the getters defined for read-only properties. The setter set() takes a primitive value, the second setter setValue() takes the boxed value.

All properties can be bound to ObservableValues of the same type, which means that the property will always contain the same value as the bound ObservableValue. It is also possible to define a bidirectional binding between two properties, so that both properties always contain the same value. If one of the properties changes, the other one will be updated.

Interface Summary

Modifier and TypeInterface and Description
public interface
Property<
the type of the wrapped value
T
>

Generic interface that defines the methods common to all (writable) properties, independent of their type.

public interface
ReadOnlyProperty<
the type of the wrapped value
T
>

Generic interface that defines the methods common to all readable properties independent of their type.

Class Summary

Modifier and TypeClass and Description
public abstract class
BooleanProperty

This class provides a full implementation of a Property wrapping a boolean value.

public abstract class
BooleanPropertyBase

The class BooleanPropertyBase is the base class for a property wrapping a boolean value.

public abstract class
DoubleProperty

This class defines a Property wrapping a double value.

public abstract class
DoublePropertyBase

The class DoublePropertyBase is the base class for a property wrapping a double value.

public abstract class
FloatProperty

This class defines a Property wrapping a float value.

public abstract class
FloatPropertyBase

The class FloatPropertyBase is the base class for a property wrapping a float value.

public abstract class
IntegerProperty

This class defines a Property wrapping an int value.

public abstract class
IntegerPropertyBase

The class IntegerPropertyBase is the base class for a property wrapping a int value.

public abstract class
ListProperty<
the type of the List elements
E
>

This class provides a full implementation of a Property wrapping an javafx.collections.ObservableList.

public abstract class
ListPropertyBase<
the type of the List elements
E
>

The class ListPropertyBase is the base class for a property wrapping an javafx.collections.ObservableList.

public abstract class
LongProperty

This class defines a Property wrapping a long value.

public abstract class
LongPropertyBase

The class LongPropertyBase is the base class for a property wrapping a long value.

public abstract class
MapProperty<
the type of the key elements of the Map
K
,
the type of the value elements of the Map
V
>

This class provides a full implementation of a Property wrapping an javafx.collections.ObservableMap.

public abstract class
MapPropertyBase<
the type of the key elements of the Map
K
,
the type of the value elements of the Map
V
>

The class MapPropertyBase is the base class for a property wrapping an javafx.collections.ObservableMap.

public abstract class
ObjectProperty<
the type of the wrapped Object
T
>

This class provides a full implementation of a Property wrapping an arbitrary Object.

public abstract class
ObjectPropertyBase<
the type of the wrapped value
T
>

The class ObjectPropertyBase is the base class for a property wrapping an arbitrary Object.

public abstract class
ReadOnlyBooleanProperty

Superclass for all readonly properties wrapping a boolean.

public abstract class
ReadOnlyBooleanPropertyBase

Base class for all readonly properties wrapping a boolean.

public class
ReadOnlyBooleanWrapper

This class provides a convenient class to define read-only properties.

public abstract class
ReadOnlyDoubleProperty

Superclass for all readonly properties wrapping a double.

public abstract class
ReadOnlyDoublePropertyBase

Base class for all readonly properties wrapping a double.

public class
ReadOnlyDoubleWrapper

This class provides a convenient class to define read-only properties.

public abstract class
ReadOnlyFloatProperty

Superclass for all readonly properties wrapping a float.

public abstract class
ReadOnlyFloatPropertyBase

Base class for all readonly properties wrapping a float.

public class
ReadOnlyFloatWrapper

This class provides a convenient class to define read-only properties.

public abstract class
ReadOnlyIntegerProperty

Superclass for all readonly properties wrapping an int.

public abstract class
ReadOnlyIntegerPropertyBase

Base class for all readonly properties wrapping an int.

public class
ReadOnlyIntegerWrapper

This class provides a convenient class to define read-only properties.

public abstract class
ReadOnlyListProperty<
the type of the List elements
E
>

Superclass for all readonly properties wrapping an javafx.collections.ObservableList.

public abstract class
ReadOnlyListPropertyBase<
the list element type
E
>

Base class for all readonly properties wrapping an javafx.collections.ObservableList.

public class
ReadOnlyListWrapper<
the list element type
E
>

This class provides a convenient class to define read-only properties.

public abstract class
ReadOnlyLongProperty

Superclass for all readonly properties wrapping a long.

public abstract class
ReadOnlyLongPropertyBase

Base class for all readonly properties wrapping a long.

public class
ReadOnlyLongWrapper

This class provides a convenient class to define read-only properties.

public abstract class
ReadOnlyMapProperty<
the type of the key elements of the map
K
,
the type of the value elements of the map
V
>

Superclass for all readonly properties wrapping an javafx.collections.ObservableMap.

public abstract class
ReadOnlyMapPropertyBase<
the map key type
K
,
the map value type
V
>

Base class for all readonly properties wrapping an javafx.collections.ObservableMap.

public class
ReadOnlyMapWrapper<
the map key type
K
,
the map value type
V
>

This class provides a convenient class to define read-only properties.

public abstract class
ReadOnlyObjectProperty<
the type of the wrapped Object
T
>

Superclass for all readonly properties wrapping an arbitrary Object.

public abstract class
ReadOnlyObjectPropertyBase<
the type of the wrapped Object
T
>

Base class for all readonly properties wrapping an arbitrary Object.

public class
ReadOnlyObjectWrapper<
the object type
T
>

This class provides a convenient class to define read-only properties.

public abstract class
ReadOnlySetProperty<
the type of the Set elements
E
>

Superclass for all readonly properties wrapping an javafx.collections.ObservableSet.

public abstract class
ReadOnlySetPropertyBase<
the type of the Set elements
E
>

Base class for all readonly properties wrapping an javafx.collections.ObservableSet.

public class
ReadOnlySetWrapper<
the set element type
E
>

This class provides a convenient class to define read-only properties.

public abstract class
ReadOnlyStringProperty

Superclass for all readonly properties wrapping an String.

public abstract class
ReadOnlyStringPropertyBase

Base class for all readonly properties wrapping a String.

public class
ReadOnlyStringWrapper

This class provides a convenient class to define read-only properties.

public abstract class
SetProperty<
the type of the Set elements
E
>

This class provides a full implementation of a Property wrapping an javafx.collections.ObservableSet.

public abstract class
SetPropertyBase<
the type of the Set elements
E
>

The class SetPropertyBase is the base class for a property wrapping an javafx.collections.ObservableSet.

public class
SimpleBooleanProperty

This class provides a full implementation of a Property wrapping a boolean value.

public class
SimpleDoubleProperty

This class provides a full implementation of a Property wrapping a double value.

public class
SimpleFloatProperty

This class provides a full implementation of a Property wrapping a float value.

public class
SimpleIntegerProperty

This class provides a full implementation of a Property wrapping a int value.

public class
SimpleListProperty<
the type of the List elements
E
>

This class provides a full implementation of a Property wrapping an ObservableList.

public class
SimpleLongProperty

This class provides a full implementation of a Property wrapping a long value.

public class
SimpleMapProperty<
the type of the key elements of the Map
K
,
the type of the value elements of the Map
V
>

This class provides a full implementation of a Property wrapping an ObservableMap.

public class
SimpleObjectProperty<
the type of the wrapped Object
T
>

This class provides a full implementation of a Property wrapping an arbitrary Object.

public class
SimpleSetProperty<
the type of the Set elements
E
>

This class provides a full implementation of a Property wrapping an ObservableSet.

public class
SimpleStringProperty

This class provides a full implementation of a Property wrapping a String value.

public abstract class
StringProperty

This class provides a full implementation of a Property wrapping a String value.

public abstract class
StringPropertyBase

The class StringPropertyBase is the base class for a property wrapping a String value.