public static enum EncryptionConfig.EncryptionLevel extends Enum<EncryptionConfig.EncryptionLevel>
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static EncryptionConfig.EncryptionLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EncryptionConfig.EncryptionLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EncryptionConfig.EncryptionLevel FILE
public static final EncryptionConfig.EncryptionLevel ROW
public static final EncryptionConfig.EncryptionLevel FIELD
public static final EncryptionConfig.EncryptionLevel NONE
public static final EncryptionConfig.EncryptionLevel ANY
public static EncryptionConfig.EncryptionLevel[] values()
for (EncryptionConfig.EncryptionLevel c : EncryptionConfig.EncryptionLevel.values()) System.out.println(c);
public static EncryptionConfig.EncryptionLevel 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 nullpublic String toString()
toString in class Enum<EncryptionConfig.EncryptionLevel>