Class StringConstant
- All Implemented Interfaces:
Observable,ObservableObjectValue<String>,ObservableStringValue,ObservableValue<String>
-
Method Summary
Modifier and TypeMethodDescriptionvoidaddListener(InvalidationListener observer) Adds anInvalidationListenerwhich will be notified whenever theObservablebecomes invalid.voidaddListener(ChangeListener<? super String> observer) Adds aChangeListenerwhich will be notified whenever the value of theObservableValuechanges.get()Returns the current value of thisObservableObjectValue<T>.getValue()Returns the current value of thisObservableValuevoidremoveListener(InvalidationListener observer) Removes the given listener from the list of listeners, that are notified whenever the value of theObservablebecomes invalid.voidremoveListener(ChangeListener<? super String> observer) Removes the given listener from the list of listeners, that are notified whenever the value of theObservableValuechanges.static StringConstantMethods inherited from class javafx.beans.binding.StringExpression
getValueSafe, isEmpty, isNotEmpty
-
Method Details
-
valueOf
-
get
Description copied from interface:ObservableObjectValueReturns the current value of thisObservableObjectValue<T>.- Returns:
- The current value
-
getValue
Description copied from interface:ObservableValueReturns the current value of thisObservableValue- Specified by:
getValuein interfaceObservableValue<String>- Overrides:
getValuein classStringExpression- Returns:
- The current value
-
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.- Parameters:
observer- The listener to register- 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.- Parameters:
observer- 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.
- Parameters:
observer- The listener to remove- 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.
- Parameters:
observer- The listener to remove- See Also:
-