Uses of Interface
org.apache.tika.detect.Detector

Packages that use Detector
org.apache.tika   
org.apache.tika.detect   
org.apache.tika.extractor   
org.apache.tika.mime   
org.apache.tika.parser   
 

Uses of Detector in org.apache.tika
 

Constructors in org.apache.tika with parameters of type Detector
Tika(Detector detector)
          Creates a Tika facade using the given detector instance and the default parser configuration.
Tika(Detector detector, Parser parser)
          Creates a Tika facade using the given detector and parser instances.
 

Uses of Detector in org.apache.tika.detect
 

Classes in org.apache.tika.detect that implement Detector
 class CompositeDetector
          Content type detector that combines multiple different detection mechanisms.
 class ContainerAwareDetector
          A detector that knows about the container formats that we support (eg POIFS, Zip), and is able to peek inside them to better figure out the contents.
 class DefaultDetector
          A composite detector based on all the Detector implementations available through the service provider mechanism.
 class MagicDetector
          Content type detection based on magic bytes, i.e.
 class NameDetector
          Content type detection based on the resource name.
 class POIFSContainerDetector
          A detector that works on a POIFS OLE2 document to figure out exactly what the file is.
 class TextDetector
          Content type detection of plain text documents.
 class TypeDetector
          Content type detection based on a content type hint.
 class ZipContainerDetector
          A detector that works on a Zip document to figure out exactly what the file is
 

Constructors in org.apache.tika.detect with parameters of type Detector
CompositeDetector(Detector... detectors)
           
ContainerAwareDetector(Detector fallbackDetector)
          Creates a new container detector, which will use the given detector for non container formats.
 

Constructor parameters in org.apache.tika.detect with type arguments of type Detector
CompositeDetector(java.util.List<Detector> detectors)
           
CompositeDetector(MediaTypeRegistry registry, java.util.List<Detector> detectors)
           
 

Uses of Detector in org.apache.tika.extractor
 

Constructors in org.apache.tika.extractor with parameters of type Detector
ParserContainerExtractor(Parser parser, Detector detector)
           
 

Uses of Detector in org.apache.tika.mime
 

Classes in org.apache.tika.mime that implement Detector
 class MimeTypes
          This class is a MimeType repository.
 

Uses of Detector in org.apache.tika.parser
 

Methods in org.apache.tika.parser that return Detector
 Detector AutoDetectParser.getDetector()
          Returns the type detector used by this parser to auto-detect the type of a document.
 

Methods in org.apache.tika.parser with parameters of type Detector
 void AutoDetectParser.setDetector(Detector detector)
          Sets the type detector used by this parser to auto-detect the type of a document.
 

Constructors in org.apache.tika.parser with parameters of type Detector
AutoDetectParser(Detector detector)
           
AutoDetectParser(Detector detector, Parser... parsers)
           
 



Copyright © 2007-2011 The Apache Software Foundation. All Rights Reserved.