public enum SSLAuthenticationMode extends Enum<SSLAuthenticationMode>
Enum Constant and Description |
---|
NOT_REQUESTED |
REQUESTED |
REQUIRED |
Modifier and Type | Method and Description |
---|---|
static SSLAuthenticationMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SSLAuthenticationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SSLAuthenticationMode NOT_REQUESTED
public static final SSLAuthenticationMode REQUESTED
public static final SSLAuthenticationMode REQUIRED
public static SSLAuthenticationMode[] values()
for (SSLAuthenticationMode c : SSLAuthenticationMode.values()) System.out.println(c);
public static SSLAuthenticationMode 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 © 2013-2018–2019 SeedStack. All rights reserved.