public enum OperationType extends Enum<OperationType>
Enum Constant and Description |
---|
DELETION
The deletion of one node in the left sequence.
|
INSERTION
The insertion of one node from the right sequence into the left sequence.
|
REPLACEMENT
A replacement of one node in the left input sequnce with one in the right
input sequence.
|
SKIPDELETION
The deletion of one node in the left sequence in the beginning or end of
the alignment.
|
SKIPINSERTION
The insertion of one node from the right sequence into the left sequence
in the beginning or end of the alignment.
|
Modifier and Type | Method and Description |
---|---|
static OperationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperationType REPLACEMENT
public static final OperationType DELETION
public static final OperationType INSERTION
public static final OperationType SKIPDELETION
public static final OperationType SKIPINSERTION
public static OperationType[] values()
for (OperationType c : OperationType.values()) System.out.println(c);
public static OperationType 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 (C) 2013-2015 Benjamin Paaßen, Georg Zentgraf, AG Theoretical Computer Science, Centre of Excellence Cognitive Interaction Technology (CITEC), University of Bielefeld, licensed under the AGPL v. 3: http://openresearch.cit-ec.de/projects/tcs