public enum ViewVisitOption extends java.lang.Enum<ViewVisitOption>
Defines the view traversal options.
Enum Constant and Description |
---|
RETURN_AS_MINIMAL_IMPLICIT_OUTCOME
Return the logical views in the most minimal form form such that they can still be used for
an implicit match by the navigation handler as described in the Jakarta Server Faces spec 7.4.2.
|
Modifier and Type | Method and Description |
---|---|
static ViewVisitOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ViewVisitOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ViewVisitOption RETURN_AS_MINIMAL_IMPLICIT_OUTCOME
For example, for the Facelets VDL a view such as /foo/bar.xhtml
would be returned as /foo/bar
.
public static ViewVisitOption[] values()
for (ViewVisitOption c : ViewVisitOption.values()) System.out.println(c);
public static ViewVisitOption 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 null