Package sprouts
Interface ValsDelegate<T>
- Type Parameters:
T
- The type of the value wrapped by the delegated property...
public interface ValsDelegate<T>
-
Method Summary
Modifier and TypeMethodDescriptionchange()
The type of change that occurred in the property list.Exposes a read only property list after the change has been applied.index()
Exposes the index at which theSequenceChange
on the property list took place.
Note that in case of the type of mutation be non-specific to a particular index, like a list clear or a list sort, this method will return an emptyOptional
.Exposes a read only property list after the change has been applied, which contains the new values in the property list.Exposes a read only property list of old values which were removed from the property list.
-
Method Details
-
change
SequenceChange change()The type of change that occurred in the property list. 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:
-
index
Exposes the index at which theSequenceChange
on the property list took place.
Note that in case of the type of mutation be non-specific to a particular index, like a list clear or a list sort, this method will return an emptyOptional
.- Returns:
- The index at which a list mutation took place or an empty
Optional
if the change does not involve a particular index, like a list clear or a list sort.
-
oldValues
Exposes a read only property list of old values which were removed from the property list.- Returns:
- An immutable copy of removed properties in the property list before the change has been applied.
-
newValues
Exposes a read only property list after the change has been applied, which contains the new values in the property list.- Returns:
- An immutable copy of new properties in the property list after the change has been applied.
-
currentValues
Exposes a read only property list after the change has been applied.- Returns:
- An immutable copy of the property list after the change has been applied.
-