public static enum Bug.Status extends Enum<Bug.Status>
| Enum Constant and Description |
|---|
ASSIGNED |
CLOSED |
MODIFIED |
NEW |
ON_DEV |
ON_QA |
POST |
RELEASE_PENDING |
VERIFIED |
| Modifier and Type | Method and Description |
|---|---|
static Bug.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Bug.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Bug.Status NEW
public static final Bug.Status ASSIGNED
public static final Bug.Status POST
public static final Bug.Status MODIFIED
public static final Bug.Status ON_DEV
public static final Bug.Status ON_QA
public static final Bug.Status VERIFIED
public static final Bug.Status RELEASE_PENDING
public static final Bug.Status CLOSED
public static Bug.Status[] values()
for (Bug.Status c : Bug.Status.values()) System.out.println(c);
public static Bug.Status 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 nullCopyright © 2015 JBoss by Red Hat. All rights reserved.