Spec-Zone .ru
спецификации, руководства, описания, API
|
Package | Description |
---|---|
javafx.beans.binding |
Characteristics of Bindings
|
Modifier and Type | Method and Description |
---|---|
IntegerBinding |
IntegerExpression.add(int other) |
static IntegerBinding |
Bindings.createIntegerBinding(java.util.concurrent.Callable<java.lang.Integer> func,
Observable... dependencies)
Helper function to create a custom
IntegerBinding . |
IntegerBinding |
IntegerExpression.divide(int other) |
static IntegerBinding |
Bindings.integerValueAt(ObservableList<? extends java.lang.Number> op,
int index)
Creates a new
IntegerBinding that contains the element
of an ObservableList at the specified position. |
static IntegerBinding |
Bindings.integerValueAt(ObservableList<? extends java.lang.Number> op,
ObservableIntegerValue index)
Creates a new
IntegerBinding that contains the element
of an ObservableList at the specified position. |
static <K> IntegerBinding |
Bindings.integerValueAt(ObservableMap<K,? extends java.lang.Number> op,
K key)
Creates a new
IntegerBinding that contains the mapping of a specific key
in an ObservableMap . |
static <K> IntegerBinding |
Bindings.integerValueAt(ObservableMap<K,? extends java.lang.Number> op,
ObservableValue<? extends K> key)
Creates a new
IntegerBinding that contains the mapping of a specific key
in an ObservableMap . |
IntegerBinding |
IntegerExpression.multiply(int other) |
IntegerBinding |
IntegerExpression.negate() |
static IntegerBinding |
Bindings.selectInteger(ObservableValue<?> root,
java.lang.String... steps)
Creates a binding used to get a member, such as
a.b.c . |
static <E> IntegerBinding |
Bindings.size(ObservableList<E> op)
Creates a new
IntegerBinding that contains the size
of an ObservableList . |
static <K,V> IntegerBinding |
Bindings.size(ObservableMap<K,V> op)
Creates a new
IntegerBinding that contains the size
of an ObservableMap . |
static <E> IntegerBinding |
Bindings.size(ObservableSet<E> op)
Creates a new
IntegerBinding that contains the size
of an ObservableSet . |
IntegerBinding |
IntegerExpression.subtract(int other) |
Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to