- java.lang.Object
- 
- jakarta.activation.MimeType
 
- 
- All Implemented Interfaces:
- java.io.Externalizable,- java.io.Serializable
 
 public class MimeType extends java.lang.Object implements java.io.ExternalizableA Multipurpose Internet Mail Extension (MIME) type, as defined in RFC 2045 and 2046.- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description MimeType()Default constructor.MimeType(java.lang.String rawdata)Constructor that builds a MimeType from a String.MimeType(java.lang.String primary, java.lang.String sub)Constructor that builds a MimeType with the given primary and sub type but has an empty parameter list.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetBaseType()Return a String representation of this object without the parameter list.java.lang.StringgetParameter(java.lang.String name)Retrieve the value associated with the given name, or null if there is no current association.MimeTypeParameterListgetParameters()Retrieve this object's parameter list.java.lang.StringgetPrimaryType()Retrieve the primary type of this object.java.lang.StringgetSubType()Retrieve the subtype of this object.booleanmatch(MimeType type)Determine if the primary and sub type of this object is the same as what is in the given type.booleanmatch(java.lang.String rawdata)Determine if the primary and sub type of this object is the same as the content type described in rawdata.voidreadExternal(java.io.ObjectInput in)The object implements the readExternal method to restore its contents by calling the methods of DataInput for primitive types and readObject for objects, strings and arrays.voidremoveParameter(java.lang.String name)Remove any value associated with the given name.voidsetParameter(java.lang.String name, java.lang.String value)Set the value to be associated with the given name, replacing any previous association.voidsetPrimaryType(java.lang.String primary)Set the primary type for this object to the given String.voidsetSubType(java.lang.String sub)Set the subtype for this object to the given String.java.lang.StringtoString()Return the String representation of this object.voidwriteExternal(java.io.ObjectOutput out)The object implements the writeExternal method to save its contents by calling the methods of DataOutput for its primitive values or calling the writeObject method of ObjectOutput for objects, strings and arrays.
 
- 
- 
- 
Constructor Detail- 
MimeTypepublic MimeType() Default constructor.
 - 
MimeTypepublic MimeType(java.lang.String rawdata) throws MimeTypeParseExceptionConstructor that builds a MimeType from a String.- Parameters:
- rawdata- the MIME type string
- Throws:
- MimeTypeParseException- if the MIME type can't be parsed
 
 - 
MimeTypepublic MimeType(java.lang.String primary, java.lang.String sub) throws MimeTypeParseExceptionConstructor that builds a MimeType with the given primary and sub type but has an empty parameter list.- Parameters:
- primary- the primary MIME type
- sub- the MIME sub-type
- Throws:
- MimeTypeParseException- if the primary type or subtype is not a valid token
 
 
- 
 - 
Method Detail- 
getPrimaryTypepublic java.lang.String getPrimaryType() Retrieve the primary type of this object.- Returns:
- the primary MIME type
 
 - 
setPrimaryTypepublic void setPrimaryType(java.lang.String primary) throws MimeTypeParseExceptionSet the primary type for this object to the given String.- Parameters:
- primary- the primary MIME type
- Throws:
- MimeTypeParseException- if the primary type is not a valid token
 
 - 
getSubTypepublic java.lang.String getSubType() Retrieve the subtype of this object.- Returns:
- the MIME subtype
 
 - 
setSubTypepublic void setSubType(java.lang.String sub) throws MimeTypeParseExceptionSet the subtype for this object to the given String.- Parameters:
- sub- the MIME subtype
- Throws:
- MimeTypeParseException- if the subtype is not a valid token
 
 - 
getParameterspublic MimeTypeParameterList getParameters() Retrieve this object's parameter list.- Returns:
- a MimeTypeParameterList object representing the parameters
 
 - 
getParameterpublic java.lang.String getParameter(java.lang.String name) Retrieve the value associated with the given name, or null if there is no current association.- Parameters:
- name- the parameter name
- Returns:
- the paramter's value
 
 - 
setParameterpublic void setParameter(java.lang.String name, java.lang.String value)Set the value to be associated with the given name, replacing any previous association.- Parameters:
- name- the parameter name
- value- the paramter's value
 
 - 
removeParameterpublic void removeParameter(java.lang.String name) Remove any value associated with the given name.- Parameters:
- name- the parameter name
 
 - 
toStringpublic java.lang.String toString() Return the String representation of this object.- Overrides:
- toStringin class- java.lang.Object
 
 - 
getBaseTypepublic java.lang.String getBaseType() Return a String representation of this object without the parameter list.- Returns:
- the MIME type and sub-type
 
 - 
matchpublic boolean match(MimeType type) Determine if the primary and sub type of this object is the same as what is in the given type.- Parameters:
- type- the MimeType object to compare with
- Returns:
- true if they match
 
 - 
matchpublic boolean match(java.lang.String rawdata) throws MimeTypeParseExceptionDetermine if the primary and sub type of this object is the same as the content type described in rawdata.- Parameters:
- rawdata- the MIME type string to compare with
- Returns:
- true if they match
- Throws:
- MimeTypeParseException- if the MIME type can't be parsed
 
 - 
writeExternalpublic void writeExternal(java.io.ObjectOutput out) throws java.io.IOExceptionThe object implements the writeExternal method to save its contents by calling the methods of DataOutput for its primitive values or calling the writeObject method of ObjectOutput for objects, strings and arrays.- Specified by:
- writeExternalin interface- java.io.Externalizable
- Parameters:
- out- the ObjectOutput object to write to
- Throws:
- java.io.IOException- Includes any I/O exceptions that may occur
 
 - 
readExternalpublic void readExternal(java.io.ObjectInput in) throws java.io.IOException, java.lang.ClassNotFoundExceptionThe object implements the readExternal method to restore its contents by calling the methods of DataInput for primitive types and readObject for objects, strings and arrays. The readExternal method must read the values in the same sequence and with the same types as were written by writeExternal.- Specified by:
- readExternalin interface- java.io.Externalizable
- Parameters:
- in- the ObjectInput object to read from
- Throws:
- java.lang.ClassNotFoundException- If the class for an object being restored cannot be found.
- java.io.IOException
 
 
- 
 
-