public enum BlockCipher extends Enum<BlockCipher>
| Modifier and Type | Method and Description |
|---|---|
static BlockCipher |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BlockCipher[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlockCipher AES
public static final BlockCipher CAMELLIA
public static BlockCipher[] values()
for (BlockCipher c : BlockCipher.values()) System.out.println(c);
public static BlockCipher 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 © 2022 Apache NiFi Project. All rights reserved.