Serializable
, Comparable<MetricAccumulationLevel>
public enum MetricAccumulationLevel extends Enum<MetricAccumulationLevel>
Enum Constant | Description |
---|---|
ALL_READS |
|
LIBRARY |
|
READ_GROUP |
|
SAMPLE |
Modifier and Type | Method | Description |
---|---|---|
static MetricAccumulationLevel |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static MetricAccumulationLevel[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MetricAccumulationLevel ALL_READS
public static final MetricAccumulationLevel SAMPLE
public static final MetricAccumulationLevel LIBRARY
public static final MetricAccumulationLevel READ_GROUP
public static MetricAccumulationLevel[] values()
for (MetricAccumulationLevel c : MetricAccumulationLevel.values()) System.out.println(c);
public static MetricAccumulationLevel 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 null