Enum ResolutionStatus
- java.lang.Object
-
- java.lang.Enum<ResolutionStatus>
-
- com.google.devtools.clouderrorreporting.v1beta1.ResolutionStatus
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite,com.google.protobuf.ProtocolMessageEnum,Serializable,Comparable<ResolutionStatus>
public enum ResolutionStatus extends Enum<ResolutionStatus> implements com.google.protobuf.ProtocolMessageEnum
Resolution status of an error group.
Protobuf enumgoogle.devtools.clouderrorreporting.v1beta1.ResolutionStatus
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACKNOWLEDGEDError Group manually acknowledged, it can have an issue link attached.MUTEDThe error group is muted and excluded by default on group stats requests.OPENThe error group is not being addressed.RESOLUTION_STATUS_UNSPECIFIEDStatus is unknown.RESOLVEDError Group manually resolved, more events for this group are not expected to occur.UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static intACKNOWLEDGED_VALUEError Group manually acknowledged, it can have an issue link attached.static intMUTED_VALUEThe error group is muted and excluded by default on group stats requests.static intOPEN_VALUEThe error group is not being addressed.static intRESOLUTION_STATUS_UNSPECIFIED_VALUEStatus is unknown.static intRESOLVED_VALUEError Group manually resolved, more events for this group are not expected to occur.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static ResolutionStatusforNumber(int value)static com.google.protobuf.Descriptors.EnumDescriptorgetDescriptor()com.google.protobuf.Descriptors.EnumDescriptorgetDescriptorForType()intgetNumber()com.google.protobuf.Descriptors.EnumValueDescriptorgetValueDescriptor()static com.google.protobuf.Internal.EnumLiteMap<ResolutionStatus>internalGetValueMap()static ResolutionStatusvalueOf(int value)Deprecated.static ResolutionStatusvalueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)Returns the enum constant of this type with the specified name.static ResolutionStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static ResolutionStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RESOLUTION_STATUS_UNSPECIFIED
public static final ResolutionStatus RESOLUTION_STATUS_UNSPECIFIED
Status is unknown. When left unspecified in requests, it is treated like OPEN.
RESOLUTION_STATUS_UNSPECIFIED = 0;
-
OPEN
public static final ResolutionStatus OPEN
The error group is not being addressed. This is the default for new groups. It is also used for errors re-occurring after marked RESOLVED.
OPEN = 1;
-
ACKNOWLEDGED
public static final ResolutionStatus ACKNOWLEDGED
Error Group manually acknowledged, it can have an issue link attached.
ACKNOWLEDGED = 2;
-
RESOLVED
public static final ResolutionStatus RESOLVED
Error Group manually resolved, more events for this group are not expected to occur.
RESOLVED = 3;
-
MUTED
public static final ResolutionStatus MUTED
The error group is muted and excluded by default on group stats requests.
MUTED = 4;
-
UNRECOGNIZED
public static final ResolutionStatus UNRECOGNIZED
-
-
Field Detail
-
RESOLUTION_STATUS_UNSPECIFIED_VALUE
public static final int RESOLUTION_STATUS_UNSPECIFIED_VALUE
Status is unknown. When left unspecified in requests, it is treated like OPEN.
RESOLUTION_STATUS_UNSPECIFIED = 0;- See Also:
- Constant Field Values
-
OPEN_VALUE
public static final int OPEN_VALUE
The error group is not being addressed. This is the default for new groups. It is also used for errors re-occurring after marked RESOLVED.
OPEN = 1;- See Also:
- Constant Field Values
-
ACKNOWLEDGED_VALUE
public static final int ACKNOWLEDGED_VALUE
Error Group manually acknowledged, it can have an issue link attached.
ACKNOWLEDGED = 2;- See Also:
- Constant Field Values
-
RESOLVED_VALUE
public static final int RESOLVED_VALUE
Error Group manually resolved, more events for this group are not expected to occur.
RESOLVED = 3;- See Also:
- Constant Field Values
-
MUTED_VALUE
public static final int MUTED_VALUE
The error group is muted and excluded by default on group stats requests.
MUTED = 4;- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static ResolutionStatus[] 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 (ResolutionStatus c : ResolutionStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResolutionStatus 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
-
getNumber
public final int getNumber()
- Specified by:
getNumberin interfacecom.google.protobuf.Internal.EnumLite- Specified by:
getNumberin interfacecom.google.protobuf.ProtocolMessageEnum
-
valueOf
@Deprecated public static ResolutionStatus valueOf(int value)
Deprecated.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:
value- 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
-
forNumber
public static ResolutionStatus forNumber(int value)
- Parameters:
value- The numeric wire value of the corresponding enum entry.- Returns:
- The enum associated with the given numeric wire value.
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<ResolutionStatus> internalGetValueMap()
-
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
- Specified by:
getValueDescriptorin interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForTypein interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptor
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
-
valueOf
public static ResolutionStatus valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
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:
desc- 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
-
-