public static enum Credentials.Scheme extends java.lang.Enum<Credentials.Scheme>
Enum Constant and Description |
---|
BASIC |
NTLM |
USER_CERTIFICATE |
Modifier and Type | Method and Description |
---|---|
static Credentials.Scheme |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Credentials.Scheme[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Credentials.Scheme BASIC
public static final Credentials.Scheme NTLM
public static final Credentials.Scheme USER_CERTIFICATE
public static Credentials.Scheme[] values()
for (Credentials.Scheme c : Credentials.Scheme.values()) System.out.println(c);
public static Credentials.Scheme 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