Package org.apache.tika.renderer
Class CompositeRenderer
- java.lang.Object
- 
- org.apache.tika.renderer.CompositeRenderer
 
- 
- All Implemented Interfaces:
- Serializable,- Initializable,- Renderer
 
 public class CompositeRenderer extends Object implements Renderer, Initializable - See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description CompositeRenderer(List<Renderer> renderers)CompositeRenderer(ServiceLoader serviceLoader)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcheckInitialization(InitializableProblemHandler problemHandler)RenderergetLeafRenderer(MediaType mt)Set<MediaType>getSupportedTypes(ParseContext context)Returns the set of media types supported by this renderer when used with the given parse context.voidinitialize(Map<String,Param> params)RenderResultsrender(InputStream is, Metadata metadata, ParseContext parseContext, RenderRequest... requests)
 
- 
- 
- 
Constructor Detail- 
CompositeRendererpublic CompositeRenderer(ServiceLoader serviceLoader) 
 
- 
 - 
Method Detail- 
getSupportedTypespublic Set<MediaType> getSupportedTypes(ParseContext context) Description copied from interface:RendererReturns the set of media types supported by this renderer when used with the given parse context.- Specified by:
- getSupportedTypesin interface- Renderer
- Parameters:
- context- parse context
- Returns:
- immutable set of media types
 
 - 
renderpublic RenderResults render(InputStream is, Metadata metadata, ParseContext parseContext, RenderRequest... requests) throws IOException, TikaException - Specified by:
- renderin interface- Renderer
- Throws:
- IOException
- TikaException
 
 - 
initializepublic void initialize(Map<String,Param> params) throws TikaConfigException - Specified by:
- initializein interface- Initializable
- Parameters:
- params- params to use for initialization
- Throws:
- TikaConfigException
 
 - 
checkInitializationpublic void checkInitialization(InitializableProblemHandler problemHandler) throws TikaConfigException - Specified by:
- checkInitializationin interface- Initializable
- Parameters:
- problemHandler- if there is a problem and no custom initializableProblemHandler has been configured via Initializable parameters, this is called to respond.
- Throws:
- TikaConfigException
 
 
- 
 
-