public enum InstallScriptStrategy extends Enum<InstallScriptStrategy>
Enum Constant and Description |
---|
FIXED
Use installation script specified in the build definition
|
TEMPLATE
Generate installation script using a template:
*
|
Modifier and Type | Method and Description |
---|---|
static InstallScriptStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InstallScriptStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InstallScriptStrategy TEMPLATE
& install.exe {silent install arguments} | Out-Null
exit 0 # optional if ignore exit code was specified
public static final InstallScriptStrategy FIXED
public static InstallScriptStrategy[] values()
for (InstallScriptStrategy c : InstallScriptStrategy.values()) System.out.println(c);
public static InstallScriptStrategy 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.