org.apache.tika.mime
Class MediaType
java.lang.Object
org.apache.tika.mime.MediaType
public final class MediaType
- extends java.lang.Object
Internet media type.
Constructor Summary |
MediaType(MediaType type,
java.util.Map<java.lang.String,java.lang.String> parameters)
|
MediaType(java.lang.String type,
java.lang.String subtype)
|
MediaType(java.lang.String type,
java.lang.String subtype,
java.util.Map<java.lang.String,java.lang.String> parameters)
|
Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
OCTET_STREAM
public static final MediaType OCTET_STREAM
TEXT_PLAIN
public static final MediaType TEXT_PLAIN
APPLICATION_XML
public static final MediaType APPLICATION_XML
MediaType
public MediaType(java.lang.String type,
java.lang.String subtype,
java.util.Map<java.lang.String,java.lang.String> parameters)
MediaType
public MediaType(java.lang.String type,
java.lang.String subtype)
MediaType
public MediaType(MediaType type,
java.util.Map<java.lang.String,java.lang.String> parameters)
parse
public static MediaType parse(java.lang.String string)
- Parses the given string to a media type. The string is expected to be of
the form "type/subtype(; parameter=...)*" as defined in RFC 2045.
- Parameters:
string
- media type string to be parsed
- Returns:
- parsed media type, or
null
if parsing fails
getBaseType
public MediaType getBaseType()
getType
public java.lang.String getType()
getSubtype
public java.lang.String getSubtype()
getParameters
public java.util.Map<java.lang.String,java.lang.String> getParameters()
isSpecializationOf
public boolean isSpecializationOf(MediaType that)
toString
public java.lang.String toString()
- Overrides:
toString
in class java.lang.Object
equals
public boolean equals(java.lang.Object object)
- Overrides:
equals
in class java.lang.Object
hashCode
public int hashCode()
- Overrides:
hashCode
in class java.lang.Object
Copyright © 2010 The Apache Software Foundation. All Rights Reserved.