public static enum CefFocusHandler.FocusSource extends java.lang.Enum<CefFocusHandler.FocusSource>
枚举常量和说明 |
---|
FOCUS_SOURCE_NAVIGATION |
FOCUS_SOURCE_SYSTEM |
限定符和类型 | 方法和说明 |
---|---|
static CefFocusHandler.FocusSource |
valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。
|
static CefFocusHandler.FocusSource[] |
values()
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
|
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
- 要返回的枚举常量的名称。
java.lang.IllegalArgumentException
- 如果该枚举类型没有带有指定名称的常量
java.lang.NullPointerException
- 如果参数为空值
public static CefFocusHandler.FocusSource[] values()
for (CefFocusHandler.FocusSource c : CefFocusHandler.FocusSource.values()) System.out.println(c);