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