java.lang.Object
jakarta.activation.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.
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.MimeTypeParameterList
(String parameterList) Constructs a new MimeTypeParameterList with the passed in data. -
Method Summary
Modifier and TypeMethodDescriptionRetrieve the value associated with the given name, or null if there is no current association.getNames()
Retrieve an enumeration of all the names in this list.boolean
isEmpty()
Determine whether or not this list is empty.private static boolean
isTokenChar
(char c) Determine whether or not a given character belongs to a legal token.protected void
A routine for parsing the parameter list out of a String.private static String
A routine that knows how and when to quote and escape the given value.void
Remove any value associated with the given name.void
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.private static int
skipWhiteSpace
(String rawdata, int i) return the index of the first non white space character in rawdata at or after index i.toString()
Return a string representation of this object.private static String
A routine that knows how to strip the quotes and escape sequences from the given value.
-
Field Details
-
parameters
-
TSPECIALS
A string that holds all the special chars.- See Also:
-
-
Constructor Details
-
MimeTypeParameterList
public MimeTypeParameterList()Default constructor. -
MimeTypeParameterList
Constructs a new MimeTypeParameterList with the passed in data.- Parameters:
parameterList
- an RFC 2045, 2046 compliant parameter list.- Throws:
MimeTypeParseException
- if the MIME type can't be parsed
-
-
Method Details
-
parse
A routine for parsing the parameter list out of a String.- Parameters:
parameterList
- an RFC 2045, 2046 compliant parameter list.- Throws:
MimeTypeParseException
- if the MIME type can't be parsed
-
size
public int size()Return the number of name-value pairs in this list.- Returns:
- the number of parameters
-
isEmpty
public boolean isEmpty()Determine whether or not this list is empty.- Returns:
- true if there are no parameters
-
get
Retrieve the value associated with the given name, or null if there is no current association.- Parameters:
name
- the parameter name- Returns:
- the parameter's value
-
set
Set the value to be associated with the given name, replacing any previous association.- Parameters:
name
- the parameter namevalue
- the parameter's value
-
remove
Remove any value associated with the given name.- Parameters:
name
- the parameter name
-
getNames
Retrieve an enumeration of all the names in this list.- Returns:
- an enumeration of all parameter names
-
toString
Return a string representation of this object. -
isTokenChar
private static boolean isTokenChar(char c) Determine whether or not a given character belongs to a legal token. -
skipWhiteSpace
return the index of the first non white space character in rawdata at or after index i. -
quote
A routine that knows how and when to quote and escape the given value. -
unquote
A routine that knows how to strip the quotes and escape sequences from the given value.
-