Uses of Class
org.apache.tika.mime.MediaType
-
-
Uses of MediaType in org.apache.tika.config
Methods in org.apache.tika.config with parameters of type MediaType Modifier and Type Method Description Parser
TikaConfig. getParser(MediaType mimeType)
Deprecated.Use theTikaConfig.getParser()
method instead -
Uses of MediaType in org.apache.tika.detect
Methods in org.apache.tika.detect that return MediaType Modifier and Type Method Description MediaType
CompositeDetector. detect(InputStream input, Metadata metadata)
MediaType
Detector. detect(InputStream input, Metadata metadata)
Detects the content type of the given input document.MediaType
EmptyDetector. detect(InputStream input, Metadata metadata)
MediaType
MagicDetector. detect(InputStream input, Metadata metadata)
MediaType
NameDetector. detect(InputStream input, Metadata metadata)
Detects the content type of an input document based on the document name given in the input metadata.MediaType
OverrideDetector. detect(InputStream input, Metadata metadata)
MediaType
TextDetector. detect(InputStream input, Metadata metadata)
Looks at the beginning of the document input stream to determine whether the document is text or not.MediaType
TrainedModelDetector. detect(InputStream input, Metadata metadata)
MediaType
TypeDetector. detect(InputStream input, Metadata metadata)
Detects the content type of an input document based on a type hint given in the input metadata.MediaType
ZeroSizeFileDetector. detect(InputStream stream, Metadata metadata)
MediaType
NNTrainedModelBuilder. getType()
Methods in org.apache.tika.detect with parameters of type MediaType Modifier and Type Method Description static MagicDetector
MagicDetector. parse(MediaType mediaType, String type, String offset, String value, String mask)
protected void
TrainedModelDetector. registerModels(MediaType type, TrainedModel model)
void
NNTrainedModelBuilder. setType(MediaType type)
Constructors in org.apache.tika.detect with parameters of type MediaType Constructor Description MagicDetector(MediaType type, byte[] pattern)
Creates a detector for input documents that have the exact given byte pattern at the beginning of the document stream.MagicDetector(MediaType type, byte[] pattern, byte[] mask, boolean isRegex, boolean isStringIgnoreCase, int offsetRangeBegin, int offsetRangeEnd)
Creates a detector for input documents that meet the specified magic match.MagicDetector(MediaType type, byte[] pattern, byte[] mask, boolean isRegex, int offsetRangeBegin, int offsetRangeEnd)
Creates a detector for input documents that meet the specified magic match.MagicDetector(MediaType type, byte[] pattern, byte[] mask, int offsetRangeBegin, int offsetRangeEnd)
Creates a detector for input documents that meet the specified magic match.MagicDetector(MediaType type, byte[] pattern, int offset)
Creates a detector for input documents that have the exact given byte pattern at the given offset of the document stream.Constructor parameters in org.apache.tika.detect with type arguments of type MediaType Constructor Description NameDetector(Map<Pattern,MediaType> patterns)
Creates a new content type detector based on the given name patterns. -
Uses of MediaType in org.apache.tika.dl.imagerec
Fields in org.apache.tika.dl.imagerec with type parameters of type MediaType Modifier and Type Field Description static Set<MediaType>
DL4JVGG16Net. SUPPORTED_MIMES
Methods in org.apache.tika.dl.imagerec that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
DL4JInceptionV3Net. getSupportedMimes()
Set<MediaType>
DL4JVGG16Net. getSupportedMimes()
-
Uses of MediaType in org.apache.tika.embedder
Methods in org.apache.tika.embedder that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
Embedder. getSupportedEmbedTypes(ParseContext context)
Returns the set of media types supported by this embedder when used with the given parse context.Set<MediaType>
ExternalEmbedder. getSupportedEmbedTypes()
Set<MediaType>
ExternalEmbedder. getSupportedEmbedTypes(ParseContext context)
Method parameters in org.apache.tika.embedder with type arguments of type MediaType Modifier and Type Method Description void
ExternalEmbedder. setSupportedEmbedTypes(Set<MediaType> supportedEmbedTypes)
-
Uses of MediaType in org.apache.tika.example
Methods in org.apache.tika.example that return MediaType Modifier and Type Method Description MediaType
EncryptedPrescriptionDetector. detect(InputStream stream, Metadata metadata)
Methods in org.apache.tika.example that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
DirListParser. getSupportedTypes(ParseContext context)
Set<MediaType>
EncryptedPrescriptionParser. getSupportedTypes(ParseContext context)
Set<MediaType>
PrescriptionParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.extractor
Methods in org.apache.tika.extractor with parameters of type MediaType Modifier and Type Method Description void
EmbeddedResourceHandler. handle(String filename, MediaType mediaType, InputStream stream)
Called to process an embedded resource within the container. -
Uses of MediaType in org.apache.tika.fork
Methods in org.apache.tika.fork that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
ForkParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.mime
Fields in org.apache.tika.mime declared as MediaType Modifier and Type Field Description static MediaType
MediaType. APPLICATION_XML
static MediaType
MediaType. APPLICATION_ZIP
static MediaType
MediaType. EMPTY
static MediaType
MediaType. OCTET_STREAM
static MediaType
MediaType. TEXT_HTML
static MediaType
MediaType. TEXT_PLAIN
Methods in org.apache.tika.mime that return MediaType Modifier and Type Method Description static MediaType
MediaType. application(String type)
static MediaType
MediaType. audio(String type)
MediaType
MimeTypes. detect(InputStream input, Metadata metadata)
Automatically detects the MIME type of a document based on magic markers in the stream prefix and any given metadata hints.MediaType
ProbabilisticMimeDetectionSelector. detect(InputStream input, Metadata metadata)
MediaType
MediaType. getBaseType()
Returns the base form of the MediaType, excluding any parameters, such as "text/plain" for "text/plain; charset=utf-8"MediaType
MediaTypeRegistry. getSupertype(MediaType type)
Returns the supertype of the given type.MediaType
MimeType. getType()
Returns the normalized media type name.static MediaType
MediaType. image(String type)
MediaType
MediaTypeRegistry. normalize(MediaType type)
static MediaType
MediaType. parse(String string)
Parses the given string to a media type.static MediaType
MediaType. text(String type)
static MediaType
MediaType. video(String type)
Methods in org.apache.tika.mime that return types with arguments of type MediaType Modifier and Type Method Description SortedSet<MediaType>
MediaTypeRegistry. getAliases(MediaType type)
Returns the set of known aliases of the given canonical media type.SortedSet<MediaType>
MediaTypeRegistry. getChildTypes(MediaType type)
Returns the set of known children of the given canonical media typeSortedSet<MediaType>
MediaTypeRegistry. getTypes()
Returns the set of all known canonical media types.static Set<MediaType>
MediaType. set(String... types)
Convenience method that parses the given media type strings and returns an unmodifiable set that contains all the parsed types.static Set<MediaType>
MediaType. set(MediaType... types)
Convenience method that returns an unmodifiable set that contains all the given media types.Methods in org.apache.tika.mime with parameters of type MediaType Modifier and Type Method Description void
MediaTypeRegistry. addAlias(MediaType type, MediaType alias)
void
MediaTypeRegistry. addSuperType(MediaType type, MediaType supertype)
void
MediaTypeRegistry. addType(MediaType type)
int
MediaType. compareTo(MediaType that)
SortedSet<MediaType>
MediaTypeRegistry. getAliases(MediaType type)
Returns the set of known aliases of the given canonical media type.SortedSet<MediaType>
MediaTypeRegistry. getChildTypes(MediaType type)
Returns the set of known children of the given canonical media typeMediaType
MediaTypeRegistry. getSupertype(MediaType type)
Returns the supertype of the given type.boolean
MediaTypeRegistry. isInstanceOf(String a, MediaType b)
Parses and normalises the given media type string and checks whether the result equals the given base type or is a specialization of it.boolean
MediaTypeRegistry. isInstanceOf(MediaType a, MediaType b)
Checks whether the given media type equals the given base type or is a specialization of it.boolean
MediaTypeRegistry. isSpecializationOf(MediaType a, MediaType b)
Checks whether the given media type a is a specialization of a more generic type b.MediaType
MediaTypeRegistry. normalize(MediaType type)
static Set<MediaType>
MediaType. set(MediaType... types)
Convenience method that returns an unmodifiable set that contains all the given media types.void
MimeTypes. setSuperType(MimeType type, MediaType parent)
Constructors in org.apache.tika.mime with parameters of type MediaType Constructor Description MediaType(MediaType type, String name, String value)
Creates a media type by adding a parameter to a base type.MediaType(MediaType type, Charset charset)
Creates a media type by adding the "charset" parameter to a base type.MediaType(MediaType type, Map<String,String> parameters)
-
Uses of MediaType in org.apache.tika.parser
Methods in org.apache.tika.parser that return types with arguments of type MediaType Modifier and Type Method Description Map<MediaType,List<Parser>>
CompositeParser. findDuplicateParsers(ParseContext context)
Utility method that goes through all the component parsers and finds all media types for which more than one parser declares support.Map<MediaType,Parser>
CompositeParser. getParsers()
Returns the component parsers.Map<MediaType,Parser>
CompositeParser. getParsers(ParseContext context)
Map<MediaType,Parser>
DefaultParser. getParsers(ParseContext context)
Set<MediaType>
CompositeParser. getSupportedTypes(ParseContext context)
Set<MediaType>
CryptoParser. getSupportedTypes(ParseContext context)
Set<MediaType>
DelegatingParser. getSupportedTypes(ParseContext context)
Set<MediaType>
EmptyParser. getSupportedTypes(ParseContext context)
Set<MediaType>
ErrorParser. getSupportedTypes(ParseContext context)
Set<MediaType>
NetworkParser. getSupportedTypes(ParseContext context)
Set<MediaType>
Parser. getSupportedTypes(ParseContext context)
Returns the set of media types supported by this parser when used with the given parse context.Set<MediaType>
ParserDecorator. getSupportedTypes(ParseContext context)
Delegates the method call to the decorated parser.Set<MediaType>
RecursiveParserWrapper. getSupportedTypes(ParseContext context)
Method parameters in org.apache.tika.parser with type arguments of type MediaType Modifier and Type Method Description void
CompositeParser. setParsers(Map<MediaType,Parser> parsers)
Sets the component parsers.static Parser
ParserDecorator. withFallbacks(Collection<? extends Parser> parsers, Set<MediaType> types)
Deprecated.Do not use until the TODOs are resolved, see TIKA-1509static Parser
ParserDecorator. withoutTypes(Parser parser, Set<MediaType> excludeTypes)
Decorates the given parser so that it never claims to support parsing of the given media types, but will work for all others.static Parser
ParserDecorator. withTypes(Parser parser, Set<MediaType> types)
Decorates the given parser so that it always claims to support parsing of the given media types.Constructor parameters in org.apache.tika.parser with type arguments of type MediaType Constructor Description CryptoParser(String transformation, Provider provider, Set<MediaType> types)
CryptoParser(String transformation, Set<MediaType> types)
NetworkParser(URI uri, Set<MediaType> supportedTypes)
-
Uses of MediaType in org.apache.tika.parser.apple
Methods in org.apache.tika.parser.apple that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
AppleSingleFileParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.asm
Methods in org.apache.tika.parser.asm that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
ClassParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.audio
Methods in org.apache.tika.parser.audio that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
AudioParser. getSupportedTypes(ParseContext context)
Set<MediaType>
MidiParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.captioning.tf
Methods in org.apache.tika.parser.captioning.tf that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
TensorflowRESTCaptioner. getSupportedMimes()
-
Uses of MediaType in org.apache.tika.parser.chm
Methods in org.apache.tika.parser.chm that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
ChmParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.code
Methods in org.apache.tika.parser.code that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
SourceCodeParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.crypto
Methods in org.apache.tika.parser.crypto that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
Pkcs7Parser. getSupportedTypes(ParseContext context)
Set<MediaType>
TSDParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.csv
Methods in org.apache.tika.parser.csv that return MediaType Modifier and Type Method Description MediaType
CSVParams. getMediaType()
MediaType
CSVResult. getMediaType()
Methods in org.apache.tika.parser.csv that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
TextAndCSVParser. getSupportedTypes(ParseContext context)
Methods in org.apache.tika.parser.csv with parameters of type MediaType Modifier and Type Method Description void
CSVParams. setMediaType(MediaType mediaType)
Constructors in org.apache.tika.parser.csv with parameters of type MediaType Constructor Description CSVResult(double confidence, MediaType mediaType, Character delimiter)
-
Uses of MediaType in org.apache.tika.parser.dbf
Methods in org.apache.tika.parser.dbf that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
DBFParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.dif
Methods in org.apache.tika.parser.dif that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
DIFParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.dwg
Methods in org.apache.tika.parser.dwg that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
DWGParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.envi
Methods in org.apache.tika.parser.envi that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
EnviHeaderParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.epub
Methods in org.apache.tika.parser.epub that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
EpubContentParser. getSupportedTypes(ParseContext context)
Set<MediaType>
EpubParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.executable
Methods in org.apache.tika.parser.executable that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
ExecutableParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.external
Methods in org.apache.tika.parser.external that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
ExternalParser. getSupportedTypes()
Set<MediaType>
ExternalParser. getSupportedTypes(ParseContext context)
Method parameters in org.apache.tika.parser.external with type arguments of type MediaType Modifier and Type Method Description void
ExternalParser. setSupportedTypes(Set<MediaType> supportedTypes)
-
Uses of MediaType in org.apache.tika.parser.feed
Methods in org.apache.tika.parser.feed that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
FeedParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.font
Methods in org.apache.tika.parser.font that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
AdobeFontMetricParser. getSupportedTypes(ParseContext context)
Set<MediaType>
TrueTypeParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.gdal
Methods in org.apache.tika.parser.gdal that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
GDALParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.geo.topic
Methods in org.apache.tika.parser.geo.topic that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
GeoParser. getSupportedTypes(ParseContext parseContext)
-
Uses of MediaType in org.apache.tika.parser.geoinfo
Methods in org.apache.tika.parser.geoinfo that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
GeographicInformationParser. getSupportedTypes(ParseContext parseContext)
-
Uses of MediaType in org.apache.tika.parser.grib
Methods in org.apache.tika.parser.grib that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
GribParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.hdf
Methods in org.apache.tika.parser.hdf that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
HDFParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.html
Methods in org.apache.tika.parser.html that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
HtmlParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.hwp
Methods in org.apache.tika.parser.hwp that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
HwpV5Parser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.image
Methods in org.apache.tika.parser.image that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
BPGParser. getSupportedTypes(ParseContext context)
Set<MediaType>
ICNSParser. getSupportedTypes(ParseContext context)
Set<MediaType>
ImageParser. getSupportedTypes(ParseContext context)
Set<MediaType>
PSDParser. getSupportedTypes(ParseContext context)
Set<MediaType>
TiffParser. getSupportedTypes(ParseContext context)
Set<MediaType>
WebPParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.iptc
Methods in org.apache.tika.parser.iptc that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
IptcAnpaParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.isatab
Methods in org.apache.tika.parser.isatab that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
ISArchiveParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.iwork
Methods in org.apache.tika.parser.iwork that return MediaType Modifier and Type Method Description MediaType
IWorkPackageParser.IWORKDocumentType. getType()
Methods in org.apache.tika.parser.iwork that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
IWorkPackageParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.iwork.iwana
Methods in org.apache.tika.parser.iwork.iwana that return MediaType Modifier and Type Method Description static MediaType
IWork13PackageParser.IWork13DocumentType. detect(org.apache.commons.compress.archivers.zip.ZipFile zipFile)
protected static MediaType
IWork13PackageParser.IWork13DocumentType. detectIfPossible(ZipEntry entry)
MediaType
IWork13PackageParser.IWork13DocumentType. getType()
Methods in org.apache.tika.parser.iwork.iwana that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
IWork13PackageParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.jdbc
Methods in org.apache.tika.parser.jdbc that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
SQLite3Parser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.journal
Methods in org.apache.tika.parser.journal that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
JournalParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.jpeg
Methods in org.apache.tika.parser.jpeg that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
JpegParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.mail
Methods in org.apache.tika.parser.mail that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
RFC822Parser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.mat
Methods in org.apache.tika.parser.mat that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
MatParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.mbox
Fields in org.apache.tika.parser.mbox declared as MediaType Modifier and Type Field Description static MediaType
OutlookPSTParser. MS_OUTLOOK_PST_MIMETYPE
Methods in org.apache.tika.parser.mbox that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
MboxParser. getSupportedTypes(ParseContext context)
Set<MediaType>
OutlookPSTParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.microsoft
Fields in org.apache.tika.parser.microsoft declared as MediaType Modifier and Type Field Description static MediaType
POIFSContainerDetector. COMP_OBJ
Some other kind of embedded document, in a CompObj container within another OLE2 documentstatic MediaType
POIFSContainerDetector. DOC
Microsoft Wordstatic MediaType
POIFSContainerDetector. GENERAL_EMBEDDED
General embedded document type within an OLE2 containerstatic MediaType
POIFSContainerDetector. HWP
Hangul Word Processor (Korean)static MediaType
POIFSContainerDetector. MPP
Microsoft Projectstatic MediaType
POIFSContainerDetector. MS_EQUATION
Equation embedded in Office docsstatic MediaType
POIFSContainerDetector. MS_GRAPH_CHART
Graph/Charts embedded in PowerPoint and Excelstatic MediaType
POIFSContainerDetector. MSG
Microsoft Outlookstatic MediaType
POIFSContainerDetector. OLE
The OLE base file formatstatic MediaType
POIFSContainerDetector. OLE10_NATIVE
An OLE10 Native embedded document within another OLE2 documentstatic MediaType
POIFSContainerDetector. OOXML_PROTECTED
The protected OOXML base file formatstatic MediaType
POIFSContainerDetector. PPT
Microsoft PowerPointstatic MediaType
POIFSContainerDetector. PUB
Microsoft Publisherstatic MediaType
POIFSContainerDetector. QUATTROPRO
Base QuattroPro mimestatic MediaType
POIFSContainerDetector. SDA
StarOffice Drawstatic MediaType
POIFSContainerDetector. SDC
StarOffice Calcstatic MediaType
POIFSContainerDetector. SDD
StarOffice Impressstatic MediaType
POIFSContainerDetector. SDW
StarOffice Writerstatic MediaType
POIFSContainerDetector. SLDWORKS
SolidWorks CAD filestatic MediaType
POIFSContainerDetector. VSD
Microsoft Visiostatic MediaType
POIFSContainerDetector. WPS
Microsoft Worksstatic MediaType
POIFSContainerDetector. XLR
Microsoft Works Spreadsheet 7.0static MediaType
POIFSContainerDetector. XLS
Microsoft ExcelMethods in org.apache.tika.parser.microsoft that return MediaType Modifier and Type Method Description MediaType
POIFSContainerDetector. detect(InputStream input, Metadata metadata)
protected static MediaType
POIFSContainerDetector. detect(Set<String> names)
Deprecated.UsePOIFSContainerDetector.detect(Set, DirectoryEntry)
and pass the root entry of the filesystem whose type is to be detected, as a second argument.protected static MediaType
POIFSContainerDetector. detect(Set<String> names, org.apache.poi.poifs.filesystem.DirectoryEntry root)
Internal detection of the specific kind of OLE2 document, based on the names of the top-level streams within the file.MediaType
OfficeParser.POIFSDocumentType. getType()
Methods in org.apache.tika.parser.microsoft that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
EMFParser. getSupportedTypes(ParseContext context)
Set<MediaType>
JackcessParser. getSupportedTypes(ParseContext context)
Set<MediaType>
MSOwnerFileParser. getSupportedTypes(ParseContext context)
Set<MediaType>
OfficeParser. getSupportedTypes(ParseContext context)
Set<MediaType>
OldExcelParser. getSupportedTypes(ParseContext context)
Set<MediaType>
TNEFParser. getSupportedTypes(ParseContext context)
Set<MediaType>
WMFParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.microsoft.ooxml
Fields in org.apache.tika.parser.microsoft.ooxml declared as MediaType Modifier and Type Field Description protected static MediaType
OOXMLParser. XPS
Fields in org.apache.tika.parser.microsoft.ooxml with type parameters of type MediaType Modifier and Type Field Description protected static Set<MediaType>
OOXMLParser. SUPPORTED_TYPES
protected static Set<MediaType>
OOXMLParser. UNSUPPORTED_OOXML_TYPES
We claim to support all OOXML files, but we actually don't support a small number of them.Methods in org.apache.tika.parser.microsoft.ooxml that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
OOXMLParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.microsoft.ooxml.xwpf.ml2006
Fields in org.apache.tika.parser.microsoft.ooxml.xwpf.ml2006 with type parameters of type MediaType Modifier and Type Field Description protected static Set<MediaType>
Word2006MLParser. SUPPORTED_TYPES
Methods in org.apache.tika.parser.microsoft.ooxml.xwpf.ml2006 that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
Word2006MLParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.microsoft.xml
Methods in org.apache.tika.parser.microsoft.xml that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
SpreadsheetMLParser. getSupportedTypes(ParseContext context)
Set<MediaType>
WordMLParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.mp3
Methods in org.apache.tika.parser.mp3 that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
Mp3Parser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.mp4
Methods in org.apache.tika.parser.mp4 that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
MP4Parser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.ner
Fields in org.apache.tika.parser.ner with type parameters of type MediaType Modifier and Type Field Description static Set<MediaType>
NamedEntityParser. MEDIA_TYPES
Methods in org.apache.tika.parser.ner that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
NamedEntityParser. getSupportedTypes(ParseContext parseContext)
-
Uses of MediaType in org.apache.tika.parser.netcdf
Methods in org.apache.tika.parser.netcdf that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
NetCDFParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.ocr
Methods in org.apache.tika.parser.ocr that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
TesseractOCRParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.odf
Methods in org.apache.tika.parser.odf that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
OpenDocumentContentParser. getSupportedTypes(ParseContext context)
Set<MediaType>
OpenDocumentParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.pdf
Methods in org.apache.tika.parser.pdf that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
PDFParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.pkg
Methods in org.apache.tika.parser.pkg that return MediaType Modifier and Type Method Description MediaType
StreamingZipContainerDetector. detect(InputStream is, Metadata metadata)
MediaType
ZipContainerDetector. detect(InputStream input, Metadata metadata)
static MediaType
ZipContainerDetector. detectOfficeOpenXML(org.apache.poi.openxml4j.opc.OPCPackage pkg)
Detects the type of an OfficeOpenXML (OOXML) file from opened Packagestatic MediaType
StreamingZipContainerDetector. parseOOXMLContentTypes(InputStream is)
Methods in org.apache.tika.parser.pkg that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
CompressorParser. getSupportedTypes(ParseContext context)
Set<MediaType>
PackageParser. getSupportedTypes(ParseContext context)
Set<MediaType>
RarParser. getSupportedTypes(ParseContext arg0)
-
Uses of MediaType in org.apache.tika.parser.pot
Methods in org.apache.tika.parser.pot that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
PooledTimeSeriesParser. getSupportedTypes(ParseContext context)
Returns the set of media types supported by this parser when used with the given parse context. -
Uses of MediaType in org.apache.tika.parser.prt
Methods in org.apache.tika.parser.prt that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
PRTParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.recognition
Methods in org.apache.tika.parser.recognition that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
ObjectRecogniser. getSupportedMimes()
The mimes supported by this recogniserSet<MediaType>
AgeRecogniser. getSupportedTypes(ParseContext parseContext)
Set<MediaType>
ObjectRecognitionParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.recognition.tf
Methods in org.apache.tika.parser.recognition.tf that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
TensorflowImageRecParser. getSupportedMimes()
Set<MediaType>
TensorflowRESTRecogniser. getSupportedMimes()
-
Uses of MediaType in org.apache.tika.parser.rtf
Methods in org.apache.tika.parser.rtf that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
RTFParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.sas
Methods in org.apache.tika.parser.sas that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
SAS7BDATParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.sentiment
Methods in org.apache.tika.parser.sentiment that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
SentimentAnalysisParser. getSupportedTypes(ParseContext context)
Returns the types supported -
Uses of MediaType in org.apache.tika.parser.strings
Methods in org.apache.tika.parser.strings that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
Latin1StringsParser. getSupportedTypes(ParseContext arg0)
Set<MediaType>
StringsParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.txt
Methods in org.apache.tika.parser.txt that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
TXTParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.utils
Methods in org.apache.tika.parser.utils that return MediaType Modifier and Type Method Description MediaType
DataURIScheme. getMediaType()
-
Uses of MediaType in org.apache.tika.parser.video
Methods in org.apache.tika.parser.video that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
FLVParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.wordperfect
Fields in org.apache.tika.parser.wordperfect declared as MediaType Modifier and Type Field Description static MediaType
QuattroProParser. QP_7_8
static MediaType
QuattroProParser. QP_9
Methods in org.apache.tika.parser.wordperfect that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
QuattroProParser. getSupportedTypes(ParseContext context)
Set<MediaType>
WordPerfectParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.xliff
Methods in org.apache.tika.parser.xliff that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
XLIFF12Parser. getSupportedTypes(ParseContext context)
Set<MediaType>
XLZParser. getSupportedTypes(ParseContext context)
-
Uses of MediaType in org.apache.tika.parser.xml
Methods in org.apache.tika.parser.xml that return types with arguments of type MediaType Modifier and Type Method Description Set<MediaType>
FictionBookParser. getSupportedTypes(ParseContext context)
Set<MediaType>
XMLParser. getSupportedTypes(ParseContext context)
-