public enum TestImportance extends Enum<TestImportance>
| Modifier and Type | Method and Description |
|---|---|
Integer |
getValue()
Get value of test importance
|
String |
toString() |
static TestImportance |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestImportance[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestImportance LOW
public static final TestImportance MEDIUM
public static final TestImportance HIGH
public static TestImportance[] values()
for (TestImportance c : TestImportance.values()) System.out.println(c);
public static TestImportance 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<TestImportance>public Integer getValue()
Copyright © 2010–2020. All rights reserved.