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