public enum RestActivatorType extends Enum<RestActivatorType>
| Enum Constant and Description |
|---|
APP_CLASS
Configured via an
Application |
WEB_XML
Configured via web.xml
|
| Modifier and Type | Method and Description |
|---|---|
static RestActivatorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RestActivatorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RestActivatorType WEB_XML
public static final RestActivatorType APP_CLASS
Applicationpublic static RestActivatorType[] values()
for (RestActivatorType c : RestActivatorType.values()) System.out.println(c);
public static RestActivatorType 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 © 2013 JBoss by Red Hat. All Rights Reserved.