|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use MediaType | |
|---|---|
| org.apache.tika.config | Tika configuration tools. |
| org.apache.tika.detect | Media type detection. |
| org.apache.tika.embedder | |
| org.apache.tika.extractor | Extraction of component documents. |
| org.apache.tika.fork | Forked parser. |
| org.apache.tika.mime | Media type information. |
| org.apache.tika.parser | Tika parsers. |
| org.apache.tika.parser.external | External parser process. |
| Uses of MediaType in org.apache.tika.config |
|---|
| Methods in org.apache.tika.config with parameters of type MediaType | |
|---|---|
Parser |
TikaConfig.getParser(MediaType mimeType)
Deprecated. Use the TikaConfig.getParser() method instead |
| Uses of MediaType in org.apache.tika.detect |
|---|
| Methods in org.apache.tika.detect that return MediaType | |
|---|---|
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 |
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 |
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 |
MagicDetector.detect(InputStream input,
Metadata metadata)
|
MediaType |
EmptyDetector.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)
|
| Methods in org.apache.tika.detect with parameters of type MediaType | |
|---|---|
static MagicDetector |
MagicDetector.parse(MediaType mediaType,
String type,
String offset,
String value,
String mask)
|
| Constructors in org.apache.tika.detect with parameters of type MediaType | |
|---|---|
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,
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 | |
|---|---|
NameDetector(Map<Pattern,MediaType> patterns)
Creates a new content type detector based on the given name patterns. |
|
| Uses of MediaType in org.apache.tika.embedder |
|---|
| Methods in org.apache.tika.embedder that return types with arguments of type MediaType | |
|---|---|
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. |
| Method parameters in org.apache.tika.embedder with type arguments of type MediaType | |
|---|---|
void |
ExternalEmbedder.setSupportedEmbedTypes(Set<MediaType> supportedEmbedTypes)
|
| Uses of MediaType in org.apache.tika.extractor |
|---|
| Methods in org.apache.tika.extractor with parameters of type MediaType | |
|---|---|
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 | |
|---|---|
Set<MediaType> |
ForkParser.getSupportedTypes(ParseContext context)
|
| Uses of MediaType in org.apache.tika.mime |
|---|
| Fields in org.apache.tika.mime declared as MediaType | |
|---|---|
static MediaType |
MediaType.APPLICATION_XML
|
static MediaType |
MediaType.APPLICATION_ZIP
|
static MediaType |
MediaType.OCTET_STREAM
|
static MediaType |
MediaType.TEXT_HTML
|
static MediaType |
MediaType.TEXT_PLAIN
|
| Methods in org.apache.tika.mime that return MediaType | |
|---|---|
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 |
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 | |
|---|---|
SortedSet<MediaType> |
MediaTypeRegistry.getAliases(MediaType type)
Returns the set of known aliases 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. |
| Methods in org.apache.tika.mime with parameters of type MediaType | |
|---|---|
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. |
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)
|
| Constructors in org.apache.tika.mime with parameters of type MediaType | |
|---|---|
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. |
|
| Uses of MediaType in org.apache.tika.parser |
|---|
| Methods in org.apache.tika.parser that return types with arguments of type MediaType | |
|---|---|
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> |
DefaultParser.getParsers(ParseContext context)
|
Map<MediaType,Parser> |
CompositeParser.getParsers(ParseContext context)
|
Set<MediaType> |
ParserDecorator.getSupportedTypes(ParseContext context)
Delegates the method call to the decorated parser. |
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> |
NetworkParser.getSupportedTypes(ParseContext context)
|
Set<MediaType> |
ErrorParser.getSupportedTypes(ParseContext context)
|
Set<MediaType> |
EmptyParser.getSupportedTypes(ParseContext context)
|
Set<MediaType> |
DelegatingParser.getSupportedTypes(ParseContext context)
|
Set<MediaType> |
CryptoParser.getSupportedTypes(ParseContext context)
|
Set<MediaType> |
CompositeParser.getSupportedTypes(ParseContext context)
|
| Method parameters in org.apache.tika.parser with type arguments of type MediaType | |
|---|---|
void |
CompositeParser.setParsers(Map<MediaType,Parser> parsers)
Sets the component parsers. |
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 | |
|---|---|
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.external |
|---|
| Methods in org.apache.tika.parser.external that return types with arguments of type MediaType | |
|---|---|
Set<MediaType> |
ExternalParser.getSupportedTypes()
|
Set<MediaType> |
ExternalParser.getSupportedTypes(ParseContext context)
|
| Method parameters in org.apache.tika.parser.external with type arguments of type MediaType | |
|---|---|
void |
ExternalParser.setSupportedTypes(Set<MediaType> supportedTypes)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||