public static enum ProjectStatus.Level extends Enum<ProjectStatus.Level>
| Modifier and Type | Method and Description |
|---|---|
static ProjectStatus.Level |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProjectStatus.Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProjectStatus.Level OK
public static final ProjectStatus.Level WARN
public static final ProjectStatus.Level ERROR
public static ProjectStatus.Level[] values()
for (ProjectStatus.Level c : ProjectStatus.Level.values()) System.out.println(c);
public static ProjectStatus.Level 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 © 2017. All rights reserved.