javax.mail.internet
Class ContentDisposition

java.lang.Object
  |
  +--javax.mail.internet.ContentDisposition

class ContentDisposition
extends Object

This class represents a MIME ContentDisposition value. Package-private class, for now.


Constructor Summary
ContentDisposition()
          No-arg Constructor.
ContentDisposition(String s)
          Constructor that takes a ContentDisposition string.
ContentDisposition(String disposition, ParameterList list)
          Constructor.
 
Method Summary
 String getDisposition()
          Return the disposition value.
 String getParameter(String name)
          Return the specified parameter value.
 ParameterList getParameterList()
          Return a ParameterList object that holds all the available parameters.
 void setDisposition(String disposition)
          Set the primary type.
 void setParameter(String name, String value)
          Set the specified parameter.
 void setParameterList(ParameterList list)
          Set a new ParameterList.
 String toString()
          Retrieve a RFC2045 style string representation of this ContentDisposition.
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ContentDisposition

public ContentDisposition()
No-arg Constructor.

ContentDisposition

public ContentDisposition(String disposition,
                          ParameterList list)
Constructor.
Parameters:
disposition - disposition
list - ParameterList

ContentDisposition

public ContentDisposition(String s)
                   throws ParseException
Constructor that takes a ContentDisposition string. The String is parsed into its constituents: dispostion and parameters. A ParseException is thrown if the parse fails.
Parameters:
s - the ContentDisposition string.
Throws:
ParseException - if the parse fails.
Method Detail

getDisposition

public String getDisposition()
Return the disposition value.
Returns:
the disposition

getParameter

public String getParameter(String name)
Return the specified parameter value. Returns null if this parameter is absent.
Returns:
parameter value

getParameterList

public ParameterList getParameterList()
Return a ParameterList object that holds all the available parameters. Returns null if no parameters are available.
Returns:
ParameterList

setDisposition

public void setDisposition(String disposition)
Set the primary type. Overrides existing primary type.
Parameters:
primaryType - primary type

setParameter

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 - parameter name
value - parameter value

setParameterList

public void setParameterList(ParameterList list)
Set a new ParameterList.
Parameters:
list - ParameterList

toString

public String toString()
Retrieve a RFC2045 style string representation of this ContentDisposition. Returns null if the conversion failed.
Overrides:
toString in class Object
Returns:
RFC2045 style string