Interface IAttributeContainer.IAfterSetValueCallback<KEYTYPE,VALUETYPE>
- All Superinterfaces:
ICallback
- Enclosing interface:
IAttributeContainer<KEYTYPE,VALUETYPE>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface
public static interface IAttributeContainer.IAfterSetValueCallback<KEYTYPE,VALUETYPE>
extends ICallback
-
Method Summary
Modifier and TypeMethodDescriptionvoidafterSetValue(KEYTYPE aName, VALUETYPE aOldValue, VALUETYPE aNewValue) Method that is invoked after a value changed.
-
Method Details
-
afterSetValue
void afterSetValue(@Nonnull KEYTYPE aName, @Nullable VALUETYPE aOldValue, @Nullable VALUETYPE aNewValue) Method that is invoked after a value changed.- Parameters:
aName- The changed key. Neithernullnor empty.aOldValue- The old value. May benull.aNewValue- The new value. May benullin which case the value was removed.
-