Interface ListBreakpointsResponseOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    ListBreakpointsResponse, ListBreakpointsResponse.Builder

    public interface ListBreakpointsResponseOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      Breakpoint getBreakpoints​(int index)
      List of breakpoints matching the request.
      int getBreakpointsCount()
      List of breakpoints matching the request.
      List<Breakpoint> getBreakpointsList()
      List of breakpoints matching the request.
      BreakpointOrBuilder getBreakpointsOrBuilder​(int index)
      List of breakpoints matching the request.
      List<? extends BreakpointOrBuilder> getBreakpointsOrBuilderList()
      List of breakpoints matching the request.
      String getNextWaitToken()
      A wait token that can be used in the next call to `list` (REST) or `ListBreakpoints` (RPC) to block until the list of breakpoints has changes.
      com.google.protobuf.ByteString getNextWaitTokenBytes()
      A wait token that can be used in the next call to `list` (REST) or `ListBreakpoints` (RPC) to block until the list of breakpoints has changes.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getBreakpointsList

        List<Breakpoint> getBreakpointsList()
         List of breakpoints matching the request.
         The fields `id` and `location` are guaranteed to be set on each breakpoint.
         The fields: `stack_frames`, `evaluated_expressions` and `variable_table`
         are cleared on each breakpoint regardless of its status.
         
        repeated .google.devtools.clouddebugger.v2.Breakpoint breakpoints = 1;
      • getBreakpoints

        Breakpoint getBreakpoints​(int index)
         List of breakpoints matching the request.
         The fields `id` and `location` are guaranteed to be set on each breakpoint.
         The fields: `stack_frames`, `evaluated_expressions` and `variable_table`
         are cleared on each breakpoint regardless of its status.
         
        repeated .google.devtools.clouddebugger.v2.Breakpoint breakpoints = 1;
      • getBreakpointsCount

        int getBreakpointsCount()
         List of breakpoints matching the request.
         The fields `id` and `location` are guaranteed to be set on each breakpoint.
         The fields: `stack_frames`, `evaluated_expressions` and `variable_table`
         are cleared on each breakpoint regardless of its status.
         
        repeated .google.devtools.clouddebugger.v2.Breakpoint breakpoints = 1;
      • getBreakpointsOrBuilderList

        List<? extends BreakpointOrBuilder> getBreakpointsOrBuilderList()
         List of breakpoints matching the request.
         The fields `id` and `location` are guaranteed to be set on each breakpoint.
         The fields: `stack_frames`, `evaluated_expressions` and `variable_table`
         are cleared on each breakpoint regardless of its status.
         
        repeated .google.devtools.clouddebugger.v2.Breakpoint breakpoints = 1;
      • getBreakpointsOrBuilder

        BreakpointOrBuilder getBreakpointsOrBuilder​(int index)
         List of breakpoints matching the request.
         The fields `id` and `location` are guaranteed to be set on each breakpoint.
         The fields: `stack_frames`, `evaluated_expressions` and `variable_table`
         are cleared on each breakpoint regardless of its status.
         
        repeated .google.devtools.clouddebugger.v2.Breakpoint breakpoints = 1;
      • getNextWaitToken

        String getNextWaitToken()
         A wait token that can be used in the next call to `list` (REST) or
         `ListBreakpoints` (RPC) to block until the list of breakpoints has changes.
         
        string next_wait_token = 2;
        Returns:
        The nextWaitToken.
      • getNextWaitTokenBytes

        com.google.protobuf.ByteString getNextWaitTokenBytes()
         A wait token that can be used in the next call to `list` (REST) or
         `ListBreakpoints` (RPC) to block until the list of breakpoints has changes.
         
        string next_wait_token = 2;
        Returns:
        The bytes for nextWaitToken.