public static enum Metric.MetricType extends java.lang.Enum<Metric.MetricType>
| Enum Constant and Description | 
|---|
| COMMIT_COUNT | 
| FILTER_COUNT | 
| PROCESS_SKIP_COUNT | 
| READ_COUNT | 
| READ_SKIP_COUNT | 
| ROLLBACK_COUNT | 
| WRITE_COUNT | 
| WRITE_SKIP_COUNT | 
| Modifier and Type | Method and Description | 
|---|---|
| static Metric.MetricType | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static Metric.MetricType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Metric.MetricType READ_COUNT
public static final Metric.MetricType WRITE_COUNT
public static final Metric.MetricType COMMIT_COUNT
public static final Metric.MetricType ROLLBACK_COUNT
public static final Metric.MetricType READ_SKIP_COUNT
public static final Metric.MetricType PROCESS_SKIP_COUNT
public static final Metric.MetricType FILTER_COUNT
public static final Metric.MetricType WRITE_SKIP_COUNT
public static Metric.MetricType[] values()
for (Metric.MetricType c : Metric.MetricType.values()) System.out.println(c);
public static Metric.MetricType 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 null