Class Method.Builder

All Implemented Interfaces:
Message.Builder, MessageLite.Builder, MessageLiteOrBuilder, MessageOrBuilder, MethodOrBuilder, Cloneable
Enclosing class:
Method

public static final class Method.Builder extends GeneratedMessage.Builder<Method.Builder> implements MethodOrBuilder
Method represents a method of an API interface.

New usages of this message as an alternative to MethodDescriptorProto are
strongly discouraged. This message does not reliability preserve all
information necessary to model the schema and preserve semantics. Instead
make use of FileDescriptorSet which preserves the necessary information.
Protobuf type google.protobuf.Method
  • Field Details

    • bitField0_

      private int bitField0_
    • name_

      private Object name_
    • requestTypeUrl_

      private Object requestTypeUrl_
    • requestStreaming_

      private boolean requestStreaming_
    • responseTypeUrl_

      private Object responseTypeUrl_
    • responseStreaming_

      private boolean responseStreaming_
    • options_

      private List<Option> options_
    • optionsBuilder_

    • syntax_

      private int syntax_
    • edition_

      private Object edition_
  • Constructor Details

  • Method Details

    • getDescriptor

      public static final Descriptors.Descriptor getDescriptor()
    • internalGetFieldAccessorTable

      protected GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable()
      Description copied from class: GeneratedMessage.Builder
      Get the FieldAccessorTable for this type. We can't have the message class pass this in to the constructor because of bootstrapping trouble with DescriptorProtos.
      Specified by:
      internalGetFieldAccessorTable in class GeneratedMessage.Builder<Method.Builder>
    • clear

      public Method.Builder clear()
      Description copied from class: GeneratedMessage.Builder
      Called by the initialization and clear code paths to allow subclasses to reset any of their builtin fields back to the initial values.
      Specified by:
      clear in interface Message.Builder
      Specified by:
      clear in interface MessageLite.Builder
      Overrides:
      clear in class GeneratedMessage.Builder<Method.Builder>
    • getDescriptorForType

      public Descriptors.Descriptor getDescriptorForType()
      Description copied from interface: Message.Builder
      Get the message's type's descriptor. See MessageOrBuilder.getDescriptorForType().
      Specified by:
      getDescriptorForType in interface Message.Builder
      Specified by:
      getDescriptorForType in interface MessageOrBuilder
      Overrides:
      getDescriptorForType in class GeneratedMessage.Builder<Method.Builder>
    • getDefaultInstanceForType

      public Method getDefaultInstanceForType()
      Description copied from interface: MessageLiteOrBuilder
      Get an instance of the type with no fields set. Because no fields are set, all getters for singular fields will return default values and repeated fields will appear empty. This may or may not be a singleton. This differs from the getDefaultInstance() method of generated message classes in that this method is an abstract method of the MessageLite interface whereas getDefaultInstance() is a static method of a specific class. They return the same thing.
      Specified by:
      getDefaultInstanceForType in interface MessageLiteOrBuilder
      Specified by:
      getDefaultInstanceForType in interface MessageOrBuilder
    • build

      public Method build()
      Description copied from interface: MessageLite.Builder
      Constructs the message based on the state of the Builder. Subsequent changes to the Builder will not affect the returned message.
      Specified by:
      build in interface Message.Builder
      Specified by:
      build in interface MessageLite.Builder
    • buildPartial

      public Method buildPartial()
      Description copied from interface: MessageLite.Builder
      Like MessageLite.Builder.build(), but does not throw an exception if the message is missing required fields. Instead, a partial message is returned. Subsequent changes to the Builder will not affect the returned message.
      Specified by:
      buildPartial in interface Message.Builder
      Specified by:
      buildPartial in interface MessageLite.Builder
    • buildPartialRepeatedFields

      private void buildPartialRepeatedFields(Method result)
    • buildPartial0

      private void buildPartial0(Method result)
    • mergeFrom

      public Method.Builder mergeFrom(Message other)
      Description copied from interface: Message.Builder
      Merge other into the message being built. other must have the exact same type as this (i.e. getDescriptorForType() == other.getDescriptorForType()).

      Merging occurs as follows. For each field:
      * For singular primitive fields, if the field is set in other, then other's value overwrites the value in this message.
      * For singular message fields, if the field is set in other, it is merged into the corresponding sub-message of this message using the same merging rules.
      * For repeated fields, the elements in other are concatenated with the elements in this message.
      * For oneof groups, if the other message has one of the fields set, the group of this message is cleared and replaced by the field of the other message, so that the oneof constraint is preserved.

      This is equivalent to the Message::MergeFrom method in C++.

      Specified by:
      mergeFrom in interface Message.Builder
      Overrides:
      mergeFrom in class AbstractMessage.Builder<Method.Builder>
    • mergeFrom

      public Method.Builder mergeFrom(Method other)
    • isInitialized

      public final boolean isInitialized()
      Description copied from interface: MessageLiteOrBuilder
      Returns true if all required fields in the message and all embedded messages are set, false otherwise.

      See also: MessageOrBuilder.getInitializationErrorString()

      Specified by:
      isInitialized in interface MessageLiteOrBuilder
      Overrides:
      isInitialized in class GeneratedMessage.Builder<Method.Builder>
    • mergeFrom

      public Method.Builder mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry) throws IOException
      Description copied from interface: MessageLite.Builder
      Like MessageLite.Builder.mergeFrom(CodedInputStream), but also parses extensions. The extensions that you want to be able to parse must be registered in extensionRegistry. Extensions not in the registry will be treated as unknown fields.
      Specified by:
      mergeFrom in interface Message.Builder
      Specified by:
      mergeFrom in interface MessageLite.Builder
      Overrides:
      mergeFrom in class AbstractMessage.Builder<Method.Builder>
      Throws:
      IOException - an I/O error reading from the stream
    • getName

      public String getName()
      The simple name of this method.
      
      string name = 1;
      Specified by:
      getName in interface MethodOrBuilder
      Returns:
      The name.
    • getNameBytes

      public ByteString getNameBytes()
      The simple name of this method.
      
      string name = 1;
      Specified by:
      getNameBytes in interface MethodOrBuilder
      Returns:
      The bytes for name.
    • setName

      public Method.Builder setName(String value)
      The simple name of this method.
      
      string name = 1;
      Parameters:
      value - The name to set.
      Returns:
      This builder for chaining.
    • clearName

      public Method.Builder clearName()
      The simple name of this method.
      
      string name = 1;
      Returns:
      This builder for chaining.
    • setNameBytes

      public Method.Builder setNameBytes(ByteString value)
      The simple name of this method.
      
      string name = 1;
      Parameters:
      value - The bytes for name to set.
      Returns:
      This builder for chaining.
    • getRequestTypeUrl

      public String getRequestTypeUrl()
      A URL of the input message type.
      
      string request_type_url = 2;
      Specified by:
      getRequestTypeUrl in interface MethodOrBuilder
      Returns:
      The requestTypeUrl.
    • getRequestTypeUrlBytes

      public ByteString getRequestTypeUrlBytes()
      A URL of the input message type.
      
      string request_type_url = 2;
      Specified by:
      getRequestTypeUrlBytes in interface MethodOrBuilder
      Returns:
      The bytes for requestTypeUrl.
    • setRequestTypeUrl

      public Method.Builder setRequestTypeUrl(String value)
      A URL of the input message type.
      
      string request_type_url = 2;
      Parameters:
      value - The requestTypeUrl to set.
      Returns:
      This builder for chaining.
    • clearRequestTypeUrl

      public Method.Builder clearRequestTypeUrl()
      A URL of the input message type.
      
      string request_type_url = 2;
      Returns:
      This builder for chaining.
    • setRequestTypeUrlBytes

      public Method.Builder setRequestTypeUrlBytes(ByteString value)
      A URL of the input message type.
      
      string request_type_url = 2;
      Parameters:
      value - The bytes for requestTypeUrl to set.
      Returns:
      This builder for chaining.
    • getRequestStreaming

      public boolean getRequestStreaming()
      If true, the request is streamed.
      
      bool request_streaming = 3;
      Specified by:
      getRequestStreaming in interface MethodOrBuilder
      Returns:
      The requestStreaming.
    • setRequestStreaming

      public Method.Builder setRequestStreaming(boolean value)
      If true, the request is streamed.
      
      bool request_streaming = 3;
      Parameters:
      value - The requestStreaming to set.
      Returns:
      This builder for chaining.
    • clearRequestStreaming

      public Method.Builder clearRequestStreaming()
      If true, the request is streamed.
      
      bool request_streaming = 3;
      Returns:
      This builder for chaining.
    • getResponseTypeUrl

      public String getResponseTypeUrl()
      The URL of the output message type.
      
      string response_type_url = 4;
      Specified by:
      getResponseTypeUrl in interface MethodOrBuilder
      Returns:
      The responseTypeUrl.
    • getResponseTypeUrlBytes

      public ByteString getResponseTypeUrlBytes()
      The URL of the output message type.
      
      string response_type_url = 4;
      Specified by:
      getResponseTypeUrlBytes in interface MethodOrBuilder
      Returns:
      The bytes for responseTypeUrl.
    • setResponseTypeUrl

      public Method.Builder setResponseTypeUrl(String value)
      The URL of the output message type.
      
      string response_type_url = 4;
      Parameters:
      value - The responseTypeUrl to set.
      Returns:
      This builder for chaining.
    • clearResponseTypeUrl

      public Method.Builder clearResponseTypeUrl()
      The URL of the output message type.
      
      string response_type_url = 4;
      Returns:
      This builder for chaining.
    • setResponseTypeUrlBytes

      public Method.Builder setResponseTypeUrlBytes(ByteString value)
      The URL of the output message type.
      
      string response_type_url = 4;
      Parameters:
      value - The bytes for responseTypeUrl to set.
      Returns:
      This builder for chaining.
    • getResponseStreaming

      public boolean getResponseStreaming()
      If true, the response is streamed.
      
      bool response_streaming = 5;
      Specified by:
      getResponseStreaming in interface MethodOrBuilder
      Returns:
      The responseStreaming.
    • setResponseStreaming

      public Method.Builder setResponseStreaming(boolean value)
      If true, the response is streamed.
      
      bool response_streaming = 5;
      Parameters:
      value - The responseStreaming to set.
      Returns:
      This builder for chaining.
    • clearResponseStreaming

      public Method.Builder clearResponseStreaming()
      If true, the response is streamed.
      
      bool response_streaming = 5;
      Returns:
      This builder for chaining.
    • ensureOptionsIsMutable

      private void ensureOptionsIsMutable()
    • getOptionsList

      public List<Option> getOptionsList()
      Any metadata attached to the method.
      
      repeated .google.protobuf.Option options = 6;
      Specified by:
      getOptionsList in interface MethodOrBuilder
    • getOptionsCount

      public int getOptionsCount()
      Any metadata attached to the method.
      
      repeated .google.protobuf.Option options = 6;
      Specified by:
      getOptionsCount in interface MethodOrBuilder
    • getOptions

      public Option getOptions(int index)
      Any metadata attached to the method.
      
      repeated .google.protobuf.Option options = 6;
      Specified by:
      getOptions in interface MethodOrBuilder
    • setOptions

      public Method.Builder setOptions(int index, Option value)
      Any metadata attached to the method.
      
      repeated .google.protobuf.Option options = 6;
    • setOptions

      public Method.Builder setOptions(int index, Option.Builder builderForValue)
      Any metadata attached to the method.
      
      repeated .google.protobuf.Option options = 6;
    • addOptions

      public Method.Builder addOptions(Option value)
      Any metadata attached to the method.
      
      repeated .google.protobuf.Option options = 6;
    • addOptions

      public Method.Builder addOptions(int index, Option value)
      Any metadata attached to the method.
      
      repeated .google.protobuf.Option options = 6;
    • addOptions

      public Method.Builder addOptions(Option.Builder builderForValue)
      Any metadata attached to the method.
      
      repeated .google.protobuf.Option options = 6;
    • addOptions

      public Method.Builder addOptions(int index, Option.Builder builderForValue)
      Any metadata attached to the method.
      
      repeated .google.protobuf.Option options = 6;
    • addAllOptions

      public Method.Builder addAllOptions(Iterable<? extends Option> values)
      Any metadata attached to the method.
      
      repeated .google.protobuf.Option options = 6;
    • clearOptions

      public Method.Builder clearOptions()
      Any metadata attached to the method.
      
      repeated .google.protobuf.Option options = 6;
    • removeOptions

      public Method.Builder removeOptions(int index)
      Any metadata attached to the method.
      
      repeated .google.protobuf.Option options = 6;
    • getOptionsBuilder

      public Option.Builder getOptionsBuilder(int index)
      Any metadata attached to the method.
      
      repeated .google.protobuf.Option options = 6;
    • getOptionsOrBuilder

      public OptionOrBuilder getOptionsOrBuilder(int index)
      Any metadata attached to the method.
      
      repeated .google.protobuf.Option options = 6;
      Specified by:
      getOptionsOrBuilder in interface MethodOrBuilder
    • getOptionsOrBuilderList

      public List<? extends OptionOrBuilder> getOptionsOrBuilderList()
      Any metadata attached to the method.
      
      repeated .google.protobuf.Option options = 6;
      Specified by:
      getOptionsOrBuilderList in interface MethodOrBuilder
    • addOptionsBuilder

      public Option.Builder addOptionsBuilder()
      Any metadata attached to the method.
      
      repeated .google.protobuf.Option options = 6;
    • addOptionsBuilder

      public Option.Builder addOptionsBuilder(int index)
      Any metadata attached to the method.
      
      repeated .google.protobuf.Option options = 6;
    • getOptionsBuilderList

      public List<Option.Builder> getOptionsBuilderList()
      Any metadata attached to the method.
      
      repeated .google.protobuf.Option options = 6;
    • internalGetOptionsFieldBuilder

      private RepeatedFieldBuilder<Option, Option.Builder, OptionOrBuilder> internalGetOptionsFieldBuilder()
    • getSyntaxValue

      @Deprecated public int getSyntaxValue()
      Deprecated.
      google.protobuf.Method.syntax is deprecated. See google/protobuf/api.proto;l=134
      The source syntax of this method.
      
      This field should be ignored, instead the syntax should be inherited from
      Api. This is similar to Field and EnumValue.
      
      .google.protobuf.Syntax syntax = 7 [deprecated = true];
      Specified by:
      getSyntaxValue in interface MethodOrBuilder
      Returns:
      The enum numeric value on the wire for syntax.
    • setSyntaxValue

      @Deprecated public Method.Builder setSyntaxValue(int value)
      Deprecated.
      google.protobuf.Method.syntax is deprecated. See google/protobuf/api.proto;l=134
      The source syntax of this method.
      
      This field should be ignored, instead the syntax should be inherited from
      Api. This is similar to Field and EnumValue.
      
      .google.protobuf.Syntax syntax = 7 [deprecated = true];
      Parameters:
      value - The enum numeric value on the wire for syntax to set.
      Returns:
      This builder for chaining.
      Throws:
      IllegalArgumentException - if UNRECOGNIZED is provided.
    • getSyntax

      @Deprecated public Syntax getSyntax()
      Deprecated.
      google.protobuf.Method.syntax is deprecated. See google/protobuf/api.proto;l=134
      The source syntax of this method.
      
      This field should be ignored, instead the syntax should be inherited from
      Api. This is similar to Field and EnumValue.
      
      .google.protobuf.Syntax syntax = 7 [deprecated = true];
      Specified by:
      getSyntax in interface MethodOrBuilder
      Returns:
      The syntax.
    • setSyntax

      @Deprecated public Method.Builder setSyntax(Syntax value)
      Deprecated.
      google.protobuf.Method.syntax is deprecated. See google/protobuf/api.proto;l=134
      The source syntax of this method.
      
      This field should be ignored, instead the syntax should be inherited from
      Api. This is similar to Field and EnumValue.
      
      .google.protobuf.Syntax syntax = 7 [deprecated = true];
      Parameters:
      value - The syntax to set.
      Returns:
      This builder for chaining.
    • clearSyntax

      @Deprecated public Method.Builder clearSyntax()
      Deprecated.
      google.protobuf.Method.syntax is deprecated. See google/protobuf/api.proto;l=134
      The source syntax of this method.
      
      This field should be ignored, instead the syntax should be inherited from
      Api. This is similar to Field and EnumValue.
      
      .google.protobuf.Syntax syntax = 7 [deprecated = true];
      Returns:
      This builder for chaining.
    • getEdition

      @Deprecated public String getEdition()
      Deprecated.
      google.protobuf.Method.edition is deprecated. See google/protobuf/api.proto;l=140
      The source edition string, only valid when syntax is SYNTAX_EDITIONS.
      
      This field should be ignored, instead the edition should be inherited from
      Api. This is similar to Field and EnumValue.
      
      string edition = 8 [deprecated = true];
      Specified by:
      getEdition in interface MethodOrBuilder
      Returns:
      The edition.
    • getEditionBytes

      @Deprecated public ByteString getEditionBytes()
      Deprecated.
      google.protobuf.Method.edition is deprecated. See google/protobuf/api.proto;l=140
      The source edition string, only valid when syntax is SYNTAX_EDITIONS.
      
      This field should be ignored, instead the edition should be inherited from
      Api. This is similar to Field and EnumValue.
      
      string edition = 8 [deprecated = true];
      Specified by:
      getEditionBytes in interface MethodOrBuilder
      Returns:
      The bytes for edition.
    • setEdition

      @Deprecated public Method.Builder setEdition(String value)
      Deprecated.
      google.protobuf.Method.edition is deprecated. See google/protobuf/api.proto;l=140
      The source edition string, only valid when syntax is SYNTAX_EDITIONS.
      
      This field should be ignored, instead the edition should be inherited from
      Api. This is similar to Field and EnumValue.
      
      string edition = 8 [deprecated = true];
      Parameters:
      value - The edition to set.
      Returns:
      This builder for chaining.
    • clearEdition

      @Deprecated public Method.Builder clearEdition()
      Deprecated.
      google.protobuf.Method.edition is deprecated. See google/protobuf/api.proto;l=140
      The source edition string, only valid when syntax is SYNTAX_EDITIONS.
      
      This field should be ignored, instead the edition should be inherited from
      Api. This is similar to Field and EnumValue.
      
      string edition = 8 [deprecated = true];
      Returns:
      This builder for chaining.
    • setEditionBytes

      @Deprecated public Method.Builder setEditionBytes(ByteString value)
      Deprecated.
      google.protobuf.Method.edition is deprecated. See google/protobuf/api.proto;l=140
      The source edition string, only valid when syntax is SYNTAX_EDITIONS.
      
      This field should be ignored, instead the edition should be inherited from
      Api. This is similar to Field and EnumValue.
      
      string edition = 8 [deprecated = true];
      Parameters:
      value - The bytes for edition to set.
      Returns:
      This builder for chaining.