パッケージ | 説明 |
---|---|
javafx.beans.binding |
Bindingsの特性
|
修飾子と型 | メソッドと説明 |
---|---|
DoubleBinding |
DoubleExpression.add(double other) |
DoubleBinding |
FloatExpression.add(double other) |
DoubleBinding |
IntegerExpression.add(double other) |
DoubleBinding |
LongExpression.add(double other) |
static DoubleBinding |
Bindings.add(double op1, ObservableNumberValue op2)
ObservableNumberValue 値と定数値の合計を計算する新しいDoubleBinding を作成します。 |
DoubleBinding |
DoubleExpression.add(float other) |
DoubleBinding |
DoubleExpression.add(int other) |
DoubleBinding |
DoubleExpression.add(long other) |
DoubleBinding |
DoubleExpression.add(ObservableNumberValue other) |
static DoubleBinding |
Bindings.add(ObservableNumberValue op1, double op2)
ObservableNumberValue 値と定数値の合計を計算する新しいDoubleBinding を作成します。 |
static DoubleBinding |
Bindings.createDoubleBinding(Callable<Double> func, Observable... dependencies)
カスタム
DoubleBinding を作成するヘルパー関数。 |
DoubleBinding |
DoubleExpression.divide(double other) |
DoubleBinding |
FloatExpression.divide(double other) |
DoubleBinding |
IntegerExpression.divide(double other) |
DoubleBinding |
LongExpression.divide(double other) |
static DoubleBinding |
Bindings.divide(double op1, ObservableNumberValue op2)
定数値と
ObservableNumberValue の除算を計算する新しいDoubleBinding を作成します。 |
DoubleBinding |
DoubleExpression.divide(float other) |
DoubleBinding |
DoubleExpression.divide(int other) |
DoubleBinding |
DoubleExpression.divide(long other) |
DoubleBinding |
DoubleExpression.divide(ObservableNumberValue other) |
static DoubleBinding |
Bindings.divide(ObservableNumberValue op1, double op2)
ObservableNumberValue 値と定数値の除算を計算する新しいDoubleBinding を作成します。 |
static DoubleBinding |
Bindings.doubleValueAt(ObservableList<? extends Number> op, int index)
指定された位置の
ObservableList の要素を含む新しいDoubleBinding を作成します。 |
static DoubleBinding |
Bindings.doubleValueAt(ObservableList<? extends Number> op, ObservableIntegerValue index)
指定された位置の
ObservableList の要素を含む新しいDoubleBinding を作成します。 |
static DoubleBinding |
Bindings.doubleValueAt(ObservableList<? extends Number> op, ObservableNumberValue index)
指定された位置の
ObservableList の要素を含む新しいDoubleBinding を作成します。 |
static <K> DoubleBinding |
Bindings.doubleValueAt(ObservableMap<K,? extends Number> op, K key)
ObservableMap の特定のキーのマッピングを含む新しいDoubleBinding を作成します。 |
static <K> DoubleBinding |
Bindings.doubleValueAt(ObservableMap<K,? extends Number> op, ObservableValue<? extends K> key)
ObservableMap の特定のキーのマッピングを含む新しいDoubleBinding を作成します。 |
static DoubleBinding |
Bindings.max(double op1, ObservableNumberValue op2)
ObservableNumberValue の最大値と定数値を計算する新しいDoubleBinding を作成します。 |
static DoubleBinding |
Bindings.max(ObservableNumberValue op1, double op2)
ObservableNumberValue の最大値と定数値を計算する新しいDoubleBinding を作成します。 |
static DoubleBinding |
Bindings.min(double op1, ObservableNumberValue op2)
ObservableNumberValue の最小値と定数値を計算する新しいDoubleBinding を作成します。 |
static DoubleBinding |
Bindings.min(ObservableNumberValue op1, double op2)
ObservableNumberValue の最小値と定数値を計算する新しいDoubleBinding を作成します。 |
DoubleBinding |
DoubleExpression.multiply(double other) |
DoubleBinding |
FloatExpression.multiply(double other) |
DoubleBinding |
IntegerExpression.multiply(double other) |
DoubleBinding |
LongExpression.multiply(double other) |
static DoubleBinding |
Bindings.multiply(double op1, ObservableNumberValue op2)
ObservableNumberValue の値と定数値の積を計算する新しいDoubleBinding を作成します。 |
DoubleBinding |
DoubleExpression.multiply(float other) |
DoubleBinding |
DoubleExpression.multiply(int other) |
DoubleBinding |
DoubleExpression.multiply(long other) |
DoubleBinding |
DoubleExpression.multiply(ObservableNumberValue other) |
static DoubleBinding |
Bindings.multiply(ObservableNumberValue op1, double op2)
ObservableNumberValue の値と定数値の積を計算する新しいDoubleBinding を作成します。 |
DoubleBinding |
DoubleExpression.negate() |
DoubleBinding |
When.NumberConditionBuilder.otherwise(double otherwiseValue)
条件が
false である場合に返される3項式の定数値を定義します。 |
static DoubleBinding |
Bindings.selectDouble(Object root, String... steps)
a.b.c などのメンバーを取得するために使用されるバインディングを作成します。 |
static DoubleBinding |
Bindings.selectDouble(ObservableValue<?> root, String... steps)
a.b.c などのメンバーを取得するために使用されるバインディングを作成します。 |
DoubleBinding |
DoubleExpression.subtract(double other) |
DoubleBinding |
FloatExpression.subtract(double other) |
DoubleBinding |
IntegerExpression.subtract(double other) |
DoubleBinding |
LongExpression.subtract(double other) |
static DoubleBinding |
Bindings.subtract(double op1, ObservableNumberValue op2)
定数値と
ObservableNumberValue の値の差を計算する新しいDoubleBinding を作成します。 |
DoubleBinding |
DoubleExpression.subtract(float other) |
DoubleBinding |
DoubleExpression.subtract(int other) |
DoubleBinding |
DoubleExpression.subtract(long other) |
DoubleBinding |
DoubleExpression.subtract(ObservableNumberValue other) |
static DoubleBinding |
Bindings.subtract(ObservableNumberValue op1, double op2)
ObservableNumberValue の値と定数値の差を計算する新しいDoubleBinding を作成します。 |
Copyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved.