Class javax.activation.MimeTypeParameterList
java.lang.Object
|
+----javax.activation.MimeTypeParameterList
- public class MimeTypeParameterList
- extends java.lang.Object
This object is used by javax.activation.MimeType.
It parses the parameter list of a MimeType
as defined in RFC 2045 and 2046. The Primary type of the
object must already be stripped off.
- See Also:
- MimeType
Method Summary
|
java.lang.String
|
get(java.lang.String name)
Retrieve the value associated with the given name, or null if there
is no current association.
|
java.util.Enumeration
|
getNames()
Retrieve an enumeration of all the names in this list.
|
boolean
|
isEmpty()
Determine whether or not this list is empty.
|
void
|
parse(java.lang.String parameterList)
A routine for parsing the parameter list out of a String.
|
void
|
remove(java.lang.String name)
Remove any value associated with the given name.
|
void
|
set(java.lang.String name,
java.lang.String value)
Set the value to be associated with the given name, replacing
any previous association.
|
int
|
size()
return the number of name-value pairs in this list.
|
java.lang.String
|
toString()
Return a string representation of this object.
|
Methods inherited from class java.lang.Object
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
MimeTypeParameterList
public MimeTypeParameterList()
- Default constructor.
MimeTypeParameterList
public MimeTypeParameterList(java.lang.String parameterList) throws MimeTypeParseException
- Constructs a new MimeTypeParameterList with the passed in data.
- Parameters:
parameterList
- an RFC 2045, 2046 compliant parameter list.
parse
protected void parse(java.lang.String parameterList) throws MimeTypeParseException
- A routine for parsing the parameter list out of a String.
- Parameters:
parameterList
- an RFC 2045, 2046 compliant parameter list.
size
public int size()
- return the number of name-value pairs in this list.
isEmpty
public boolean isEmpty()
- Determine whether or not this list is empty.
get
public java.lang.String get(java.lang.String name)
- Retrieve the value associated with the given name, or null if there
is no current association.
set
public void set(java.lang.String name,
java.lang.String value)
- Set the value to be associated with the given name, replacing
any previous association.
remove
public void remove(java.lang.String name)
- Remove any value associated with the given name.
getNames
public java.util.Enumeration getNames()
- Retrieve an enumeration of all the names in this list.
toString
public java.lang.String toString()
- Return a string representation of this object.
- Overrides:
- toString in class java.lang.Object