public static enum CefFocusHandler.FocusSource extends java.lang.Enum<CefFocusHandler.FocusSource>
| Enum Constant and Description |
|---|
FOCUS_SOURCE_NAVIGATION |
FOCUS_SOURCE_SYSTEM |
| Modifier and Type | Method and Description |
|---|---|
static CefFocusHandler.FocusSource |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CefFocusHandler.FocusSource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CefFocusHandler.FocusSource FOCUS_SOURCE_NAVIGATION
public static final CefFocusHandler.FocusSource FOCUS_SOURCE_SYSTEM
public static CefFocusHandler.FocusSource 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 CefFocusHandler.FocusSource[] values()
for (CefFocusHandler.FocusSource c : CefFocusHandler.FocusSource.values()) System.out.println(c);