public enum ProjectIssueSeverity extends Enum<ProjectIssueSeverity>
| Enum Constant and Description |
|---|
BLOCKER |
CRITICAL |
INFO |
MAJOR |
MINOR |
| Modifier and Type | Method and Description |
|---|---|
static ProjectIssueSeverity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProjectIssueSeverity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProjectIssueSeverity INFO
public static final ProjectIssueSeverity MINOR
public static final ProjectIssueSeverity MAJOR
public static final ProjectIssueSeverity CRITICAL
public static final ProjectIssueSeverity BLOCKER
public static ProjectIssueSeverity[] values()
for (ProjectIssueSeverity c : ProjectIssueSeverity.values()) System.out.println(c);
public static ProjectIssueSeverity 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 © 2017. All rights reserved.