public static enum SubDataClient.Encryption extends java.lang.Enum<SubDataClient.Encryption>
Modifier and Type | Method and Description |
---|---|
static SubDataClient.Encryption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SubDataClient.Encryption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubDataClient.Encryption NONE
public static final SubDataClient.Encryption AES
public static final SubDataClient.Encryption AES_128
public static final SubDataClient.Encryption AES_192
public static final SubDataClient.Encryption AES_256
public static SubDataClient.Encryption[] values()
for (SubDataClient.Encryption c : SubDataClient.Encryption.values()) System.out.println(c);
public static SubDataClient.Encryption valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null