Home | History | Annotate | Download | only in ahat

Lines Matching refs:query

25  * A class for getting and modifying query parameters.
27 class Query {
34 public Query(URI uri) {
38 String query = uri.getQuery();
39 if (query != null) {
40 for (String param : query.split("&")) {
52 * Return the value of a query parameter with the given name.
53 * If there is no query parameter with that name, returns the default value.
54 * If there are multiple query parameters with that name, the value of the
55 * last query parameter is returned.
64 * Return the long value of a query parameter with the given name.
72 * Return the int value of a query parameter with the given name.
81 * page, except with the named query parameter set to the new value.
106 * page, except with the named query parameter set to the new long value.