Uses of Interface
org.apache.jena.riot.system.ErrorHandler

Packages that use ErrorHandler
org.apache.jena.riot   
org.apache.jena.riot.checker   
org.apache.jena.riot.lang   
org.apache.jena.riot.system   
 

Uses of ErrorHandler in org.apache.jena.riot
 

Methods in org.apache.jena.riot that return ErrorHandler
 ErrorHandler ReaderRIOT.getErrorHandler()
           
 

Methods in org.apache.jena.riot with parameters of type ErrorHandler
 void ReaderRIOT.setErrorHandler(ErrorHandler errorHandler)
           
 

Uses of ErrorHandler in org.apache.jena.riot.checker
 

Methods in org.apache.jena.riot.checker with parameters of type ErrorHandler
static boolean CheckerLiterals.checkLiteral(Node node, ErrorHandler handler, long line, long col)
           
static boolean CheckerLiterals.checkLiteral(String lexicalForm, RDFDatatype datatype, ErrorHandler handler, long line, long col)
           
static boolean CheckerLiterals.checkLiteral(String lexicalForm, String lang, ErrorHandler handler, long line, long col)
           
static boolean CheckerLiterals.checkLiteral(String lexicalForm, String lang, RDFDatatype datatype, ErrorHandler handler, long line, long col)
           
static void CheckerIRI.iriViolations(org.apache.jena.iri.IRI iri, ErrorHandler errorHandler)
          Process violations on an IRI Calls the errorhandler on all errors and warnings (as warning).
static void CheckerIRI.iriViolations(org.apache.jena.iri.IRI iri, ErrorHandler errorHandler, boolean allowRelativeIRIs, boolean includeIRIwarnings, long line, long col)
          Process violations on an IRI Calls the errorhandler on all errors and warnings (as warning).
static void CheckerIRI.iriViolations(org.apache.jena.iri.IRI iri, ErrorHandler errorHandler, long line, long col)
          Process violations on an IRI Calls the errorhandler on all errors and warnings (as warning).
 

Constructors in org.apache.jena.riot.checker with parameters of type ErrorHandler
CheckerBlankNodes(ErrorHandler handler)
           
CheckerIRI(ErrorHandler handler, org.apache.jena.iri.IRIFactory iriFactory)
           
CheckerLiterals(ErrorHandler handler)
           
CheckerVar(ErrorHandler handler)
           
 

Uses of ErrorHandler in org.apache.jena.riot.lang
 

Methods in org.apache.jena.riot.lang that return ErrorHandler
 ErrorHandler JsonLDReader.getErrorHandler()
           
 

Methods in org.apache.jena.riot.lang with parameters of type ErrorHandler
static LangRDFXML LangRDFXML.create(InputStream in, String xmlBase, String filename, ErrorHandler errorHandler, StreamRDF sink)
           
static LangRDFXML LangRDFXML.create(Reader reader, String xmlBase, String filename, ErrorHandler errorHandler, StreamRDF sink)
           
static LangRDFXML LangRDFXML.create(String xmlBase, String filename, ErrorHandler errorHandler, StreamRDF sink)
           
 void JsonLDReader.setErrorHandler(ErrorHandler errorHandler)
           
 

Constructors in org.apache.jena.riot.lang with parameters of type ErrorHandler
LangCSV(InputStream in, String xmlBase, String filename, ErrorHandler errorHandler, StreamRDF sink)
           
LangCSV(Reader reader, String xmlBase, String filename, ErrorHandler errorHandler, StreamRDF sink)
           
 

Uses of ErrorHandler in org.apache.jena.riot.system
 

Fields in org.apache.jena.riot.system declared as ErrorHandler
static ErrorHandler ErrorHandlerFactory.errorHandlerNoLogging
          Silent error handler
static ErrorHandler ErrorHandlerFactory.errorHandlerNoWarnings
          Error handler (no wanrings) - logs to stdLogger
static ErrorHandler ErrorHandlerFactory.errorHandlerStd
          Standard error handler - logs to stdLogger
static ErrorHandler ErrorHandlerFactory.errorHandlerStrict
          Strict error handler - logs to stdLogger - exceptions for warnings
static ErrorHandler ErrorHandlerFactory.errorHandlerStrictNoLogging
          Silent, strict error handler
static ErrorHandler ErrorHandlerFactory.errorHandlerWarn
          Warning error handler - logs to stdLogger - mesages for warnings and some errors
 

Methods in org.apache.jena.riot.system that return ErrorHandler
static ErrorHandler ErrorHandlerFactory.errorHandlerNoWarnings(org.slf4j.Logger log)
           
static ErrorHandler ErrorHandlerFactory.errorHandlerSimple()
           
static ErrorHandler ErrorHandlerFactory.errorHandlerStd(org.slf4j.Logger log)
           
static ErrorHandler ErrorHandlerFactory.errorHandlerStrict(org.slf4j.Logger log)
           
static ErrorHandler ErrorHandlerFactory.errorHandlerStrictSilent()
           
static ErrorHandler ErrorHandlerFactory.errorHandlerWarning(org.slf4j.Logger log)
           
static ErrorHandler ErrorHandlerFactory.getDefaultErrorHandler()
          Get the current default error handler
 ErrorHandler ParserProfileBase.getHandler()
           
 ErrorHandler ParserProfile.getHandler()
           
 ErrorHandler Checker.getHandler()
           
 

Methods in org.apache.jena.riot.system with parameters of type ErrorHandler
static ParserProfile RiotLib.profile(Lang lang, String baseIRI, ErrorHandler handler)
           
static ParserProfile RiotLib.profile(String baseIRI, boolean resolveIRIs, boolean checking, ErrorHandler handler)
           
static void ErrorHandlerFactory.setDefaultErrorHandler(ErrorHandler errorHandler)
          Set the current default error handler - use carefully, mainly for use in testing
 void ParserProfileBase.setHandler(ErrorHandler handler)
           
 void ParserProfile.setHandler(ErrorHandler handler)
           
 void Checker.setHandler(ErrorHandler handler)
           
 

Constructors in org.apache.jena.riot.system with parameters of type ErrorHandler
Checker(ErrorHandler handler)
           
ParserProfileBase(Prologue prologue, ErrorHandler errorHandler)
           
ParserProfileBase(Prologue prologue, ErrorHandler errorHandler, LabelToNode labelMapping)
           
ParserProfileChecker(Prologue prologue, ErrorHandler errorHandler)
           
ParserProfileChecker(Prologue prologue, ErrorHandler errorHandler, LabelToNode labelMapping)
           
 



Licenced under the Apache License, Version 2.0