public enum EFindingEnablement extends java.lang.Enum<EFindingEnablement>
| Enum Constant and Description |
|---|
AUTO
Enabled and the color is determined by other means, such as thresholds, or
imported from external finding reports.
|
OFF
The findings are not shown.
|
RED
The findings are rated as
ETrafficLightColor.RED. |
YELLOW
The findings are rated as
ETrafficLightColor.YELLOW. |
| Modifier and Type | Method and Description |
|---|---|
static EFindingEnablement |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EFindingEnablement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EFindingEnablement OFF
public static final EFindingEnablement YELLOW
ETrafficLightColor.YELLOW.public static final EFindingEnablement RED
ETrafficLightColor.RED.public static final EFindingEnablement AUTO
public static EFindingEnablement[] values()
for (EFindingEnablement c : EFindingEnablement.values()) System.out.println(c);
public static EFindingEnablement valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null