Interface AttributeSetter<T,V>
- Type Parameters:
T- the type of the target objectV- the type of the value to be set
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Functional interface representing an operation that sets a value to a target object.
- Author:
- Sergey Grachev
-
Method Summary
-
Method Details
-
set
Sets the specified value to the given target object.- Parameters:
target- the target object to which the value is to be setvalue- the value to set on the target object- Throws:
Exception- if an error occurs during setting of the value
-