Class javax.activation.MimeType
java.lang.Object
|
+----javax.activation.MimeType
- public class MimeType
- extends java.lang.Object
- implements java.io.Externalizable
A Multipurpose Internet Mail Extension (MIME) type, as defined
in RFC 2045 and 2046.
Constructor Summary
|
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 Summary
|
java.lang.String
|
getBaseType()
Return a String representation of this object
without the parameter list.
|
java.lang.String
|
getParameter(java.lang.String name)
Retrieve the value associated with the given name, or null if there
is no current association.
|
MimeTypeParameterList
|
getParameters()
Retrieve this object's parameter list.
|
java.lang.String
|
getPrimaryType()
Retrieve the primary type of this object.
|
java.lang.String
|
getSubType()
Retrieve the sub type of this object.
|
boolean
|
match(MimeType type)
Determine of the primary and sub type of this object is
the same as the what is in the given type.
|
boolean
|
match(java.lang.String rawdata)
Determine of the primary and sub type of this object is
the same as the content type described in rawdata.
|
void
|
readExternal(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.
|
void
|
removeParameter(java.lang.String name)
Remove any value associated with the given name.
|
void
|
setParameter(java.lang.String name,
java.lang.String value)
Set the value to be associated with the given name, replacing
any previous association.
|
void
|
setPrimaryType(java.lang.String primary)
Set the primary type for this object to the given String.
|
void
|
setSubType(java.lang.String sub)
Set the sub type for this object to the given String.
|
java.lang.String
|
toString()
Return the String representation of this object.
|
void
|
writeExternal(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.
|
Methods inherited from class java.lang.Object
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
MimeType
public MimeType()
- Default constructor.
MimeType
public MimeType(java.lang.String rawdata) throws MimeTypeParseException
- Constructor that builds a MimeType from a String.
MimeType
public MimeType(java.lang.String primary,
java.lang.String sub) throws MimeTypeParseException
- Constructor that builds a MimeType with the given primary and sub type
but has an empty parameter list.
getPrimaryType
public java.lang.String getPrimaryType()
- Retrieve the primary type of this object.
setPrimaryType
public void setPrimaryType(java.lang.String primary) throws MimeTypeParseException
- Set the primary type for this object to the given String.
getSubType
public java.lang.String getSubType()
- Retrieve the sub type of this object.
setSubType
public void setSubType(java.lang.String sub) throws MimeTypeParseException
- Set the sub type for this object to the given String.
getParameters
public MimeTypeParameterList getParameters()
- Retrieve this object's parameter list.
getParameter
public java.lang.String getParameter(java.lang.String name)
- Retrieve the value associated with the given name, or null if there
is no current association.
setParameter
public void setParameter(java.lang.String name,
java.lang.String value)
- Set the value to be associated with the given name, replacing
any previous association.
removeParameter
public void removeParameter(java.lang.String name)
- Remove any value associated with the given name.
toString
public java.lang.String toString()
- Return the String representation of this object.
- Overrides:
- toString in class java.lang.Object
getBaseType
public java.lang.String getBaseType()
- Return a String representation of this object
without the parameter list.
match
public boolean match(MimeType type)
- Determine of the primary and sub type of this object is
the same as the what is in the given type.
match
public boolean match(java.lang.String rawdata) throws MimeTypeParseException
- Determine of the primary and sub type of this object is
the same as the content type described in rawdata.
writeExternal
public void writeExternal(java.io.ObjectOutput out) throws java.io.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.
- Implements:
- writeExternal in interface java.io.Externalizable
- Throws:
- java.io.IOException - Includes any I/O exceptions that may occur
readExternal
public void readExternal(java.io.ObjectInput in) throws java.io.IOException, java.lang.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.
- Implements:
- readExternal in interface java.io.Externalizable
- Throws:
- java.lang.ClassNotFoundException - If the class for an object being
restored cannot be found.