Uses of Interface
org.leadpony.justify.api.Problem
-
Packages that use Problem Package Description org.leadpony.justify.api Provides the API for validating JSON documents. -
-
Uses of Problem in org.leadpony.justify.api
Methods in org.leadpony.justify.api that return types with arguments of type Problem Modifier and Type Method Description default List<Problem>Problem. getBranch(int index)Returns the list of the problems contained in the branch at the specified index.List<Problem>JsonValidatingException. getProblems()Returns all problems found in the validation process.Methods in org.leadpony.justify.api with parameters of type Problem Modifier and Type Method Description voidProblemDispatcher. dispatchProblem(Problem problem)Dispatches the problem found.Method parameters in org.leadpony.justify.api with type arguments of type Problem Modifier and Type Method Description static ProblemHandlerProblemHandler. collectingTo(Collection<Problem> collection)Creates a problem handler which will store problems into the specified collection.default voidProblemDispatcher. dispatchAllProblems(Collection<Problem> problems)Dispatches all problems in the specified collection.voidProblemHandler. handleProblems(List<Problem> problems)Handles the problems found while validating a JSON document.Constructor parameters in org.leadpony.justify.api with type arguments of type Problem Constructor Description JsonValidatingException(List<Problem> problems)Constructs a new runtime exception.
-