public enum MetricAccumulationLevel extends java.lang.Enum<MetricAccumulationLevel>
| Enum Constant and Description |
|---|
ALL_READS |
LIBRARY |
READ_GROUP |
SAMPLE |
| Modifier and Type | Method and Description |
|---|---|
static MetricAccumulationLevel |
valueOf(java.lang.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(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