Serializable
, Comparable<HttpClient.Redirect>
, Constable
HttpClient
public static enum HttpClient.Redirect extends Enum<HttpClient.Redirect>
The automatic redirection policy is checked whenever a 3XX
response code is received. If redirection does not happen automatically, then the response, containing the 3XX
response code, is returned, where it can be handled manually.
Redirect
policy is set through the Builder.followRedirects method.
30X
status code, as specified in RFC 7231. In addition, the 301
and 302
status codes cause a POST
request to be converted to a GET
in the redirected request.Enum.EnumDesc<E extends Enum<E>>
Enum Constant | Description |
---|---|
ALWAYS |
Always redirect. |
NEVER |
Never redirect. |
NORMAL |
Always redirect, except from HTTPS URLs to HTTP URLs. |
Modifier and Type | Method | Description |
---|---|---|
static HttpClient.Redirect |
valueOf |
Returns the enum constant of this class with the specified name. |
static HttpClient.Redirect[] |
values() |
Returns an array containing the constants of this enum class, in the order they are declared. |
public static final HttpClient.Redirect NEVER
public static final HttpClient.Redirect ALWAYS
public static final HttpClient.Redirect NORMAL
public static HttpClient.Redirect[] values()
public static HttpClient.Redirect valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.net.http/java/net/http/HttpClient.Redirect.html