jetbrains.buildServer.notification
Enum NotificationRule.Event

java.lang.Object
  extended by java.lang.Enum<NotificationRule.Event>
      extended by jetbrains.buildServer.notification.NotificationRule.Event
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<NotificationRule.Event>
Enclosing interface:
NotificationRule

public static enum NotificationRule.Event
extends java.lang.Enum<NotificationRule.Event>


Enum Constant Summary
BUILD_FAILED_TO_START
           
BUILD_FAILING
           
BUILD_FINISHED_FAILURE
           
BUILD_FINISHED_NEW_FAILURE
           
BUILD_FINISHED_SUCCESS
           
BUILD_PROBABLY_HANGING
           
BUILD_STARTED
           
FIRST_FAILURE_AFTER_SUCCESS
           
FIRST_SUCCESS_AFTER_FAILURE
           
MUTE_UPDATED
           
RESPONSIBILITY_ASSIGNED
           
RESPONSIBILITY_CHANGES
           
 
Method Summary
 int getMask()
           
 boolean isSystemWide()
           
static NotificationRule.Event valueOf(java.lang.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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

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
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(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

getMask

public int getMask()

isSystemWide

public boolean isSystemWide()