public static enum PaCeQuant.GapCloseMode extends Enum<PaCeQuant.GapCloseMode>
Enum Constant and Description |
---|
NAIVE_HEURISTIC
Simply link adjacent endpoints.
|
NONE
Do not try to close gaps.
|
WATERSHED
Use watershed transformation.
|
Modifier and Type | Method and Description |
---|---|
static PaCeQuant.GapCloseMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PaCeQuant.GapCloseMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaCeQuant.GapCloseMode NONE
public static final PaCeQuant.GapCloseMode WATERSHED
public static final PaCeQuant.GapCloseMode NAIVE_HEURISTIC
public static PaCeQuant.GapCloseMode[] values()
for (PaCeQuant.GapCloseMode c : PaCeQuant.GapCloseMode.values()) System.out.println(c);
public static PaCeQuant.GapCloseMode 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 © 2010–2020 Martin Luther University Halle-Wittenberg, Institute of Computer Science, Pattern Recognition and Bioinformatics. All rights reserved.