Package org.apache.tika.sax
Interface ContentHandlerFactory
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
BasicContentHandlerFactory
public interface ContentHandlerFactory extends java.io.Serializable
Interface to allow easier injection of code for getting a new ContentHandler
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description org.xml.sax.ContentHandler
getNewContentHandler()
org.xml.sax.ContentHandler
getNewContentHandler(java.io.OutputStream os, java.lang.String encoding)
Deprecated.org.xml.sax.ContentHandler
getNewContentHandler(java.io.OutputStream os, java.nio.charset.Charset charset)
-
-
-
Method Detail
-
getNewContentHandler
org.xml.sax.ContentHandler getNewContentHandler()
-
getNewContentHandler
@Deprecated org.xml.sax.ContentHandler getNewContentHandler(java.io.OutputStream os, java.lang.String encoding) throws java.io.UnsupportedEncodingException
Deprecated.- Throws:
java.io.UnsupportedEncodingException
-
getNewContentHandler
org.xml.sax.ContentHandler getNewContentHandler(java.io.OutputStream os, java.nio.charset.Charset charset)
-
-