org.jboss.weld.logging
Enum Category

java.lang.Object
  extended by java.lang.Enum<Category>
      extended by org.jboss.weld.logging.Category
All Implemented Interfaces:
Serializable, Comparable<Category>

public enum Category
extends Enum<Category>


Enum Constant Summary
BEAN
           
BOOTSTRAP
           
CLASS_LOADING
           
CONTEXT
           
CONVERSATION
           
EL
           
EVENT
           
JSF
           
REFLECTION
           
SERVLET
           
UTIL
           
VERSION
           
 
Method Summary
static Category valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Category[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

BOOTSTRAP

public static final Category BOOTSTRAP

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

JSF

public static final Category JSF

EVENT

public static final Category EVENT

CONVERSATION

public static final Category CONVERSATION

CONTEXT

public static final Category CONTEXT

EL

public static final Category EL

CLASS_LOADING

public static final Category CLASS_LOADING
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


Copyright © 2013 Seam Framework. All Rights Reserved.