Enum Category

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Category>

    public enum Category
    extends java.lang.Enum<Category>
    • Enum Constant Detail

      • SYSTEM_PARAMETER

        public static final Category SYSTEM_PARAMETER
      • QUEUE

        public static final Category QUEUE
      • JOB_CHAIN

        public static final Category JOB_CHAIN
      • JOB_CONFIG

        public static final Category JOB_CONFIG
      • JOB_RUN

        public static final Category JOB_RUN
      • JOB_QUEUER

        public static final Category JOB_QUEUER
      • JOB_RECOVERY

        public static final Category JOB_RECOVERY
      • JOB_SPAWNER

        public static final Category JOB_SPAWNER
      • LICENCE

        public static final Category LICENCE
      • DISPATCH

        public static final Category DISPATCH
      • DASHBOARD

        public static final Category DASHBOARD
    • Method Detail

      • values

        public static Category[] 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 (Category c : Category.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Category valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null