static enum ProxyDigestAuthenticator.Algorithm extends java.lang.Enum<ProxyDigestAuthenticator.Algorithm>
Enum Constant and Description |
---|
MD5 |
MD5_SESS |
UNSPECIFIED |
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
md |
Modifier and Type | Method and Description |
---|---|
static ProxyDigestAuthenticator.Algorithm |
parse(java.lang.String val) |
java.lang.String |
toString() |
static ProxyDigestAuthenticator.Algorithm |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProxyDigestAuthenticator.Algorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProxyDigestAuthenticator.Algorithm UNSPECIFIED
public static final ProxyDigestAuthenticator.Algorithm MD5
public static final ProxyDigestAuthenticator.Algorithm MD5_SESS
public static ProxyDigestAuthenticator.Algorithm[] values()
for (ProxyDigestAuthenticator.Algorithm c : ProxyDigestAuthenticator.Algorithm.values()) System.out.println(c);
public static ProxyDigestAuthenticator.Algorithm 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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<ProxyDigestAuthenticator.Algorithm>
public static ProxyDigestAuthenticator.Algorithm parse(java.lang.String val)