| Constructor and Description |
|---|
MimeTypeParameterList()
Default constructor.
|
MimeTypeParameterList(String
Constructs a new MimeTypeParameterList with the passed in data.
|
| Modifier and Type | Method and Description |
|---|---|
String |
get(String
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
A routine for parsing the parameter list out of a String.
|
void |
remove(String
Remove any value associated with the given name.
|
void |
set(String
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.
|
public MimeTypeParameterList()
public MimeTypeParameterList(StringparameterList) throws MimeTypeParseException
parameterList - an RFC 2045, 2046 compliant parameter list.
MimeTypeParseException
protected void parse(StringparameterList) throws MimeTypeParseException
parameterList - an RFC 2045, 2046 compliant parameter list.
MimeTypeParseException
public int size()
public boolean isEmpty()
public Stringget(String name)
name - the parameter name
public void set(Stringname, String value)
name - the parameter name
value - the parameter's value
public void remove(Stringname)
name - the parameter name
public EnumerationgetNames()