Class Type.Builder

    • Method Detail

      • getDefaultInstanceForType

        public Type 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
      • mergeFrom

        public Type.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<Type.Builder>
      • getName

        public java.lang.String getName()
        string name = 1 [json_name = "name"];
        Specified by:
        getName in interface TypeOrBuilder
        Returns:
        The name.
      • setName

        public Type.Builder setName​(java.lang.String value)
        string name = 1 [json_name = "name"];
        Parameters:
        value - The name to set.
        Returns:
        This builder for chaining.
      • clearName

        public Type.Builder clearName()
        string name = 1 [json_name = "name"];
        Returns:
        This builder for chaining.
      • setNameBytes

        public Type.Builder setNameBytes​(ByteString value)
        string name = 1 [json_name = "name"];
        Parameters:
        value - The bytes for name to set.
        Returns:
        This builder for chaining.
      • getFieldsList

        public java.util.List<Field> getFieldsList()
        repeated .google.protobuf.Field fields = 2 [json_name = "fields"];
        Specified by:
        getFieldsList in interface TypeOrBuilder
      • getFieldsCount

        public int getFieldsCount()
        repeated .google.protobuf.Field fields = 2 [json_name = "fields"];
        Specified by:
        getFieldsCount in interface TypeOrBuilder
      • getFields

        public Field getFields​(int index)
        repeated .google.protobuf.Field fields = 2 [json_name = "fields"];
        Specified by:
        getFields in interface TypeOrBuilder
      • setFields

        public Type.Builder setFields​(int index,
                                      Field value)
        repeated .google.protobuf.Field fields = 2 [json_name = "fields"];
      • setFields

        public Type.Builder setFields​(int index,
                                      Field.Builder builderForValue)
        repeated .google.protobuf.Field fields = 2 [json_name = "fields"];
      • addFields

        public Type.Builder addFields​(Field value)
        repeated .google.protobuf.Field fields = 2 [json_name = "fields"];
      • addFields

        public Type.Builder addFields​(int index,
                                      Field value)
        repeated .google.protobuf.Field fields = 2 [json_name = "fields"];
      • addFields

        public Type.Builder addFields​(Field.Builder builderForValue)
        repeated .google.protobuf.Field fields = 2 [json_name = "fields"];
      • addFields

        public Type.Builder addFields​(int index,
                                      Field.Builder builderForValue)
        repeated .google.protobuf.Field fields = 2 [json_name = "fields"];
      • addAllFields

        public Type.Builder addAllFields​(java.lang.Iterable<? extends Field> values)
        repeated .google.protobuf.Field fields = 2 [json_name = "fields"];
      • clearFields

        public Type.Builder clearFields()
        repeated .google.protobuf.Field fields = 2 [json_name = "fields"];
      • removeFields

        public Type.Builder removeFields​(int index)
        repeated .google.protobuf.Field fields = 2 [json_name = "fields"];
      • getFieldsBuilder

        public Field.Builder getFieldsBuilder​(int index)
        repeated .google.protobuf.Field fields = 2 [json_name = "fields"];
      • addFieldsBuilder

        public Field.Builder addFieldsBuilder()
        repeated .google.protobuf.Field fields = 2 [json_name = "fields"];
      • addFieldsBuilder

        public Field.Builder addFieldsBuilder​(int index)
        repeated .google.protobuf.Field fields = 2 [json_name = "fields"];
      • getFieldsBuilderList

        public java.util.List<Field.Builder> getFieldsBuilderList()
        repeated .google.protobuf.Field fields = 2 [json_name = "fields"];
      • getOneofsCount

        public int getOneofsCount()
        repeated string oneofs = 3 [json_name = "oneofs"];
        Specified by:
        getOneofsCount in interface TypeOrBuilder
        Returns:
        The count of oneofs.
      • getOneofs

        public java.lang.String getOneofs​(int index)
        repeated string oneofs = 3 [json_name = "oneofs"];
        Specified by:
        getOneofs in interface TypeOrBuilder
        Parameters:
        index - The index of the element to return.
        Returns:
        The oneofs at the given index.
      • getOneofsBytes

        public ByteString getOneofsBytes​(int index)
        repeated string oneofs = 3 [json_name = "oneofs"];
        Specified by:
        getOneofsBytes in interface TypeOrBuilder
        Parameters:
        index - The index of the value to return.
        Returns:
        The bytes of the oneofs at the given index.
      • setOneofs

        public Type.Builder setOneofs​(int index,
                                      java.lang.String value)
        repeated string oneofs = 3 [json_name = "oneofs"];
        Parameters:
        index - The index to set the value at.
        value - The oneofs to set.
        Returns:
        This builder for chaining.
      • addOneofs

        public Type.Builder addOneofs​(java.lang.String value)
        repeated string oneofs = 3 [json_name = "oneofs"];
        Parameters:
        value - The oneofs to add.
        Returns:
        This builder for chaining.
      • addAllOneofs

        public Type.Builder addAllOneofs​(java.lang.Iterable<java.lang.String> values)
        repeated string oneofs = 3 [json_name = "oneofs"];
        Parameters:
        values - The oneofs to add.
        Returns:
        This builder for chaining.
      • clearOneofs

        public Type.Builder clearOneofs()
        repeated string oneofs = 3 [json_name = "oneofs"];
        Returns:
        This builder for chaining.
      • addOneofsBytes

        public Type.Builder addOneofsBytes​(ByteString value)
        repeated string oneofs = 3 [json_name = "oneofs"];
        Parameters:
        value - The bytes of the oneofs to add.
        Returns:
        This builder for chaining.
      • getOptionsList

        public java.util.List<Option> getOptionsList()
        repeated .google.protobuf.Option options = 4 [json_name = "options"];
        Specified by:
        getOptionsList in interface TypeOrBuilder
      • getOptionsCount

        public int getOptionsCount()
        repeated .google.protobuf.Option options = 4 [json_name = "options"];
        Specified by:
        getOptionsCount in interface TypeOrBuilder
      • getOptions

        public Option getOptions​(int index)
        repeated .google.protobuf.Option options = 4 [json_name = "options"];
        Specified by:
        getOptions in interface TypeOrBuilder
      • setOptions

        public Type.Builder setOptions​(int index,
                                       Option value)
        repeated .google.protobuf.Option options = 4 [json_name = "options"];
      • setOptions

        public Type.Builder setOptions​(int index,
                                       Option.Builder builderForValue)
        repeated .google.protobuf.Option options = 4 [json_name = "options"];
      • addOptions

        public Type.Builder addOptions​(Option value)
        repeated .google.protobuf.Option options = 4 [json_name = "options"];
      • addOptions

        public Type.Builder addOptions​(int index,
                                       Option value)
        repeated .google.protobuf.Option options = 4 [json_name = "options"];
      • addOptions

        public Type.Builder addOptions​(Option.Builder builderForValue)
        repeated .google.protobuf.Option options = 4 [json_name = "options"];
      • addOptions

        public Type.Builder addOptions​(int index,
                                       Option.Builder builderForValue)
        repeated .google.protobuf.Option options = 4 [json_name = "options"];
      • addAllOptions

        public Type.Builder addAllOptions​(java.lang.Iterable<? extends Option> values)
        repeated .google.protobuf.Option options = 4 [json_name = "options"];
      • clearOptions

        public Type.Builder clearOptions()
        repeated .google.protobuf.Option options = 4 [json_name = "options"];
      • removeOptions

        public Type.Builder removeOptions​(int index)
        repeated .google.protobuf.Option options = 4 [json_name = "options"];
      • getOptionsBuilder

        public Option.Builder getOptionsBuilder​(int index)
        repeated .google.protobuf.Option options = 4 [json_name = "options"];
      • addOptionsBuilder

        public Option.Builder addOptionsBuilder()
        repeated .google.protobuf.Option options = 4 [json_name = "options"];
      • addOptionsBuilder

        public Option.Builder addOptionsBuilder​(int index)
        repeated .google.protobuf.Option options = 4 [json_name = "options"];
      • getOptionsBuilderList

        public java.util.List<Option.Builder> getOptionsBuilderList()
        repeated .google.protobuf.Option options = 4 [json_name = "options"];
      • hasSourceContext

        public boolean hasSourceContext()
        .google.protobuf.SourceContext source_context = 5 [json_name = "sourceContext"];
        Specified by:
        hasSourceContext in interface TypeOrBuilder
        Returns:
        Whether the sourceContext field is set.
      • getSourceContext

        public SourceContext getSourceContext()
        .google.protobuf.SourceContext source_context = 5 [json_name = "sourceContext"];
        Specified by:
        getSourceContext in interface TypeOrBuilder
        Returns:
        The sourceContext.
      • setSourceContext

        public Type.Builder setSourceContext​(SourceContext value)
        .google.protobuf.SourceContext source_context = 5 [json_name = "sourceContext"];
      • setSourceContext

        public Type.Builder setSourceContext​(SourceContext.Builder builderForValue)
        .google.protobuf.SourceContext source_context = 5 [json_name = "sourceContext"];
      • mergeSourceContext

        public Type.Builder mergeSourceContext​(SourceContext value)
        .google.protobuf.SourceContext source_context = 5 [json_name = "sourceContext"];
      • clearSourceContext

        public Type.Builder clearSourceContext()
        .google.protobuf.SourceContext source_context = 5 [json_name = "sourceContext"];
      • getSourceContextBuilder

        public SourceContext.Builder getSourceContextBuilder()
        .google.protobuf.SourceContext source_context = 5 [json_name = "sourceContext"];
      • getSyntaxValue

        public int getSyntaxValue()
        .google.protobuf.Syntax syntax = 6 [json_name = "syntax"];
        Specified by:
        getSyntaxValue in interface TypeOrBuilder
        Returns:
        The enum numeric value on the wire for syntax.
      • setSyntaxValue

        public Type.Builder setSyntaxValue​(int value)
        .google.protobuf.Syntax syntax = 6 [json_name = "syntax"];
        Parameters:
        value - The enum numeric value on the wire for syntax to set.
        Returns:
        This builder for chaining.
      • getSyntax

        public Syntax getSyntax()
        .google.protobuf.Syntax syntax = 6 [json_name = "syntax"];
        Specified by:
        getSyntax in interface TypeOrBuilder
        Returns:
        The syntax.
      • setSyntax

        public Type.Builder setSyntax​(Syntax value)
        .google.protobuf.Syntax syntax = 6 [json_name = "syntax"];
        Parameters:
        value - The syntax to set.
        Returns:
        This builder for chaining.
      • clearSyntax

        public Type.Builder clearSyntax()
        .google.protobuf.Syntax syntax = 6 [json_name = "syntax"];
        Returns:
        This builder for chaining.
      • getEdition

        public java.lang.String getEdition()
        string edition = 7 [json_name = "edition"];
        Specified by:
        getEdition in interface TypeOrBuilder
        Returns:
        The edition.
      • getEditionBytes

        public ByteString getEditionBytes()
        string edition = 7 [json_name = "edition"];
        Specified by:
        getEditionBytes in interface TypeOrBuilder
        Returns:
        The bytes for edition.
      • setEdition

        public Type.Builder setEdition​(java.lang.String value)
        string edition = 7 [json_name = "edition"];
        Parameters:
        value - The edition to set.
        Returns:
        This builder for chaining.
      • clearEdition

        public Type.Builder clearEdition()
        string edition = 7 [json_name = "edition"];
        Returns:
        This builder for chaining.
      • setEditionBytes

        public Type.Builder setEditionBytes​(ByteString value)
        string edition = 7 [json_name = "edition"];
        Parameters:
        value - The bytes for edition to set.
        Returns:
        This builder for chaining.