public static enum AlignerHelper.Last extends Enum<AlignerHelper.Last>
Enum Constant and Description |
---|
DELETION |
INSERTION |
SUBSTITUTION |
Modifier and Type | Method and Description |
---|---|
static AlignerHelper.Last |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AlignerHelper.Last[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlignerHelper.Last SUBSTITUTION
public static final AlignerHelper.Last DELETION
public static final AlignerHelper.Last INSERTION
public static AlignerHelper.Last[] values()
for (AlignerHelper.Last c : AlignerHelper.Last.values()) System.out.println(c);
public static AlignerHelper.Last 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 © 2000–2019 BioJava. All rights reserved.