Package org.apache.tika.mime
Class MediaTypeRegistry
java.lang.Object
org.apache.tika.mime.MediaTypeRegistry
- All Implemented Interfaces:
Serializable
Registry of known Internet media types.
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
void
addSuperType
(MediaType type, MediaType supertype) void
getAliases
(MediaType type) Returns the set of known aliases of the given canonical media type.getChildTypes
(MediaType type) Returns the set of known children of the given canonical media typestatic MediaTypeRegistry
Returns the built-in media type registry included in Tika.getSupertype
(MediaType type) Returns the supertype of the given type.getTypes()
Returns the set of all known canonical media types.boolean
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
isInstanceOf
(MediaType a, MediaType b) Checks whether the given media type equals the given base type or is a specialization of it.boolean
Checks whether the given media type a is a specialization of a more generic type b.
-
Constructor Details
-
MediaTypeRegistry
public MediaTypeRegistry()
-
-
Method Details
-
getDefaultRegistry
Returns the built-in media type registry included in Tika.- Returns:
- default media type registry
- Since:
- Apache Tika 0.8
-
getTypes
Returns the set of all known canonical media types. Type aliases are not included in the returned set.- Returns:
- canonical media types
- Since:
- Apache Tika 0.8
-
getAliases
Returns the set of known aliases of the given canonical media type.- Parameters:
type
- canonical media type- Returns:
- known aliases
- Since:
- Apache Tika 0.8
-
getChildTypes
Returns the set of known children of the given canonical media type- Parameters:
type
- canonical media type- Returns:
- known children
- Since:
- Apache Tika 1.8
-
addType
-
addAlias
-
addSuperType
-
normalize
-
isSpecializationOf
Checks whether the given media type a is a specialization of a more generic type b. Both types should be already normalised.- Parameters:
a
- media type, normalisedb
- suspected supertype, normalised- Returns:
true
if b is a supertype of a,false
otherwise- Since:
- Apache Tika 0.8
-
isInstanceOf
Checks whether the given media type equals the given base type or is a specialization of it. Both types should be already normalised.- Parameters:
a
- media type, normalisedb
- base type, normalised- Returns:
true
if b equals a or is a specialization of it,false
otherwise- Since:
- Apache Tika 1.2
-
isInstanceOf
Parses and normalises the given media type string and checks whether the result equals the given base type or is a specialization of it. The given base type should already be normalised.- Parameters:
a
- media typeb
- base type, normalised- Returns:
true
if b equals a or is a specialization of it,false
otherwise- Since:
- Apache Tika 1.2
-
getSupertype
Returns the supertype of the given type. If the media type database has an explicit inheritance rule for the type, then that is used. Next, if the given type has any parameters, then the respective base type (parameter-less) is returned. Otherwise built-in heuristics like text/... -> text/plain and .../...+xml -> application/xml are used. Finally application/octet-stream is returned for all types for which no other supertype is known, and the return value for application/octet-stream isnull
.- Parameters:
type
- media type- Returns:
- supertype, or
null
for application/octet-stream - Since:
- Apache Tika 0.8
-