public static enum CefRequest.TransitionFlags extends java.lang.Enum<CefRequest.TransitionFlags>
| Enum Constant and Description |
|---|
TT_BLOCKED_FLAG
Attempted to visit a URL but was blocked.
|
TT_CHAIN_END_FLAG
The last transition in a redirect chain.
|
TT_CHAIN_START_FLAG
The beginning of a navigation chain.
|
TT_CLIENT_REDIRECT_FLAG
Redirects caused by JavaScript or a meta refresh tag on the page.
|
TT_FORWARD_BACK_FLAG
Used the Forward or Back function to navigate among browsing history.
|
TT_SERVER_REDIRECT_FLAG
Redirects sent from the server by HTTP headers.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue()
Returns the integer representation of the enum.
|
static CefRequest.TransitionFlags |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CefRequest.TransitionFlags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CefRequest.TransitionFlags TT_BLOCKED_FLAG
public static final CefRequest.TransitionFlags TT_CHAIN_END_FLAG
public static final CefRequest.TransitionFlags TT_CHAIN_START_FLAG
public static final CefRequest.TransitionFlags TT_CLIENT_REDIRECT_FLAG
public static final CefRequest.TransitionFlags TT_FORWARD_BACK_FLAG
public static final CefRequest.TransitionFlags TT_SERVER_REDIRECT_FLAG
public int getValue()
public static CefRequest.TransitionFlags 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 nullpublic static CefRequest.TransitionFlags[] values()
for (CefRequest.TransitionFlags c : CefRequest.TransitionFlags.values()) System.out.println(c);