public static enum HttpProxyOptions.HttpProxyAuthorizationType extends Enum<HttpProxyOptions.HttpProxyAuthorizationType>
| Enum Constant and Description |
|---|
Basic
Basic (username and password base64 encoded) authentication
|
None
No authentication
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static HttpProxyOptions.HttpProxyAuthorizationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HttpProxyOptions.HttpProxyAuthorizationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpProxyOptions.HttpProxyAuthorizationType None
public static final HttpProxyOptions.HttpProxyAuthorizationType Basic
public static HttpProxyOptions.HttpProxyAuthorizationType[] values()
for (HttpProxyOptions.HttpProxyAuthorizationType c : HttpProxyOptions.HttpProxyAuthorizationType.values()) System.out.println(c);
public static HttpProxyOptions.HttpProxyAuthorizationType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic int getValue()
Copyright © 2021. All rights reserved.