public enum TestCaseState extends Enum<TestCaseState>
Enum Constant and Description |
---|
IMPLEMENTED
The 'Implemented' literal object, whose name, value and literal are
Implemented, 5 and "impl".
|
INVALID
The 'Invalid' literal object, whose name, value and literal are
Invalid, 7 and "inv".
|
NOT_YET_IMPLEMENTED
The 'Not Yet Implemented' literal object, whose name, value and literal are
NotYetImplemented, 4 and "notImpl".
|
NOT_YET_SPECIFIED
The 'Not Yet Specified' literal object, whose name, value and literal are
NotYetSpecified, 1 and "notSpec".
|
PRODUCTIVE
The 'Productive' literal object, whose name, value and literal are
Productive, 6 and "product".
|
REVIEWED
The 'Reviewed' literal object, whose name, value and literal are
Reviewed, 3 and "reviewd".
|
SPECIFIED
The 'Specified' literal object, whose name, value and literal are
Specified, 2 and "spec".
|
Modifier and Type | Field and Description |
---|---|
static int |
IMPLEMENTED_VALUE
The 'Implemented' literal value, which is 5.
|
static int |
INVALID_VALUE
The 'Invalid' literal value, which is 7.
|
static int |
NOT_YET_IMPLEMENTED_VALUE
The 'Not Yet Implemented' literal value, which is 4.
|
static int |
NOT_YET_SPECIFIED_VALUE
The 'Not Yet Specified' literal value, which is 1.
|
static int |
PRODUCTIVE_VALUE
The 'Productive' literal value, which is 6.
|
static int |
REVIEWED_VALUE
The 'Reviewed' literal value, which is 3.
|
static int |
SPECIFIED_VALUE
The 'Specified' literal value, which is 2.
|
Modifier and Type | Method and Description |
---|---|
static TestCaseState |
get(String literal)
Returns the 'Test Case State' literal with the specified literal value.
|
static TestCaseState |
getByName(String name)
Returns the 'Test Case State' literal with the specified name.
|
String |
getLiteral()
generated
|
String |
getName()
generated
|
int |
getValue()
generated
|
String |
toString()
Returns the literal value of the enumerator, which is its string representation.
|
static TestCaseState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestCaseState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestCaseState NOT_YET_SPECIFIED
generated
ordered
public static final TestCaseState SPECIFIED
generated
ordered
public static final TestCaseState REVIEWED
generated
ordered
public static final TestCaseState NOT_YET_IMPLEMENTED
generated
ordered
public static final TestCaseState IMPLEMENTED
generated
ordered
public static final TestCaseState PRODUCTIVE
generated
ordered
public static final TestCaseState INVALID
generated
ordered
public static final int NOT_YET_SPECIFIED_VALUE
generated
ordered
,
Constant Field Valuespublic static final int SPECIFIED_VALUE
generated
ordered
,
Constant Field Valuespublic static final int REVIEWED_VALUE
generated
ordered
,
Constant Field Valuespublic static final int NOT_YET_IMPLEMENTED_VALUE
generated
ordered
,
Constant Field Valuespublic static final int IMPLEMENTED_VALUE
generated
ordered
,
Constant Field Valuespublic static final int PRODUCTIVE_VALUE
generated
ordered
,
Constant Field Valuespublic static final int INVALID_VALUE
generated
ordered
,
Constant Field Valuespublic static TestCaseState[] values()
for (TestCaseState c : TestCaseState.values()) System.out.println(c);
public static TestCaseState 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 static TestCaseState get(String literal)
literal
- the literal valuepublic static TestCaseState getByName(String name)
name
- the literal namepublic int getValue()
public String getName()
public String getLiteral()
public String toString()
toString
in class Enum<TestCaseState>
Copyright © 2016–2023 MicroNova AG. All rights reserved.