public static enum Parameter.ExpertMode extends Enum<Parameter.ExpertMode>
| Enum Constant and Description |
|---|
ADVANCED
Visible for expert users
|
STANDARD
Visible in standard mode, e.g. for life scientists
|
| Modifier and Type | Method and Description |
|---|---|
static Parameter.ExpertMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Parameter.ExpertMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Parameter.ExpertMode STANDARD
public static final Parameter.ExpertMode ADVANCED
public static Parameter.ExpertMode[] values()
for (Parameter.ExpertMode c : Parameter.ExpertMode.values()) System.out.println(c);
public static Parameter.ExpertMode 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–2015 Martin Luther University Halle-Wittenberg, Institute of Computer Science, Pattern Recognition and Bioinformatics. All rights reserved.