public static enum ModuleFitness.Fitness extends Enum<ModuleFitness.Fitness>
| Enum Constant and Description |
|---|
CRITICAL
An entire module or single feature is absolutely unfit, so some
problems are detected, when a module is critical, than it is not
healthy.
|
FIT
An entire module or single feature is absolutely fit, so no problems
are detected
|
HEALTHY
Only used for overall fitness of a module rather than for a single
value and means, the health features are ok, but fitness features
aren't
|
| Modifier and Type | Method and Description |
|---|---|
static ModuleFitness.Fitness |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModuleFitness.Fitness[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModuleFitness.Fitness FIT
public static final ModuleFitness.Fitness HEALTHY
public static final ModuleFitness.Fitness CRITICAL
public static ModuleFitness.Fitness[] values()
for (ModuleFitness.Fitness c : ModuleFitness.Fitness.values()) System.out.println(c);
public static ModuleFitness.Fitness 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 © 2009–2018 Humboldt-Universität zu Berlin, INRIA. All rights reserved.