public enum TestCaseStatus extends Enum<TestCaseStatus>
Enum Constant and Description |
---|
DRAFT |
FINAL |
FUTURE |
OBSOLETE |
READY_FOR_REVIEW |
REVIEW_IN_PROGRESS |
REWORK |
Modifier and Type | Method and Description |
---|---|
Integer |
getValue()
Get value of test case status.
|
String |
toString()
Print value of test case status.
|
static TestCaseStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestCaseStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestCaseStatus FINAL
public static final TestCaseStatus FUTURE
public static final TestCaseStatus OBSOLETE
public static final TestCaseStatus REWORK
public static final TestCaseStatus REVIEW_IN_PROGRESS
public static final TestCaseStatus READY_FOR_REVIEW
public static final TestCaseStatus DRAFT
public static TestCaseStatus[] values()
for (TestCaseStatus c : TestCaseStatus.values()) System.out.println(c);
public static TestCaseStatus 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 Integer getValue()
public String toString()
toString
in class Enum<TestCaseStatus>
Copyright © 2010–2020. All rights reserved.