| |
|
| java.lang.Object com.sun.xml.ws.encoding.ParameterList
ParameterList | final class ParameterList (Code) | | This class holds MIME parameters (attribute-value pairs).
version: 1.10, 03/02/12 author: John Mani |
Method Summary | |
String | get(String name) Returns the value of the specified parameter. | Iterator<String> | getNames() Return an enumeration of the names of all parameters in this
list. | int | size() Return the number of parameters in this list. |
ParameterList | ParameterList(String s)(Code) | | Constructor that takes a parameter-list string. The String
is parsed and the parameters are collected and stored internally.
A ParseException is thrown if the parse fails.
Note that an empty parameter-list string is valid and will be
parsed into an empty ParameterList.
Parameters: s - the parameter-list string. exception: WebServiceException - if the parse fails. |
get | String get(String name)(Code) | | Returns the value of the specified parameter. Note that
parameter names are case-insensitive.
Parameters: name - parameter name. Value of the parameter. Returnsnull if the parameter is notpresent. |
getNames | Iterator<String> getNames()(Code) | | Return an enumeration of the names of all parameters in this
list.
Enumeration of all parameter names in this list. |
size | int size()(Code) | | Return the number of parameters in this list.
number of parameters. |
|
|
|