Interface ProblemHandlerFactory

  • 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 creating ProblemHandler instances.
    Author:
    leadpony
    • 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 be null.
        Returns:
        the problem handler for the specified JSON parser, cannot be null.