Uses of Class
org.miaixz.bus.http.UnoUrl.Builder
Packages that use UnoUrl.Builder
-
Uses of UnoUrl.Builder in org.miaixz.bus.http
Methods in org.miaixz.bus.http that return UnoUrl.BuilderModifier and TypeMethodDescriptionUnoUrl.Builder.addEncodedPathSegment(String encodedPathSegment) Adds an encoded path segment.UnoUrl.Builder.addEncodedPathSegments(String encodedPathSegments) Adds a list of encoded path segments.UnoUrl.Builder.addEncodedQueryParameter(String encodedName, String encodedValue) Adds an encoded query parameter.UnoUrl.Builder.addPathSegment(String pathSegment) Adds a path segment.UnoUrl.Builder.addPathSegments(String pathSegments) Adds a list of path segments.UnoUrl.Builder.addQueryParameter(String name, String value) Adds a query parameter.UnoUrl.Builder.encodedFragment(String encodedFragment) Sets the encoded fragment.UnoUrl.Builder.encodedPassword(String encodedPassword) Sets the encoded password.UnoUrl.Builder.encodedPath(String encodedPath) Sets the encoded path.UnoUrl.Builder.encodedQuery(String encodedQuery) Sets the encoded query string.UnoUrl.Builder.encodedUsername(String encodedUsername) Sets the encoded username.Sets the fragment.Sets the hostname.UnoUrl.newBuilder()Creates a new builder initialized with the components of this URL.UnoUrl.newBuilder(String link) Creates a new builder for a relative link.Sets the password.UnoUrl.Builder.port(int port) Sets the port number.Sets the query string.UnoUrl.Builder.removeAllEncodedQueryParameters(String encodedName) Removes all encoded query parameters with the given name.UnoUrl.Builder.removeAllQueryParameters(String name) Removes all query parameters with the given name.UnoUrl.Builder.removePathSegment(int index) Removes a path segment at a specific index.Sets the scheme of the URL.UnoUrl.Builder.setEncodedPathSegment(int index, String encodedPathSegment) Sets an encoded path segment at a specific index.UnoUrl.Builder.setEncodedQueryParameter(String encodedName, String encodedValue) Sets an encoded query parameter, replacing any existing parameters with the same name.UnoUrl.Builder.setPathSegment(int index, String pathSegment) Sets a path segment at a specific index.UnoUrl.Builder.setQueryParameter(String name, String value) Sets a query parameter, replacing any existing parameters with the same name.Sets the username.