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