Wraps a JavaFX $URL0 MapBinding]].
Attributes
- Companion
- object
- Graph
-
- Supertypes
Members list
Value members
Concrete methods
Returns ObservableValue
Inherited methods
Attributes
- Inherited from:
- MapExpression
Attributes
- Inherited from:
- MapExpression
Attributes
- Inherited from:
- MapExpression
Returns ObservableValue
A boolean property that is true, if the the map is empty.
Verifies if a object is equals to this delegate.
Verifies if a object is equals to this delegate.
Value parameters
- ref
-
Object to be compared.
Attributes
- Returns
-
if the other object is equals to this delegate or not.
- Definition Classes
-
SFXDelegate -> Any
- Inherited from:
- SFXDelegate
Optionally returns the value associated with a key.
Optionally returns the value associated with a key.
Value parameters
- key
-
the key value
Attributes
- Returns
-
an option value containing the value associated with key in this $MAP, or None if none exists.
- Inherited from:
- MapExpression
Attributes
- Returns
-
The delegate hashcode
- Definition Classes
-
SFXDelegate -> Any
- Inherited from:
- SFXDelegate
Creates a new BooleanBinding that holds true if this map is equal to another ObservableMap.
Creates a new BooleanBinding that holds true if this map is equal to another ObservableMap.
Value parameters
- other
-
the other ObservableMap
Attributes
- Returns
-
the new BooleanBinding
- Inherited from:
- MapExpression
Creates a new BooleanBinding that holds true if this map is not equal to another ObservableMap.
Creates a new BooleanBinding that holds true if this map is not equal to another ObservableMap.
Value parameters
- other
-
the other ObservableMap
Attributes
- Returns
-
the new BooleanBinding
- Inherited from:
- MapExpression
Adds a function as a `ChangeListener`. This function has no arguments because it will not handle values changed.
Adds a function as a `ChangeListener`. This function has no arguments because it will not handle values changed.
Value parameters
- op
-
A Function with no arguments. It will be called when value changes.
Attributes
- Returns
-
A new scalafx.event.subscriptions.Subscription to remove
ObservableValue. - Inherited from:
- ObservableValue
Adds a function as a `ChangeListener`. This function has all arguments from T, T) `changed` method from ChangeListener.
Adds a function as a `ChangeListener`. This function has all arguments from T, T) `changed` method from ChangeListener.
Type parameters
- J1
-
J superclass.
Value parameters
- op
-
Function that receives a `ObservableValue`, the old value and the new value. It will be called when value changes.
Attributes
- Returns
-
A new scalafx.event.subscriptions.Subscription to remove
ObservableValue. - Inherited from:
- ObservableValue
Adds a no argument function as a JavaFX `InvalidationListener`. This function has no arguments because it will not handle invalidated values.
Adds a no argument function as a JavaFX `InvalidationListener`. This function has no arguments because it will not handle invalidated values.
Value parameters
- op
-
A Function with no arguments. It will be called when value was invalidated.
Attributes
- Returns
-
A new scalafx.event.subscriptions.Subscription to remove JavaFX
InvalidationListener. - Inherited from:
- Observable
Adds a function as a JavaFX `InvalidationListener`. This function has all arguments from `invalidated` method from InvalidationListener.
Adds a function as a JavaFX `InvalidationListener`. This function has all arguments from `invalidated` method from InvalidationListener.
Value parameters
- op
-
Function that receives a ScalaFX
Observable. It will be called when value was invalidated.
Attributes
- Returns
-
A new scalafx.event.subscriptions.Subscription to remove JavaFX
InvalidationListener. - Inherited from:
- Observable
An integer property that represents the size of the map.
Attributes
- Returns
-
Returns the original delegate's
toString()adding a[SFX]prefix. - Definition Classes
-
SFXDelegate -> Any
- Inherited from:
- SFXDelegate
Attributes
- Inherited from:
- MapExpression
Returns an ObservableValue that holds this value and is updated only when condition holds true.
Returns an ObservableValue that holds this value and is updated only when condition holds true.
The returned ObservableValue only observes this value when condition holds true. This allows this ObservableValue and the conditional ObservableValue to be garbage collected if neither is otherwise strongly referenced when condition holds false. This is in contrast to the general behavior of bindings, where the binding is only eligible for garbage collection when not observed itself.
A condition holding null is treated as holding false.
For example:
val condition = BooleanProperty(true)
val longLivedProperty = StringProperty("A")
val whenProperty = longLivedProperty.when(condition)
// observe whenProperty, which will in turn observe longLivedProperty
whenProperty.onChange((_, old, current) => println(s"whenProperty change : $old -> $current"));
longLivedProperty.value = "B" // "B" is printed
condition.value = false
// After condition becomes false, whenProperty stops observing longLivedProperty; condition
// and whenProperty may now be eligible for GC despite being observed by the ChangeListener
longLivedProperty.value = "C" // nothing is printed
longLivedProperty.value = "D" // nothing is printed
condition.value = true // longLivedProperty is observed again, and "D" is printed
Value parameters
- condition
-
a boolean
ObservableValue, cannot benull
Attributes
- Returns
-
an
ObservableValuethat holds this value whenever the given condition evaluates totrue, otherwise holds the last seen value; never returnsnull - Since
-
20
- Inherited from:
- ObservableValue
Concrete fields
JavaFX object to be wrapped.
JavaFX object to be wrapped.