public static enum Project.Status extends Enum<Project.Status>
| Modifier and Type | Method and Description |
|---|---|
static Project.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Project.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Project.Status VALID
public static final Project.Status INVALID
public static final Project.Status PUBLISHED
public static Project.Status[] values()
for (Project.Status c : Project.Status.values()) System.out.println(c);
public static Project.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 © 2020. All Rights Reserved.