Serializable, Comparable<TlsVersion>public enum TlsVersion extends Enum<TlsVersion>
SSLSocket.setEnabledProtocols(java.lang.String[]).| Enum Constant | Description |
|---|---|
SSL_3_0 |
|
TLS_1_0 |
|
TLS_1_1 |
|
TLS_1_2 |
|
TLS_1_3 |
| Modifier and Type | Method | Description |
|---|---|---|
static TlsVersion |
forJavaName(String javaName) |
|
String |
javaName() |
|
static TlsVersion |
valueOf(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(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 TlsVersion forJavaName(String javaName)
public String javaName()
Copyright © 2020. All rights reserved.