public enum UrlHandlingMode extends java.lang.Enum<UrlHandlingMode>
Enum Constant and Description |
---|
BACK_ONLY
CubaHistoryControl is used to handle changes. |
NONE
URL changes are not handled at all.
|
URL_ROUTES
|
Modifier and Type | Method and Description |
---|---|
static UrlHandlingMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UrlHandlingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UrlHandlingMode NONE
Replacement for disabled WebConfig.getAllowHandleBrowserHistoryBack()
.
public static final UrlHandlingMode BACK_ONLY
CubaHistoryControl
is used to handle changes.
Replacement for enabled WebConfig.getAllowHandleBrowserHistoryBack()
.
public static final UrlHandlingMode URL_ROUTES
UrlRouting
,
History
,
UrlChangeHandler
public static UrlHandlingMode[] values()
for (UrlHandlingMode c : UrlHandlingMode.values()) System.out.println(c);
public static UrlHandlingMode 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