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