public static enum TlsServerConnector.ClientAuthMode extends Enum<TlsServerConnector.ClientAuthMode>
| Modifier and Type | Method and Description |
|---|---|
static TlsServerConnector.ClientAuthMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TlsServerConnector.ClientAuthMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TlsServerConnector.ClientAuthMode NONE
public static final TlsServerConnector.ClientAuthMode WANTED
public static final TlsServerConnector.ClientAuthMode NEEDED
public static TlsServerConnector.ClientAuthMode[] values()
for (TlsServerConnector.ClientAuthMode c : TlsServerConnector.ClientAuthMode.values()) System.out.println(c);
public static TlsServerConnector.ClientAuthMode 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 © 2021 Eclipse Foundation. All rights reserved.