Package org.apache.tika.config
Interface InitializableProblemHandler
- 
 public interface InitializableProblemHandlerThis is to be used to handle potential recoverable problems that might arise during initialization.
- 
- 
Field SummaryFields Modifier and Type Field Description static InitializableProblemHandlerDEFAULTstatic InitializableProblemHandlerIGNOREStrategy that simply ignores all problems.static InitializableProblemHandlerINFOStrategy that logs warnings of all problems using aLoggercreated using the given class name.static InitializableProblemHandlerTHROWstatic InitializableProblemHandlerWARNStrategy that logs warnings of all problems using aLoggercreated using the given class name.
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidhandleInitializableProblem(String className, String message)
 
- 
- 
- 
Field Detail- 
IGNOREstatic final InitializableProblemHandler IGNORE Strategy that simply ignores all problems.
 - 
INFOstatic final InitializableProblemHandler INFO Strategy that logs warnings of all problems using aLoggercreated using the given class name.
 - 
WARNstatic final InitializableProblemHandler WARN Strategy that logs warnings of all problems using aLoggercreated using the given class name.
 - 
THROWstatic final InitializableProblemHandler THROW 
 - 
DEFAULTstatic final InitializableProblemHandler DEFAULT 
 
- 
 - 
Method Detail- 
handleInitializableProblemvoid handleInitializableProblem(String className, String message) throws TikaConfigException - Throws:
- TikaConfigException
 
 
- 
 
-