public enum BuildStepMonitor extends Enum<BuildStepMonitor>
Modifier and Type | Method and Description |
---|---|
abstract boolean |
perform(BuildStep bs,
AbstractBuild build,
Launcher launcher,
BuildListener listener)
Calls
BuildStep.perform(AbstractBuild, Launcher, BuildListener) with the proper synchronization. |
static BuildStepMonitor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BuildStepMonitor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BuildStepMonitor NONE
public static final BuildStepMonitor STEP
public static final BuildStepMonitor BUILD
public static BuildStepMonitor[] values()
for (BuildStepMonitor c : BuildStepMonitor.values()) System.out.println(c);
public static BuildStepMonitor 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 nullpublic abstract boolean perform(BuildStep bs, AbstractBuild build, Launcher launcher, BuildListener listener) throws IOException, InterruptedException
BuildStep.perform(AbstractBuild, Launcher, BuildListener)
with the proper synchronization.IOException
InterruptedException
Copyright © 2004–2018. All rights reserved.