scalafx.beans.binding

MapBinding

class MapBinding[K, V] extends MapExpression[K, V] with ObservableValue[ObservableMap[K, V], ObservableMap[K, V]]

Wraps a JavaFX MapBinding.

Source
MapBinding.scala
Linear Supertypes
ObservableValue[ObservableMap[K, V], ObservableMap[K, V]], Observable, SFXDelegate[ObservableValue[ObservableMap[K, V]]], MapExpression[K, V], AnyRef, Any
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. MapBinding
  2. ObservableValue
  3. Observable
  4. SFXDelegate
  5. MapExpression
  6. AnyRef
  7. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new MapBinding(delegate: javafx.beans.binding.MapBinding[K, V])

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def ++=(m: Map[K, V]): Unit

    Definition Classes
    MapExpression
  5. def +=(kv: (K, V)): V

    Definition Classes
    MapExpression
  6. def -=(key: Any): V

    Definition Classes
    MapExpression
  7. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  8. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  9. def apply(): ObservableMap[K, V]

    Returns ObservableValue

    Returns ObservableValue

    returns

    ObservableValue

    Definition Classes
    ObservableValue
  10. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  11. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  12. val delegate: javafx.beans.binding.MapBinding[K, V]

    JavaFX object to be wrapped.

    JavaFX object to be wrapped.

    Definition Classes
    MapBindingSFXDelegateMapExpression
  13. def empty: ReadOnlyBooleanProperty

    A boolean property that is true, if the the map is empty.

    A boolean property that is true, if the the map is empty.

    Definition Classes
    MapExpression
  14. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  15. def equals(ref: Any): Boolean

    Verifies if a object is equals to this delegate.

    Verifies if a object is equals to this delegate.

    ref

    Object to be compared.

    returns

    if the other object is equals to this delegate or not.

    Definition Classes
    SFXDelegate → AnyRef → Any
  16. def get(key: K): Option[V]

    Optionally returns the value associated with a key.

    Optionally returns the value associated with a key.

    key

    the key value

    returns

    an option value containing the value associated with key in this $MAP, or None if none exists.

    Definition Classes
    MapExpression
  17. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  18. def hashCode(): Int

    returns

    The delegate hashcode

    Definition Classes
    SFXDelegate → AnyRef → Any
  19. def isEqualTo(other: ObservableMap[_, _]): BooleanBinding

    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.

    other

    the other ObservableMap

    returns

    the new BooleanBinding

    Definition Classes
    MapExpression
  20. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  21. def isNotEqualTo(other: ObservableMap[_, _]): BooleanBinding

    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.

    other

    the other ObservableMap

    returns

    the new BooleanBinding

    Definition Classes
    MapExpression
  22. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  23. final def notify(): Unit

    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  24. final def notifyAll(): Unit

    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  25. def onChange[J1 >: ObservableMap[K, V]](op: ⇒ Unit): Subscription

    Adds a function as a ChangeListener.

    Adds a function as a ChangeListener. This function has no arguments because it will not handle values changed.

    op

    A Function with no arguments. It will be called when value changes.

    returns

    A new scalafx.event.subscriptions.Subscription to remove ObservableValue.

    Definition Classes
    ObservableValue
  26. def onChange[J1 >: ObservableMap[K, V]](op: (ObservableValue[ObservableMap[K, V], ObservableMap[K, V]], J1, J1) ⇒ Unit): Subscription

    Adds a function as a ChangeListener.

    Adds a function as a ChangeListener. This function has all arguments from T, T) changed method from ChangeListener.

    J1

    J superclass.

    op

    Function that receives a ObservableValue, the old value and the new value. It will be called when value changes.

    returns

    A new scalafx.event.subscriptions.Subscription to remove ObservableValue.

    Definition Classes
    ObservableValue
  27. def onInvalidate(op: ⇒ Unit): Subscription

    Adds a no argument function as a JavaFX InvalidationListener.

    Adds a no argument function as a JavaFX InvalidationListener. This function has no arguments because it will not handle invalidated values.

    op

    A Function with no arguments. It will be called when value was invalidated.

    returns

    A new scalafx.event.subscriptions.Subscription to remove ObservableValue.

    Definition Classes
    Observable
  28. def onInvalidate(op: (Observable) ⇒ Unit): Subscription

    Adds a function as a JavaFX InvalidationListener.

    Adds a function as a JavaFX InvalidationListener. This function has all arguments from invalidated method from InvalidationListener.

    op

    Function that receives a ScalaFX Observable. It will be called when value was invalidated.

    returns

    A new scalafx.event.subscriptions.Subscription to remove ObservableValue.

    Definition Classes
    Observable
  29. def size: ReadOnlyIntegerProperty

    An integer property that represents the size of the map.

    An integer property that represents the size of the map.

    Definition Classes
    MapExpression
  30. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  31. def toString(): String

    returns

    Returns the original delegate's toString() adding a [SFX] prefix.

    Definition Classes
    SFXDelegate → AnyRef → Any
  32. def value: ObservableMap[K, V]

    Returns ObservableValue

    Returns ObservableValue

    returns

    ObservableValue

    Definition Classes
    MapBindingObservableValue
  33. def values(): Iterable[V]

    Definition Classes
    MapExpression
  34. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from ObservableValue[ObservableMap[K, V], ObservableMap[K, V]]

Inherited from Observable

Inherited from SFXDelegate[ObservableValue[ObservableMap[K, V]]]

Inherited from MapExpression[K, V]

Inherited from AnyRef

Inherited from Any

Ungrouped