public enum DetectedVulnerabilitySeverity extends Enum<DetectedVulnerabilitySeverity>
Enum Constant and Description |
---|
CRITICAL
The vulnerability has a critical severity.
|
HIGH
The vulnerability has a high severity.
|
LOW
The vulnerability has a low severity.
|
MEDIUM
The vulnerability has a medium severity.
|
UNKNOWN
The severity of the vulnerability is unknown.
|
Modifier and Type | Method and Description |
---|---|
static DetectedVulnerabilitySeverity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DetectedVulnerabilitySeverity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DetectedVulnerabilitySeverity UNKNOWN
public static final DetectedVulnerabilitySeverity LOW
public static final DetectedVulnerabilitySeverity MEDIUM
public static final DetectedVulnerabilitySeverity HIGH
public static final DetectedVulnerabilitySeverity CRITICAL
public static DetectedVulnerabilitySeverity[] values()
for (DetectedVulnerabilitySeverity c : DetectedVulnerabilitySeverity.values()) System.out.println(c);
public static DetectedVulnerabilitySeverity 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–2025. All rights reserved.