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