public enum TlsVersion extends java.lang.Enum<TlsVersion>
SSLSocket.setEnabledProtocols(java.lang.String[])
.Enum Constant and Description |
---|
SSL_3_0 |
TLS_1_0 |
TLS_1_1 |
TLS_1_2 |
TLS_1_3 |
Modifier and Type | Field and Description |
---|---|
(package private) java.lang.String |
javaName |
Modifier and Type | Method and Description |
---|---|
static TlsVersion |
forJavaName(java.lang.String javaName) |
(package private) static java.util.List<TlsVersion> |
forJavaNames(java.lang.String... tlsVersions) |
java.lang.String |
javaName() |
static TlsVersion |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TlsVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TlsVersion TLS_1_3
public static final TlsVersion TLS_1_2
public static final TlsVersion TLS_1_1
public static final TlsVersion TLS_1_0
public static final TlsVersion SSL_3_0
public static TlsVersion[] values()
for (TlsVersion c : TlsVersion.values()) System.out.println(c);
public static TlsVersion 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 nullpublic static TlsVersion forJavaName(java.lang.String javaName)
static java.util.List<TlsVersion> forJavaNames(java.lang.String... tlsVersions)
public java.lang.String javaName()