public static enum PGPPipe.Action extends Enum<PGPPipe.Action>
Enum Constant and Description |
---|
DECRYPT
Decrypts the given input.
|
ENCRYPT
Encrypts the given input.
|
SIGN
Encrypts and then signs the given input.
|
VERIFY
Decrypts and verifies the given input.
|
Modifier and Type | Method and Description |
---|---|
static PGPPipe.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PGPPipe.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PGPPipe.Action ENCRYPT
public static final PGPPipe.Action SIGN
public static final PGPPipe.Action DECRYPT
public static final PGPPipe.Action VERIFY
public static PGPPipe.Action[] values()
for (PGPPipe.Action c : PGPPipe.Action.values()) System.out.println(c);
public static PGPPipe.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 © 2023 Frank!Framework. All rights reserved.