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