static HttpUrlBuilder |
HttpUrlBuilder.base(URI uri) |
Create a new builder, with the initial state of the given URI.
|
HttpUrlBuilder |
HttpUrlBuilder.encodedPath(String path) |
Appends the path to the URL, without escaping any meta characters.
|
HttpUrlBuilder |
HttpUrlBuilder.fragment(String fragment) |
Add a fragment to the URL.
|
HttpUrlBuilder |
HttpUrlBuilder.host(String host) |
Sets the host to the given value.
|
static HttpUrlBuilder |
HttpUrlBuilder.http() |
Create a new HTTP URL builder.
|
static HttpUrlBuilder |
HttpUrlBuilder.https() |
Create a new HTTPS URL builder.
|
default HttpUrlBuilder |
HttpUrlBuilder.maybeEncodedPath(String path) |
Appends the path to the URL, without escaping any meta characters, unless it is empty or null .
|
default HttpUrlBuilder |
HttpUrlBuilder.maybePath(String path) |
Appends the path to the URL, unless it is empty or null .
|
HttpUrlBuilder |
HttpUrlBuilder.params(com.google.common.collect.Multimap<String,?> params) |
Add some query params to the URL.
|
HttpUrlBuilder |
HttpUrlBuilder.params(String... params) |
Add some query params to the URL.
|
HttpUrlBuilder |
HttpUrlBuilder.params(Map<String,?> params) |
Add some query params to the URL.
|
default HttpUrlBuilder |
HttpUrlBuilder.params(Action<? super com.google.common.collect.ImmutableMultimap.Builder<String,Object>> params) |
Add some query params to the URL.
|
HttpUrlBuilder |
HttpUrlBuilder.params(MultiValueMap<String,?> params) |
Add some query params to the URL.
|
HttpUrlBuilder |
HttpUrlBuilder.path(String path) |
Appends the path to the URL.
|
HttpUrlBuilder |
HttpUrlBuilder.port(int port) |
Sets the port to the given value.
|
HttpUrlBuilder |
HttpUrlBuilder.secure() |
Sets the protocol to be HTTPS.
|
HttpUrlBuilder |
HttpUrlBuilder.segment(String pathSegment,
Object... args) |
Appends one path segment to the URL.
|