Enum Class Category

java.lang.Object
java.lang.Enum<Category>
com.mindstore.backend.data.Category
All Implemented Interfaces:
Serializable, Comparable<Category>, Constable

public enum Category extends Enum<Category>
This enum class is used as a classfication for the TextDocuments. It is mainly used to categorize texts. One text can have one or more categories.
  • Enum Constant Details

    • CYBERSECURITY

      public static final Category CYBERSECURITY
      Category for cybersecurity texts
    • LINUX

      public static final Category LINUX
      Category for linux texts
    • WINDOWS

      public static final Category WINDOWS
      Category for windows texts
    • POSTGRES

      public static final Category POSTGRES
      Category for postgres texts
    • AI

      public static final Category AI
      Category for AI texts
    • DOCKER

      public static final Category DOCKER
      Category for docker texts
    • DEPLOYMENT

      public static final Category DEPLOYMENT
      Category for deployments texts
    • APACHE

      public static final Category APACHE
      Category for apache texts
    • SSH

      public static final Category SSH
      Category for ssh texts
    • MISCELLANEOUS

      public static final Category MISCELLANEOUS
      Category for various of texts
    • JAVA

      public static final Category JAVA
      Category for java texts
    • JAVASCRIPT

      public static final Category JAVASCRIPT
      Category for javascript texts
    • DATABASES

      public static final Category DATABASES
      Category for database texts
    • REACT

      public static final Category REACT
      Category for react texts
    • ANGULAR

      public static final Category ANGULAR
      Category for angular texts
    • PROGRAMMING_GENERAL

      public static final Category PROGRAMMING_GENERAL
      Category for general programming texts
    • PYTHON

      public static final Category PYTHON
      Category for python texts
    • CERTBOT

      public static final Category CERTBOT
      Category for certbot texts
  • Method Details

    • values

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