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