public enum OperationWorkerMsgType extends Enum<OperationWorkerMsgType>
| Enum Constant and Description |
|---|
CANCEL
The cancel.
|
OPERATION_TIMEOUT
The operation timeout.
|
POLL_PROGRESS
The poll progress.
|
PROCESS_REQUEST
The process request.
|
| Modifier and Type | Method and Description |
|---|---|
static OperationWorkerMsgType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OperationWorkerMsgType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperationWorkerMsgType POLL_PROGRESS
public static final OperationWorkerMsgType OPERATION_TIMEOUT
public static final OperationWorkerMsgType PROCESS_REQUEST
public static final OperationWorkerMsgType CANCEL
public static OperationWorkerMsgType[] values()
for (OperationWorkerMsgType c : OperationWorkerMsgType.values()) System.out.println(c);
public static OperationWorkerMsgType 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 © 2015–2017 eBay. All rights reserved.