Class StackFrame.Builder

  • All Implemented Interfaces:
    StackFrameOrBuilder, com.google.protobuf.Message.Builder, com.google.protobuf.MessageLite.Builder, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, Cloneable
    Enclosing class:
    StackFrame

    public static final class StackFrame.Builder
    extends com.google.protobuf.GeneratedMessageV3.Builder<StackFrame.Builder>
    implements StackFrameOrBuilder
     Represents a stack frame context.
     
    Protobuf type google.devtools.clouddebugger.v2.StackFrame
    • Method Detail

      • getDescriptor

        public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
      • internalGetFieldAccessorTable

        protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
        Specified by:
        internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3.Builder<StackFrame.Builder>
      • clear

        public StackFrame.Builder clear()
        Specified by:
        clear in interface com.google.protobuf.Message.Builder
        Specified by:
        clear in interface com.google.protobuf.MessageLite.Builder
        Overrides:
        clear in class com.google.protobuf.GeneratedMessageV3.Builder<StackFrame.Builder>
      • getDescriptorForType

        public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
        Specified by:
        getDescriptorForType in interface com.google.protobuf.Message.Builder
        Specified by:
        getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
        Overrides:
        getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<StackFrame.Builder>
      • getDefaultInstanceForType

        public StackFrame getDefaultInstanceForType()
        Specified by:
        getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
        Specified by:
        getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      • build

        public StackFrame build()
        Specified by:
        build in interface com.google.protobuf.Message.Builder
        Specified by:
        build in interface com.google.protobuf.MessageLite.Builder
      • buildPartial

        public StackFrame buildPartial()
        Specified by:
        buildPartial in interface com.google.protobuf.Message.Builder
        Specified by:
        buildPartial in interface com.google.protobuf.MessageLite.Builder
      • clone

        public StackFrame.Builder clone()
        Specified by:
        clone in interface com.google.protobuf.Message.Builder
        Specified by:
        clone in interface com.google.protobuf.MessageLite.Builder
        Overrides:
        clone in class com.google.protobuf.GeneratedMessageV3.Builder<StackFrame.Builder>
      • setField

        public StackFrame.Builder setField​(com.google.protobuf.Descriptors.FieldDescriptor field,
                                           Object value)
        Specified by:
        setField in interface com.google.protobuf.Message.Builder
        Overrides:
        setField in class com.google.protobuf.GeneratedMessageV3.Builder<StackFrame.Builder>
      • clearField

        public StackFrame.Builder clearField​(com.google.protobuf.Descriptors.FieldDescriptor field)
        Specified by:
        clearField in interface com.google.protobuf.Message.Builder
        Overrides:
        clearField in class com.google.protobuf.GeneratedMessageV3.Builder<StackFrame.Builder>
      • clearOneof

        public StackFrame.Builder clearOneof​(com.google.protobuf.Descriptors.OneofDescriptor oneof)
        Specified by:
        clearOneof in interface com.google.protobuf.Message.Builder
        Overrides:
        clearOneof in class com.google.protobuf.GeneratedMessageV3.Builder<StackFrame.Builder>
      • setRepeatedField

        public StackFrame.Builder setRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
                                                   int index,
                                                   Object value)
        Specified by:
        setRepeatedField in interface com.google.protobuf.Message.Builder
        Overrides:
        setRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<StackFrame.Builder>
      • addRepeatedField

        public StackFrame.Builder addRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
                                                   Object value)
        Specified by:
        addRepeatedField in interface com.google.protobuf.Message.Builder
        Overrides:
        addRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<StackFrame.Builder>
      • mergeFrom

        public StackFrame.Builder mergeFrom​(com.google.protobuf.Message other)
        Specified by:
        mergeFrom in interface com.google.protobuf.Message.Builder
        Overrides:
        mergeFrom in class com.google.protobuf.AbstractMessage.Builder<StackFrame.Builder>
      • isInitialized

        public final boolean isInitialized()
        Specified by:
        isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
        Overrides:
        isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<StackFrame.Builder>
      • mergeFrom

        public StackFrame.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
                                            com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                     throws IOException
        Specified by:
        mergeFrom in interface com.google.protobuf.Message.Builder
        Specified by:
        mergeFrom in interface com.google.protobuf.MessageLite.Builder
        Overrides:
        mergeFrom in class com.google.protobuf.AbstractMessage.Builder<StackFrame.Builder>
        Throws:
        IOException
      • getFunction

        public String getFunction()
         Demangled function name at the call site.
         
        string function = 1;
        Specified by:
        getFunction in interface StackFrameOrBuilder
        Returns:
        The function.
      • getFunctionBytes

        public com.google.protobuf.ByteString getFunctionBytes()
         Demangled function name at the call site.
         
        string function = 1;
        Specified by:
        getFunctionBytes in interface StackFrameOrBuilder
        Returns:
        The bytes for function.
      • setFunction

        public StackFrame.Builder setFunction​(String value)
         Demangled function name at the call site.
         
        string function = 1;
        Parameters:
        value - The function to set.
        Returns:
        This builder for chaining.
      • clearFunction

        public StackFrame.Builder clearFunction()
         Demangled function name at the call site.
         
        string function = 1;
        Returns:
        This builder for chaining.
      • setFunctionBytes

        public StackFrame.Builder setFunctionBytes​(com.google.protobuf.ByteString value)
         Demangled function name at the call site.
         
        string function = 1;
        Parameters:
        value - The bytes for function to set.
        Returns:
        This builder for chaining.
      • hasLocation

        public boolean hasLocation()
         Source location of the call site.
         
        .google.devtools.clouddebugger.v2.SourceLocation location = 2;
        Specified by:
        hasLocation in interface StackFrameOrBuilder
        Returns:
        Whether the location field is set.
      • getLocation

        public SourceLocation getLocation()
         Source location of the call site.
         
        .google.devtools.clouddebugger.v2.SourceLocation location = 2;
        Specified by:
        getLocation in interface StackFrameOrBuilder
        Returns:
        The location.
      • setLocation

        public StackFrame.Builder setLocation​(SourceLocation value)
         Source location of the call site.
         
        .google.devtools.clouddebugger.v2.SourceLocation location = 2;
      • mergeLocation

        public StackFrame.Builder mergeLocation​(SourceLocation value)
         Source location of the call site.
         
        .google.devtools.clouddebugger.v2.SourceLocation location = 2;
      • clearLocation

        public StackFrame.Builder clearLocation()
         Source location of the call site.
         
        .google.devtools.clouddebugger.v2.SourceLocation location = 2;
      • getLocationBuilder

        public SourceLocation.Builder getLocationBuilder()
         Source location of the call site.
         
        .google.devtools.clouddebugger.v2.SourceLocation location = 2;
      • getArgumentsList

        public List<Variable> getArgumentsList()
         Set of arguments passed to this function.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable arguments = 3;
        Specified by:
        getArgumentsList in interface StackFrameOrBuilder
      • getArgumentsCount

        public int getArgumentsCount()
         Set of arguments passed to this function.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable arguments = 3;
        Specified by:
        getArgumentsCount in interface StackFrameOrBuilder
      • getArguments

        public Variable getArguments​(int index)
         Set of arguments passed to this function.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable arguments = 3;
        Specified by:
        getArguments in interface StackFrameOrBuilder
      • setArguments

        public StackFrame.Builder setArguments​(int index,
                                               Variable value)
         Set of arguments passed to this function.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable arguments = 3;
      • setArguments

        public StackFrame.Builder setArguments​(int index,
                                               Variable.Builder builderForValue)
         Set of arguments passed to this function.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable arguments = 3;
      • addArguments

        public StackFrame.Builder addArguments​(Variable value)
         Set of arguments passed to this function.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable arguments = 3;
      • addArguments

        public StackFrame.Builder addArguments​(int index,
                                               Variable value)
         Set of arguments passed to this function.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable arguments = 3;
      • addArguments

        public StackFrame.Builder addArguments​(Variable.Builder builderForValue)
         Set of arguments passed to this function.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable arguments = 3;
      • addArguments

        public StackFrame.Builder addArguments​(int index,
                                               Variable.Builder builderForValue)
         Set of arguments passed to this function.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable arguments = 3;
      • addAllArguments

        public StackFrame.Builder addAllArguments​(Iterable<? extends Variable> values)
         Set of arguments passed to this function.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable arguments = 3;
      • clearArguments

        public StackFrame.Builder clearArguments()
         Set of arguments passed to this function.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable arguments = 3;
      • removeArguments

        public StackFrame.Builder removeArguments​(int index)
         Set of arguments passed to this function.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable arguments = 3;
      • getArgumentsBuilder

        public Variable.Builder getArgumentsBuilder​(int index)
         Set of arguments passed to this function.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable arguments = 3;
      • getArgumentsOrBuilder

        public VariableOrBuilder getArgumentsOrBuilder​(int index)
         Set of arguments passed to this function.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable arguments = 3;
        Specified by:
        getArgumentsOrBuilder in interface StackFrameOrBuilder
      • getArgumentsOrBuilderList

        public List<? extends VariableOrBuilder> getArgumentsOrBuilderList()
         Set of arguments passed to this function.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable arguments = 3;
        Specified by:
        getArgumentsOrBuilderList in interface StackFrameOrBuilder
      • addArgumentsBuilder

        public Variable.Builder addArgumentsBuilder()
         Set of arguments passed to this function.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable arguments = 3;
      • addArgumentsBuilder

        public Variable.Builder addArgumentsBuilder​(int index)
         Set of arguments passed to this function.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable arguments = 3;
      • getArgumentsBuilderList

        public List<Variable.Builder> getArgumentsBuilderList()
         Set of arguments passed to this function.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable arguments = 3;
      • getLocalsList

        public List<Variable> getLocalsList()
         Set of local variables at the stack frame location.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable locals = 4;
        Specified by:
        getLocalsList in interface StackFrameOrBuilder
      • getLocalsCount

        public int getLocalsCount()
         Set of local variables at the stack frame location.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable locals = 4;
        Specified by:
        getLocalsCount in interface StackFrameOrBuilder
      • getLocals

        public Variable getLocals​(int index)
         Set of local variables at the stack frame location.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable locals = 4;
        Specified by:
        getLocals in interface StackFrameOrBuilder
      • setLocals

        public StackFrame.Builder setLocals​(int index,
                                            Variable value)
         Set of local variables at the stack frame location.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable locals = 4;
      • setLocals

        public StackFrame.Builder setLocals​(int index,
                                            Variable.Builder builderForValue)
         Set of local variables at the stack frame location.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable locals = 4;
      • addLocals

        public StackFrame.Builder addLocals​(Variable value)
         Set of local variables at the stack frame location.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable locals = 4;
      • addLocals

        public StackFrame.Builder addLocals​(int index,
                                            Variable value)
         Set of local variables at the stack frame location.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable locals = 4;
      • addLocals

        public StackFrame.Builder addLocals​(Variable.Builder builderForValue)
         Set of local variables at the stack frame location.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable locals = 4;
      • addLocals

        public StackFrame.Builder addLocals​(int index,
                                            Variable.Builder builderForValue)
         Set of local variables at the stack frame location.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable locals = 4;
      • addAllLocals

        public StackFrame.Builder addAllLocals​(Iterable<? extends Variable> values)
         Set of local variables at the stack frame location.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable locals = 4;
      • clearLocals

        public StackFrame.Builder clearLocals()
         Set of local variables at the stack frame location.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable locals = 4;
      • removeLocals

        public StackFrame.Builder removeLocals​(int index)
         Set of local variables at the stack frame location.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable locals = 4;
      • getLocalsBuilder

        public Variable.Builder getLocalsBuilder​(int index)
         Set of local variables at the stack frame location.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable locals = 4;
      • getLocalsOrBuilder

        public VariableOrBuilder getLocalsOrBuilder​(int index)
         Set of local variables at the stack frame location.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable locals = 4;
        Specified by:
        getLocalsOrBuilder in interface StackFrameOrBuilder
      • getLocalsOrBuilderList

        public List<? extends VariableOrBuilder> getLocalsOrBuilderList()
         Set of local variables at the stack frame location.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable locals = 4;
        Specified by:
        getLocalsOrBuilderList in interface StackFrameOrBuilder
      • addLocalsBuilder

        public Variable.Builder addLocalsBuilder()
         Set of local variables at the stack frame location.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable locals = 4;
      • addLocalsBuilder

        public Variable.Builder addLocalsBuilder​(int index)
         Set of local variables at the stack frame location.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable locals = 4;
      • getLocalsBuilderList

        public List<Variable.Builder> getLocalsBuilderList()
         Set of local variables at the stack frame location.
         Note that this might not be populated for all stack frames.
         
        repeated .google.devtools.clouddebugger.v2.Variable locals = 4;
      • setUnknownFields

        public final StackFrame.Builder setUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
        Specified by:
        setUnknownFields in interface com.google.protobuf.Message.Builder
        Overrides:
        setUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<StackFrame.Builder>
      • mergeUnknownFields

        public final StackFrame.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
        Specified by:
        mergeUnknownFields in interface com.google.protobuf.Message.Builder
        Overrides:
        mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<StackFrame.Builder>