Enum Class PasswordStore

java.lang.Object
java.lang.Enum<PasswordStore>
com.teamdev.jxbrowser.engine.PasswordStore
All Implemented Interfaces:
Serializable, Comparable<PasswordStore>, Constable

public enum PasswordStore extends Enum<PasswordStore>
Defines password store types that are used to specify which encryption storage backend to use to encrypt cookies on Linux.
  • Enum Constant Details

    • AUTO

      public static final PasswordStore AUTO
      Choose encryption automatically.
    • KWALLET

      public static final PasswordStore KWALLET
      Use KWallet encryption.
    • KWALLET5

      public static final PasswordStore KWALLET5
      Use KWallet5 encryption.
    • GNOME

      public static final PasswordStore GNOME
      Use GNOME encryption.
    • GNOME_KEYRING

      public static final PasswordStore GNOME_KEYRING
      Use GNOME keyring encryption.
    • GNOME_LIBSECRET

      public static final PasswordStore GNOME_LIBSECRET
      Use GNOME libsecret encryption.
    • BASIC

      public static final PasswordStore BASIC
      Use basic encryption.
  • Method Details

    • values

      public static PasswordStore[] 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

      public static PasswordStore valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • value

      public String value()
      Returns a string representation of the password store type.