Enum NotificationRulesConverter.OldEvent
- java.lang.Object
-
- java.lang.Enum<NotificationRulesConverter.OldEvent>
-
- jetbrains.buildServer.serverSide.versioning.converters.NotificationRulesConverter.OldEvent
-
- All Implemented Interfaces:
Serializable
,Comparable<NotificationRulesConverter.OldEvent>
- Enclosing class:
- NotificationRulesConverter
public static enum NotificationRulesConverter.OldEvent extends Enum<NotificationRulesConverter.OldEvent>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BUILD_CHANGED_STATUS
BUILD_FAILING
BUILD_FINISHED_FAILURE
BUILD_FINISHED_SUCCESS
BUILD_STARTED
RESPONSIBLE_CHANGED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getMask()
static NotificationRulesConverter.OldEvent
valueOf(String name)
Returns the enum constant of this type with the specified name.static NotificationRulesConverter.OldEvent[]
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.OldEvent BUILD_STARTED
-
BUILD_FINISHED_SUCCESS
public static final NotificationRulesConverter.OldEvent BUILD_FINISHED_SUCCESS
-
BUILD_FINISHED_FAILURE
public static final NotificationRulesConverter.OldEvent BUILD_FINISHED_FAILURE
-
BUILD_FAILING
public static final NotificationRulesConverter.OldEvent BUILD_FAILING
-
BUILD_CHANGED_STATUS
public static final NotificationRulesConverter.OldEvent BUILD_CHANGED_STATUS
-
RESPONSIBLE_CHANGED
public static final NotificationRulesConverter.OldEvent RESPONSIBLE_CHANGED
-
-
Method Detail
-
values
public static NotificationRulesConverter.OldEvent[] 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.OldEvent c : NotificationRulesConverter.OldEvent.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.OldEvent 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()
-
-