public enum HudsonResult extends Enum<HudsonResult>
Enum Constant and Description |
---|
ABORT |
BUILDING |
FAILURE |
MANUAL |
NOT_BUILT |
PENDING |
SUCCESS
Hudson Result
|
UNSTABLE |
Modifier and Type | Method and Description |
---|---|
static HudsonResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HudsonResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HudsonResult SUCCESS
public static final HudsonResult UNSTABLE
public static final HudsonResult FAILURE
public static final HudsonResult NOT_BUILT
public static final HudsonResult ABORT
public static final HudsonResult BUILDING
public static final HudsonResult PENDING
public static final HudsonResult MANUAL
public static HudsonResult[] values()
for (HudsonResult c : HudsonResult.values()) System.out.println(c);
public static HudsonResult 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-2014. All Rights Reserved.