Class BadRequest.FieldViolation.Builder

    • 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<BadRequest.FieldViolation.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<BadRequest.FieldViolation.Builder>
      • getDefaultInstanceForType

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

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

        public BadRequest.FieldViolation buildPartial()
        Specified by:
        buildPartial in interface com.google.protobuf.Message.Builder
        Specified by:
        buildPartial in interface com.google.protobuf.MessageLite.Builder
      • setRepeatedField

        public BadRequest.FieldViolation.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<BadRequest.FieldViolation.Builder>
      • isInitialized

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

        public BadRequest.FieldViolation.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<BadRequest.FieldViolation.Builder>
        Throws:
        IOException
      • getField

        public String getField()
         A path that leads to a field in the request body. The value will be a
         sequence of dot-separated identifiers that identify a protocol buffer
         field.
         Consider the following:
             message CreateContactRequest {
               message EmailAddress {
                 enum Type {
                   TYPE_UNSPECIFIED = 0;
                   HOME = 1;
                   WORK = 2;
                 }
                 optional string email = 1;
                 repeated EmailType type = 2;
               }
               string full_name = 1;
               repeated EmailAddress email_addresses = 2;
             }
         In this example, in proto `field` could take one of the following values:
         * `full_name` for a violation in the `full_name` value
         * `email_addresses[1].email` for a violation in the `email` field of the
           first `email_addresses` message
         * `email_addresses[3].type[2]` for a violation in the second `type`
           value in the third `email_addresses` message.
         In JSON, the same values are represented as:
         * `fullName` for a violation in the `fullName` value
         * `emailAddresses[1].email` for a violation in the `email` field of the
           first `emailAddresses` message
         * `emailAddresses[3].type[2]` for a violation in the second `type`
           value in the third `emailAddresses` message.
         
        string field = 1;
        Specified by:
        getField in interface BadRequest.FieldViolationOrBuilder
        Returns:
        The field.
      • getFieldBytes

        public com.google.protobuf.ByteString getFieldBytes()
         A path that leads to a field in the request body. The value will be a
         sequence of dot-separated identifiers that identify a protocol buffer
         field.
         Consider the following:
             message CreateContactRequest {
               message EmailAddress {
                 enum Type {
                   TYPE_UNSPECIFIED = 0;
                   HOME = 1;
                   WORK = 2;
                 }
                 optional string email = 1;
                 repeated EmailType type = 2;
               }
               string full_name = 1;
               repeated EmailAddress email_addresses = 2;
             }
         In this example, in proto `field` could take one of the following values:
         * `full_name` for a violation in the `full_name` value
         * `email_addresses[1].email` for a violation in the `email` field of the
           first `email_addresses` message
         * `email_addresses[3].type[2]` for a violation in the second `type`
           value in the third `email_addresses` message.
         In JSON, the same values are represented as:
         * `fullName` for a violation in the `fullName` value
         * `emailAddresses[1].email` for a violation in the `email` field of the
           first `emailAddresses` message
         * `emailAddresses[3].type[2]` for a violation in the second `type`
           value in the third `emailAddresses` message.
         
        string field = 1;
        Specified by:
        getFieldBytes in interface BadRequest.FieldViolationOrBuilder
        Returns:
        The bytes for field.
      • setField

        public BadRequest.FieldViolation.Builder setField​(String value)
         A path that leads to a field in the request body. The value will be a
         sequence of dot-separated identifiers that identify a protocol buffer
         field.
         Consider the following:
             message CreateContactRequest {
               message EmailAddress {
                 enum Type {
                   TYPE_UNSPECIFIED = 0;
                   HOME = 1;
                   WORK = 2;
                 }
                 optional string email = 1;
                 repeated EmailType type = 2;
               }
               string full_name = 1;
               repeated EmailAddress email_addresses = 2;
             }
         In this example, in proto `field` could take one of the following values:
         * `full_name` for a violation in the `full_name` value
         * `email_addresses[1].email` for a violation in the `email` field of the
           first `email_addresses` message
         * `email_addresses[3].type[2]` for a violation in the second `type`
           value in the third `email_addresses` message.
         In JSON, the same values are represented as:
         * `fullName` for a violation in the `fullName` value
         * `emailAddresses[1].email` for a violation in the `email` field of the
           first `emailAddresses` message
         * `emailAddresses[3].type[2]` for a violation in the second `type`
           value in the third `emailAddresses` message.
         
        string field = 1;
        Parameters:
        value - The field to set.
        Returns:
        This builder for chaining.
      • clearField

        public BadRequest.FieldViolation.Builder clearField()
         A path that leads to a field in the request body. The value will be a
         sequence of dot-separated identifiers that identify a protocol buffer
         field.
         Consider the following:
             message CreateContactRequest {
               message EmailAddress {
                 enum Type {
                   TYPE_UNSPECIFIED = 0;
                   HOME = 1;
                   WORK = 2;
                 }
                 optional string email = 1;
                 repeated EmailType type = 2;
               }
               string full_name = 1;
               repeated EmailAddress email_addresses = 2;
             }
         In this example, in proto `field` could take one of the following values:
         * `full_name` for a violation in the `full_name` value
         * `email_addresses[1].email` for a violation in the `email` field of the
           first `email_addresses` message
         * `email_addresses[3].type[2]` for a violation in the second `type`
           value in the third `email_addresses` message.
         In JSON, the same values are represented as:
         * `fullName` for a violation in the `fullName` value
         * `emailAddresses[1].email` for a violation in the `email` field of the
           first `emailAddresses` message
         * `emailAddresses[3].type[2]` for a violation in the second `type`
           value in the third `emailAddresses` message.
         
        string field = 1;
        Returns:
        This builder for chaining.
      • setFieldBytes

        public BadRequest.FieldViolation.Builder setFieldBytes​(com.google.protobuf.ByteString value)
         A path that leads to a field in the request body. The value will be a
         sequence of dot-separated identifiers that identify a protocol buffer
         field.
         Consider the following:
             message CreateContactRequest {
               message EmailAddress {
                 enum Type {
                   TYPE_UNSPECIFIED = 0;
                   HOME = 1;
                   WORK = 2;
                 }
                 optional string email = 1;
                 repeated EmailType type = 2;
               }
               string full_name = 1;
               repeated EmailAddress email_addresses = 2;
             }
         In this example, in proto `field` could take one of the following values:
         * `full_name` for a violation in the `full_name` value
         * `email_addresses[1].email` for a violation in the `email` field of the
           first `email_addresses` message
         * `email_addresses[3].type[2]` for a violation in the second `type`
           value in the third `email_addresses` message.
         In JSON, the same values are represented as:
         * `fullName` for a violation in the `fullName` value
         * `emailAddresses[1].email` for a violation in the `email` field of the
           first `emailAddresses` message
         * `emailAddresses[3].type[2]` for a violation in the second `type`
           value in the third `emailAddresses` message.
         
        string field = 1;
        Parameters:
        value - The bytes for field to set.
        Returns:
        This builder for chaining.
      • getDescriptionBytes

        public com.google.protobuf.ByteString getDescriptionBytes()
         A description of why the request element is bad.
         
        string description = 2;
        Specified by:
        getDescriptionBytes in interface BadRequest.FieldViolationOrBuilder
        Returns:
        The bytes for description.
      • setDescription

        public BadRequest.FieldViolation.Builder setDescription​(String value)
         A description of why the request element is bad.
         
        string description = 2;
        Parameters:
        value - The description to set.
        Returns:
        This builder for chaining.
      • clearDescription

        public BadRequest.FieldViolation.Builder clearDescription()
         A description of why the request element is bad.
         
        string description = 2;
        Returns:
        This builder for chaining.
      • setDescriptionBytes

        public BadRequest.FieldViolation.Builder setDescriptionBytes​(com.google.protobuf.ByteString value)
         A description of why the request element is bad.
         
        string description = 2;
        Parameters:
        value - The bytes for description to set.
        Returns:
        This builder for chaining.
      • setUnknownFields

        public final BadRequest.FieldViolation.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<BadRequest.FieldViolation.Builder>
      • mergeUnknownFields

        public final BadRequest.FieldViolation.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<BadRequest.FieldViolation.Builder>