Class StringProperty
java.lang.Object
javafx.beans.binding.StringExpression
javafx.beans.property.ReadOnlyStringProperty
javafx.beans.property.StringProperty
- All Implemented Interfaces:
Observable, Property<String>, ReadOnlyProperty<String>, ObservableObjectValue<String>, ObservableStringValue, ObservableValue<String>, WritableObjectValue<String>, WritableStringValue, WritableValue<String>
- Direct Known Subclasses:
JavaBeanStringProperty, StringPropertyBase
public abstract class StringProperty
extends ReadOnlyStringProperty
implements Property<String>, WritableStringValue
This class provides a full implementation of a
Property wrapping a
String value.
The value of a StringProperty can be get and set with ObservableObjectValue.get(),
StringExpression.getValue(), WritableObjectValue.set(Object), and setValue(String).
A property can be bound and unbound unidirectional with
Property.bind(ObservableValue) and Property.unbind(). Bidirectional bindings
can be created and removed with bindBidirectional(Property) and
unbindBidirectional(Property).
The context of a StringProperty can be read with ReadOnlyProperty.getBean()
and ReadOnlyProperty.getName().- Since:
- JavaFX 2.0
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidbindBidirectional(Property<?> other, Format format) Create a bidirectional binding between thisStringPropertyand another arbitrary property.voidbindBidirectional(Property<String> other) Create a bidirectional binding between thisPropertyand another one.<T> voidbindBidirectional(Property<T> other, StringConverter<T> converter) Create a bidirectional binding between thisStringPropertyand another arbitrary property.voidSet the wrapped value.toString()Returns a string representation of thisStringPropertyobject.voidunbindBidirectional(Object other) Remove a bidirectional binding between thisPropertyand another one.voidunbindBidirectional(Property<String> other) Removes a bidirectional binding between thisPropertyand another one.Methods declared in class StringExpression
concat, getValue, getValueSafe, greaterThan, greaterThan, greaterThanOrEqualTo, greaterThanOrEqualTo, isEmpty, isEqualTo, isEqualTo, isEqualToIgnoreCase, isEqualToIgnoreCase, isNotEmpty, isNotEqualTo, isNotEqualTo, isNotEqualToIgnoreCase, isNotEqualToIgnoreCase, isNotNull, isNull, length, lessThan, lessThan, lessThanOrEqualTo, lessThanOrEqualTo, stringExpressionModifier and TypeMethodDescriptionReturns aStringExpressionthat holds the value of thisStringExpressionconcatenated with anotherObject.getValue()Returns the current value of thisObservableValuefinal StringReturns usually the value of thisStringExpression.greaterThan(String other) Creates a newBooleanBindingthat holdstrueif thisStringExpressionis greater than a constant value.greaterThan(ObservableStringValue other) Creates a newBooleanBindingthat holdstrueif thisStringExpressionis greater than anotherObservableStringValue.greaterThanOrEqualTo(String other) Creates a newBooleanBindingthat holdstrueif thisStringExpressionis greater than or equal to a constant value.Creates a newBooleanBindingthat holdstrueif thisStringExpressionis greater than or equal to anotherObservableStringValue.isEmpty()isEqualTo(ObservableStringValue other) isEqualToIgnoreCase(String other) Creates a newBooleanBindingthat holdstrueif thisStringExpressionis equal to a constant value ignoring case.Creates a newBooleanBindingthat holdstrueif this and anotherObservableStringValueare equal ignoring case.isNotEqualTo(String other) Creates a newBooleanBindingthat holdstrueif thisStringExpressionis not equal to a constant value.Creates a newBooleanBindingthat holdstrueif this and anotherObservableStringValueare not equal.isNotEqualToIgnoreCase(String other) Creates a newBooleanBindingthat holdstrueif thisStringExpressionis not equal to a constant value ignoring case.Creates a newBooleanBindingthat holdstrueif this and anotherObservableStringValueare not equal ignoring case.isNull()length()Creates a newIntegerBindingthat holds the length of thisStringExpression.Creates a newBooleanBindingthat holdstrueif thisStringExpressionis less than a constant value.lessThan(ObservableStringValue other) Creates a newBooleanBindingthat holdstrueif thisStringExpressionis less than anotherObservableStringValue.lessThanOrEqualTo(String other) Creates a newBooleanBindingthat holdstrueif thisStringExpressionis less than or equal to a constant value.Creates a newBooleanBindingthat holdstrueif thisStringExpressionis less than or equal to anotherObservableStringValue.static StringExpressionstringExpression(ObservableValue<?> value) Returns aStringExpressionthat wraps aObservableValue.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods declared in interface Observable
addListener, removeListener, subscribeModifier and TypeMethodDescriptionvoidaddListener(InvalidationListener listener) Adds anInvalidationListenerwhich will be notified whenever theObservablebecomes invalid.voidremoveListener(InvalidationListener listener) Removes the given listener from the list of listeners, that are notified whenever the value of theObservablebecomes invalid.default SubscriptionCreates aSubscriptionon thisObservablewhich callsinvalidationSubscriberwhenever it becomes invalid.Methods declared in interface ObservableObjectValue
getMethods declared in interface ObservableValue
addListener, flatMap, map, orElse, removeListener, subscribe, subscribe, whenModifier and TypeMethodDescriptionvoidaddListener(ChangeListener<? super String> listener) Adds aChangeListenerwhich will be notified whenever the value of theObservableValuechanges.default <U> ObservableValue<U> flatMap(Function<? super String, ? extends ObservableValue<? extends U>> mapper) Returns anObservableValuethat holds the value of anObservableValueproduced by applying the given mapping function on this value.default <U> ObservableValue<U> Returns anObservableValuethat holds the result of applying the given mapping function on this value.default ObservableValue<String> Returns anObservableValuethat holds this value, or the given constant if it isnull.voidremoveListener(ChangeListener<? super String> listener) Removes the given listener from the list of listeners that are notified whenever the value of theObservableValuechanges.default Subscriptionsubscribe(BiConsumer<? super String, ? super String> changeSubscriber) Creates aSubscriptionon thisObservableValuewhich calls the givenchangeSubscriberwith the old and new value whenever its value changes.default SubscriptionCreates aSubscriptionon thisObservableValuewhich immediately provides the current value to the givenvalueSubscriber, followed by any subsequent values whenever its value changes.default ObservableValue<String> when(ObservableValue<Boolean> condition) Returns anObservableValuethat holds this value and is updated only whenconditionholdstrue.Methods declared in interface Property
bind, isBound, unbindModifier and TypeMethodDescriptionvoidbind(ObservableValue<? extends String> observable) Create a unidirection binding for thisProperty.booleanisBound()Can be used to check, if aPropertyis bound.voidunbind()Remove the unidirectional binding for thisProperty.Methods declared in interface ReadOnlyProperty
getBean, getNameMethods declared in interface WritableObjectValue
get, setMethods declared in interface WritableValue
getValue
-
Constructor Details
-
StringProperty
public StringProperty()Creates a defaultStringProperty.
-
-
Method Details
-
setValue
Set the wrapped value.- Specified by:
setValuein interfaceWritableValue<String>- Parameters:
v- The new value
-
bindBidirectional
Create a bidirectional binding between thisPropertyand another one. Bidirectional bindings exists independently of unidirectional bindings. So it is possible to add unidirectional binding to a property with bidirectional binding and vice-versa. However, this practice is discouraged.It is possible to have multiple bidirectional bindings of one Property.
JavaFX bidirectional binding implementation use weak listeners. This means bidirectional binding does not prevent properties from being garbage collected.
- Specified by:
bindBidirectionalin interfaceProperty<String>- Parameters:
other- the otherProperty
-
bindBidirectional
Create a bidirectional binding between thisStringPropertyand another arbitrary property. Relies on an implementation ofFormatfor conversion.- Parameters:
other- the otherPropertyformat- theFormatused to convert between thisStringPropertyand the otherProperty- Throws:
NullPointerException- ifotherorformatisnullIllegalArgumentException- ifotheristhis- Since:
- JavaFX 2.1
-
bindBidirectional
Create a bidirectional binding between thisStringPropertyand another arbitrary property. Relies on an implementation ofStringConverterfor conversion.- Type Parameters:
T- the type of the wrappedObject- Parameters:
other- the otherPropertyconverter- theStringConverterused to convert between thisStringPropertyand the otherProperty- Throws:
NullPointerException- ifotherorconverterisnullIllegalArgumentException- ifotheristhis- Since:
- JavaFX 2.1
-
unbindBidirectional
Removes a bidirectional binding between thisPropertyand another one. If no bidirectional binding between the properties exists, calling this method has no effect. It is possible to unbind by a call on the second property. This code will work:property1.bindBidirectional(property2); property2.unbindBidirectional(property1);- Specified by:
unbindBidirectionalin interfaceProperty<String>- Parameters:
other- the otherProperty
-
unbindBidirectional
Remove a bidirectional binding between thisPropertyand another one. If no bidirectional binding between the properties exists, calling this method has no effect.- Parameters:
other- the otherProperty- Throws:
NullPointerException- ifotherisnullIllegalArgumentException- ifotheristhis- Since:
- JavaFX 2.1
-
toString
Returns a string representation of thisStringPropertyobject.- Overrides:
toStringin classReadOnlyStringProperty- Returns:
- a string representation of this
StringPropertyobject.
-