public enum Category extends Enum<Category>
Enum Constant and Description |
---|
BEAN |
BOOTSTRAP |
CLASS_LOADING |
CONTEXT |
CONVERSATION |
EL |
EVENT |
JSF |
REFLECTION |
SERVLET |
UTIL |
VERSION |
Modifier and Type | Method and Description |
---|---|
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.
|
public static final Category BOOTSTRAP
public static final Category VERSION
public static final Category UTIL
public static final Category BEAN
public static final Category SERVLET
public static final Category REFLECTION
public static final Category JSF
public static final Category EVENT
public static final Category CONVERSATION
public static final Category CONTEXT
public static final Category EL
public static final Category CLASS_LOADING
public static Category[] values()
for (Category c : Category.values()) System.out.println(c);
public static Category valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullCopyright © 2012 Seam Framework. All Rights Reserved.