Interface SetBreakpointRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SetBreakpointRequest,SetBreakpointRequest.Builder
public interface SetBreakpointRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BreakpointgetBreakpoint()Required.BreakpointOrBuildergetBreakpointOrBuilder()Required.StringgetClientVersion()Required.com.google.protobuf.ByteStringgetClientVersionBytes()Required.StringgetDebuggeeId()Required.com.google.protobuf.ByteStringgetDebuggeeIdBytes()Required.booleanhasBreakpoint()Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDebuggeeId
String getDebuggeeId()
Required. ID of the debuggee where the breakpoint is to be set.
string debuggee_id = 1 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The debuggeeId.
-
getDebuggeeIdBytes
com.google.protobuf.ByteString getDebuggeeIdBytes()
Required. ID of the debuggee where the breakpoint is to be set.
string debuggee_id = 1 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The bytes for debuggeeId.
-
hasBreakpoint
boolean hasBreakpoint()
Required. Breakpoint specification to set. The field `location` of the breakpoint must be set.
.google.devtools.clouddebugger.v2.Breakpoint breakpoint = 2 [(.google.api.field_behavior) = REQUIRED];- Returns:
- Whether the breakpoint field is set.
-
getBreakpoint
Breakpoint getBreakpoint()
Required. Breakpoint specification to set. The field `location` of the breakpoint must be set.
.google.devtools.clouddebugger.v2.Breakpoint breakpoint = 2 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The breakpoint.
-
getBreakpointOrBuilder
BreakpointOrBuilder getBreakpointOrBuilder()
Required. Breakpoint specification to set. The field `location` of the breakpoint must be set.
.google.devtools.clouddebugger.v2.Breakpoint breakpoint = 2 [(.google.api.field_behavior) = REQUIRED];
-
getClientVersion
String getClientVersion()
Required. The client version making the call. Schema: `domain/type/version` (e.g., `google.com/intellij/v1`).
string client_version = 4 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The clientVersion.
-
getClientVersionBytes
com.google.protobuf.ByteString getClientVersionBytes()
Required. The client version making the call. Schema: `domain/type/version` (e.g., `google.com/intellij/v1`).
string client_version = 4 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The bytes for clientVersion.
-
-