public enum CalendarEventType extends Enum<CalendarEventType>
| Enum Constant and Description |
|---|
ABORTED |
FAILURE |
FUTURE |
NOT_BUILT |
SUCCESS |
UNSTABLE |
| Modifier and Type | Method and Description |
|---|---|
static CalendarEventType |
fromResult(hudson.model.Result result) |
static CalendarEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CalendarEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CalendarEventType FAILURE
public static final CalendarEventType SUCCESS
public static final CalendarEventType UNSTABLE
public static final CalendarEventType ABORTED
public static final CalendarEventType NOT_BUILT
public static final CalendarEventType FUTURE
public static CalendarEventType[] values()
for (CalendarEventType c : CalendarEventType.values()) System.out.println(c);
public static CalendarEventType 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 CalendarEventType fromResult(hudson.model.Result result)
Copyright © 2016–2018. All rights reserved.