Lines Matching defs:query

37  * {@code http://username:password@host:8080/directory/file?query#fragment}
41 * <tr><td>{@link #getSchemeSpecificPart() Scheme-specific part}</td><td>{@code //username:password@host:8080/directory/file?query#fragment}</td><td></td></tr>
47 * <tr><td>{@link #getQuery() Query} </td><td>{@code query} </td><td></td></tr>
88 * has an authority, user info, host, port, path or query. An opaque URIs may
146 /** for query, fragment, and scheme-specific part */
188 private transient String query;
235 public URI(String scheme, String userInfo, String host, int port, String path, String query,
238 && query == null && fragment == null) {
279 if (query != null) {
281 ALL_LEGAL_ENCODER.appendEncoded(uri, query);
306 public URI(String scheme, String authority, String path, String query,
325 if (query != null) {
327 ALL_LEGAL_ENCODER.appendEncoded(uri, query);
342 * Then it breaks the scheme-specific part into authority, path and query:
343 * [//authority][path][?query]
404 // "?query"
406 query = ALL_LEGAL_ENCODER.validate(uri, queryStart + 1, fragmentStart, "query");
688 if (query != null && uri.query == null) {
690 } else if (query == null && uri.query != null) {
692 } else if (query != null && uri.query != null) {
693 ret = query.compareTo(uri.query);
740 clone.query = query;
830 if (uri.query != null && query == null || uri.query == null
831 && query != null) {
833 } else if (uri.query != null && query != null) {
834 if (!escapedEquals(uri.query, query)) {
989 * Returns the decoded query of this URI, or null if this URI has no query.
992 return decode(query);
996 * Returns the encoded query of this URI, or null if this URI has no query.
999 return query;
1151 result.query = relative.query;
1180 if (relative.path.isEmpty() && relative.scheme == null && relative.query == null) {
1189 result.query = relative.query;
1212 // ssp = [//authority][path][?query]
1220 if (query != null) {
1221 ssp.append("?" + query);
1283 if (query != null) {
1285 result.append(query);
1331 if (query != null) {
1333 result.append(query);