public static enum SslConfig.SslConfigScope extends java.lang.Enum<SslConfig.SslConfigScope>
| Enum Constant and Description |
|---|
SCOPE_ALL
Request all SSL configuration.
|
SCOPE_CLIENT_ONLY
Request client-only SSL configuration.
|
| Modifier and Type | Method and Description |
|---|---|
static SslConfig.SslConfigScope |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SslConfig.SslConfigScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SslConfig.SslConfigScope SCOPE_ALL
public static final SslConfig.SslConfigScope SCOPE_CLIENT_ONLY
public static SslConfig.SslConfigScope[] values()
for (SslConfig.SslConfigScope c : SslConfig.SslConfigScope.values()) System.out.println(c);
public static SslConfig.SslConfigScope 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