public static enum Project.PromotionLevel extends Enum<Project.PromotionLevel> implements Serializable
Enum Constant and Description |
---|
BUILT |
INITIAL |
REJECTED |
RELEASED |
TESTED |
Modifier and Type | Method and Description |
---|---|
static Project.PromotionLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Project.PromotionLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Project.PromotionLevel INITIAL
public static final Project.PromotionLevel BUILT
public static final Project.PromotionLevel TESTED
public static final Project.PromotionLevel RELEASED
public static final Project.PromotionLevel REJECTED
public static Project.PromotionLevel[] values()
for (Project.PromotionLevel c : Project.PromotionLevel.values()) System.out.println(c);
public static Project.PromotionLevel 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 © 2016–2018. All rights reserved.