public enum Style extends Enum<Style>
| Enum Constant and Description |
|---|
ALERT
An alert Chuck Norris with a martial arts stance.
|
BAD_ASS
A total bad ass Chuck Norris ready to give you a good ass whoopin'.
|
THUMB_UP
A happy Chuck Norris showing a thumb up.
|
| Modifier and Type | Method and Description |
|---|---|
static Style |
get(hudson.model.Result result)
Gets the style corresponding to the build result.
|
static Style |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Style[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Style THUMB_UP
public static final Style ALERT
public static final Style BAD_ASS
public static Style[] values()
for (Style c : Style.values()) System.out.println(c);
public static Style 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 static final Style get(hudson.model.Result result)
result - the build resultCopyright © 2016–2018. All rights reserved.