jetbrains.buildServer.notification
Enum AbstractTemplatesLoader.TEMPLATE_TYPE

java.lang.Object
  extended by java.lang.Enum<AbstractTemplatesLoader.TEMPLATE_TYPE>
      extended by jetbrains.buildServer.notification.AbstractTemplatesLoader.TEMPLATE_TYPE
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<AbstractTemplatesLoader.TEMPLATE_TYPE>
Enclosing class:
AbstractTemplatesLoader<T>

public static enum AbstractTemplatesLoader.TEMPLATE_TYPE
extends java.lang.Enum<AbstractTemplatesLoader.TEMPLATE_TYPE>


Enum Constant Summary
build_failed
           
build_failing
           
build_probably_hanged
           
build_probably_hanging
           
build_started
           
build_successful
           
responsible_assigned
           
responsible_changed
           
test_responsibility_assigned
           
test_responsibility_changed
           
 
Method Summary
static AbstractTemplatesLoader.TEMPLATE_TYPE valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AbstractTemplatesLoader.TEMPLATE_TYPE[] 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 AbstractTemplatesLoader.TEMPLATE_TYPE build_started

build_failed

public static final AbstractTemplatesLoader.TEMPLATE_TYPE build_failed

build_failing

public static final AbstractTemplatesLoader.TEMPLATE_TYPE build_failing

build_successful

public static final AbstractTemplatesLoader.TEMPLATE_TYPE build_successful

build_probably_hanging

public static final AbstractTemplatesLoader.TEMPLATE_TYPE build_probably_hanging

build_probably_hanged

public static final AbstractTemplatesLoader.TEMPLATE_TYPE build_probably_hanged

responsible_changed

public static final AbstractTemplatesLoader.TEMPLATE_TYPE responsible_changed

responsible_assigned

public static final AbstractTemplatesLoader.TEMPLATE_TYPE responsible_assigned

test_responsibility_changed

public static final AbstractTemplatesLoader.TEMPLATE_TYPE test_responsibility_changed

test_responsibility_assigned

public static final AbstractTemplatesLoader.TEMPLATE_TYPE test_responsibility_assigned
Method Detail

values

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

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

valueOf

public static AbstractTemplatesLoader.TEMPLATE_TYPE 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