public static enum PropertyDefinitions.SslMode extends Enum<PropertyDefinitions.SslMode>
| Enum Constant and Description |
|---|
DISABLED |
PREFERRED |
REQUIRED |
VERIFY_CA |
VERIFY_IDENTITY |
| Modifier and Type | Method and Description |
|---|---|
static PropertyDefinitions.SslMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropertyDefinitions.SslMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyDefinitions.SslMode PREFERRED
public static final PropertyDefinitions.SslMode REQUIRED
public static final PropertyDefinitions.SslMode VERIFY_CA
public static final PropertyDefinitions.SslMode VERIFY_IDENTITY
public static final PropertyDefinitions.SslMode DISABLED
public static PropertyDefinitions.SslMode[] values()
for (PropertyDefinitions.SslMode c : PropertyDefinitions.SslMode.values()) System.out.println(c);
public static PropertyDefinitions.SslMode 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 null