public static enum ProjectHelper.ProjectExistenceStatus extends java.lang.Enum<ProjectHelper.ProjectExistenceStatus>
| Enum Constant and Description |
|---|
ALREADY_EXISTS |
CREATED |
CREATION_FAILED |
| Modifier and Type | Method and Description |
|---|---|
static ProjectHelper.ProjectExistenceStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProjectHelper.ProjectExistenceStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProjectHelper.ProjectExistenceStatus ALREADY_EXISTS
public static final ProjectHelper.ProjectExistenceStatus CREATED
public static final ProjectHelper.ProjectExistenceStatus CREATION_FAILED
public static ProjectHelper.ProjectExistenceStatus[] values()
for (ProjectHelper.ProjectExistenceStatus c : ProjectHelper.ProjectExistenceStatus.values()) System.out.println(c);
public static ProjectHelper.ProjectExistenceStatus valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null