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