public enum BaselineReplace extends 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(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(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 © 2008-2012 Eclipse Foundation. All Rights Reserved.