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