public enum TlsVersion extends Enum<TlsVersion >
SSLSocket.setEnabledProtocols(java.lang.String[]) .
| Modifier and Type | Method and Description |
|---|---|
static TlsVersion |
forJavaName(String
|
String |
javaName()
|
static TlsVersion |
valueOf(String
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 TlsVersionTLS_1_2
public static final TlsVersionTLS_1_1
public static final TlsVersionTLS_1_0
public static final TlsVersionSSL_3_0
public static TlsVersion[] values()
for (TlsVersion c : TlsVersion.values()) System.out.println(c);
public static TlsVersionvalueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null
public static TlsVersionforJavaName(String javaName)
public StringjavaName()