Enum Category

java.lang.Object
java.lang.Enum<Category>
com.sanctionco.opconnect.model.Category
All Implemented Interfaces:
Serializable, Comparable<Category>, java.lang.constant.Constable

public enum Category extends Enum<Category>
Represents an item category.
  • Enum Constant Details

    • LOGIN

      public static final Category LOGIN
      The login category.
    • PASSWORD

      public static final Category PASSWORD
      The password category.
    • SERVER

      public static final Category SERVER
      The server category.
    • DATABASE

      public static final Category DATABASE
      The database category.
    • CREDIT_CARD

      public static final Category CREDIT_CARD
      The credit card category.
    • MEMBERSHIP

      public static final Category MEMBERSHIP
      The membership category.
    • PASSPORT

      public static final Category PASSPORT
      The passport category.
    • SOFTWARE_LICENSE

      public static final Category SOFTWARE_LICENSE
      The software license category.
    • OUTDOOR_LICENSE

      public static final Category OUTDOOR_LICENSE
      The outdoor license category.
    • SECURE_NOTE

      public static final Category SECURE_NOTE
      The secure note category.
    • WIRELESS_ROUTER

      public static final Category WIRELESS_ROUTER
      The wireless router category.
    • BANK_ACCOUNT

      public static final Category BANK_ACCOUNT
      The bank account category.
    • DRIVER_LICENSE

      public static final Category DRIVER_LICENSE
      The driver license category.
    • IDENTITY

      public static final Category IDENTITY
      The identity category.
    • REWARD_PROGRAM

      public static final Category REWARD_PROGRAM
      The reward program category.
    • DOCUMENT

      public static final Category DOCUMENT
      The document category.
    • EMAIL_ACCOUNT

      public static final Category EMAIL_ACCOUNT
      The email account category.
    • SOCIAL_SECURITY_NUMBER

      public static final Category SOCIAL_SECURITY_NUMBER
      The social security number category.
    • API_CREDENTIAL

      public static final Category API_CREDENTIAL
      The API credential category.
    • CUSTOM

      public static final Category CUSTOM
      The custom category, used as the default for any unknown category.
  • Method Details

    • values

      public static Category[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static Category 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 name
      NullPointerException - if the argument is null