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