public enum TLSSecureSuiteType extends java.lang.Enum<TLSSecureSuiteType>
Enum Constant and Description |
---|
NA
Invalid - information not available
|
SSLv2_v3
Support SSLv3 or newer.
|
TLSv1
Support TLSv1.0 or newer.
|
TLSv1_1
Support TLSv1.1 or newer.
|
TLSv1_2
Support TLSv1.2 or newer.
|
TLSv1_3
Support TLSv1.3 or newer.
|
Modifier and Type | Method and Description |
---|---|
static TLSSecureSuiteType |
fromInt(int i) |
static TLSSecureSuiteType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TLSSecureSuiteType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TLSSecureSuiteType NA
public static final TLSSecureSuiteType SSLv2_v3
public static final TLSSecureSuiteType TLSv1
public static final TLSSecureSuiteType TLSv1_1
public static final TLSSecureSuiteType TLSv1_2
public static final TLSSecureSuiteType TLSv1_3
public static TLSSecureSuiteType[] values()
for (TLSSecureSuiteType c : TLSSecureSuiteType.values()) System.out.println(c);
public static TLSSecureSuiteType 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 TLSSecureSuiteType fromInt(int i)