public enum SSLVerifier extends Enum<SSLVerifier>
| Modifier and Type | Method and Description |
|---|---|
static SSLVerifier |
getSSLVerifierFromValue(String value)
Get the SSLVerifier value based on a given value, by default STRICT is returned.
|
String |
getValue()
Value getter.
|
static SSLVerifier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SSLVerifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SSLVerifier STRICT
public static final SSLVerifier BROWSER
public static final SSLVerifier ALLOW
public static SSLVerifier[] values()
for (SSLVerifier c : SSLVerifier.values()) System.out.println(c);
public static SSLVerifier 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 String getValue()
public static SSLVerifier getSSLVerifierFromValue(String value)
value - The value.Copyright © 2021. All rights reserved.