Enum Category

    • Enum Constant Detail

      • BOOTSTRAP

        public static final Category BOOTSTRAP
      • BOOTSTRAP_TRACKER

        public static final Category BOOTSTRAP_TRACKER
      • VERSION

        public static final Category VERSION
      • UTIL

        public static final Category UTIL
      • BEAN

        public static final Category BEAN
      • SERVLET

        public static final Category SERVLET
      • REFLECTION

        public static final Category REFLECTION
      • EVENT

        public static final Category EVENT
      • CONVERSATION

        public static final Category CONVERSATION
      • CONTEXT

        public static final Category CONTEXT
      • RESOLUTION

        public static final Category RESOLUTION
      • BEAN_MANAGER

        public static final Category BEAN_MANAGER
      • VALIDATOR

        public static final Category VALIDATOR
      • INTERCEPTOR

        public static final Category INTERCEPTOR
      • SERIALIZATION

        public static final Category SERIALIZATION
      • CONFIGURATION

        public static final Category CONFIGURATION
    • 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​(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
      • getName

        public String getName()