|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Alignment.AlignmentType>
de.jstacs.algorithms.alignment.Alignment.AlignmentType
public static enum Alignment.AlignmentType
Enum Constant Summary | |
---|---|
GLOBAL
The global version of an alignment aligns two complete sequences. |
|
LOCAL
The local version of an alignment aligns a subsequence of the first sequence with a subsequence of the second sequence. |
|
SEMI_GLOBAL
The semi global version of an alignment allows gaps at the begin and at the end of the second sequence without any costs. |
Method Summary | |
---|---|
static Alignment.AlignmentType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Alignment.AlignmentType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Alignment.AlignmentType GLOBAL
public static final Alignment.AlignmentType SEMI_GLOBAL
public static final Alignment.AlignmentType LOCAL
Method Detail |
---|
public static Alignment.AlignmentType[] values()
for (Alignment.AlignmentType c : Alignment.AlignmentType.values()) System.out.println(c);
public static Alignment.AlignmentType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |