Interface ValueProcessor<T,V,C>

Type Parameters:
T - The type of the target of 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 the context of this processor, i.e. whatever information it needs that is independent from the target or value.

@Incubating public interface ValueProcessor<T,V,C>
A processor of values extracted from a container.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    process(T target, V value, C context, ContainerExtractionContext extractionContext)