BeanIncludes

Contains implicit methods to convert from `javafx.beans` Classes to their ScalaFX counterparts.

Contains implicit methods to convert from `javafx.beans` Classes to their ScalaFX counterparts.

Companion
object
trait Bindings
class Object
trait Matchable
class Any
trait Includes
object Includes

Value members

Inherited methods

def add(v1: ObservableNumberValue, values: ObservableNumberValue*): ObservableNumberValue

Returns the sum of a collection of JavaFX `ObservableNumberValue`s.

Returns the sum of a collection of JavaFX `ObservableNumberValue`s.

Value Params
v1

First Value

values

Collection of values

Returns

The Value sum.

Inherited from
Bindings
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.

Value Params
dependencies

The dependencies of this binding

func

The function that calculates the value of this binding

Returns

The generated binding

Inherited from
Bindings
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.

Value Params
dependencies

The dependencies of this binding

func

The function that calculates the value of this binding

Returns

The generated binding

Inherited from
Bindings
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.

Value Params
dependencies

The dependencies of this binding

func

The function that calculates the value of this binding

Returns

The generated binding

Inherited from
Bindings
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.

Value Params
dependencies

The dependencies of this binding

func

The function that calculates the value of this binding

Returns

The generated binding

Inherited from
Bindings
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.

Value Params
dependencies

The dependencies of this binding

func

The function that calculates the value of this binding

Returns

The generated binding

Inherited from
Bindings
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.

Value Params
dependencies

The dependencies of this binding

func

The function that calculates the value of this binding

Returns

The generated binding

Inherited from
Bindings
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.

Value Params
dependencies

The dependencies of this binding

func

The function that calculates the value of this binding

Returns

The generated binding

Inherited from
Bindings
def max(v1: ObservableNumberValue, values: ObservableNumberValue*): ObservableNumberValue

Returns the Lowest value among a collection of JavaFX `ObservableNumberValue`s.

Returns the Lowest value among a collection of JavaFX `ObservableNumberValue`s.

Value Params
v1

First Value

values

Collection of values

Returns

The Lowest Value

Inherited from
Bindings
def min(v1: ObservableNumberValue, values: ObservableNumberValue*): ObservableNumberValue

Returns the highest value among a collection of JavaFX `ObservableNumberValue`s.

Returns the highest value among a collection of JavaFX `ObservableNumberValue`s.

Value Params
v1

First Value

values

Collection of values

Returns

The highest Value

Inherited from
Bindings
def when(condition: => ObservableBooleanValue): ConditionBuilder
Value Params
condition

Function that returns a JavaFX `ObservableBooleanValue`

Returns

A ConditionBuilder wrapping condition.

Inherited from
Bindings

Implicits

Inherited implicits

implicit def closure2ChangedListener[P, R](cl: (ObservableValue[_ <: P], P, P) => R): ChangeListener[P]

Converts a closure to a JavaFX ChangeListener.

Converts a closure to a JavaFX ChangeListener.

Type Params
P

Change listener type.

R

closure can have arbitrary return type to make usage easier (last statement in the closure does not have to return Unit). Return value is ignored in generated listener.

Value Params
cl

Closure to be converted.

Returns

a new JavaFX ChangeListener.

Inherited from
BindingIncludes
implicit def closure2InvalidationListener[R](il: Observable => R): InvalidationListener

Converts a closure to a JavaFX InvalidationListener.

Converts a closure to a JavaFX InvalidationListener.

Type Params
R

closure can have arbitrary return type to make usage easier (last statement in the closure does not have to return Unit). Return value is ignored in generated listener.

Value Params
il

Closure to be converted.

Returns

a new JavaFX InvalidationListener.

Inherited from
BindingIncludes
implicit def closureSFX2InvalidationListener[R](il: Observable => R): InvalidationListener

Converts a closure to a JavaFX InvalidationListener.

Converts a closure to a JavaFX InvalidationListener.

Type Params
R

closure can have arbitrary return type to make usage easier (last statement in the closure does not have to return Unit). Return value is ignored in generated listener.

Value Params
il

Closure to be converted.

Returns

a new JavaFX InvalidationListener.

Inherited from
BindingIncludes
implicit def double2DoubleBinding(i: Double): DoubleBinding

Converts a Double to a JavaFX DoubleBinding

Converts a Double to a JavaFX DoubleBinding

Value Params
i

Double to generate a new DoubleBinding

Returns

a new DoubleBinding generated from the Double.

Inherited from
BindingIncludes

Converts a Double to a VariablePrecisionNumber.

Converts a Double to a VariablePrecisionNumber.

Value Params
d

A Double

Returns

a VariablePrecisionNumber

Inherited from
BindingIncludes
implicit def float2FloatBinding(i: Float): FloatBinding

Converts a Float to a JavaFX FloatBinding

Converts a Float to a JavaFX FloatBinding

Value Params
i

Float to generate a new FloatBinding

Returns

a new FloatBinding generated from the Float.

Inherited from
BindingIncludes
implicit def integer2IntegerBinding(i: Int): IntegerBinding

Converts a Integer to a JavaFX IntegerBinding

Converts a Integer to a JavaFX IntegerBinding

Value Params
i

Integer to generate a new IntegerBinding

Returns

a new IntegerBinding generated from the Integer.

Inherited from
BindingIncludes
implicit def jfxBooleanBinding2sfx(bb: BooleanBinding): BooleanBinding

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/BooleanBinding.html BooleanBinding]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/BooleanBinding.html BooleanBinding]] instance to its ScalaFX counterpart.

Value Params
bb

JavaFX BooleanBinding

Returns

ScalaFX BooleanBinding

Inherited from
BindingIncludes
implicit def jfxBooleanExpression2sfx(be: BooleanExpression): BooleanExpression

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/BooleanExpression.html BooleanExpression]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/BooleanExpression.html BooleanExpression]] instance to its ScalaFX counterpart.

Value Params
be

JavaFX BooleanExpression

Returns

ScalaFX BooleanExpression

Inherited from
BindingIncludes
implicit def jfxBooleanProperty2sfx(p: BooleanProperty): BooleanProperty

Converts a `javafx.beans.property.BooleanProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.BooleanProperty` instance to its ScalaFX counterpart.

Value Params
p

JavaFX BooleanProperty

Returns

ScalaFX BooleanProperty

Inherited from
PropertyIncludes
implicit def jfxDoubleProperty2sfx(p: DoubleProperty): DoubleProperty

Converts a `javafx.beans.property.BooleanProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.BooleanProperty` instance to its ScalaFX counterpart.

Value Params
p

JavaFX BooleanProperty

Returns

ScalaFX BooleanProperty

Inherited from
PropertyIncludes
implicit def jfxFloatProperty2sfx(p: FloatProperty): FloatProperty

Converts a `javafx.beans.property.BooleanProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.BooleanProperty` instance to its ScalaFX counterpart.

Value Params
p

JavaFX BooleanProperty

Returns

ScalaFX BooleanProperty

Inherited from
PropertyIncludes
implicit def jfxIntegerProperty2sfx(p: IntegerProperty): IntegerProperty

Converts a `javafx.beans.property.BooleanProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.BooleanProperty` instance to its ScalaFX counterpart.

Value Params
p

JavaFX BooleanProperty

Returns

ScalaFX BooleanProperty

Inherited from
PropertyIncludes
implicit def jfxListBinding2sfx[E](v: ListBinding[E]): BufferBinding[E]
Inherited from
BindingIncludes
implicit def jfxListExpression2sfx[E](v: ListExpression[E]): BufferExpression[E]
Inherited from
BindingIncludes
implicit def jfxListProperty2sfx[E](p: ListProperty[E]): BufferProperty[E]
Inherited from
PropertyIncludes
implicit def jfxLongProperty2sfx(p: LongProperty): LongProperty

Converts a `javafx.beans.property.LongProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.LongProperty` instance to its ScalaFX counterpart.

Value Params
p

JavaFX LongProperty

Returns

ScalaFX LongProperty

Inherited from
PropertyIncludes
implicit def jfxMapBinding2sfx[K, V](v: MapBinding[K, V]): MapBinding[K, V]
Inherited from
BindingIncludes
implicit def jfxMapExpression2sfx[K, V](v: MapExpression[K, V]): MapExpression[K, V]
Inherited from
BindingIncludes
implicit def jfxMapProperty2sfx[K, V](p: MapProperty[K, V]): MapProperty[K, V]
Inherited from
PropertyIncludes
implicit def jfxNumberBinding2sfx(nb: NumberBinding): NumberBinding

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/NumberBinding.html NumberBinding]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/NumberBinding.html NumberBinding]] instance to its ScalaFX counterpart.

Value Params
nb

JavaFX NumberBinding

Returns

ScalaFX NumberBinding

Inherited from
BindingIncludes
implicit def jfxNumberExpression2sfx(ne: NumberExpression): NumberExpression

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/NumberExpression.html NumberExpression]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/NumberExpression.html NumberExpression]] instance to its ScalaFX counterpart.

Value Params
ne

JavaFX NumberExpression

Returns

ScalaFX NumberExpression

Inherited from
BindingIncludes
implicit def jfxObjectBinding2sfx[T](ob: ObjectBinding[T]): ObjectBinding[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/ObjectBinding.html ObjectBinding]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/ObjectBinding.html ObjectBinding]] instance to its ScalaFX counterpart.

Type Params
T

ObjectBinding Type

Value Params
ob

JavaFX ObjectBinding

Returns

ScalaFX ObjectBinding

Inherited from
BindingIncludes
implicit def jfxObjectExpression2sfx[T](oe: ObjectExpression[T]): ObjectExpression[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/ObjectExpression.html ObjectExpression]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/ObjectExpression.html ObjectExpression]] instance to its ScalaFX counterpart.

Type Params
T

ObjectExpression Type

Value Params
oe

JavaFX ObjectExpression

Returns

ScalaFX ObjectExpression

Inherited from
BindingIncludes
implicit def jfxObjectProperty2sfx[T](p: ObjectProperty[T]): ObjectProperty[T]

Converts a `javafx.beans.property.ObjectProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ObjectProperty` instance to its ScalaFX counterpart.

Type Params
T

ObjectProperty Type

Value Params
p

JavaFX ObjectProperty

Returns

ScalaFX ObjectProperty

Inherited from
PropertyIncludes
implicit def jfxObservable2sfx(o: Observable): Observable

Converts a `javafx.beans.Observable` instance to its ScalaFX counterpart.

Converts a `javafx.beans.Observable` instance to its ScalaFX counterpart.

Value Params
o

JavaFX Observable

Returns

ScalaFX Observable

Inherited from
LowerPriorityIncludes
implicit def jfxObservableValue2sfx[T](o: ObservableValue[T]): ObservableValue[T, T]

Converts a `javafx.beans.value.ObservableValue` instance to its ScalaFX counterpart ''which Java Type and Scala Type are the same''.

Converts a `javafx.beans.value.ObservableValue` instance to its ScalaFX counterpart ''which Java Type and Scala Type are the same''.

Value Params
o

JavaFX ObservableValue

Returns

ScalaFX ObservableValue ''which Java Type and Scala Type are the same''.

Inherited from
LowerPriorityIncludes
implicit def jfxProperty2sfx[T <: AnyRef](p: Property[T]): Property[T, T]
Inherited from
LowerPriorityIncludes
implicit def jfxReadOnlyBooleanProperty2sfx(p: ReadOnlyBooleanProperty): ReadOnlyBooleanProperty

Converts a `javafx.beans.property.ReadOnlyBooleanProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyBooleanProperty` instance to its ScalaFX counterpart.

Value Params
p

JavaFX ReadOnlyBooleanProperty

Returns

ScalaFX ReadOnlyBooleanProperty

Inherited from
PropertyIncludes
implicit def jfxReadOnlyBooleanWrapper2sfx(p: ReadOnlyBooleanWrapper): ReadOnlyBooleanWrapper

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Value Params
p

JavaFX ReadOnlyStringWrapper

Returns

ScalaFX ReadOnlyStringWrapper

Inherited from
PropertyIncludes
implicit def jfxReadOnlyDoubleProperty2sfx(p: ReadOnlyDoubleProperty): ReadOnlyDoubleProperty

Converts a `javafx.beans.property.ReadOnlyDoubleProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyDoubleProperty` instance to its ScalaFX counterpart.

Value Params
p

JavaFX ReadOnlyDoubleProperty

Returns

ScalaFX ReadOnlyDoubleProperty

Inherited from
PropertyIncludes
implicit def jfxReadOnlyDoubleWrapper2sfx(p: ReadOnlyDoubleWrapper): ReadOnlyDoubleWrapper

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Value Params
p

JavaFX ReadOnlyStringWrapper

Returns

ScalaFX ReadOnlyStringWrapper

Inherited from
PropertyIncludes
implicit def jfxReadOnlyFloatProperty2sfx(p: ReadOnlyFloatProperty): ReadOnlyFloatProperty

Converts a `javafx.beans.property.ReadOnlyFloatProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyFloatProperty` instance to its ScalaFX counterpart.

Value Params
p

JavaFX ReadOnlyFloatProperty

Returns

ScalaFX ReadOnlyFloatProperty

Inherited from
PropertyIncludes
implicit def jfxReadOnlyFloatWrapper2sfx(p: ReadOnlyFloatWrapper): ReadOnlyFloatWrapper

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Value Params
p

JavaFX ReadOnlyStringWrapper

Returns

ScalaFX ReadOnlyStringWrapper

Inherited from
PropertyIncludes
implicit def jfxReadOnlyIntegerProperty2sfx(p: ReadOnlyIntegerProperty): ReadOnlyIntegerProperty

Converts a `javafx.beans.property.ReadOnlyIntegerProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyIntegerProperty` instance to its ScalaFX counterpart.

Value Params
p

JavaFX ReadOnlyIntegerProperty

Returns

ScalaFX ReadOnlyIntegerProperty

Inherited from
PropertyIncludes
implicit def jfxReadOnlyIntegerWrapper2sfx(p: ReadOnlyIntegerWrapper): ReadOnlyIntegerWrapper

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Value Params
p

JavaFX ReadOnlyStringWrapper

Returns

ScalaFX ReadOnlyStringWrapper

Inherited from
PropertyIncludes
implicit def jfxReadOnlyListProperty2sfx[E](p: ReadOnlyListProperty[E]): ReadOnlyBufferProperty[E]
Inherited from
PropertyIncludes
implicit def jfxReadOnlyListWrapper2sfx[E](p: ReadOnlyListWrapper[E]): ReadOnlyBufferWrapper[E]
Inherited from
PropertyIncludes
implicit def jfxReadOnlyLongProperty2sfx(p: ReadOnlyLongProperty): ReadOnlyLongProperty

Converts a `javafx.beans.property.ReadOnlyLongProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyLongProperty` instance to its ScalaFX counterpart.

Value Params
p

JavaFX ReadOnlyLongProperty

Returns

ScalaFX ReadOnlyLongProperty

Inherited from
PropertyIncludes
implicit def jfxReadOnlyLongWrapper2sfx(p: ReadOnlyLongWrapper): ReadOnlyLongWrapper

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Value Params
p

JavaFX ReadOnlyStringWrapper

Returns

ScalaFX ReadOnlyStringWrapper

Inherited from
PropertyIncludes
implicit def jfxReadOnlyMapProperty2sfx[K, V](p: ReadOnlyMapProperty[K, V]): ReadOnlyMapProperty[K, V]
Inherited from
PropertyIncludes
implicit def jfxReadOnlyMapWrapper2sfx[K, V](p: ReadOnlyMapWrapper[K, V]): ReadOnlyMapWrapper[K, V]
Inherited from
PropertyIncludes
implicit def jfxReadOnlyObjectProperty2sfx[T](p: ReadOnlyObjectProperty[T]): ReadOnlyObjectProperty[T]

Converts a `javafx.beans.property.ReadOnlyObjectProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyObjectProperty` instance to its ScalaFX counterpart.

Value Params
p

JavaFX ReadOnlyObjectProperty

Returns

ScalaFX ReadOnlyObjectProperty

Inherited from
PropertyIncludes
implicit def jfxReadOnlyObjectWrapper2sfx[T](p: ReadOnlyObjectWrapper[T]): ReadOnlyObjectWrapper[T]

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Value Params
p

JavaFX ReadOnlyStringWrapper

Returns

ScalaFX ReadOnlyObjectWrapper

Inherited from
PropertyIncludes
implicit def jfxReadOnlySetProperty2sfx[E](p: ReadOnlySetProperty[E]): ReadOnlySetProperty[E]
Inherited from
PropertyIncludes
implicit def jfxReadOnlySetWrapper2sfx[E](p: ReadOnlySetWrapper[E]): ReadOnlySetWrapper[E]
Inherited from
PropertyIncludes
implicit def jfxReadOnlyStringProperty2sfx(p: ReadOnlyStringProperty): ReadOnlyStringProperty

Converts a `javafx.beans.property.ReadOnlyStringProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyStringProperty` instance to its ScalaFX counterpart.

Value Params
p

JavaFX ReadOnlyStringProperty

Returns

ScalaFX ReadOnlyStringProperty

Inherited from
PropertyIncludes
implicit def jfxReadOnlyStringWrapper2sfx(p: ReadOnlyStringWrapper): ReadOnlyStringWrapper

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Value Params
p

JavaFX ReadOnlyStringWrapper

Returns

ScalaFX ReadOnlyStringWrapper

Inherited from
PropertyIncludes
implicit def jfxSetBinding2sfx[E](v: SetBinding[E]): SetBinding[E]
Inherited from
BindingIncludes
implicit def jfxSetExpression2sfx[E](v: SetExpression[E]): SetExpression[E]
Inherited from
BindingIncludes
implicit def jfxSetProperty2sfx[E](p: SetProperty[E]): SetProperty[E]
Inherited from
PropertyIncludes
implicit def jfxStringBinding2sfx(sb: StringBinding): StringBinding

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/StringBinding.html StringBinding]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/StringBinding.html StringBinding]] instance to its ScalaFX counterpart.

Value Params
sb

JavaFX StringBinding

Returns

ScalaFX StringBinding

Inherited from
BindingIncludes
implicit def jfxStringExpression2sfx(se: StringExpression): StringExpression

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/StringExpression.html StringExpression]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/StringExpression.html StringExpression]] instance to its ScalaFX counterpart.

Value Params
se

JavaFX StringExpression

Returns

ScalaFX StringExpression

Inherited from
BindingIncludes
implicit def jfxStringProperty2sfx(p: StringProperty): StringProperty

Converts a `javafx.beans.property.StringProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.StringProperty` instance to its ScalaFX counterpart.

Value Params
p

JavaFX StringProperty

Returns

ScalaFX StringProperty

Inherited from
PropertyIncludes
implicit def long2LongBinding(i: Long): LongBinding

Converts a Long to a JavaFX LongBinding

Converts a Long to a JavaFX LongBinding

Value Params
i

Long to generate a new LongBinding

Returns

a new LongBinding generated from the Long.

Inherited from
BindingIncludes