|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<EncryptedFieldAdapter.Method>
org.drupal.project.async_command.EncryptedFieldAdapter.Method
public static enum EncryptedFieldAdapter.Method
Encryption method.
| Enum Constant Summary | |
|---|---|
BASE64
Encrypted using base64 algorithm. |
|
MCRYPT
Encrypted using the MCRYPT method. |
|
NONE
Not encrypted. |
|
| Method Summary | |
|---|---|
static EncryptedFieldAdapter.Method |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static EncryptedFieldAdapter.Method[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final EncryptedFieldAdapter.Method NONE
public static final EncryptedFieldAdapter.Method BASE64
public static final EncryptedFieldAdapter.Method MCRYPT
http://php.net/manual/en/book.mcrypt.php
| Method Detail |
|---|
public static EncryptedFieldAdapter.Method[] values()
for (EncryptedFieldAdapter.Method c : EncryptedFieldAdapter.Method.values()) System.out.println(c);
public static EncryptedFieldAdapter.Method 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 name
java.lang.NullPointerException - if the argument is null
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||