public enum WsTestRunStatus extends Enum<WsTestRunStatus>
Enum Constant and Description |
---|
BLOCKED
Name: BLOCKED
Display: Blocked
Color: FFF551
|
FAILED
Name: FAILED
Display: Failed
Color: E39191
|
INPROGRESS
Name: INPROGRESS
Display: In Progress
Color: 9BDFFF
|
NOT_RUN
Name: NOT_RUN
Display: Not Run
Color: N/A
|
PASSED
Name: PASSED
Display: Passed
Color: 9CE78C
|
Modifier and Type | Method and Description |
---|---|
String |
getColor() |
Integer |
getId() |
String |
getName() |
void |
setColor(String color) |
void |
setId(Integer id) |
void |
setName(String name) |
static WsTestRunStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WsTestRunStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WsTestRunStatus PASSED
public static final WsTestRunStatus NOT_RUN
public static final WsTestRunStatus INPROGRESS
public static final WsTestRunStatus FAILED
public static final WsTestRunStatus BLOCKED
public static WsTestRunStatus[] values()
for (WsTestRunStatus c : WsTestRunStatus.values()) System.out.println(c);
public static WsTestRunStatus 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 getId()
public void setId(Integer id)
public String getName()
public void setName(String name)
public String getColor()
public void setColor(String color)
Copyright (c) 2013-2014 Jama Software, Inc. All Rights Reserved.