-
- 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 interface ProblemHandlerFactory
A factory interface for creatingProblemHandlerinstances.- Author:
- leadpony
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProblemHandlercreateProblemHandler(JsonParser parser)Returns a problem handler for a JSON parser.
-
-
-
Method Detail
-
createProblemHandler
ProblemHandler createProblemHandler(JsonParser parser)
Returns a problem handler for a JSON parser.- Parameters:
parser- the JSON parser for which problem handler will be returned. This cannot benull.- Returns:
- the problem handler for the specified JSON parser, cannot be
null.
-
-