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