public static enum Environment.Feature extends Enum<Environment.Feature>
| Enum Constant and Description |
|---|
APPLICATION |
EL_CONTEXT |
EXTERNAL_CONTEXT |
FACES_CONTEXT |
FACTORIES |
RENDER_KIT |
RESPONSE_WRITER |
SERVLET_REQUEST |
| Modifier and Type | Method and Description |
|---|---|
static Environment.Feature |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Environment.Feature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Environment.Feature FACTORIES
public static final Environment.Feature FACES_CONTEXT
public static final Environment.Feature EXTERNAL_CONTEXT
public static final Environment.Feature EL_CONTEXT
public static final Environment.Feature SERVLET_REQUEST
public static final Environment.Feature APPLICATION
public static final Environment.Feature RENDER_KIT
public static final Environment.Feature RESPONSE_WRITER
public static Environment.Feature[] values()
for (Environment.Feature c : Environment.Feature.values()) System.out.println(c);
public static Environment.Feature 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 © 2014 JBoss by Red Hat. All Rights Reserved.