public static enum Encrypter.KeyPlacement extends Enum<Encrypter.KeyPlacement>
Enum Constant and Description |
---|
INLINE
Place the EncryptedKey element(s) within the KeyInfo of the EncryptedData.
|
PEER
Place the EncryptedKey element(s) as a peer to the EncryptedData inside the EncryptedElementType.
|
Modifier and Type | Method and Description |
---|---|
static Encrypter.KeyPlacement |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Encrypter.KeyPlacement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Encrypter.KeyPlacement PEER
public static final Encrypter.KeyPlacement INLINE
public static Encrypter.KeyPlacement[] values()
for (Encrypter.KeyPlacement c : Encrypter.KeyPlacement.values()) System.out.println(c);
public static Encrypter.KeyPlacement 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 © 2018 JBoss by Red Hat. All rights reserved.