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