Interface PostProcessor.Factory
-
- Enclosing interface:
- PostProcessor
public static interface PostProcessor.Factory
A factory to produce object post-processors.- Since:
- 4.2.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @Nullable PostProcessor
createProcessor(java.lang.reflect.Type type)
Return a post-processor if any is applicable to the provided type.
-
-
-
Method Detail
-
createProcessor
@Nullable PostProcessor createProcessor(java.lang.reflect.Type type) throws SerializationException
Return a post-processor if any is applicable to the provided type.- Parameters:
type
- the type to post-process- Returns:
- a potential post-processor
- Throws:
SerializationException
- if there is a declared post-processor handled by this factory with an invalid type- Since:
- 4.2.0
-
-