public static enum CefRequest.ResourceType extends java.lang.Enum<CefRequest.ResourceType>
| Modifier and Type | Method and Description |
|---|---|
static CefRequest.ResourceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CefRequest.ResourceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CefRequest.ResourceType RT_CSP_REPORT
public static final CefRequest.ResourceType RT_FAVICON
public static final CefRequest.ResourceType RT_FONT_RESOURCE
public static final CefRequest.ResourceType RT_IMAGE
public static final CefRequest.ResourceType RT_MAIN_FRAME
public static final CefRequest.ResourceType RT_MEDIA
public static final CefRequest.ResourceType RT_NAVIGATION_PRELOAD_MAIN_FRAME
public static final CefRequest.ResourceType RT_NAVIGATION_PRELOAD_SUB_FRAME
public static final CefRequest.ResourceType RT_OBJECT
public static final CefRequest.ResourceType RT_PING
public static final CefRequest.ResourceType RT_PLUGIN_RESOURCE
public static final CefRequest.ResourceType RT_PREFETCH
public static final CefRequest.ResourceType RT_SCRIPT
public static final CefRequest.ResourceType RT_SERVICE_WORKER
public static final CefRequest.ResourceType RT_SHARED_WORKER
public static final CefRequest.ResourceType RT_STYLESHEET
public static final CefRequest.ResourceType RT_SUB_FRAME
public static final CefRequest.ResourceType RT_SUB_RESOURCE
public static final CefRequest.ResourceType RT_WORKER
public static final CefRequest.ResourceType RT_XHR
public static CefRequest.ResourceType 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.ResourceType[] values()
for (CefRequest.ResourceType c : CefRequest.ResourceType.values()) System.out.println(c);