Reusable Java library of general tools with minimal external dependencies.
For questions or support, please contact us:
Email: support@aoindustries.com
Phone: 1-800-519-9541
Phone: +1-251-607-9556
Web: https://www.aoindustries.com/contact
public interface HttpParameters
| Modifier and Type | Method and Description |
|---|---|
String |
getParameter(String name)
Gets the value for the provided parameter name or
null if doesn't exist. |
Map<String,List<String>> |
getParameterMap()
Gets an unmodifiable map view of all parameters.
|
Iterator<String> |
getParameterNames()
Gets an unmodifiable interator of the parameter names.
|
List<String> |
getParameterValues(String name)
Gets an unmodifiable view of all values for a multi-value parameter or
null if has no values. |
String getParameter(String name)
null if doesn't exist.
If the parameter has multiple values, the first value is returned.Iterator<String> getParameterNames()
List<String> getParameterValues(String name)
null if has no values.Copyright © 2000–2016 AO Industries, Inc.. All rights reserved.