public enum EncryptionScope extends java.lang.Enum<EncryptionScope>
Enum Constant and Description |
---|
EncryptAll |
EncryptSensitiveDataOnly |
NoEncryption |
Modifier and Type | Method and Description |
---|---|
static EncryptionScope |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EncryptionScope[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final EncryptionScope NoEncryption
public static final EncryptionScope EncryptAll
public static final EncryptionScope EncryptSensitiveDataOnly
public static EncryptionScope[] values()
for (EncryptionScope c : EncryptionScope.values()) System.out.println(c);
public static EncryptionScope 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