public static enum ProjectInfo.State extends Enum<ProjectInfo.State>
| Enum Constant and Description |
|---|
ACTIVE
The normal and active state.
|
DELETE_IN_PROGRESS
The process of deleting the project has begun.
|
DELETE_REQUESTED
The project has been marked for deletion by the user or by the system (Google Cloud
Platform).
|
LIFECYCLE_STATE_UNSPECIFIED
Only used/useful for distinguishing unset values.
|
| Modifier and Type | Method and Description |
|---|---|
static ProjectInfo.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProjectInfo.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProjectInfo.State LIFECYCLE_STATE_UNSPECIFIED
public static final ProjectInfo.State ACTIVE
public static final ProjectInfo.State DELETE_REQUESTED
ResourceManager.undelete(java.lang.String).public static final ProjectInfo.State DELETE_IN_PROGRESS
public static ProjectInfo.State[] values()
for (ProjectInfo.State c : ProjectInfo.State.values()) System.out.println(c);
public static ProjectInfo.State 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 Google. All rights reserved.