|
Java EE 5 SDK | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object javax.activation.MimeTypeParameterList
public class MimeTypeParameterList
A parameter list of a MimeType as defined in RFC 2045 and 2046. The Primary type of the object must already be stripped off.
MimeType
Constructor Summary | |
---|---|
MimeTypeParameterList()
Default constructor. |
|
MimeTypeParameterList(String parameterList)
Constructs a new MimeTypeParameterList with the passed in data. |
Method Summary | |
---|---|
String |
get(String name)
Retrieve the value associated with the given name, or null if there is no current association. |
Enumeration |
getNames()
Retrieve an enumeration of all the names in this list. |
boolean |
isEmpty()
Determine whether or not this list is empty. |
protected void |
parse(String parameterList)
A routine for parsing the parameter list out of a String. |
void |
remove(String name)
Remove any value associated with the given name. |
void |
set(String name,
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. |
String |
toString()
Return a string representation of this object. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public MimeTypeParameterList()
public MimeTypeParameterList(String parameterList) throws MimeTypeParseException
parameterList
- an RFC 2045, 2046 compliant parameter list.
MimeTypeParseException
Method Detail |
---|
protected void parse(String parameterList) throws MimeTypeParseException
parameterList
- an RFC 2045, 2046 compliant parameter list.
MimeTypeParseException
public int size()
public boolean isEmpty()
public String get(String name)
name
- the parameter name
public void set(String name, String value)
name
- the parameter namevalue
- the parameter's valuepublic void remove(String name)
name
- the parameter namepublic Enumeration getNames()
public String toString()
toString
in class Object
|
Java EE 5 SDK | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Copyright 2006 Sun Microsystems, Inc. All rights reserved.