public enum TestStatus extends java.lang.Enum<TestStatus> implements org.eclipse.emf.common.util.Enumerator
IRuntimePackage.getTestStatus()
Enum Constant and Description |
---|
DISABLED
The 'DISABLED' literal object.
|
ERROR
The 'ERROR' literal object.
|
FAILURE
The 'FAILURE' literal object.
|
FINISHED
The 'FINISHED' literal object.
|
NOT_RUN
The 'NOT RUN' literal object.
|
PASS
The 'PASS' literal object.
|
RUNNING
The 'RUNNING' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
DISABLED_VALUE
The 'DISABLED' literal value.
|
static int |
ERROR_VALUE
The 'ERROR' literal value.
|
static int |
FAILURE_VALUE
The 'FAILURE' literal value.
|
static int |
FINISHED_VALUE
The 'FINISHED' literal value.
|
static int |
NOT_RUN_VALUE
The 'NOT RUN' literal value.
|
static int |
PASS_VALUE
The 'PASS' literal value.
|
static int |
RUNNING_VALUE
The 'RUNNING' literal value.
|
static java.util.List<TestStatus> |
VALUES
A public read-only list of all the 'Test Status' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static TestStatus |
get(int value)
Returns the 'Test Status' literal with the specified integer value.
|
static TestStatus |
get(java.lang.String literal)
Returns the 'Test Status' literal with the specified literal value.
|
static TestStatus |
getByName(java.lang.String name)
Returns the 'Test Status' literal with the specified name.
|
java.lang.String |
getLiteral() |
java.lang.String |
getName() |
int |
getValue() |
java.lang.String |
toString()
Returns the literal value of the enumerator, which is its string representation.
|
static TestStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TestStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestStatus NOT_RUN
NOT_RUN_VALUE
public static final TestStatus FINISHED
FINISHED_VALUE
public static final TestStatus DISABLED
DISABLED_VALUE
public static final TestStatus PASS
PASS_VALUE
public static final TestStatus FAILURE
FAILURE_VALUE
public static final TestStatus ERROR
ERROR_VALUE
public static final TestStatus RUNNING
RUNNING_VALUE
public static final int NOT_RUN_VALUE
If the meaning of 'NOT RUN' literal object isn't clear, there really should be more of a description here...
NOT_RUN
,
Constant Field Valuespublic static final int FINISHED_VALUE
If the meaning of 'FINISHED' literal object isn't clear, there really should be more of a description here...
FINISHED
,
Constant Field Valuespublic static final int DISABLED_VALUE
If the meaning of 'DISABLED' literal object isn't clear, there really should be more of a description here...
DISABLED
,
Constant Field Valuespublic static final int PASS_VALUE
If the meaning of 'PASS' literal object isn't clear, there really should be more of a description here...
PASS
,
Constant Field Valuespublic static final int FAILURE_VALUE
If the meaning of 'FAILURE' literal object isn't clear, there really should be more of a description here...
FAILURE
,
Constant Field Valuespublic static final int ERROR_VALUE
If the meaning of 'ERROR' literal object isn't clear, there really should be more of a description here...
ERROR
,
Constant Field Valuespublic static final int RUNNING_VALUE
If the meaning of 'RUNNING' literal object isn't clear, there really should be more of a description here...
RUNNING
,
Constant Field Valuespublic static final java.util.List<TestStatus> VALUES
public static TestStatus[] values()
for (TestStatus c : TestStatus.values()) System.out.println(c);
public static TestStatus valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static TestStatus get(java.lang.String literal)
literal
- the literal.null
.public static TestStatus getByName(java.lang.String name)
name
- the name.null
.public static TestStatus get(int value)
value
- the integer value.null
.public int getValue()
getValue
in interface org.eclipse.emf.common.util.Enumerator
public java.lang.String getName()
getName
in interface org.eclipse.emf.common.util.Enumerator
public java.lang.String getLiteral()
getLiteral
in interface org.eclipse.emf.common.util.Enumerator
public java.lang.String toString()
toString
in class java.lang.Enum<TestStatus>