Package com.github.javakeyring
Enum KeyringStorageType
- java.lang.Object
-
- java.lang.Enum<KeyringStorageType>
-
- com.github.javakeyring.KeyringStorageType
-
- All Implemented Interfaces:
Serializable,Comparable<KeyringStorageType>
public enum KeyringStorageType extends Enum<KeyringStorageType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GNOME_KEYRINGKWALLETLEGACY_OSX_KEYCHAINOSX_KEYCHAINWINDOWS_CREDENTIAL_STORE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static KeyringStorageTypegetLabelForBackend(Class<? extends KeyringBackend> backendClass)Class<? extends KeyringBackend>getSupportingClass()static KeyringStorageTypevalueOf(String name)Returns the enum constant of this type with the specified name.static KeyringStorageType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OSX_KEYCHAIN
public static final KeyringStorageType OSX_KEYCHAIN
-
LEGACY_OSX_KEYCHAIN
public static final KeyringStorageType LEGACY_OSX_KEYCHAIN
-
GNOME_KEYRING
public static final KeyringStorageType GNOME_KEYRING
-
WINDOWS_CREDENTIAL_STORE
public static final KeyringStorageType WINDOWS_CREDENTIAL_STORE
-
KWALLET
public static final KeyringStorageType KWALLET
-
-
Method Detail
-
values
public static KeyringStorageType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (KeyringStorageType c : KeyringStorageType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static KeyringStorageType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getSupportingClass
public Class<? extends KeyringBackend> getSupportingClass()
-
getLabelForBackend
public static KeyringStorageType getLabelForBackend(Class<? extends KeyringBackend> backendClass)
-
-