Prev Class | Next Class | Frames | No Frames |
Summary: Nested | Field | Method | Constr | Detail: Nested | Field | Method | Constr |
java.lang.Object
javax.mail.internet.ContentType
public class ContentType
extends java.lang.Object
Constructor Summary | |
| |
| |
|
Method Summary | |
String |
|
String |
|
ParameterList |
|
String |
|
String |
|
boolean |
|
boolean |
|
void |
|
void |
|
void |
|
void |
|
String |
|
public ContentType()
No-arg Constructor.
public ContentType(String s) throws ParseException
Constructor that takes a Content-Type string. The String is parsed into its constituents: primaryType, subType and parameters. A ParseException is thrown if the parse fails.
- Parameters:
s
- the Content-Type string.
- Throws:
ParseException
- if the parse fails.
public ContentType(String primaryType, String subType, ParameterList list)
Constructor.
- Parameters:
primaryType
- the primary typesubType
- the subtypelist
- the list of additional parameters
public String getBaseType()
Return the MIME type string, without the parameters. The returned value is basically the concatenation of the primaryType, the '/' character and the secondaryType.
public String getParameter(String name)
Return the specified parameter value. Returns null if this parameter is absent.
public ParameterList getParameterList()
Return a ParameterList object that holds all the available parameters. Returns null if no parameters are available.
public String getPrimaryType()
Return the primary type.
public String getSubType()
Return the subtype.
public boolean match(String s)
Match with the specified content-type string. This method compares only the primaryType and subType. The parameters of both operands are ignored.For example, this method will return true when comparing the ContentType for "text/plain" with "text/plain; charset=foobar". If the subType of either operand is the special character '*', then the subtype is ignored during the match. For example, this method will return true when comparing the ContentType for "text/plain" with "text/*"
- Parameters:
s
- the string representation of the content type to match
public boolean match(ContentType cType)
Match with the specified ContentType object. This method compares only the primaryType and subType. The parameters of both operands are ignored.For example, this method will return true when comparing the ContentTypes for "text/plain" and "text/plain; charset=foobar". If the subType of either operand is the special character '*', then the subtype is ignored during the match. For example, this method will return true when comparing the ContentTypes for "text/plain" and "text/*"
- Parameters:
cType
- the content type to compare this against
public void setParameter(String name, String value)
Set the specified parameter. If this parameter already exists, it is replaced by this new value.
- Parameters:
name
- the parameter namevalue
- the parameter value
public void setParameterList(ParameterList list)
Set a new parameter list.
- Parameters:
list
- the Parameter list
public void setPrimaryType(String primaryType)
Set the primary type. Overrides existing primary type.
- Parameters:
primaryType
- the primary type
public void setSubType(String subType)
Set the subtype. Overrides existing subtype
- Parameters:
public String toString()
Retrieve a RFC2045 style string representation of this Content-Type. Returns null if the conversion failed.
- Returns:
- RFC2045 style string