public class MimeType extends java.lang.Object implements java.lang.Comparable<MimeType>, java.io.Serializable
Modifier and Type | Class and Description |
---|---|
static class |
MimeType.SpecificityComparator<T extends MimeType> |
Modifier and Type | Field and Description |
---|---|
protected static java.lang.String |
WILDCARD_TYPE |
Constructor and Description |
---|
MimeType(MimeType other,
java.util.Map<java.lang.String,java.lang.String> parameters)
Copy-constructor that copies the type and subtype of the given
MimeType ,
and allows for different parameter. |
MimeType(java.lang.String type)
Create a new
MimeType for the given primary type. |
MimeType(java.lang.String type,
java.lang.String subtype)
Create a new
MimeType for the given primary type and subtype. |
MimeType(java.lang.String type,
java.lang.String subtype,
java.nio.charset.Charset charSet)
Create a new
MimeType for the given type, subtype, and character set. |
MimeType(java.lang.String type,
java.lang.String subtype,
java.util.Map<java.lang.String,java.lang.String> parameters)
Create a new
MimeType for the given type, subtype, and parameters. |
Modifier and Type | Method and Description |
---|---|
protected void |
appendTo(java.lang.StringBuilder builder) |
protected void |
checkParameters(java.lang.String attribute,
java.lang.String value) |
int |
compareTo(MimeType other)
Compares this
MediaType to another alphabetically. |
boolean |
equals(java.lang.Object other) |
java.nio.charset.Charset |
getCharSet()
Return the character set, as indicated by a
charset parameter, if any. |
java.lang.String |
getParameter(java.lang.String name)
Return a generic parameter value, given a parameter name.
|
java.util.Map<java.lang.String,java.lang.String> |
getParameters()
Return all generic parameter values.
|
java.lang.String |
getSubtype()
Return the subtype.
|
java.lang.String |
getType()
Return the primary type.
|
int |
hashCode() |
boolean |
includes(MimeType other)
Indicate whether this
MediaType includes the given media type. |
boolean |
isCompatibleWith(MimeType other)
Indicate whether this
MediaType is compatible with the given media type. |
boolean |
isConcrete()
Indicates whether this media type is concrete, i.e.
|
boolean |
isWildcardSubtype()
Indicates whether the subtype is the wildcard
character
* or the wildcard character followed by a suffix
(e.g. |
boolean |
isWildcardType()
Indicates whether the type is the wildcard character
* or not. |
static MimeType |
parseMimeType(java.lang.String mimeType)
Parse the given String into a single
MimeType . |
java.lang.String |
toString() |
protected java.lang.String |
unquote(java.lang.String s) |
static MimeType |
valueOf(java.lang.String value)
Parse the given String value into a
MimeType object,
with this method name following the 'valueOf' naming convention
(as supported by org.springframework.core.convert.ConversionService . |
protected static final java.lang.String WILDCARD_TYPE
public MimeType(java.lang.String type)
MimeType
for the given primary type.
The subtype is set to "*"
,
and the parameters are empty.
type
- the primary typejava.lang.IllegalArgumentException
- if any of the parameters contains illegal characterspublic MimeType(java.lang.String type, java.lang.String subtype)
MimeType
for the given primary type and subtype.
The parameters are empty.
type
- the primary typesubtype
- the subtypejava.lang.IllegalArgumentException
- if any of the parameters contains illegal characterspublic MimeType(java.lang.String type, java.lang.String subtype, java.nio.charset.Charset charSet)
MimeType
for the given type, subtype, and character set.type
- the primary typesubtype
- the subtypecharSet
- the character setjava.lang.IllegalArgumentException
- if any of the parameters contains illegal characterspublic MimeType(MimeType other, java.util.Map<java.lang.String,java.lang.String> parameters)
MimeType
,
and allows for different parameter.other
- the other media typeparameters
- the parameters, may be null
java.lang.IllegalArgumentException
- if any of the parameters contains illegal characterspublic MimeType(java.lang.String type, java.lang.String subtype, java.util.Map<java.lang.String,java.lang.String> parameters)
MimeType
for the given type, subtype, and parameters.type
- the primary typesubtype
- the subtypeparameters
- the parameters, may be null
java.lang.IllegalArgumentException
- if any of the parameters contains illegal charactersprotected void checkParameters(java.lang.String attribute, java.lang.String value)
protected java.lang.String unquote(java.lang.String s)
public boolean isWildcardType()
*
or not.public boolean isWildcardSubtype()
*
or the wildcard character followed by a suffix
(e.g. *+xml
).public boolean isConcrete()
*
.public java.lang.String getType()
public java.lang.String getSubtype()
public java.nio.charset.Charset getCharSet()
charset
parameter, if any.null
if not availablepublic java.lang.String getParameter(java.lang.String name)
name
- the parameter namenull
if not presentpublic java.util.Map<java.lang.String,java.lang.String> getParameters()
null
)public boolean includes(MimeType other)
MediaType
includes the given media type.
For instance, text/*
includes text/plain
and text/html
,
and application/*+xml
includes application/soap+xml
, etc. This
method is not symmetric.
other
- the reference media type with which to comparetrue
if this media type includes the given media type;
false
otherwisepublic boolean isCompatibleWith(MimeType other)
MediaType
is compatible with the given media type.
For instance, text/*
is compatible with text/plain
,
text/html
, and vice versa. In effect, this method is similar to
includes(com.jalios.util.MimeType)
, except that it is symmetric.
other
- the reference media type with which to comparetrue
if this media type is compatible with the given media type;
false
otherwisepublic int compareTo(MimeType other)
MediaType
to another alphabetically.compareTo
in interface java.lang.Comparable<MimeType>
other
- media type to compare toMimeTypeUtils#sortBySpecificity(List)
public boolean equals(java.lang.Object other)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public java.lang.String toString()
toString
in class java.lang.Object
protected void appendTo(java.lang.StringBuilder builder)
public static MimeType valueOf(java.lang.String value)
MimeType
object,
with this method name following the 'valueOf' naming convention
(as supported by org.springframework.core.convert.ConversionService
.MimeTypeUtils#parseMimeType(String)
public static MimeType parseMimeType(java.lang.String mimeType)
MimeType
.mimeType
- the string to parseInvalidMimeTypeException
- if the string cannot be parsedCopyright © 2001-2017 Jalios SA. All Rights Reserved.