public enum Category extends Enum<Category>
Enum Constant and Description |
---|
BEAN |
BEAN_MANAGER |
BOOTSTRAP |
CONTEXT |
CONVERSATION |
EL |
EVENT |
INTERCEPTOR |
JSF |
REFLECTION |
RESOLUTION |
SERIALIZATION |
SERVLET |
UTIL |
VALIDATOR |
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 RESOLUTION
public static final Category BEAN_MANAGER
public static final Category VALIDATOR
public static final Category INTERCEPTOR
public static final Category SERIALIZATION
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 © 2016. All rights reserved.