public class MimeType extends Object implements Externalizable
A Multipurpose Internet Mail Extension (MIME) type, as defined in RFC 2045 and 2046.
public MimeType()
Default constructor.
public MimeType(String rawdata) throws MimeTypeParseException
Constructor that builds a MimeType from a String.
rawdata
- the MIME type stringMimeTypeParseException
public MimeType(String primary, String sub) throws MimeTypeParseException
Constructor that builds a MimeType with the given primary and sub type but has an empty parameter list.
primary
- the primary MIME typesub
- the MIME sub-typeMimeTypeParseException
- if the primary type or subtype is not a valid tokenpublic String getPrimaryType()
Retrieve the primary type of this object.
public void setPrimaryType(String primary) throws MimeTypeParseException
Set the primary type for this object to the given String.
primary
- the primary MIME typeMimeTypeParseException
- if the primary type is not a valid tokenpublic String getSubType()
Retrieve the subtype of this object.
public void setSubType(String sub) throws MimeTypeParseException
Set the subtype for this object to the given String.
sub
- the MIME subtypeMimeTypeParseException
- if the subtype is not a valid tokenpublic MimeTypeParameterList getParameters()
Retrieve this object's parameter list.
public String getParameter(String name)
Retrieve the value associated with the given name, or null if there is no current association.
name
- the parameter namepublic void setParameter(String name, String value)
Set the value to be associated with the given name, replacing any previous association.
name
- the parameter namevalue
- the paramter's valuepublic void removeParameter(String name)
Remove any value associated with the given name.
name
- the parameter namepublic String toString()
Return the String representation of this object.
public String getBaseType()
Return a String representation of this object without the parameter list.
public boolean match(MimeType type)
Determine if the primary and sub type of this object is the same as what is in the given type.
type
- the MimeType object to compare withpublic boolean match(String rawdata) throws MimeTypeParseException
Determine if the primary and sub type of this object is the same as the content type described in rawdata.
rawdata
- the MIME type string to compare withMimeTypeParseException
public void writeExternal(ObjectOutput out) throws IOException
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.
writeExternal
in interface Externalizable
out
- the ObjectOutput object to write toIOException
- Includes any I/O exceptions that may occurpublic void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
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. The readExternal method must read the values in the same sequence and with the same types as were written by writeExternal.
readExternal
in interface Externalizable
in
- the ObjectInput object to read fromClassNotFoundException
- If the class for an object being restored cannot be found.IOException
- if I/O errors occur
© 1993–2017, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.