scalafx.beans.binding

Bindings

trait Bindings extends AnyRef

Contains Methods for Bindings.

Source
Bindings.scala
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Bindings
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. class BooleanConditionBuilder extends AnyRef

    Attributes
    protected
  2. class ConditionBuilder extends AnyRef

    Attributes
    protected
  3. class NumberConditionBuilder extends AnyRef

    Attributes
    protected
  4. class ObjectConditionBuilder[T] extends AnyRef

    Attributes
    protected
  5. class StringConditionBuilder extends AnyRef

    Attributes
    protected

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. final def ==(arg0: AnyRef): Boolean

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

    Definition Classes
    Any
  6. def add(v1: ObservableNumberValue, values: ObservableNumberValue*): ObservableNumberValue

    Returns the sum of a collection of JavaFX ObservableNumberValues.

    Returns the sum of a collection of JavaFX ObservableNumberValues.

    v1

    First Value

    values

    Collection of values

    returns

    The Value sum.

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  9. def createBooleanBinding(func: () ⇒ Boolean, dependencies: Observable*): BooleanBinding

    Helper function to create a custom BooleanBinding.

    Helper function to create a custom BooleanBinding.

    Wraps a JavaFX Bindings.createBooleanBinding.

    func

    The function that calculates the value of this binding

    dependencies

    The dependencies of this binding

    returns

    The generated binding

  10. def createDoubleBinding(func: () ⇒ Double, dependencies: Observable*): DoubleBinding

    Helper function to create a custom DoubleBinding.

    Helper function to create a custom DoubleBinding.

    Wraps a JavaFX Bindings.createDoubleBinding.

    func

    The function that calculates the value of this binding

    dependencies

    The dependencies of this binding

    returns

    The generated binding

  11. def createFloatBinding(func: () ⇒ Float, dependencies: Observable*): FloatBinding

    Helper function to create a custom FloatBinding.

    Helper function to create a custom FloatBinding.

    Wraps a JavaFX Bindings.createFloatBinding.

    func

    The function that calculates the value of this binding

    dependencies

    The dependencies of this binding

    returns

    The generated binding

  12. def createIntegerBinding(func: () ⇒ Int, dependencies: Observable*): IntegerBinding

    Helper function to create a custom IntegerBinding.

    Helper function to create a custom IntegerBinding.

    Wraps a JavaFX Bindings.createIntegerBinding.

    func

    The function that calculates the value of this binding

    dependencies

    The dependencies of this binding

    returns

    The generated binding

  13. def createLongBinding(func: () ⇒ Long, dependencies: Observable*): LongBinding

    Helper function to create a custom LongBinding.

    Helper function to create a custom LongBinding.

    Wraps a JavaFX Bindings.createLongBinding.

    func

    The function that calculates the value of this binding

    dependencies

    The dependencies of this binding

    returns

    The generated binding

  14. def createObjectBinding[T](func: () ⇒ T, dependencies: Observable*): ObjectBinding[T]

    Helper function to create a custom ObjectBinding.

    Helper function to create a custom ObjectBinding.

    Wraps a JavaFX Bindings.createObjectBinding.

    func

    The function that calculates the value of this binding

    dependencies

    The dependencies of this binding

    returns

    The generated binding

  15. def createStringBinding(func: () ⇒ String, dependencies: Observable*): StringBinding

    Helper function to create a custom StringBinding.

    Helper function to create a custom StringBinding.

    Wraps a JavaFX Bindings.createStringBinding.

    func

    The function that calculates the value of this binding

    dependencies

    The dependencies of this binding

    returns

    The generated binding

  16. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  17. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  18. final def getClass(): Class[_]

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

    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  20. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  21. def max(v1: ObservableNumberValue, values: ObservableNumberValue*): ObservableNumberValue

    Returns the Lowest value among a collection of JavaFX ObservableNumberValues.

    Returns the Lowest value among a collection of JavaFX ObservableNumberValues.

    v1

    First Value

    values

    Collection of values

    returns

    The Lowest Value

  22. def min(v1: ObservableNumberValue, values: ObservableNumberValue*): ObservableNumberValue

    Returns the highest value among a collection of JavaFX ObservableNumberValues.

    Returns the highest value among a collection of JavaFX ObservableNumberValues.

    v1

    First Value

    values

    Collection of values

    returns

    The highest Value

  23. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  26. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  27. def toString(): String

    Definition Classes
    AnyRef → Any
  28. final def wait(arg0: Long, arg1: Int): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. def when(condition: ⇒ ObservableBooleanValue): ConditionBuilder

    condition

    Function that returns a JavaFX ObservableBooleanValue

    returns

    A ConditionBuilder wrapping condition.

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 AnyRef

Inherited from Any

Ungrouped