public enum Type extends Enum<Type>
| Enum Constant and Description |
|---|
CALLED |
CAPTURE_SCREENSHOT |
CHECK_RESOURCE |
CLOSE_BATCH |
DOM_SCRIPT |
DOWNLOAD_RESOURCE |
JOB_INFO |
MATCH_COMPLETE |
MATCH_START |
PARSE_RESOURCE |
RENDER_STATUS |
REQUEST_COMPLETED |
REQUEST_FAILED |
REQUEST_SENT |
RETRY |
TEST_RESULTS |
TIMEOUT |
UPLOAD_COMPLETE |
UPLOAD_RESOURCE |
UPLOAD_START |
| Modifier and Type | Method and Description |
|---|---|
static Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Type CALLED
public static final Type RETRY
public static final Type JOB_INFO
public static final Type UPLOAD_START
public static final Type UPLOAD_COMPLETE
public static final Type MATCH_START
public static final Type MATCH_COMPLETE
public static final Type DOM_SCRIPT
public static final Type CAPTURE_SCREENSHOT
public static final Type RENDER_STATUS
public static final Type DOWNLOAD_RESOURCE
public static final Type PARSE_RESOURCE
public static final Type CHECK_RESOURCE
public static final Type UPLOAD_RESOURCE
public static final Type REQUEST_SENT
public static final Type REQUEST_COMPLETED
public static final Type REQUEST_FAILED
public static final Type CLOSE_BATCH
public static final Type TEST_RESULTS
public static final Type TIMEOUT
public static Type[] values()
for (Type c : Type.values()) System.out.println(c);
public static Type valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2023. All rights reserved.