Enum NotificationRulesConverter.NewEvent
- java.lang.Object
-
- java.lang.Enum<NotificationRulesConverter.NewEvent>
-
- jetbrains.buildServer.serverSide.versioning.converters.NotificationRulesConverter.NewEvent
-
- All Implemented Interfaces:
Serializable
,Comparable<NotificationRulesConverter.NewEvent>
- Enclosing class:
- NotificationRulesConverter
public static enum NotificationRulesConverter.NewEvent extends Enum<NotificationRulesConverter.NewEvent>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BUILD_FAILING
BUILD_FINISHED_FAILURE
BUILD_FINISHED_SUCCESS
BUILD_STARTED
RESPONSIBILITY_CHANGES
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getMask()
static NotificationRulesConverter.NewEvent
valueOf(String name)
Returns the enum constant of this type with the specified name.static NotificationRulesConverter.NewEvent[]
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 NotificationRulesConverter.NewEvent BUILD_STARTED
-
BUILD_FINISHED_SUCCESS
public static final NotificationRulesConverter.NewEvent BUILD_FINISHED_SUCCESS
-
BUILD_FINISHED_FAILURE
public static final NotificationRulesConverter.NewEvent BUILD_FINISHED_FAILURE
-
BUILD_FAILING
public static final NotificationRulesConverter.NewEvent BUILD_FAILING
-
RESPONSIBILITY_CHANGES
public static final NotificationRulesConverter.NewEvent RESPONSIBILITY_CHANGES
-
-
Method Detail
-
values
public static NotificationRulesConverter.NewEvent[] 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 (NotificationRulesConverter.NewEvent c : NotificationRulesConverter.NewEvent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NotificationRulesConverter.NewEvent 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()
-
-