Interface ValueProcessor<T,V,C>
-
- Type Parameters:
T- The type of thetargetof this processor, i.e. whatever it is supposed to push the result of its processing to.V- The type of values processed by this processor.C- The type of thecontextof this processor, i.e. whatever information it needs that is independent from the target or value.
public interface ValueProcessor<T,V,C>A processor of values extracted from a container.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidprocess(T target, V value, C context)
-
-
-
Method Detail
-
process
void process(T target, V value, C context)
- Parameters:
target- Thetargetpassed toContainerExtractor.extract(Object, ValueProcessor, Object, Object).value- The value to process.context- Thecontextpassed toContainerExtractor.extract(Object, ValueProcessor, Object, Object).
-
-