public enum TemplateFragmentOrdinal extends java.lang.Enum<TemplateFragmentOrdinal>
Enum Constant and Description |
---|
PAIRED_FIRST
For the first and only first fragment in a paired sequenced template.
|
PAIRED_INTERIOR
For inner fragments in a paired sequenced template.
|
PAIRED_SECOND
For the second/last and only second/last fragment in a paired sequenced template.
|
PAIRED_UNKNOWN
For fragment in paired sequenced templates with unknown ordinal.
|
UNPAIRED
Ordinal for fragments in unpaired sequenced templates.
|
Modifier and Type | Method and Description |
---|---|
static TemplateFragmentOrdinal |
forRead(GATKRead read) |
java.lang.String |
nameSuffix() |
java.lang.String |
toString() |
static TemplateFragmentOrdinal |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TemplateFragmentOrdinal[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TemplateFragmentOrdinal UNPAIRED
public static final TemplateFragmentOrdinal PAIRED_UNKNOWN
public static final TemplateFragmentOrdinal PAIRED_FIRST
public static final TemplateFragmentOrdinal PAIRED_SECOND
public static final TemplateFragmentOrdinal PAIRED_INTERIOR
public static TemplateFragmentOrdinal[] values()
for (TemplateFragmentOrdinal c : TemplateFragmentOrdinal.values()) System.out.println(c);
public static TemplateFragmentOrdinal 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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<TemplateFragmentOrdinal>
public java.lang.String nameSuffix()
public static TemplateFragmentOrdinal forRead(GATKRead read)