public enum BaselineReplace extends java.lang.Enum<BaselineReplace>
| Enum Constant and Description |
|---|
all
Replace build artifacts with baseline version.
|
common
Replace build artifacts with baseline version.
|
none
Do not replace build artifacts with baseline version.
|
| Modifier and Type | Method and Description |
|---|---|
static BaselineReplace |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BaselineReplace[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BaselineReplace none
public static final BaselineReplace common
public static final BaselineReplace all
public static BaselineReplace[] values()
for (BaselineReplace c : BaselineReplace.values()) System.out.println(c);
public static BaselineReplace 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