org.jboss.weld.logging
Enum Category
java.lang.Object
java.lang.Enum<Category>
org.jboss.weld.logging.Category
- All Implemented Interfaces:
- Serializable, Comparable<Category>
public enum Category
- extends Enum<Category>
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. |
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
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.