Spec-Zone .ru
спецификации, руководства, описания, API
|
Package | Description |
---|---|
javafx.beans.binding |
Characteristics of Bindings
|
javafx.beans.property |
The package
javafx.beans.property defines read-only
properties and writable properties, plus a number of implementations. |
javafx.beans.property.adapter | |
javafx.scene.control |
The JavaFX User Interface Controls (UI Controls or just Controls) are
specialized Nodes in the JavaFX Scenegraph especially suited for reuse in
many different application contexts.
|
Modifier and Type | Class and Description |
---|---|
class |
StringBinding
Base class that provides most of the functionality needed to implement a
Binding of a String . |
class |
StringExpression
A
StringExpression is a
ObservableStringValue plus additional convenience
methods to generate bindings in a fluent style. |
Modifier and Type | Field and Description |
---|---|
private ObservableStringValue |
When.StringCondition.falseResult |
private ObservableStringValue |
When.StringCondition.trueResult |
private ObservableStringValue |
When.StringConditionBuilder.trueResult |
Modifier and Type | Method and Description |
---|---|
static BooleanBinding |
Bindings.equal(ObservableStringValue op1,
ObservableStringValue op2)
Creates a new
BooleanBinding that holds true
if the values of two instances of
ObservableStringValue are equal. |
private static BooleanBinding |
Bindings.equal(ObservableStringValue op1,
ObservableStringValue op2,
Observable... dependencies) |
static BooleanBinding |
Bindings.equal(ObservableStringValue op1,
java.lang.String op2)
Creates a new
BooleanBinding that holds true
if the value of a ObservableStringValue is
equal to a constant value. |
static BooleanBinding |
Bindings.equal(java.lang.String op1,
ObservableStringValue op2)
Creates a new
BooleanBinding that holds true
if the value of a ObservableStringValue is
equal to a constant value. |
static BooleanBinding |
Bindings.equalIgnoreCase(ObservableStringValue op1,
ObservableStringValue op2)
Creates a new
BooleanBinding that holds true
if the values of two instances of
ObservableStringValue are equal ignoring case. |
private static BooleanBinding |
Bindings.equalIgnoreCase(ObservableStringValue op1,
ObservableStringValue op2,
Observable... dependencies) |
static BooleanBinding |
Bindings.equalIgnoreCase(ObservableStringValue op1,
java.lang.String op2)
Creates a new
BooleanBinding that holds true
if the value of a ObservableStringValue is
equal to a constant value ignoring case. |
static BooleanBinding |
Bindings.equalIgnoreCase(java.lang.String op1,
ObservableStringValue op2)
Creates a new
BooleanBinding that holds true
if the value of a ObservableStringValue is
equal to a constant value ignoring case. |
BooleanBinding |
StringExpression.greaterThan(ObservableStringValue other)
Creates a new
BooleanBinding that holds true
if this StringExpression is greater than another
ObservableStringValue . |
static BooleanBinding |
Bindings.greaterThan(ObservableStringValue op1,
ObservableStringValue op2)
Creates a new
BooleanBinding that holds true
if the value of the first
ObservableStringValue is greater than the
value of the second. |
private static BooleanBinding |
Bindings.greaterThan(ObservableStringValue op1,
ObservableStringValue op2,
Observable... dependencies) |
static BooleanBinding |
Bindings.greaterThan(ObservableStringValue op1,
java.lang.String op2)
Creates a new
BooleanBinding that holds true
if the value of a ObservableStringValue is
greater than a constant value. |
static BooleanBinding |
Bindings.greaterThan(java.lang.String op1,
ObservableStringValue op2)
Creates a new
BooleanBinding that holds true
if the value of a constant value is greater than the value of a
ObservableStringValue . |
static BooleanBinding |
Bindings.greaterThanOrEqual(ObservableStringValue op1,
ObservableStringValue op2)
Creates a new
BooleanBinding that holds true
if the value of the first
ObservableStringValue is greater than or equal
to the value of the second. |
private static BooleanBinding |
Bindings.greaterThanOrEqual(ObservableStringValue op1,
ObservableStringValue op2,
Observable... dependencies) |
static BooleanBinding |
Bindings.greaterThanOrEqual(ObservableStringValue op1,
java.lang.String op2)
Creates a new
BooleanBinding that holds true
if the value of a ObservableStringValue is
greater than or equal to a constant value. |
static BooleanBinding |
Bindings.greaterThanOrEqual(java.lang.String op1,
ObservableStringValue op2)
Creates a new
BooleanBinding that holds true
if a constant value is greater than or equal to the value of a
ObservableStringValue . |
BooleanBinding |
StringExpression.greaterThanOrEqualTo(ObservableStringValue other)
Creates a new
BooleanBinding that holds true
if this StringExpression is greater than or equal to another
ObservableStringValue . |
BooleanBinding |
StringExpression.isEqualTo(ObservableStringValue other)
Creates a new
BooleanBinding that holds true
if this and another ObservableStringValue are
equal. |
BooleanBinding |
StringExpression.isEqualToIgnoreCase(ObservableStringValue other)
Creates a new
BooleanBinding that holds true
if this and another ObservableStringValue are
equal ignoring case. |
BooleanBinding |
StringExpression.isNotEqualTo(ObservableStringValue other)
Creates a new
BooleanBinding that holds true
if this and another ObservableStringValue are
not equal. |
BooleanBinding |
StringExpression.isNotEqualToIgnoreCase(ObservableStringValue other)
Creates a new
BooleanBinding that holds true
if this and another ObservableStringValue are
not equal ignoring case. |
BooleanBinding |
StringExpression.lessThan(ObservableStringValue other)
Creates a new
BooleanBinding that holds true
if this StringExpression is less than another
ObservableStringValue . |
static BooleanBinding |
Bindings.lessThan(ObservableStringValue op1,
ObservableStringValue op2)
Creates a new
BooleanBinding that holds true
if the value of the first
ObservableStringValue is less than the value
of the second. |
private static BooleanBinding |
Bindings.lessThan(ObservableStringValue op1,
ObservableStringValue op2,
Observable... dependencies) |
static BooleanBinding |
Bindings.lessThan(ObservableStringValue op1,
java.lang.String op2)
Creates a new
BooleanBinding that holds true
if the value of a ObservableStringValue is
less than a constant value. |
static BooleanBinding |
Bindings.lessThan(java.lang.String op1,
ObservableStringValue op2)
Creates a new
BooleanBinding that holds true
if a constant value is less than the value of a
ObservableStringValue . |
static BooleanBinding |
Bindings.lessThanOrEqual(ObservableStringValue op1,
ObservableStringValue op2)
Creates a new
BooleanBinding that holds true
if the value of the first
ObservableStringValue is less than or equal to
the value of the second. |
private static BooleanBinding |
Bindings.lessThanOrEqual(ObservableStringValue op1,
ObservableStringValue op2,
Observable... dependencies) |
static BooleanBinding |
Bindings.lessThanOrEqual(ObservableStringValue op1,
java.lang.String op2)
Creates a new
BooleanBinding that holds true
if the value of a ObservableStringValue is
less than or equal to a constant value. |
static BooleanBinding |
Bindings.lessThanOrEqual(java.lang.String op1,
ObservableStringValue op2)
Creates a new
BooleanBinding that holds true
if a constant value is less than or equal to the value of a
ObservableStringValue . |
BooleanBinding |
StringExpression.lessThanOrEqualTo(ObservableStringValue other)
Creates a new
BooleanBinding that holds true
if this StringExpression is less than or equal to another
ObservableStringValue . |
static BooleanBinding |
Bindings.notEqual(ObservableStringValue op1,
ObservableStringValue op2)
Creates a new
BooleanBinding that holds true
if the values of two instances of
ObservableStringValue are not equal. |
private static BooleanBinding |
Bindings.notEqual(ObservableStringValue op1,
ObservableStringValue op2,
Observable... dependencies) |
static BooleanBinding |
Bindings.notEqual(ObservableStringValue op1,
java.lang.String op2)
Creates a new
BooleanBinding that holds true
if the value of a ObservableStringValue is not
equal to a constant value. |
static BooleanBinding |
Bindings.notEqual(java.lang.String op1,
ObservableStringValue op2)
Creates a new
BooleanBinding that holds true
if the value of a ObservableStringValue is not
equal to a constant value. |
static BooleanBinding |
Bindings.notEqualIgnoreCase(ObservableStringValue op1,
ObservableStringValue op2)
Creates a new
BooleanBinding that holds true
if the values of two instances of
ObservableStringValue are not equal ignoring
case. |
private static BooleanBinding |
Bindings.notEqualIgnoreCase(ObservableStringValue op1,
ObservableStringValue op2,
Observable... dependencies) |
static BooleanBinding |
Bindings.notEqualIgnoreCase(ObservableStringValue op1,
java.lang.String op2)
Creates a new
BooleanBinding that holds true
if the value of a ObservableStringValue is not
equal to a constant value ignoring case. |
static BooleanBinding |
Bindings.notEqualIgnoreCase(java.lang.String op1,
ObservableStringValue op2)
Creates a new
BooleanBinding that holds true
if the value of a ObservableStringValue is not
equal to a constant value ignoring case. |
StringBinding |
When.StringConditionBuilder.otherwise(ObservableStringValue otherwiseValue)
Defines the
ObservableStringValue which
value is returned by the ternary expression if the condition is
false . |
When.StringConditionBuilder |
When.then(ObservableStringValue thenValue)
Defines the
ObservableStringValue which value
is returned by the ternary expression if the condition is true . |
Constructor and Description |
---|
When.StringCondition(ObservableStringValue then,
ObservableStringValue otherwise) |
When.StringCondition(ObservableStringValue then,
java.lang.String otherwise) |
When.StringCondition(java.lang.String then,
ObservableStringValue otherwise) |
When.StringConditionBuilder(ObservableStringValue thenValue) |
Modifier and Type | Class and Description |
---|---|
class |
ReadOnlyStringProperty
Super class for all readonly properties wrapping an
String . |
class |
ReadOnlyStringPropertyBase
Base class for all readonly properties wrapping a
String . |
class |
ReadOnlyStringWrapper
This class provides a convenient class to define read-only properties.
|
class |
SimpleStringProperty
This class provides a full implementation of a
Property wrapping a
String value. |
class |
StringProperty
This class provides a full implementation of a
Property wrapping a
String value. |
class |
StringPropertyBase
The class
StringPropertyBase is the base class for a property
wrapping a String value. |
Modifier and Type | Class and Description |
---|---|
class |
JavaBeanStringProperty
A
JavaBeanStringProperty provides an adapter between a regular
Java Bean property of type String and a JavaFX
StringProperty . |
class |
ReadOnlyJavaBeanStringProperty
A
ReadOnlyJavaBeanStringProperty provides an adapter between a regular
read only Java Bean property of type String and a JavaFX
ReadOnlyStringProperty . |
Modifier and Type | Interface and Description |
---|---|
protected static interface |
TextInputControl.Content
Interface representing a text input's content.
|
Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to