Trait/Object

scalafx.beans.binding

Bindings

Related Docs: object Bindings | package binding

Permalink

trait Bindings extends AnyRef

Contains Methods for Bindings.

Source
Bindings.scala
Linear Supertypes
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Bindings
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. class BooleanConditionBuilder extends AnyRef

    Permalink
    Attributes
    protected
  2. class ConditionBuilder extends AnyRef

    Permalink
    Attributes
    protected
  3. class NumberConditionBuilder extends AnyRef

    Permalink
    Attributes
    protected
  4. class ObjectConditionBuilder[T] extends AnyRef

    Permalink
    Attributes
    protected
  5. class StringConditionBuilder extends AnyRef

    Permalink
    Attributes
    protected

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def add(v1: ObservableNumberValue, values: ObservableNumberValue*): ObservableNumberValue

    Permalink

    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.

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

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

    Permalink

    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

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

    Permalink

    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

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

    Permalink

    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

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

    Permalink

    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

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

    Permalink

    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

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

    Permalink

    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

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

    Permalink

    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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  16. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  18. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  19. final def isInstanceOf[T0]: Boolean

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

    Permalink

    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

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

    Permalink

    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

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

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

    Permalink
    Definition Classes
    AnyRef
  24. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  25. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  26. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  27. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long, arg1: Int): Unit

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

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

    Permalink

    condition

    Function that returns a JavaFX ObservableBooleanValue

    returns

    A ConditionBuilder wrapping condition.

Inherited from AnyRef

Inherited from Any

Ungrouped