public enum RuleSeverity extends Enum<RuleSeverity>
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static RuleSeverity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RuleSeverity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RuleSeverity NOTE
public static final RuleSeverity LOW
public static final RuleSeverity MEDIUM
public static final RuleSeverity HIGH
public static final RuleSeverity CRITICAL
public static RuleSeverity[] values()
for (RuleSeverity c : RuleSeverity.values()) System.out.println(c);
public static RuleSeverity 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 nullpublic String toString()
toString in class Enum<RuleSeverity>Copyright © 2021 Contrast Security. All rights reserved.