public enum MinimumTlsVersion extends Enum<MinimumTlsVersion>
| Enum Constant and Description |
|---|
NONE
Enum value None.
|
TLS10
Enum value TLS10.
|
TLS12
Enum value TLS12.
|
| Modifier and Type | Method and Description |
|---|---|
static MinimumTlsVersion |
fromString(String value)
Parses a serialized value to a MinimumTlsVersion instance.
|
String |
toString() |
static MinimumTlsVersion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MinimumTlsVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MinimumTlsVersion NONE
public static final MinimumTlsVersion TLS10
public static final MinimumTlsVersion TLS12
public static MinimumTlsVersion[] values()
public static MinimumTlsVersion 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 MinimumTlsVersion fromString(String value)
value - the serialized value to parse.public String toString()
toString in class Enum<MinimumTlsVersion>Copyright © 2020 Microsoft Corporation. All rights reserved.