Enum StatusMessage.Reference
- java.lang.Object
-
- java.lang.Enum<StatusMessage.Reference>
-
- com.google.devtools.clouddebugger.v2.StatusMessage.Reference
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite,com.google.protobuf.ProtocolMessageEnum,Serializable,Comparable<StatusMessage.Reference>
- Enclosing class:
- StatusMessage
public static enum StatusMessage.Reference extends Enum<StatusMessage.Reference> implements com.google.protobuf.ProtocolMessageEnum
Enumerates references to which the message applies.
Protobuf enumgoogle.devtools.clouddebugger.v2.StatusMessage.Reference
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BREAKPOINT_AGEStatus applies to the breakpoint and is related to its age.BREAKPOINT_CONDITIONStatus applies to the breakpoint and is related to its condition.BREAKPOINT_EXPRESSIONStatus applies to the breakpoint and is related to its expressions.BREAKPOINT_SOURCE_LOCATIONStatus applies to the breakpoint and is related to its location.UNRECOGNIZEDUNSPECIFIEDStatus doesn't refer to any particular input.VARIABLE_NAMEStatus applies to the entire variable.VARIABLE_VALUEStatus applies to variable value (variable name is valid).
-
Field Summary
Fields Modifier and Type Field Description static intBREAKPOINT_AGE_VALUEStatus applies to the breakpoint and is related to its age.static intBREAKPOINT_CONDITION_VALUEStatus applies to the breakpoint and is related to its condition.static intBREAKPOINT_EXPRESSION_VALUEStatus applies to the breakpoint and is related to its expressions.static intBREAKPOINT_SOURCE_LOCATION_VALUEStatus applies to the breakpoint and is related to its location.static intUNSPECIFIED_VALUEStatus doesn't refer to any particular input.static intVARIABLE_NAME_VALUEStatus applies to the entire variable.static intVARIABLE_VALUE_VALUEStatus applies to variable value (variable name is valid).
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static StatusMessage.ReferenceforNumber(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<StatusMessage.Reference>internalGetValueMap()static StatusMessage.ReferencevalueOf(int value)Deprecated.static StatusMessage.ReferencevalueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)Returns the enum constant of this type with the specified name.static StatusMessage.ReferencevalueOf(String name)Returns the enum constant of this type with the specified name.static StatusMessage.Reference[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNSPECIFIED
public static final StatusMessage.Reference UNSPECIFIED
Status doesn't refer to any particular input.
UNSPECIFIED = 0;
-
BREAKPOINT_SOURCE_LOCATION
public static final StatusMessage.Reference BREAKPOINT_SOURCE_LOCATION
Status applies to the breakpoint and is related to its location.
BREAKPOINT_SOURCE_LOCATION = 3;
-
BREAKPOINT_CONDITION
public static final StatusMessage.Reference BREAKPOINT_CONDITION
Status applies to the breakpoint and is related to its condition.
BREAKPOINT_CONDITION = 4;
-
BREAKPOINT_EXPRESSION
public static final StatusMessage.Reference BREAKPOINT_EXPRESSION
Status applies to the breakpoint and is related to its expressions.
BREAKPOINT_EXPRESSION = 7;
-
BREAKPOINT_AGE
public static final StatusMessage.Reference BREAKPOINT_AGE
Status applies to the breakpoint and is related to its age.
BREAKPOINT_AGE = 8;
-
VARIABLE_NAME
public static final StatusMessage.Reference VARIABLE_NAME
Status applies to the entire variable.
VARIABLE_NAME = 5;
-
VARIABLE_VALUE
public static final StatusMessage.Reference VARIABLE_VALUE
Status applies to variable value (variable name is valid).
VARIABLE_VALUE = 6;
-
UNRECOGNIZED
public static final StatusMessage.Reference UNRECOGNIZED
-
-
Field Detail
-
UNSPECIFIED_VALUE
public static final int UNSPECIFIED_VALUE
Status doesn't refer to any particular input.
UNSPECIFIED = 0;- See Also:
- Constant Field Values
-
BREAKPOINT_SOURCE_LOCATION_VALUE
public static final int BREAKPOINT_SOURCE_LOCATION_VALUE
Status applies to the breakpoint and is related to its location.
BREAKPOINT_SOURCE_LOCATION = 3;- See Also:
- Constant Field Values
-
BREAKPOINT_CONDITION_VALUE
public static final int BREAKPOINT_CONDITION_VALUE
Status applies to the breakpoint and is related to its condition.
BREAKPOINT_CONDITION = 4;- See Also:
- Constant Field Values
-
BREAKPOINT_EXPRESSION_VALUE
public static final int BREAKPOINT_EXPRESSION_VALUE
Status applies to the breakpoint and is related to its expressions.
BREAKPOINT_EXPRESSION = 7;- See Also:
- Constant Field Values
-
BREAKPOINT_AGE_VALUE
public static final int BREAKPOINT_AGE_VALUE
Status applies to the breakpoint and is related to its age.
BREAKPOINT_AGE = 8;- See Also:
- Constant Field Values
-
VARIABLE_NAME_VALUE
public static final int VARIABLE_NAME_VALUE
Status applies to the entire variable.
VARIABLE_NAME = 5;- See Also:
- Constant Field Values
-
VARIABLE_VALUE_VALUE
public static final int VARIABLE_VALUE_VALUE
Status applies to variable value (variable name is valid).
VARIABLE_VALUE = 6;- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static StatusMessage.Reference[] 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 (StatusMessage.Reference c : StatusMessage.Reference.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StatusMessage.Reference 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 StatusMessage.Reference 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 StatusMessage.Reference 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<StatusMessage.Reference> 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 StatusMessage.Reference 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
-
-