public enum DispatcherType extends java.lang.Enum<DispatcherType>
| Modifier and Type | Method | Description |
|---|---|---|
static DispatcherType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static DispatcherType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DispatcherType FORWARD
public static final DispatcherType INCLUDE
public static final DispatcherType REQUEST
public static final DispatcherType ASYNC
public static final DispatcherType ERROR
public static DispatcherType[] values()
for (DispatcherType c : DispatcherType.values()) System.out.println(c);
public static DispatcherType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2018 JBoss by Red Hat. All rights reserved.