public enum SslMode extends Enum<SslMode>
| Enum Constant and Description |
|---|
DISABLE |
TRUST |
VERIFY_CA |
VERIFY_FULL |
| Modifier and Type | Method and Description |
|---|---|
static SslMode |
from(String value) |
static SslMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SslMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SslMode DISABLE
public static final SslMode TRUST
public static final SslMode VERIFY_CA
public static final SslMode VERIFY_FULL
public static SslMode[] values()
for (SslMode c : SslMode.values()) System.out.println(c);
public static 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 nullCopyright © 2022 SingleStore. All rights reserved.