Class StringBinding
- All Implemented Interfaces:
Binding<String>, Observable, ObservableObjectValue<String>, ObservableStringValue, ObservableValue<String>
Binding of a String.
StringBinding provides a simple invalidation-scheme. An extending
class can register dependencies by calling bind(Observable...).
If One of the registered dependencies becomes invalid, this
StringBinding is marked as invalid. With
unbind(Observable...) listening to dependencies can be stopped.
To provide a concrete implementation of this class, the method
computeValue() has to be implemented to calculate the value of this
binding based on the current state of the dependencies. It is called when
get() is called for an invalid binding.
See DoubleBinding for an example how this base class can be extended.
- Since:
- JavaFX 2.0
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaddListener(InvalidationListener listener) Adds anInvalidationListenerwhich will be notified whenever theObservablebecomes invalid.voidaddListener(ChangeListener<? super String> listener) Adds aChangeListenerwhich will be notified whenever the value of theObservableValuechanges.protected final voidbind(Observable... dependencies) Start observing the dependencies for changes.protected abstract StringCalculates the current value of this binding.voiddispose()A default implementation ofdispose()that is empty.final Stringget()Returns the result ofcomputeValue().A default implementation ofgetDependencies()that returns an emptyObservableList.final voidMark a binding as invalid.final booleanisValid()Checks if a binding is valid.protected voidThe method onInvalidating() can be overridden by extending classes to react, if this binding becomes invalid.voidremoveListener(InvalidationListener listener) Removes the given listener from the list of listeners, that are notified whenever the value of theObservablebecomes invalid.voidremoveListener(ChangeListener<? super String> listener) Removes the given listener from the list of listeners that are notified whenever the value of theObservableValuechanges.toString()Returns a string representation of thisStringBindingobject.protected final voidunbind(Observable... dependencies) Stop observing the dependencies for changes.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
subscribeModifier and TypeMethodDescriptiondefault SubscriptionCreates aSubscriptionon thisObservablewhich callsinvalidationSubscriberwhenever it becomes invalid.Methods declared in interface ObservableValue
flatMap, map, orElse, subscribe, subscribe, whenModifier and TypeMethodDescriptiondefault <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.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.
-
Constructor Details
-
StringBinding
public StringBinding()Creates a defaultStringBinding.
-
-
Method Details
-
addListener
Description copied from interface:ObservableAdds anInvalidationListenerwhich will be notified whenever theObservablebecomes invalid. If the same listener is added more than once, then it will be notified more than once. That is, no check is made to ensure uniqueness.Note that the same actual
InvalidationListenerinstance may be safely registered for differentObservables.The
Observablestores a strong reference to the listener which will prevent the listener from being garbage collected and may result in a memory leak. It is recommended to either unregister a listener by callingremoveListenerafter use or to use an instance ofWeakInvalidationListeneravoid this situation.- Specified by:
addListenerin interfaceObservable- Parameters:
listener- The listener to register- See Also:
-
removeListener
Description copied from interface:ObservableRemoves the given listener from the list of listeners, that are notified whenever the value of theObservablebecomes invalid.If the given listener has not been previously registered (i.e. it was never added) then this method call is a no-op. If it had been previously added then it will be removed. If it had been added more than once, then only the first occurrence will be removed.
- Specified by:
removeListenerin interfaceObservable- Parameters:
listener- The listener to remove- See Also:
-
addListener
Description copied from interface:ObservableValueAdds aChangeListenerwhich will be notified whenever the value of theObservableValuechanges. If the same listener is added more than once, then it will be notified more than once. That is, no check is made to ensure uniqueness.Note that the same actual
ChangeListenerinstance may be safely registered for differentObservableValues.The
ObservableValuestores a strong reference to the listener which will prevent the listener from being garbage collected and may result in a memory leak. It is recommended to either unregister a listener by callingremoveListenerafter use or to use an instance ofWeakChangeListeneravoid this situation.- Specified by:
addListenerin interfaceObservableValue<String>- Parameters:
listener- The listener to register- See Also:
-
removeListener
Description copied from interface:ObservableValueRemoves the given listener from the list of listeners that are notified whenever the value of theObservableValuechanges.If the given listener has not been previously registered (i.e. it was never added) then this method call is a no-op. If it had been previously added then it will be removed. If it had been added more than once, then only the first occurrence will be removed.
- Specified by:
removeListenerin interfaceObservableValue<String>- Parameters:
listener- The listener to remove- See Also:
-
bind
Start observing the dependencies for changes. If the value of one of the dependencies changes, the binding is marked as invalid.- Parameters:
dependencies- the dependencies to observe
-
unbind
Stop observing the dependencies for changes.- Parameters:
dependencies- the dependencies to stop observing
-
dispose
-
getDependencies
A default implementation ofgetDependencies()that returns an emptyObservableList.- Specified by:
getDependenciesin interfaceBinding<String>- Returns:
- an empty
ObservableList
-
get
Returns the result ofcomputeValue(). The methodcomputeValue()is only called if the binding is invalid. The result is cached and returned if the binding did not become invalid since the last call ofget().- Specified by:
getin interfaceObservableObjectValue<String>- Returns:
- the current value
-
onInvalidating
protected void onInvalidating()The method onInvalidating() can be overridden by extending classes to react, if this binding becomes invalid. The default implementation is empty. -
invalidate
public final void invalidate()Description copied from interface:BindingMark a binding as invalid. This forces the recalculation of the value of theBindingnext time it is request.- Specified by:
invalidatein interfaceBinding<String>
-
isValid
-
computeValue
Calculates the current value of this binding.Classes extending
StringBindinghave to provide an implementation ofcomputeValue.- Returns:
- the current value
-
toString
-