public enum Encryption extends Enum<Encryption>
Enum Constant and Description |
---|
AES128 |
AES128CCM |
AES128CCM8 |
AES128GCM |
AES256 |
AES256CCM |
AES256CCM8 |
AES256GCM |
ARIA128GCM |
ARIA256GCM |
CAMELLIA128 |
CAMELLIA256 |
CHACHA20POLY1305 |
DES |
eGOST2814789CNT |
eNULL |
FZA |
IDEA |
RC2 |
RC4 |
SEED |
TRIPLE_DES |
Modifier and Type | Method and Description |
---|---|
static Encryption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Encryption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Encryption AES128
public static final Encryption AES128CCM
public static final Encryption AES128CCM8
public static final Encryption AES128GCM
public static final Encryption AES256
public static final Encryption AES256CCM
public static final Encryption AES256CCM8
public static final Encryption AES256GCM
public static final Encryption ARIA128GCM
public static final Encryption ARIA256GCM
public static final Encryption CAMELLIA256
public static final Encryption CAMELLIA128
public static final Encryption CHACHA20POLY1305
public static final Encryption TRIPLE_DES
public static final Encryption DES
public static final Encryption IDEA
public static final Encryption eGOST2814789CNT
public static final Encryption SEED
public static final Encryption FZA
public static final Encryption RC4
public static final Encryption RC2
public static final Encryption eNULL
public static Encryption[] values()
for (Encryption c : Encryption.values()) System.out.println(c);
public static Encryption 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 © 2000-2020 Apache Software Foundation. All Rights Reserved.