public enum StartupFileStrategy extends Enum<StartupFileStrategy>
Enum Constant and Description |
---|
FIXED
Startup files and triggers selected by Studio will be replaced by a startup file specified in the build definition
|
STUDIO
Use startup files and triggers selected by Studio
|
Modifier and Type | Method and Description |
---|---|
static StartupFileStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StartupFileStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StartupFileStrategy STUDIO
public static final StartupFileStrategy FIXED
public static StartupFileStrategy[] values()
for (StartupFileStrategy c : StartupFileStrategy.values()) System.out.println(c);
public static StartupFileStrategy 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 © 2004-2016. All Rights Reserved.