java.lang.Object
jakarta.activation.MimeType
- All Implemented Interfaces:
- Externalizable,- Serializable
A Multipurpose Internet Mail Extension (MIME) type, as defined
 in RFC 2045 and 2046.
- See Also:
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionReturn a String representation of this object without the parameter list.getParameter(String name) Retrieve the value associated with the given name, or null if there is no current association.Retrieve this object's parameter list.Retrieve the primary type of this object.Retrieve the subtype of this object.booleanDetermine if the primary and sub type of this object is the same as what is in the given type.booleanDetermine if the primary and sub type of this object is the same as the content type described in rawdata.voidThe 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(String name) Remove any value associated with the given name.voidsetParameter(String name, String value) Set the value to be associated with the given name, replacing any previous association.voidsetPrimaryType(String primary) Set the primary type for this object to the given String.voidsetSubType(String sub) Set the subtype for this object to the given String.toString()Return the String representation of this object.voidThe 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 Details- 
MimeTypepublic MimeType()Default constructor.
- 
MimeTypeConstructor that builds a MimeType from a String.- Parameters:
- rawdata- the MIME type string
- Throws:
- MimeTypeParseException- if the MIME type can't be parsed
 
- 
MimeTypeConstructor 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 Details- 
getPrimaryTypeRetrieve the primary type of this object.- Returns:
- the primary MIME type
 
- 
setPrimaryTypeSet 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
 
- 
getSubType
- 
setSubTypeSet the subtype for this object to the given String.- Parameters:
- sub- the MIME subtype
- Throws:
- MimeTypeParseException- if the subtype is not a valid token
 
- 
getParametersRetrieve this object's parameter list.- Returns:
- a MimeTypeParameterList object representing the parameters
 
- 
getParameter
- 
setParameter
- 
removeParameterRemove any value associated with the given name.- Parameters:
- name- the parameter name
 
- 
toString
- 
getBaseTypeReturn a String representation of this object without the parameter list.- Returns:
- the MIME type and sub-type
 
- 
matchDetermine 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
 
- 
matchDetermine 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
 
- 
writeExternalThe 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- Externalizable
- Parameters:
- out- the ObjectOutput object to write to
- Throws:
- IOException- Includes any I/O exceptions that may occur
 
- 
readExternalThe 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- Externalizable
- Parameters:
- in- the ObjectInput object to read from
- Throws:
- ClassNotFoundException- If the class for an object being restored cannot be found.
- IOException
 
 
-