public enum ProjectPublishMode extends java.lang.Enum<ProjectPublishMode>
| Enum Constant and Description |
|---|
Auto
The project is published every time it is saved.
|
Manual
The project is published manually
|
| Modifier and Type | Method and Description |
|---|---|
static ProjectPublishMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProjectPublishMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProjectPublishMode Auto
public static final ProjectPublishMode Manual
public static ProjectPublishMode[] values()
for (ProjectPublishMode c : ProjectPublishMode.values()) System.out.println(c);
public static ProjectPublishMode 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