Modifier and Type | Method and Description |
---|---|
Parser |
TikaConfig.getParser(MediaType mimeType)
Deprecated.
Use the
TikaConfig.getParser() method instead |
Modifier and Type | Method and Description |
---|---|
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 |
MagicDetector.detect(InputStream input,
Metadata metadata) |
MediaType |
TrainedModelDetector.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 |
ZeroSizeFileDetector.detect(InputStream stream,
Metadata metadata) |
MediaType |
EmptyDetector.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 |
OverrideDetector.detect(InputStream input,
Metadata metadata) |
MediaType |
Detector.detect(InputStream input,
Metadata metadata)
Detects the content type of the given input document.
|
MediaType |
CompositeDetector.detect(InputStream input,
Metadata metadata) |
MediaType |
NNTrainedModelBuilder.getType() |
Modifier and Type | Method and 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) |
Constructor and 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 and Description |
---|
NameDetector(Map<Pattern,MediaType> patterns)
Creates a new content type detector based on the given name patterns.
|
Modifier and Type | Field and Description |
---|---|
static Set<MediaType> |
DL4JVGG16Net.SUPPORTED_MIMES |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
DL4JVGG16Net.getSupportedMimes() |
Set<MediaType> |
DL4JInceptionV3Net.getSupportedMimes() |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
ExternalEmbedder.getSupportedEmbedTypes() |
Set<MediaType> |
ExternalEmbedder.getSupportedEmbedTypes(ParseContext context) |
Set<MediaType> |
Embedder.getSupportedEmbedTypes(ParseContext context)
Returns the set of media types supported by this embedder when used with
the given parse context.
|
Modifier and Type | Method and Description |
---|---|
void |
ExternalEmbedder.setSupportedEmbedTypes(Set<MediaType> supportedEmbedTypes) |
Modifier and Type | Method and Description |
---|---|
MediaType |
EncryptedPrescriptionDetector.detect(InputStream stream,
Metadata metadata) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
EncryptedPrescriptionParser.getSupportedTypes(ParseContext context) |
Set<MediaType> |
PrescriptionParser.getSupportedTypes(ParseContext context) |
Set<MediaType> |
DirListParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
void |
EmbeddedResourceHandler.handle(String filename,
MediaType mediaType,
InputStream stream)
Called to process an embedded resource within the container.
|
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
ForkParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Field and 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 |
Modifier and Type | Method and 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) |
Modifier and Type | Method and 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 type
|
SortedSet<MediaType> |
MediaTypeRegistry.getTypes()
Returns the set of all known canonical media types.
|
static Set<MediaType> |
MediaType.set(MediaType... types)
Convenience method that returns an unmodifiable set that contains
all the given 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.
|
Modifier and Type | Method and 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 type
|
MediaType |
MediaTypeRegistry.getSupertype(MediaType type)
Returns the supertype of the given type.
|
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.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.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) |
Constructor and Description |
---|
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) |
MediaType(MediaType type,
String name,
String value)
Creates a media type by adding a parameter to a base type.
|
Modifier and Type | Method and 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> |
EmptyParser.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> |
DelegatingParser.getSupportedTypes(ParseContext context) |
Set<MediaType> |
ErrorParser.getSupportedTypes(ParseContext context) |
Set<MediaType> |
ParserDecorator.getSupportedTypes(ParseContext context)
Delegates the method call to the decorated parser.
|
Set<MediaType> |
RecursiveParserWrapper.getSupportedTypes(ParseContext context) |
Set<MediaType> |
CompositeParser.getSupportedTypes(ParseContext context) |
Set<MediaType> |
CryptoParser.getSupportedTypes(ParseContext context) |
Set<MediaType> |
NetworkParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and 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-1509
|
static 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 and Description |
---|
CryptoParser(String transformation,
Provider provider,
Set<MediaType> types) |
CryptoParser(String transformation,
Set<MediaType> types) |
NetworkParser(URI uri,
Set<MediaType> supportedTypes) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
AppleSingleFileParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
ClassParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
AudioParser.getSupportedTypes(ParseContext context) |
Set<MediaType> |
MidiParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
TensorflowRESTCaptioner.getSupportedMimes() |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
ChmParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
SourceCodeParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
TSDParser.getSupportedTypes(ParseContext context) |
Set<MediaType> |
Pkcs7Parser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
MediaType |
CSVParams.getMediaType() |
MediaType |
CSVResult.getMediaType() |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
TextAndCSVParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
void |
CSVParams.setMediaType(MediaType mediaType) |
Constructor and Description |
---|
CSVResult(double confidence,
MediaType mediaType,
Character delimiter) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
DBFParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
DIFParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
DWGParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
EnviHeaderParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
EpubParser.getSupportedTypes(ParseContext context) |
Set<MediaType> |
EpubContentParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
ExecutableParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
ExternalParser.getSupportedTypes() |
Set<MediaType> |
ExternalParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
void |
ExternalParser.setSupportedTypes(Set<MediaType> supportedTypes) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
FeedParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
AdobeFontMetricParser.getSupportedTypes(ParseContext context) |
Set<MediaType> |
TrueTypeParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
GDALParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
GeoParser.getSupportedTypes(ParseContext parseContext) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
GeographicInformationParser.getSupportedTypes(ParseContext parseContext) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
GribParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
HDFParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
HtmlParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
HwpV5Parser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
PSDParser.getSupportedTypes(ParseContext context) |
Set<MediaType> |
TiffParser.getSupportedTypes(ParseContext context) |
Set<MediaType> |
ICNSParser.getSupportedTypes(ParseContext context) |
Set<MediaType> |
BPGParser.getSupportedTypes(ParseContext context) |
Set<MediaType> |
ImageParser.getSupportedTypes(ParseContext context) |
Set<MediaType> |
WebPParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
IptcAnpaParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
ISArchiveParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
MediaType |
IWorkPackageParser.IWORKDocumentType.getType() |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
IWorkPackageParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
static MediaType |
IWork18PackageParser.IWork18DocumentType.detect(org.apache.commons.compress.archivers.zip.ZipFile zipFile) |
static MediaType |
IWork13PackageParser.IWork13DocumentType.detect(org.apache.commons.compress.archivers.zip.ZipFile zipFile) |
static MediaType |
IWork18PackageParser.IWork18DocumentType.detectIfPossible(ZipEntry entry) |
static MediaType |
IWork13PackageParser.IWork13DocumentType.detectIfPossible(ZipEntry entry) |
MediaType |
IWork18PackageParser.IWork18DocumentType.getType() |
MediaType |
IWork13PackageParser.IWork13DocumentType.getType() |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
IWork18PackageParser.getSupportedTypes(ParseContext context) |
Set<MediaType> |
IWork13PackageParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
SQLite3Parser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
JournalParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
JpegParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
RFC822Parser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
MatParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Field and Description |
---|---|
static MediaType |
OutlookPSTParser.MS_OUTLOOK_PST_MIMETYPE |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
OutlookPSTParser.getSupportedTypes(ParseContext context) |
Set<MediaType> |
MboxParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Field and Description |
---|---|
static MediaType |
POIFSContainerDetector.COMP_OBJ
Some other kind of embedded document, in a CompObj container within another OLE2 document
|
static MediaType |
POIFSContainerDetector.DOC
Microsoft Word
|
static MediaType |
POIFSContainerDetector.GENERAL_EMBEDDED
General embedded document type within an OLE2 container
|
static MediaType |
POIFSContainerDetector.HWP
Hangul Word Processor (Korean)
|
static MediaType |
POIFSContainerDetector.MPP
Microsoft Project
|
static MediaType |
POIFSContainerDetector.MS_EQUATION
Equation embedded in Office docs
|
static MediaType |
POIFSContainerDetector.MS_GRAPH_CHART
Graph/Charts embedded in PowerPoint and Excel
|
static MediaType |
POIFSContainerDetector.MSG
Microsoft Outlook
|
static MediaType |
POIFSContainerDetector.OLE
The OLE base file format
|
static MediaType |
POIFSContainerDetector.OLE10_NATIVE
An OLE10 Native embedded document within another OLE2 document
|
static MediaType |
POIFSContainerDetector.OOXML_PROTECTED
The protected OOXML base file format
|
static MediaType |
POIFSContainerDetector.PPT
Microsoft PowerPoint
|
static MediaType |
POIFSContainerDetector.PUB
Microsoft Publisher
|
static MediaType |
POIFSContainerDetector.QUATTROPRO
Base QuattroPro mime
|
static MediaType |
POIFSContainerDetector.SDA
StarOffice Draw
|
static MediaType |
POIFSContainerDetector.SDC
StarOffice Calc
|
static MediaType |
POIFSContainerDetector.SDD
StarOffice Impress
|
static MediaType |
POIFSContainerDetector.SDW
StarOffice Writer
|
static MediaType |
POIFSContainerDetector.SLDWORKS
SolidWorks CAD file
|
static MediaType |
POIFSContainerDetector.VSD
Microsoft Visio
|
static MediaType |
POIFSContainerDetector.WPS
Microsoft Works
|
static MediaType |
POIFSContainerDetector.XLR
Microsoft Works Spreadsheet 7.0
|
static MediaType |
POIFSContainerDetector.XLS
Microsoft Excel
|
Modifier and Type | Method and Description |
---|---|
MediaType |
POIFSContainerDetector.detect(InputStream input,
Metadata metadata) |
protected static MediaType |
POIFSContainerDetector.detect(Set<String> names)
Deprecated.
Use
POIFSContainerDetector.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() |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
JackcessParser.getSupportedTypes(ParseContext context) |
Set<MediaType> |
OfficeParser.getSupportedTypes(ParseContext context) |
Set<MediaType> |
EMFParser.getSupportedTypes(ParseContext context) |
Set<MediaType> |
TNEFParser.getSupportedTypes(ParseContext context) |
Set<MediaType> |
MSOwnerFileParser.getSupportedTypes(ParseContext context) |
Set<MediaType> |
OldExcelParser.getSupportedTypes(ParseContext context) |
Set<MediaType> |
WMFParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
OneNoteParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Field and Description |
---|---|
protected static MediaType |
OOXMLParser.XPS |
Modifier and Type | Field and 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.
|
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
OOXMLParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Field and Description |
---|---|
protected static Set<MediaType> |
Word2006MLParser.SUPPORTED_TYPES |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
Word2006MLParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
SpreadsheetMLParser.getSupportedTypes(ParseContext context) |
Set<MediaType> |
WordMLParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
Mp3Parser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
MP4Parser.getSupportedTypes(ParseContext context) |
Modifier and Type | Field and Description |
---|---|
static Set<MediaType> |
NamedEntityParser.MEDIA_TYPES |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
NamedEntityParser.getSupportedTypes(ParseContext parseContext) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
NetCDFParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
TesseractOCRParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
OpenDocumentContentParser.getSupportedTypes(ParseContext context) |
Set<MediaType> |
OpenDocumentParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
PDFParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
MediaType |
ZipContainerDetector.detect(InputStream input,
Metadata metadata) |
MediaType |
StreamingZipContainerDetector.detect(InputStream is,
Metadata metadata) |
static MediaType |
ZipContainerDetector.detectOfficeOpenXML(org.apache.poi.openxml4j.opc.OPCPackage pkg)
Detects the type of an OfficeOpenXML (OOXML) file from
opened Package
|
static MediaType |
StreamingZipContainerDetector.parseOOXMLContentTypes(InputStream is) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
PackageParser.getSupportedTypes(ParseContext context) |
Set<MediaType> |
RarParser.getSupportedTypes(ParseContext arg0) |
Set<MediaType> |
CompressorParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
PooledTimeSeriesParser.getSupportedTypes(ParseContext context)
Returns the set of media types supported by this parser when used with the
given parse context.
|
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
PRTParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
ObjectRecogniser.getSupportedMimes()
The mimes supported by this recogniser
|
Set<MediaType> |
AgeRecogniser.getSupportedTypes(ParseContext parseContext) |
Set<MediaType> |
ObjectRecognitionParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
TensorflowImageRecParser.getSupportedMimes() |
Set<MediaType> |
TensorflowRESTRecogniser.getSupportedMimes() |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
RTFParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
SAS7BDATParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
SentimentAnalysisParser.getSupportedTypes(ParseContext context)
Returns the types supported
|
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
Latin1StringsParser.getSupportedTypes(ParseContext arg0) |
Set<MediaType> |
StringsParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
TXTParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
MediaType |
DataURIScheme.getMediaType() |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
FLVParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Field and Description |
---|---|
static MediaType |
QuattroProParser.QP_7_8 |
static MediaType |
QuattroProParser.QP_9 |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
WordPerfectParser.getSupportedTypes(ParseContext context) |
Set<MediaType> |
QuattroProParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
XLIFF12Parser.getSupportedTypes(ParseContext context) |
Set<MediaType> |
XLZParser.getSupportedTypes(ParseContext context) |
Modifier and Type | Method and Description |
---|---|
Set<MediaType> |
XMLParser.getSupportedTypes(ParseContext context) |
Set<MediaType> |
FictionBookParser.getSupportedTypes(ParseContext context) |
Set<MediaType> |
XMLProfiler.getSupportedTypes(ParseContext context) |
Copyright © 2007–2020 The Apache Software Foundation. All rights reserved.