public enum Element extends Enum<Element>
| Enum Constant and Description |
|---|
CONTROLLER |
PATH_PARAM |
PATTERN |
REQUEST_PARAM |
ROUTE |
ROUTE_PARAM |
UNKNOWN |
VALUE |
| Modifier and Type | Method and Description |
|---|---|
static Element |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Element[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Element CONTROLLER
public static final Element ROUTE
public static final Element ROUTE_PARAM
public static final Element REQUEST_PARAM
public static final Element PATH_PARAM
public static final Element PATTERN
public static final Element VALUE
public static final Element UNKNOWN
public static Element[] values()
for (Element c : Element.values()) System.out.println(c);
public static Element 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 © 2018 JBoss by Red Hat. All Rights Reserved.