public enum PasswordStore extends java.lang.Enum<PasswordStore>
Enum Constant and Description |
---|
AUTO
Choose encryption automatically.
|
BASIC
Use basic encryption.
|
GNOME
Use GNOME encryption.
|
GNOME_KEYRING
Use GNOME keyring encryption.
|
GNOME_LIBSECRET
Use GNOME libsecret encryption.
|
KWALLET
Use KWallet encryption.
|
KWALLET5
Use KWallet5 encryption.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
value()
Returns a string representation of the password store type.
|
static PasswordStore |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PasswordStore[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PasswordStore AUTO
public static final PasswordStore KWALLET
public static final PasswordStore KWALLET5
public static final PasswordStore GNOME
public static final PasswordStore GNOME_KEYRING
public static final PasswordStore GNOME_LIBSECRET
public static final PasswordStore BASIC
public static PasswordStore[] values()
for (PasswordStore c : PasswordStore.values()) System.out.println(c);
public static PasswordStore 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 value()