public enum ProjectCommitMessageMode extends java.lang.Enum<ProjectCommitMessageMode>
| Enum Constant and Description |
|---|
None
The designer never asks for commit messages.
|
OnPublish
The user will be prompted for a commit message when the project is published.
|
OnSaveAndPublish
The user will be prompted for a commit message when the project is saved or published.
|
| Modifier and Type | Method and Description |
|---|---|
static ProjectCommitMessageMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProjectCommitMessageMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProjectCommitMessageMode None
public static final ProjectCommitMessageMode OnPublish
public static final ProjectCommitMessageMode OnSaveAndPublish
public static ProjectCommitMessageMode[] values()
for (ProjectCommitMessageMode c : ProjectCommitMessageMode.values()) System.out.println(c);
public static ProjectCommitMessageMode 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