public enum Impact extends Enum<Impact>
Enum Constant and Description |
---|
SCENARIO
The error affects the whole scenario.
|
SCRIPT
The error affects the visualization of a script.
|
SINGLE_INPUT
The error affects the visualization of a single (or only its part) input.
|
UNDEFINED
Default value, used for errors that shouldn't have an impact on lineage.
|
Modifier and Type | Method and Description |
---|---|
static Impact |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Impact[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Impact UNDEFINED
public static final Impact SINGLE_INPUT
public static final Impact SCRIPT
public static final Impact SCENARIO
public static Impact[] values()
for (Impact c : Impact.values()) System.out.println(c);
public static Impact 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 © 2020. All rights reserved.