public static enum ProjectCreatedData.Type extends Enum<ProjectCreatedData.Type>
Enum Constant and Description |
---|
CREATE
Used when this is a simple create operation.
|
CREATE_WITH_SHARED_CONFIG
Used when the new project was created with shared schemes of an existing project.
|
Modifier and Type | Method and Description |
---|---|
static ProjectCreatedData.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProjectCreatedData.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProjectCreatedData.Type CREATE
public static final ProjectCreatedData.Type CREATE_WITH_SHARED_CONFIG
public static ProjectCreatedData.Type[] values()
for (ProjectCreatedData.Type c : ProjectCreatedData.Type.values()) System.out.println(c);
public static ProjectCreatedData.Type 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 © 2002-2021 Atlassian. All Rights Reserved.