public enum IssueSeverity extends Enum<IssueSeverity>
| Enum Constant and Description |
|---|
SEVERITY_1 |
SEVERITY_2 |
SEVERITY_3 |
SEVERITY_4 |
| Modifier and Type | Method and Description |
|---|---|
static IssueSeverity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IssueSeverity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IssueSeverity SEVERITY_1
public static final IssueSeverity SEVERITY_2
public static final IssueSeverity SEVERITY_3
public static final IssueSeverity SEVERITY_4
public static IssueSeverity[] values()
for (IssueSeverity c : IssueSeverity.values()) System.out.println(c);
public static IssueSeverity 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 © 2003–2020 eXo Platform SAS. All rights reserved.