Spec-Zone .ru
спецификации, руководства, описания, API
|
Package | Description |
---|---|
javafx.beans.binding |
Characteristics of Bindings
|
Modifier and Type | Method and Description |
---|---|
StringBinding |
SetExpression.asString()
|
StringBinding |
NumberExpressionBase.asString() |
StringBinding |
NumberExpression.asString()
|
StringBinding |
MapExpression.asString()
|
StringBinding |
ListExpression.asString()
|
StringBinding |
BooleanExpression.asString()
|
StringBinding |
NumberExpressionBase.asString(java.util.Locale locale,
java.lang.String format) |
StringBinding |
NumberExpression.asString(java.util.Locale locale,
java.lang.String format)
|
StringBinding |
NumberExpressionBase.asString(java.lang.String format) |
StringBinding |
NumberExpression.asString(java.lang.String format)
|
static StringBinding |
Bindings.createStringBinding(java.util.concurrent.Callable<java.lang.String> func,
Observable... dependencies)
Helper function to create a custom
StringBinding . |
StringBinding |
When.StringConditionBuilder.otherwise(ObservableStringValue otherwiseValue)
Defines the
ObservableStringValue which
value is returned by the ternary expression if the condition is
false . |
StringBinding |
When.StringConditionBuilder.otherwise(java.lang.String otherwiseValue)
Defines a constant value of the ternary expression, that is returned
if the condition is
false . |
static StringBinding |
Bindings.selectString(ObservableValue<?> root,
java.lang.String... steps)
Creates a binding used to get a member, such as
a.b.c . |
static StringBinding |
Bindings.stringValueAt(ObservableList<java.lang.String> op,
int index)
Creates a new
StringBinding that contains the element
of an ObservableList at the specified position. |
static StringBinding |
Bindings.stringValueAt(ObservableList<java.lang.String> op,
ObservableIntegerValue index)
Creates a new
StringBinding that contains the element
of an ObservableList at the specified position. |
static <K> StringBinding |
Bindings.stringValueAt(ObservableMap<K,java.lang.String> op,
K key)
Creates a new
StringBinding that contains the mapping of a specific key
in an ObservableMap . |
static <K> StringBinding |
Bindings.stringValueAt(ObservableMap<K,java.lang.String> op,
ObservableValue<? extends K> key)
Creates a new
StringBinding that contains the mapping of a specific key
in an ObservableMap . |
Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to