public enum PublishArtifactCondition extends java.lang.Enum<PublishArtifactCondition>
Enum Constant and Description |
---|
ALWAYS
Even if interrupted
|
NORMALLY_FINISHED
Can be successful or failed, but not interrupted, default
|
SUCCESSFUL
Only if successful and not interrupted
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getDescription() |
static PublishArtifactCondition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PublishArtifactCondition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PublishArtifactCondition NORMALLY_FINISHED
public static final PublishArtifactCondition SUCCESSFUL
public static final PublishArtifactCondition ALWAYS
public static PublishArtifactCondition[] values()
for (PublishArtifactCondition c : PublishArtifactCondition.values()) System.out.println(c);
public static PublishArtifactCondition 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 nullpublic java.lang.String getDescription()