Package sprouts
Interface ValDelegate<T>
- Type Parameters:
T
- The type of the value wrapped by the delegated property...
public interface ValDelegate<T>
-
Method Summary
Modifier and TypeMethodDescriptionchange()
The type of change that occurred in the property.channel()
TheChannel
constant from which the change originated.Exposes the value of the property that was listened to in anMaybe
wrapper.id()
Exposes the id of the property that was listened to.oldValue()
Exposes the old value of the property that was listened to in anMaybe
wrapper.type()
Exposes the type of the property that was listened to.
-
Method Details
-
type
Exposes the type of the property that was listened to.- Returns:
- The type of the property that was listened to.
-
currentValue
-
oldValue
-
channel
Channel channel()TheChannel
constant from which the change originated. A channel is typically one of theFrom
enum constants which is used to selectively listen to changes from different sources. You may want to define your own channels for your specific use case. This information can then also be used in yourAction
s to perform different tasks based on the channel from which the change originated. -
id
String id()Exposes the id of the property that was listened to. This is useful when you want to identify the property that changed in a listener that listens to multiple properties.- Returns:
- The id of the property that was listened to.
-
change
SingleChange change()The type of change that occurred in the property. This information can be used to perform different actions that are specific to the type of change.- Returns:
- The mutation type of the change which may be one of the following:
-