Enum Class ScenarioValidation.Kind
- All Implemented Interfaces:
Serializable,Comparable<ScenarioValidation.Kind>,Constable
- Enclosing class:
ScenarioValidation
What validation found wrong.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionOne scenario in the set conflicts with aScenarioCapabilityanother one provides.A dependency chain loops back on itself.Two scenarios in the set declared each other incompatible.A required scenario was added to the set.A required scenario is not registered at all.A scenario is registered but switched off.More scenarios were selected than the configuration allows.A scenario needs a plugin that is not enabled.A scenario ID is not registered. -
Method Summary
Modifier and TypeMethodDescriptionstatic ScenarioValidation.KindReturns the enum constant of this class with the specified name.static ScenarioValidation.Kind[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UNKNOWN_SCENARIO
A scenario ID is not registered. -
DISABLED_SCENARIO
A scenario is registered but switched off. -
DEPENDENCY_ADDED
A required scenario was added to the set. -
DEPENDENCY_MISSING
A required scenario is not registered at all. -
CONFLICT
Two scenarios in the set declared each other incompatible. -
CAPABILITY_CONFLICT
One scenario in the set conflicts with aScenarioCapabilityanother one provides. -
MISSING_PLUGIN
A scenario needs a plugin that is not enabled. -
CIRCULAR_DEPENDENCY
A dependency chain loops back on itself. -
LIMIT_EXCEEDED
More scenarios were selected than the configuration allows.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-