Package | Description |
---|---|
com.sun.javafx.binding | |
javafx.beans.binding |
Characteristics of Bindings
|
Modifier and Type | Class and Description |
---|---|
static class |
SelectBinding.AsBoolean |
static class |
SelectBinding.AsDouble |
static class |
SelectBinding.AsFloat |
static class |
SelectBinding.AsInteger |
static class |
SelectBinding.AsLong |
static class |
SelectBinding.AsObject<T> |
static class |
SelectBinding.AsString |
class |
StringFormatter |
Modifier and Type | Field and Description |
---|---|
private Binding<?> |
SelectBinding.SelectBindingHelper.binding |
Modifier and Type | Field and Description |
---|---|
private java.lang.ref.WeakReference<Binding<?>> |
BindingHelperObserver.ref |
Constructor and Description |
---|
BindingHelperObserver(Binding<?> binding) |
SelectBindingHelper(Binding<?> binding,
java.lang.Object root,
java.lang.String... steps) |
SelectBindingHelper(Binding<?> binding,
ObservableValue<?> firstProperty,
java.lang.String... steps) |
Modifier and Type | Interface and Description |
---|---|
interface |
NumberBinding
A tagging interface to mark all Bindings that wrap a number-value.
|
Modifier and Type | Class and Description |
---|---|
private static class |
Bindings.BooleanAndBinding |
private static class |
Bindings.BooleanOrBinding |
class |
BooleanBinding
Base class that provides most of the functionality needed to implement a
Binding of a boolean value. |
class |
DoubleBinding
Base class that provides most of the functionality needed to implement a
Binding of a double value. |
class |
FloatBinding
Base class that provides most of the functionality needed to implement a
Binding of a float value. |
class |
IntegerBinding
Base class that provides most of the functionality needed to implement a
Binding of an int value. |
class |
ListBinding<E>
Base class that provides most of the functionality needed to implement a
Binding of an ObservableList . |
class |
LongBinding
Base class that provides most of the functionality needed to implement a
Binding of a long value. |
class |
MapBinding<K,V>
Base class that provides most of the functionality needed to implement a
Binding of an ObservableMap . |
class |
ObjectBinding<T>
Base class that provides most of the functionality needed to implement a
Binding of an Object . |
class |
SetBinding<E>
Base class that provides most of the functionality needed to implement a
Binding of an ObservableSet . |
class |
StringBinding
Base class that provides most of the functionality needed to implement a
Binding of a String . |
private class |
When.BooleanCondition
If-then-else expression returning Boolean.
|
private class |
When.ObjectCondition<T>
If-then-else expression returning general objects.
|
private class |
When.StringCondition
If-then-else expression returning String.
|
Modifier and Type | Field and Description |
---|---|
private java.lang.ref.WeakReference<Binding<?>> |
When.WhenListener.ref |
Constructor and Description |
---|
WhenListener(Binding<?> binding,
ObservableBooleanValue condition,
ObservableValue<?> thenValue,
ObservableValue<?> otherwiseValue) |