@Deprecated public enum EncryptionMode extends Enum<EncryptionMode>
Enum Constant and Description |
---|
DECRYPT
Deprecated.
|
ENCRYPT
Deprecated.
|
NONE
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static EncryptionMode |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static EncryptionMode[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EncryptionMode NONE
public static final EncryptionMode ENCRYPT
public static final EncryptionMode DECRYPT
public static EncryptionMode[] values()
for (EncryptionMode c : EncryptionMode.values()) System.out.println(c);
public static EncryptionMode 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 © 2010–2014 The Kuali Foundation. All rights reserved.