public static enum JWEObject.State extends Enum<JWEObject.State>
Enum Constant and Description |
---|
DECRYPTED
The JWE object is decrypted.
|
ENCRYPTED
The JWE object is encrypted.
|
UNENCRYPTED
The JWE object is created but not encrypted yet.
|
Modifier and Type | Method and Description |
---|---|
static JWEObject.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JWEObject.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JWEObject.State UNENCRYPTED
public static final JWEObject.State ENCRYPTED
public static final JWEObject.State DECRYPTED
public static JWEObject.State[] values()
for (JWEObject.State c : JWEObject.State.values()) System.out.println(c);
public static JWEObject.State 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 © 2017 Connect2id Ltd.. All rights reserved.