public static enum Incident.EscalationLevel extends Enum<Incident.EscalationLevel> implements ProtocolMessageEnum
Specifies the escalation level of this incident, within the IRM protocol for handling incidents.Protobuf enum
google.cloud.irm.v1alpha2.Incident.EscalationLevel| Enum Constant and Description |
|---|
ESCALATION_LEVEL_ORGANIZATION
The incident has been escalated to the organizational level.
|
ESCALATION_LEVEL_UNSPECIFIED
The incident has not been escalated.
|
UNRECOGNIZED |
| Modifier and Type | Field and Description |
|---|---|
static int |
ESCALATION_LEVEL_ORGANIZATION_VALUE
The incident has been escalated to the organizational level.
|
static int |
ESCALATION_LEVEL_UNSPECIFIED_VALUE
The incident has not been escalated.
|
| Modifier and Type | Method and Description |
|---|---|
static Incident.EscalationLevel |
forNumber(int value) |
static Descriptors.EnumDescriptor |
getDescriptor() |
Descriptors.EnumDescriptor |
getDescriptorForType() |
int |
getNumber() |
Descriptors.EnumValueDescriptor |
getValueDescriptor() |
static Internal.EnumLiteMap<Incident.EscalationLevel> |
internalGetValueMap() |
static Incident.EscalationLevel |
valueOf(Descriptors.EnumValueDescriptor desc) |
static Incident.EscalationLevel |
valueOf(int value)
Deprecated.
Use
forNumber(int) instead. |
static Incident.EscalationLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Incident.EscalationLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Incident.EscalationLevel ESCALATION_LEVEL_UNSPECIFIED
The incident has not been escalated. This is the value used by all new and legacy incidents.
ESCALATION_LEVEL_UNSPECIFIED = 0;public static final Incident.EscalationLevel ESCALATION_LEVEL_ORGANIZATION
The incident has been escalated to the organizational level.
ESCALATION_LEVEL_ORGANIZATION = 1;public static final Incident.EscalationLevel UNRECOGNIZED
public static final int ESCALATION_LEVEL_UNSPECIFIED_VALUE
The incident has not been escalated. This is the value used by all new and legacy incidents.
ESCALATION_LEVEL_UNSPECIFIED = 0;public static final int ESCALATION_LEVEL_ORGANIZATION_VALUE
The incident has been escalated to the organizational level.
ESCALATION_LEVEL_ORGANIZATION = 1;public static Incident.EscalationLevel[] values()
for (Incident.EscalationLevel c : Incident.EscalationLevel.values()) System.out.println(c);
public static Incident.EscalationLevel valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic final int getNumber()
getNumber in interface Internal.EnumLitegetNumber in interface ProtocolMessageEnum@Deprecated public static Incident.EscalationLevel valueOf(int value)
forNumber(int) instead.value - The numeric wire value of the corresponding enum entry.public static Incident.EscalationLevel forNumber(int value)
value - The numeric wire value of the corresponding enum entry.public static Internal.EnumLiteMap<Incident.EscalationLevel> internalGetValueMap()
public final Descriptors.EnumValueDescriptor getValueDescriptor()
getValueDescriptor in interface ProtocolMessageEnumpublic final Descriptors.EnumDescriptor getDescriptorForType()
getDescriptorForType in interface ProtocolMessageEnumpublic static final Descriptors.EnumDescriptor getDescriptor()
public static Incident.EscalationLevel valueOf(Descriptors.EnumValueDescriptor desc)
Copyright © 2020 Google LLC. All rights reserved.