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