public enum SslProtocol extends Enum<SslProtocol>
Enum Constant and Description |
---|
TLS
Supports some version of TLS; may support other versions.
|
TLSv1
Supports RFC 2246: TLS version 1.0 ; may support other versions.
|
TLSv1_1
Supports RFC 4346: TLS version 1.1 ; may support other versions.
|
TLSv1_2
Supports RFC 5246: TLS version 1.2 ; may support other versions.
|
TLSv1_3
Supports RFC 8446: TLS version 1.3 ; may support other versions.
|
Modifier and Type | Method and Description |
---|---|
static SslProtocol |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SslProtocol[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SslProtocol TLS
public static final SslProtocol TLSv1
public static final SslProtocol TLSv1_1
public static final SslProtocol TLSv1_2
public static final SslProtocol TLSv1_3
public static SslProtocol[] values()
for (SslProtocol c : SslProtocol.values()) System.out.println(c);
public static SslProtocol 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 null
GridGain In-Memory Computing Platform : ver. 8.9.14 Release Date : November 5 2024