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