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