public static enum SignaturePipe.Action extends Enum<SignaturePipe.Action>
Enum Constant and Description |
---|
SIGN
signs the input
|
VERIFY
verifies a signature
|
Modifier and Type | Method and Description |
---|---|
static SignaturePipe.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SignaturePipe.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SignaturePipe.Action SIGN
public static final SignaturePipe.Action VERIFY
public static SignaturePipe.Action[] values()
for (SignaturePipe.Action c : SignaturePipe.Action.values()) System.out.println(c);
public static SignaturePipe.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.