Package com.teamdev.jxbrowser.engine
Enum Class PasswordStore
- All Implemented Interfaces:
Serializable
,Comparable<PasswordStore>
,Constable
Defines password store types that are used to specify which encryption storage backend to use to
encrypt cookies on Linux.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionChoose encryption automatically.Use basic encryption.Use GNOME encryption.Use GNOME keyring encryption.Use GNOME libsecret encryption.Use KWallet encryption.Use KWallet5 encryption. -
Method Summary
Modifier and TypeMethodDescriptionvalue()
Returns a string representation of the password store type.static PasswordStore
Returns the enum constant of this class with the specified name.static PasswordStore[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
AUTO
Choose encryption automatically. -
KWALLET
Use KWallet encryption. -
KWALLET5
Use KWallet5 encryption. -
GNOME
Use GNOME encryption. -
GNOME_KEYRING
Use GNOME keyring encryption. -
GNOME_LIBSECRET
Use GNOME libsecret encryption. -
BASIC
Use basic encryption.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
value
Returns a string representation of the password store type.
-