public static enum StatisticsManager.MetricType extends Enum<StatisticsManager.MetricType>
There are four distinguishable types of metrics.
| Enum Constant and Description |
|---|
DTS
The types of metrics.
|
SINK |
SOURCE |
TRANSFORMER |
| Modifier and Type | Method and Description |
|---|---|
static StatisticsManager.MetricType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatisticsManager.MetricType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatisticsManager.MetricType DTS
public static final StatisticsManager.MetricType SOURCE
public static final StatisticsManager.MetricType TRANSFORMER
public static final StatisticsManager.MetricType SINK
public static StatisticsManager.MetricType[] values()
for (StatisticsManager.MetricType c : StatisticsManager.MetricType.values()) System.out.println(c);
public static StatisticsManager.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 © 2014. All Rights Reserved.