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