public enum EscalationReason extends java.lang.Enum<EscalationReason> implements java.io.Serializable
| Enum Constant and Description | 
|---|
ESCALATED_BY_INTERRUPTION
Task was interrupted by a received signal. 
 | 
ESCALATED_BY_TIMEOUT
Task was escalated by a timeout. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
java.lang.String | 
getDescription()
Returns the escalation description. 
 | 
static EscalationReason | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static EscalationReason[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final EscalationReason ESCALATED_BY_TIMEOUT
public static final EscalationReason ESCALATED_BY_INTERRUPTION
public static EscalationReason[] values()
for (EscalationReason c : EscalationReason.values()) System.out.println(c);
public static EscalationReason valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getDescription()
Copyright © 2007-2020 Whitestein Technologies. All Rights Reserved.