Uses of Interface
ca.uhn.fhir.parser.IParserErrorHandler
-
Packages that use IParserErrorHandler Package Description ca.uhn.fhir.context ca.uhn.fhir.parser -
-
Uses of IParserErrorHandler in ca.uhn.fhir.context
Methods in ca.uhn.fhir.context with parameters of type IParserErrorHandler Modifier and Type Method Description voidFhirContext. setParserErrorHandler(IParserErrorHandler theParserErrorHandler)Sets a parser error handler to use by default on all parsers -
Uses of IParserErrorHandler in ca.uhn.fhir.parser
Classes in ca.uhn.fhir.parser that implement IParserErrorHandler Modifier and Type Class Description classErrorHandlerAdapterAdapter implementation with NOP implementations of allIParserErrorHandlermethods.classLenientErrorHandlerThe default error handler, which logs issues but does not abort parsing, with only one exception:classStrictErrorHandlerParser error handler which throws aDataFormatExceptionany time an issue is found while parsing.Methods in ca.uhn.fhir.parser that return IParserErrorHandler Modifier and Type Method Description protected IParserErrorHandlerBaseParser. getErrorHandler()Methods in ca.uhn.fhir.parser with parameters of type IParserErrorHandler Modifier and Type Method Description IParserBaseParser. setParserErrorHandler(IParserErrorHandler theErrorHandler)IParserIParser. setParserErrorHandler(IParserErrorHandler theErrorHandler)Registers an error handler which will be invoked when any parse errors are foundConstructors in ca.uhn.fhir.parser with parameters of type IParserErrorHandler Constructor Description BaseParser(FhirContext theContext, IParserErrorHandler theParserErrorHandler)ConstructorJsonParser(FhirContext theContext, IParserErrorHandler theParserErrorHandler)Do not use this constructor, the recommended way to obtain a new instance of the JSON parser is to invokeFhirContext.newJsonParser().RDFParser(FhirContext context, IParserErrorHandler parserErrorHandler, org.apache.jena.riot.Lang lang)Do not use this constructor, the recommended way to obtain a new instance of the RDF parser is to invokeFhirContext.newRDFParser().XmlParser(FhirContext theContext, IParserErrorHandler theParserErrorHandler)Do not use this constructor, the recommended way to obtain a new instance of the XML parser is to invokeFhirContext.newXmlParser().
-