Interface IParsingContext<READER,PROBLEM_HANDLER extends IProblemHandler>
- Type Parameters:
READER
- the format specific data readerPROBLEM_HANDLER
- the format specific problem handler
- All Known Subinterfaces:
IJsonParsingContext
,IXmlParsingContext
- All Known Implementing Classes:
MetaschemaJsonReader
,MetaschemaXmlReader
public interface IParsingContext<READER,PROBLEM_HANDLER extends IProblemHandler>
Provides objects used for parsing data associated with a specific format.
-
Method Summary
Modifier and TypeMethodDescriptionA handler that provides callbacks used to resolve parsing issues.The parser used for reading data associated with the supported format.
-
Method Details
-
getReader
The parser used for reading data associated with the supported format.- Returns:
- the parser
-
getProblemHandler
A handler that provides callbacks used to resolve parsing issues.- Returns:
- the configured handler
-