|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.plovr.QueryData
public class QueryData
QueryData
represents the query parameters in a URI.
Method Summary | |
---|---|
static QueryData |
createFromUri(java.net.URI uri)
|
java.lang.String |
getLastValueForParam(java.lang.String name)
|
java.lang.String |
getParam(java.lang.String name)
|
java.util.Set<java.lang.String> |
getParams()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public java.lang.String getParam(java.lang.String name)
name
- of a query parameter
name
. If there are multiple values for the query
parameter, the first value is returned, where "first" is the first one
that appears when the query string is read left to right.public java.lang.String getLastValueForParam(java.lang.String name)
name
- of a query parameter
name
. If there are multiple values for the query
parameter, the last value is returned, where "last" is the last one
that appears when the query string is read left to right.public java.util.Set<java.lang.String> getParams()
public static QueryData createFromUri(java.net.URI uri)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |