Enum InterruptReason
- java.lang.Object
-
- java.lang.Enum<InterruptReason>
-
- jetbrains.buildServer.serverSide.cleanup.InterruptReason
-
- All Implemented Interfaces:
Serializable
,Comparable<InterruptReason>
public enum InterruptReason extends Enum<InterruptReason>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLEANUP_ERROR
cleanup was interrupted by unexpected exceptionPROCESS_KILLED
cleanup was interrupted by system - java process was killedSTOPPED_BY_SYSTEM
cleanup was interrupted by system, for example, if server shutdown initiatedSTOPPED_BY_USER
cleanup was interrupted by userTIMEOUT
cleanup was interrupted by system because execution timeout is exceeded
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static InterruptReason
valueOf(String name)
Returns the enum constant of this type with the specified name.static InterruptReason[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STOPPED_BY_USER
public static final InterruptReason STOPPED_BY_USER
cleanup was interrupted by user
-
STOPPED_BY_SYSTEM
public static final InterruptReason STOPPED_BY_SYSTEM
cleanup was interrupted by system, for example, if server shutdown initiated
-
TIMEOUT
public static final InterruptReason TIMEOUT
cleanup was interrupted by system because execution timeout is exceeded
-
CLEANUP_ERROR
public static final InterruptReason CLEANUP_ERROR
cleanup was interrupted by unexpected exception
-
PROCESS_KILLED
public static final InterruptReason PROCESS_KILLED
cleanup was interrupted by system - java process was killed
-
-
Method Detail
-
values
public static InterruptReason[] 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 (InterruptReason c : InterruptReason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InterruptReason 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
-
-