Uses of Interface
org.apache.tika.detect.Detector
-
Packages that use Detector Package Description org.apache.tika Apache Tika.org.apache.tika.config Tika configuration tools.org.apache.tika.detect Media type detection.org.apache.tika.detect.apple org.apache.tika.detect.gzip org.apache.tika.detect.microsoft org.apache.tika.detect.ole org.apache.tika.detect.siegfried org.apache.tika.detect.zip org.apache.tika.example org.apache.tika.extractor Extraction of component documents.org.apache.tika.mime Media type information.org.apache.tika.parser Tika parsers. -
-
Uses of Detector in org.apache.tika
Methods in org.apache.tika that return Detector Modifier and Type Method Description Detector
Tika. getDetector()
Returns the detector instance used by this facade.Constructors in org.apache.tika with parameters of type Detector Constructor Description Tika(Detector detector)
Creates a Tika facade using the given detector instance, the default parser configuration, and the default Translator.Tika(Detector detector, Parser parser)
Creates a Tika facade using the given detector and parser instances, but the default Translator.Tika(Detector detector, Parser parser, Translator translator)
Creates a Tika facade using the given detector, parser, and translator instances. -
Uses of Detector in org.apache.tika.config
Methods in org.apache.tika.config that return Detector Modifier and Type Method Description Detector
TikaConfig. getDetector()
Returns the configured detector instance. -
Uses of Detector in org.apache.tika.detect
Classes in org.apache.tika.detect that implement Detector Modifier and Type Class Description class
CompositeDetector
Content type detector that combines multiple different detection mechanisms.class
DefaultDetector
A composite detector based on all theDetector
implementations available through theservice provider mechanism
.class
DefaultProbDetector
A version ofDefaultDetector
for probabilistic mime detectors, which use statistical techniques to blend the results of differing underlying detectors when attempting to detect the type of a given file.class
EmptyDetector
Dummy detector that returns application/octet-stream for all documents.class
FileCommandDetector
This runs the linux 'file' command against a file.class
MagicDetector
Content type detection based on magic bytes, i.e.class
NameDetector
Content type detection based on the resource name.class
NNExampleModelDetector
class
OverrideDetector
Deprecated.after 2.5.0 this functionality was moved to the CompositeDetectorclass
TextDetector
Content type detection of plain text documents.class
TrainedModelDetector
class
TypeDetector
Content type detection based on a content type hint.class
ZeroSizeFileDetector
Detector to identify zero length files as application/x-zerovalueMethods in org.apache.tika.detect that return types with arguments of type Detector Modifier and Type Method Description List<Detector>
CompositeDetector. getDetectors()
Returns the component detectors.List<Detector>
DefaultDetector. getDetectors()
List<Detector>
DefaultProbDetector. getDetectors()
Constructors in org.apache.tika.detect with parameters of type Detector Constructor Description CompositeDetector(Detector... detectors)
Constructor parameters in org.apache.tika.detect with type arguments of type Detector Constructor Description CompositeDetector(List<Detector> detectors)
CompositeDetector(MediaTypeRegistry registry, List<Detector> detectors)
CompositeDetector(MediaTypeRegistry registry, List<Detector> detectors, Collection<Class<? extends Detector>> excludeDetectors)
CompositeDetector(MediaTypeRegistry registry, List<Detector> detectors, Collection<Class<? extends Detector>> excludeDetectors)
DefaultDetector(MimeTypes types, ServiceLoader loader, Collection<Class<? extends Detector>> excludeDetectors)
-
Uses of Detector in org.apache.tika.detect.apple
Classes in org.apache.tika.detect.apple that implement Detector Modifier and Type Class Description class
BPListDetector
Detector for BPList with utility functions for PList. -
Uses of Detector in org.apache.tika.detect.gzip
Classes in org.apache.tika.detect.gzip that implement Detector Modifier and Type Class Description class
GZipSpecializationDetector
This is designed to detect commonly gzipped file types such as warc.gz. -
Uses of Detector in org.apache.tika.detect.microsoft
Classes in org.apache.tika.detect.microsoft that implement Detector Modifier and Type Class Description class
POIFSContainerDetector
A detector that works on a POIFS OLE2 document to figure out exactly what the file is. -
Uses of Detector in org.apache.tika.detect.ole
Classes in org.apache.tika.detect.ole that implement Detector Modifier and Type Class Description class
MiscOLEDetector
A detector that works on a POIFS OLE2 document to figure out exactly what the file is. -
Uses of Detector in org.apache.tika.detect.siegfried
Classes in org.apache.tika.detect.siegfried that implement Detector Modifier and Type Class Description class
SiegfriedDetector
Simple wrapper around Siegfried https://github.com/richardlehane/siegfried The default behavior is to run detection, report the results in the metadata and then return null so that other detectors will be used. -
Uses of Detector in org.apache.tika.detect.zip
Classes in org.apache.tika.detect.zip that implement Detector Modifier and Type Class Description class
DefaultZipContainerDetector
class
DeprecatedStreamingZipContainerDetector
class
StreamingZipContainerDetector
Currently only used in tests. -
Uses of Detector in org.apache.tika.example
Classes in org.apache.tika.example that implement Detector Modifier and Type Class Description class
EncryptedPrescriptionDetector
Constructors in org.apache.tika.example with parameters of type Detector Constructor Description ImportContextImpl(javax.jcr.Item importRoot, String systemId, org.apache.jackrabbit.webdav.io.InputContext ctx, InputStream stream, org.apache.jackrabbit.server.io.IOListener ioListener, Detector detector)
Creates a new item import context. -
Uses of Detector in org.apache.tika.extractor
Methods in org.apache.tika.extractor that return Detector Modifier and Type Method Description Detector
EmbeddedDocumentUtil. getDetector()
Constructors in org.apache.tika.extractor with parameters of type Detector Constructor Description ParserContainerExtractor(Parser parser, Detector detector)
-
Uses of Detector in org.apache.tika.mime
Classes in org.apache.tika.mime that implement Detector Modifier and Type Class Description class
MimeTypes
This class is a MimeType repository.class
ProbabilisticMimeDetectionSelector
Selector for combining different mime detection results based on probability -
Uses of Detector in org.apache.tika.parser
Methods in org.apache.tika.parser that return Detector Modifier and Type Method Description 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 Modifier and Type Method Description 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 Constructor Description AutoDetectParser(Detector detector)
AutoDetectParser(Detector detector, Parser... parsers)
-