jetbrains.buildServer.notification
Enum NotificationEvent

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

public enum NotificationEvent
extends java.lang.Enum<NotificationEvent>

Author:
Maxim Podkolzine (maxim.podkolzine@jetbrains.com)

Enum Constant Summary
BUILD_FAILED
           
BUILD_FAILED_TO_START
           
BUILD_FAILING
           
BUILD_PROBABLY_HANGING
           
BUILD_STARTED
           
BUILD_SUCCESSFUL
           
BUILD_TYPE_RESPONSIBILITY_ASSIGNED
           
BUILD_TYPE_RESPONSIBILITY_CHANGED
           
LABELING_FAILED
           
TEST_RESPONSIBILITY_ASSIGNED
           
TEST_RESPONSIBILITY_CHANGED
           
TESTS_MUTED
           
TESTS_UNMUTED
           
 
Method Summary
static NotificationEvent valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static NotificationEvent[] 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 NotificationEvent BUILD_STARTED

BUILD_SUCCESSFUL

public static final NotificationEvent BUILD_SUCCESSFUL

BUILD_FAILED

public static final NotificationEvent BUILD_FAILED

BUILD_FAILED_TO_START

public static final NotificationEvent BUILD_FAILED_TO_START

BUILD_FAILING

public static final NotificationEvent BUILD_FAILING

BUILD_PROBABLY_HANGING

public static final NotificationEvent BUILD_PROBABLY_HANGING

LABELING_FAILED

public static final NotificationEvent LABELING_FAILED

BUILD_TYPE_RESPONSIBILITY_CHANGED

public static final NotificationEvent BUILD_TYPE_RESPONSIBILITY_CHANGED

BUILD_TYPE_RESPONSIBILITY_ASSIGNED

public static final NotificationEvent BUILD_TYPE_RESPONSIBILITY_ASSIGNED

TEST_RESPONSIBILITY_CHANGED

public static final NotificationEvent TEST_RESPONSIBILITY_CHANGED

TEST_RESPONSIBILITY_ASSIGNED

public static final NotificationEvent TEST_RESPONSIBILITY_ASSIGNED

TESTS_MUTED

public static final NotificationEvent TESTS_MUTED

TESTS_UNMUTED

public static final NotificationEvent TESTS_UNMUTED
Method Detail

values

public static NotificationEvent[] 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 (NotificationEvent c : NotificationEvent.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static NotificationEvent 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