public static enum Metric.MetricType extends 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(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(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 © 1996-2017, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.