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