public static enum ConfigurableTLSSocketFactory.ConnectionProfile extends java.lang.Enum<ConfigurableTLSSocketFactory.ConnectionProfile>
| Enum Constant and Description |
|---|
BCP195 |
BCP195NONDOWNGRADING |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String[] |
getCipherSuites()
returns the cipher suites of the connection profile
|
java.lang.String[] |
getTlsProtocols()
returns the TLS protocols of the connection profile
|
static ConfigurableTLSSocketFactory.ConnectionProfile |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConfigurableTLSSocketFactory.ConnectionProfile[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigurableTLSSocketFactory.ConnectionProfile BCP195
public static final ConfigurableTLSSocketFactory.ConnectionProfile BCP195NONDOWNGRADING
public static ConfigurableTLSSocketFactory.ConnectionProfile[] values()
for (ConfigurableTLSSocketFactory.ConnectionProfile c : ConfigurableTLSSocketFactory.ConnectionProfile.values()) System.out.println(c);
public static ConfigurableTLSSocketFactory.ConnectionProfile 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 java.lang.String[] getTlsProtocols()
public java.lang.String[] getCipherSuites()