Interface JsonWriter.ValueProcessor<T>

Type Parameters:
T - the value type
Enclosing interface:
JsonWriter<T>
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 JsonWriter.ValueProcessor<T>
Callback interface that can be applied to JsonWriter.Members to process values before they are written. Typically used to filter values, for example to reduce superfluous information or sanitize sensitive data.
Since:
3.4.0
Author:
Phillip Webb, Moritz Halbritter