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