public static enum HttpConfig.AuthType extends java.lang.Enum<HttpConfig.AuthType>
Defines the allowed values of the HTTP authentication type.
Modifier and Type | Method and Description |
---|---|
static HttpConfig.AuthType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HttpConfig.AuthType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpConfig.AuthType BASIC
public static final HttpConfig.AuthType DIGEST
public static HttpConfig.AuthType[] values()
for (HttpConfig.AuthType c : HttpConfig.AuthType.values()) System.out.println(c);
public static HttpConfig.AuthType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null