Interface StatusMessageOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
StatusMessage
,StatusMessage.Builder
public interface StatusMessageOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FormatMessage
getDescription()
Status message text.FormatMessageOrBuilder
getDescriptionOrBuilder()
Status message text.boolean
getIsError()
Distinguishes errors from informational messages.StatusMessage.Reference
getRefersTo()
Reference to which the message applies.int
getRefersToValue()
Reference to which the message applies.boolean
hasDescription()
Status message text.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getIsError
boolean getIsError()
Distinguishes errors from informational messages.
bool is_error = 1;
- Returns:
- The isError.
-
getRefersToValue
int getRefersToValue()
Reference to which the message applies.
.google.devtools.clouddebugger.v2.StatusMessage.Reference refers_to = 2;
- Returns:
- The enum numeric value on the wire for refersTo.
-
getRefersTo
StatusMessage.Reference getRefersTo()
Reference to which the message applies.
.google.devtools.clouddebugger.v2.StatusMessage.Reference refers_to = 2;
- Returns:
- The refersTo.
-
hasDescription
boolean hasDescription()
Status message text.
.google.devtools.clouddebugger.v2.FormatMessage description = 3;
- Returns:
- Whether the description field is set.
-
getDescription
FormatMessage getDescription()
Status message text.
.google.devtools.clouddebugger.v2.FormatMessage description = 3;
- Returns:
- The description.
-
getDescriptionOrBuilder
FormatMessageOrBuilder getDescriptionOrBuilder()
Status message text.
.google.devtools.clouddebugger.v2.FormatMessage description = 3;
-
-