public enum SslClientAuth extends Enum<SslClientAuth>
Modifier and Type | Field and Description |
---|---|
static List<SslClientAuth> |
VALUES |
Modifier and Type | Method and Description |
---|---|
static SslClientAuth |
forConfig(String key) |
static SslClientAuth |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SslClientAuth[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SslClientAuth REQUIRED
public static final SslClientAuth REQUESTED
public static final SslClientAuth NONE
public static final List<SslClientAuth> VALUES
public static SslClientAuth[] values()
for (SslClientAuth c : SslClientAuth.values()) System.out.println(c);
public static SslClientAuth 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 static SslClientAuth forConfig(String key)