public enum ExecutionReportType extends Enum<ExecutionReportType>
| Enum Constant and Description |
|---|
EXECUTION_ELAPSED_TIME |
EXECUTION_JOB_COUNT |
EXECUTION_NET_ELAPSED_TIME |
EXECUTION_NETWORK_TRAFFIC_IN |
EXECUTION_NETWORK_TRAFFIC_OUT |
EXECUTION_PROCESSOR_COUNT |
EXECUTION_WORKER_TIME |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static ExecutionReportType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionReportType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutionReportType EXECUTION_WORKER_TIME
public static final ExecutionReportType EXECUTION_ELAPSED_TIME
public static final ExecutionReportType EXECUTION_NET_ELAPSED_TIME
public static final ExecutionReportType EXECUTION_JOB_COUNT
public static final ExecutionReportType EXECUTION_PROCESSOR_COUNT
public static final ExecutionReportType EXECUTION_NETWORK_TRAFFIC_IN
public static final ExecutionReportType EXECUTION_NETWORK_TRAFFIC_OUT
public static ExecutionReportType[] values()
for (ExecutionReportType c : ExecutionReportType.values()) System.out.println(c);
public static ExecutionReportType 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 nullpublic String toString()
toString in class Enum<ExecutionReportType>Copyright © 2015. All Rights Reserved.