Enum NotificationRule.Event
- java.lang.Object
-
- java.lang.Enum<NotificationRule.Event>
-
- jetbrains.buildServer.notification.NotificationRule.Event
-
- All Implemented Interfaces:
Serializable
,Comparable<NotificationRule.Event>
- Enclosing interface:
- NotificationRule
public static enum NotificationRule.Event extends Enum<NotificationRule.Event>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getMask()
boolean
isSystemWide()
static NotificationRule.Event
valueOf(String name)
Returns the enum constant of this type with the specified name.static NotificationRule.Event[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BUILD_STARTED
public static final NotificationRule.Event BUILD_STARTED
-
BUILD_FINISHED_SUCCESS
public static final NotificationRule.Event BUILD_FINISHED_SUCCESS
-
BUILD_FINISHED_FAILURE
public static final NotificationRule.Event BUILD_FINISHED_FAILURE
-
BUILD_FAILING
public static final NotificationRule.Event BUILD_FAILING
-
RESPONSIBILITY_CHANGES
public static final NotificationRule.Event RESPONSIBILITY_CHANGES
-
BUILD_PROBABLY_HANGING
public static final NotificationRule.Event BUILD_PROBABLY_HANGING
-
BUILD_FINISHED_NEW_FAILURE
public static final NotificationRule.Event BUILD_FINISHED_NEW_FAILURE
-
FIRST_FAILURE_AFTER_SUCCESS
public static final NotificationRule.Event FIRST_FAILURE_AFTER_SUCCESS
-
FIRST_SUCCESS_AFTER_FAILURE
public static final NotificationRule.Event FIRST_SUCCESS_AFTER_FAILURE
-
RESPONSIBILITY_ASSIGNED
public static final NotificationRule.Event RESPONSIBILITY_ASSIGNED
-
BUILD_FAILED_TO_START
public static final NotificationRule.Event BUILD_FAILED_TO_START
-
MUTE_UPDATED
public static final NotificationRule.Event MUTE_UPDATED
-
NEW_BUILD_PROBLEM_OCCURRED
public static final NotificationRule.Event NEW_BUILD_PROBLEM_OCCURRED
-
QUEUED_BUILD_REQUIRES_APPROVAL
public static final NotificationRule.Event QUEUED_BUILD_REQUIRES_APPROVAL
-
-
Method Detail
-
values
public static NotificationRule.Event[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (NotificationRule.Event c : NotificationRule.Event.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NotificationRule.Event valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getMask
public int getMask()
-
isSystemWide
public boolean isSystemWide()
-
-