WebAssertions.java

// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: espresso/remote/java/androidx/test/espresso/web/proto/assertion/web_assertions.proto

package androidx.test.espresso.web.proto.assertion;

public final class WebAssertions {
  private WebAssertions() {}
  public static void registerAllExtensions(
      com.google.protobuf.ExtensionRegistryLite registry) {
  }
  public interface CheckResultAssertionProtoOrBuilder extends
      // @@protoc_insertion_point(interface_extends:google.test.remote.web.assertion.CheckResultAssertionProto)
      com.google.protobuf.MessageLiteOrBuilder {

    /**
     * <code>string id = 1;</code>
     * @return The id.
     */
    java.lang.String getId();
    /**
     * <code>string id = 1;</code>
     * @return The bytes for id.
     */
    com.google.protobuf.ByteString
        getIdBytes();

    /**
     * <code>bytes serialisableResult = 2;</code>
     * @return The serialisableResult.
     */
    com.google.protobuf.ByteString getSerialisableResult();

    /**
     * <code>bytes documentResult = 3;</code>
     * @return The documentResult.
     */
    com.google.protobuf.ByteString getDocumentResult();

    /**
     * <code>.google.protobuf.Any anyResult = 4;</code>
     * @return Whether the anyResult field is set.
     */
    boolean hasAnyResult();
    /**
     * <code>.google.protobuf.Any anyResult = 4;</code>
     * @return The anyResult.
     */
    com.google.protobuf.Any getAnyResult();

    /**
     * <code>.google.protobuf.Any webAssertion = 5;</code>
     * @return Whether the webAssertion field is set.
     */
    boolean hasWebAssertion();
    /**
     * <code>.google.protobuf.Any webAssertion = 5;</code>
     * @return The webAssertion.
     */
    com.google.protobuf.Any getWebAssertion();

    public androidx.test.espresso.web.proto.assertion.WebAssertions.CheckResultAssertionProto.ResultCase getResultCase();
  }
  /**
   * Protobuf type {@code google.test.remote.web.assertion.CheckResultAssertionProto}
   */
  public  static final class CheckResultAssertionProto extends
      com.google.protobuf.GeneratedMessageLite<
          CheckResultAssertionProto, CheckResultAssertionProto.Builder> implements
      // @@protoc_insertion_point(message_implements:google.test.remote.web.assertion.CheckResultAssertionProto)
      CheckResultAssertionProtoOrBuilder {
    private CheckResultAssertionProto() {
      id_ = "";
    }
    private int resultCase_ = 0;
    private java.lang.Object result_;
    public enum ResultCase {
      SERIALISABLERESULT(2),
      DOCUMENTRESULT(3),
      ANYRESULT(4),
      RESULT_NOT_SET(0);
      private final int value;
      private ResultCase(int value) {
        this.value = value;
      }
      /**
       * @deprecated Use {@link #forNumber(int)} instead.
       */
      @java.lang.Deprecated
      public static ResultCase valueOf(int value) {
        return forNumber(value);
      }

      public static ResultCase forNumber(int value) {
        switch (value) {
          case 2: return SERIALISABLERESULT;
          case 3: return DOCUMENTRESULT;
          case 4: return ANYRESULT;
          case 0: return RESULT_NOT_SET;
          default: return null;
        }
      }
      public int getNumber() {
        return this.value;
      }
    };

    @java.lang.Override
    public ResultCase
    getResultCase() {
      return ResultCase.forNumber(
          resultCase_);
    }

    private void clearResult() {
      resultCase_ = 0;
      result_ = null;
    }

    public static final int ID_FIELD_NUMBER = 1;
    private java.lang.String id_;
    /**
     * <code>string id = 1;</code>
     * @return The id.
     */
    @java.lang.Override
    public java.lang.String getId() {
      return id_;
    }
    /**
     * <code>string id = 1;</code>
     * @return The bytes for id.
     */
    @java.lang.Override
    public com.google.protobuf.ByteString
        getIdBytes() {
      return com.google.protobuf.ByteString.copyFromUtf8(id_);
    }
    /**
     * <code>string id = 1;</code>
     * @param value The id to set.
     */
    private void setId(
        java.lang.String value) {
      value.getClass();
  
      id_ = value;
    }
    /**
     * <code>string id = 1;</code>
     */
    private void clearId() {
      
      id_ = getDefaultInstance().getId();
    }
    /**
     * <code>string id = 1;</code>
     * @param value The bytes for id to set.
     */
    private void setIdBytes(
        com.google.protobuf.ByteString value) {
      checkByteStringIsUtf8(value);
      id_ = value.toStringUtf8();
      
    }

    public static final int SERIALISABLERESULT_FIELD_NUMBER = 2;
    /**
     * <code>bytes serialisableResult = 2;</code>
     * @return The serialisableResult.
     */
    @java.lang.Override
    public com.google.protobuf.ByteString getSerialisableResult() {
      if (resultCase_ == 2) {
        return (com.google.protobuf.ByteString) result_;
      }
      return com.google.protobuf.ByteString.EMPTY;
    }
    /**
     * <code>bytes serialisableResult = 2;</code>
     * @param value The serialisableResult to set.
     */
    private void setSerialisableResult(com.google.protobuf.ByteString value) {
      value.getClass();
  resultCase_ = 2;
      result_ = value;
    }
    /**
     * <code>bytes serialisableResult = 2;</code>
     */
    private void clearSerialisableResult() {
      if (resultCase_ == 2) {
        resultCase_ = 0;
        result_ = null;
      }
    }

    public static final int DOCUMENTRESULT_FIELD_NUMBER = 3;
    /**
     * <code>bytes documentResult = 3;</code>
     * @return The documentResult.
     */
    @java.lang.Override
    public com.google.protobuf.ByteString getDocumentResult() {
      if (resultCase_ == 3) {
        return (com.google.protobuf.ByteString) result_;
      }
      return com.google.protobuf.ByteString.EMPTY;
    }
    /**
     * <code>bytes documentResult = 3;</code>
     * @param value The documentResult to set.
     */
    private void setDocumentResult(com.google.protobuf.ByteString value) {
      value.getClass();
  resultCase_ = 3;
      result_ = value;
    }
    /**
     * <code>bytes documentResult = 3;</code>
     */
    private void clearDocumentResult() {
      if (resultCase_ == 3) {
        resultCase_ = 0;
        result_ = null;
      }
    }

    public static final int ANYRESULT_FIELD_NUMBER = 4;
    /**
     * <code>.google.protobuf.Any anyResult = 4;</code>
     */
    @java.lang.Override
    public boolean hasAnyResult() {
      return resultCase_ == 4;
    }
    /**
     * <code>.google.protobuf.Any anyResult = 4;</code>
     */
    @java.lang.Override
    public com.google.protobuf.Any getAnyResult() {
      if (resultCase_ == 4) {
         return (com.google.protobuf.Any) result_;
      }
      return com.google.protobuf.Any.getDefaultInstance();
    }
    /**
     * <code>.google.protobuf.Any anyResult = 4;</code>
     */
    private void setAnyResult(com.google.protobuf.Any value) {
      value.getClass();
  result_ = value;
      resultCase_ = 4;
    }
    /**
     * <code>.google.protobuf.Any anyResult = 4;</code>
     */
    private void mergeAnyResult(com.google.protobuf.Any value) {
      value.getClass();
  if (resultCase_ == 4 &&
          result_ != com.google.protobuf.Any.getDefaultInstance()) {
        result_ = com.google.protobuf.Any.newBuilder((com.google.protobuf.Any) result_)
            .mergeFrom(value).buildPartial();
      } else {
        result_ = value;
      }
      resultCase_ = 4;
    }
    /**
     * <code>.google.protobuf.Any anyResult = 4;</code>
     */
    private void clearAnyResult() {
      if (resultCase_ == 4) {
        resultCase_ = 0;
        result_ = null;
      }
    }

    public static final int WEBASSERTION_FIELD_NUMBER = 5;
    private com.google.protobuf.Any webAssertion_;
    /**
     * <code>.google.protobuf.Any webAssertion = 5;</code>
     */
    @java.lang.Override
    public boolean hasWebAssertion() {
      return webAssertion_ != null;
    }
    /**
     * <code>.google.protobuf.Any webAssertion = 5;</code>
     */
    @java.lang.Override
    public com.google.protobuf.Any getWebAssertion() {
      return webAssertion_ == null ? com.google.protobuf.Any.getDefaultInstance() : webAssertion_;
    }
    /**
     * <code>.google.protobuf.Any webAssertion = 5;</code>
     */
    private void setWebAssertion(com.google.protobuf.Any value) {
      value.getClass();
  webAssertion_ = value;
      
      }
    /**
     * <code>.google.protobuf.Any webAssertion = 5;</code>
     */
    @java.lang.SuppressWarnings({"ReferenceEquality"})
    private void mergeWebAssertion(com.google.protobuf.Any value) {
      value.getClass();
  if (webAssertion_ != null &&
          webAssertion_ != com.google.protobuf.Any.getDefaultInstance()) {
        webAssertion_ =
          com.google.protobuf.Any.newBuilder(webAssertion_).mergeFrom(value).buildPartial();
      } else {
        webAssertion_ = value;
      }
      
    }
    /**
     * <code>.google.protobuf.Any webAssertion = 5;</code>
     */
    private void clearWebAssertion() {  webAssertion_ = null;
      
    }

    public static androidx.test.espresso.web.proto.assertion.WebAssertions.CheckResultAssertionProto parseFrom(
        java.nio.ByteBuffer data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, data);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.CheckResultAssertionProto parseFrom(
        java.nio.ByteBuffer data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, data, extensionRegistry);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.CheckResultAssertionProto parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, data);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.CheckResultAssertionProto parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, data, extensionRegistry);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.CheckResultAssertionProto parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, data);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.CheckResultAssertionProto parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, data, extensionRegistry);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.CheckResultAssertionProto parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, input);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.CheckResultAssertionProto parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, input, extensionRegistry);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.CheckResultAssertionProto parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return parseDelimitedFrom(DEFAULT_INSTANCE, input);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.CheckResultAssertionProto parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.CheckResultAssertionProto parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, input);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.CheckResultAssertionProto parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, input, extensionRegistry);
    }

    public static Builder newBuilder() {
      return (Builder) DEFAULT_INSTANCE.createBuilder();
    }
    public static Builder newBuilder(androidx.test.espresso.web.proto.assertion.WebAssertions.CheckResultAssertionProto prototype) {
      return (Builder) DEFAULT_INSTANCE.createBuilder(prototype);
    }

    /**
     * Protobuf type {@code google.test.remote.web.assertion.CheckResultAssertionProto}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessageLite.Builder<
          androidx.test.espresso.web.proto.assertion.WebAssertions.CheckResultAssertionProto, Builder> implements
        // @@protoc_insertion_point(builder_implements:google.test.remote.web.assertion.CheckResultAssertionProto)
        androidx.test.espresso.web.proto.assertion.WebAssertions.CheckResultAssertionProtoOrBuilder {
      // Construct using androidx.test.espresso.web.proto.assertion.WebAssertions.CheckResultAssertionProto.newBuilder()
      private Builder() {
        super(DEFAULT_INSTANCE);
      }

      @java.lang.Override
      public ResultCase
          getResultCase() {
        return instance.getResultCase();
      }

      public Builder clearResult() {
        copyOnWrite();
        instance.clearResult();
        return this;
      }


      /**
       * <code>string id = 1;</code>
       * @return The id.
       */
      @java.lang.Override
      public java.lang.String getId() {
        return instance.getId();
      }
      /**
       * <code>string id = 1;</code>
       * @return The bytes for id.
       */
      @java.lang.Override
      public com.google.protobuf.ByteString
          getIdBytes() {
        return instance.getIdBytes();
      }
      /**
       * <code>string id = 1;</code>
       * @param value The id to set.
       * @return This builder for chaining.
       */
      public Builder setId(
          java.lang.String value) {
        copyOnWrite();
        instance.setId(value);
        return this;
      }
      /**
       * <code>string id = 1;</code>
       * @return This builder for chaining.
       */
      public Builder clearId() {
        copyOnWrite();
        instance.clearId();
        return this;
      }
      /**
       * <code>string id = 1;</code>
       * @param value The bytes for id to set.
       * @return This builder for chaining.
       */
      public Builder setIdBytes(
          com.google.protobuf.ByteString value) {
        copyOnWrite();
        instance.setIdBytes(value);
        return this;
      }

      /**
       * <code>bytes serialisableResult = 2;</code>
       * @return The serialisableResult.
       */
      @java.lang.Override
      public com.google.protobuf.ByteString getSerialisableResult() {
        return instance.getSerialisableResult();
      }
      /**
       * <code>bytes serialisableResult = 2;</code>
       * @param value The serialisableResult to set.
       * @return This builder for chaining.
       */
      public Builder setSerialisableResult(com.google.protobuf.ByteString value) {
        copyOnWrite();
        instance.setSerialisableResult(value);
        return this;
      }
      /**
       * <code>bytes serialisableResult = 2;</code>
       * @return This builder for chaining.
       */
      public Builder clearSerialisableResult() {
        copyOnWrite();
        instance.clearSerialisableResult();
        return this;
      }

      /**
       * <code>bytes documentResult = 3;</code>
       * @return The documentResult.
       */
      @java.lang.Override
      public com.google.protobuf.ByteString getDocumentResult() {
        return instance.getDocumentResult();
      }
      /**
       * <code>bytes documentResult = 3;</code>
       * @param value The documentResult to set.
       * @return This builder for chaining.
       */
      public Builder setDocumentResult(com.google.protobuf.ByteString value) {
        copyOnWrite();
        instance.setDocumentResult(value);
        return this;
      }
      /**
       * <code>bytes documentResult = 3;</code>
       * @return This builder for chaining.
       */
      public Builder clearDocumentResult() {
        copyOnWrite();
        instance.clearDocumentResult();
        return this;
      }

      /**
       * <code>.google.protobuf.Any anyResult = 4;</code>
       */
      @java.lang.Override
      public boolean hasAnyResult() {
        return instance.hasAnyResult();
      }
      /**
       * <code>.google.protobuf.Any anyResult = 4;</code>
       */
      @java.lang.Override
      public com.google.protobuf.Any getAnyResult() {
        return instance.getAnyResult();
      }
      /**
       * <code>.google.protobuf.Any anyResult = 4;</code>
       */
      public Builder setAnyResult(com.google.protobuf.Any value) {
        copyOnWrite();
        instance.setAnyResult(value);
        return this;
      }
      /**
       * <code>.google.protobuf.Any anyResult = 4;</code>
       */
      public Builder setAnyResult(
          com.google.protobuf.Any.Builder builderForValue) {
        copyOnWrite();
        instance.setAnyResult(builderForValue.build());
        return this;
      }
      /**
       * <code>.google.protobuf.Any anyResult = 4;</code>
       */
      public Builder mergeAnyResult(com.google.protobuf.Any value) {
        copyOnWrite();
        instance.mergeAnyResult(value);
        return this;
      }
      /**
       * <code>.google.protobuf.Any anyResult = 4;</code>
       */
      public Builder clearAnyResult() {
        copyOnWrite();
        instance.clearAnyResult();
        return this;
      }

      /**
       * <code>.google.protobuf.Any webAssertion = 5;</code>
       */
      @java.lang.Override
      public boolean hasWebAssertion() {
        return instance.hasWebAssertion();
      }
      /**
       * <code>.google.protobuf.Any webAssertion = 5;</code>
       */
      @java.lang.Override
      public com.google.protobuf.Any getWebAssertion() {
        return instance.getWebAssertion();
      }
      /**
       * <code>.google.protobuf.Any webAssertion = 5;</code>
       */
      public Builder setWebAssertion(com.google.protobuf.Any value) {
        copyOnWrite();
        instance.setWebAssertion(value);
        return this;
        }
      /**
       * <code>.google.protobuf.Any webAssertion = 5;</code>
       */
      public Builder setWebAssertion(
          com.google.protobuf.Any.Builder builderForValue) {
        copyOnWrite();
        instance.setWebAssertion(builderForValue.build());
        return this;
      }
      /**
       * <code>.google.protobuf.Any webAssertion = 5;</code>
       */
      public Builder mergeWebAssertion(com.google.protobuf.Any value) {
        copyOnWrite();
        instance.mergeWebAssertion(value);
        return this;
      }
      /**
       * <code>.google.protobuf.Any webAssertion = 5;</code>
       */
      public Builder clearWebAssertion() {  copyOnWrite();
        instance.clearWebAssertion();
        return this;
      }

      // @@protoc_insertion_point(builder_scope:google.test.remote.web.assertion.CheckResultAssertionProto)
    }
    @java.lang.Override
    @java.lang.SuppressWarnings({"unchecked", "fallthrough"})
    protected final java.lang.Object dynamicMethod(
        com.google.protobuf.GeneratedMessageLite.MethodToInvoke method,
        java.lang.Object arg0, java.lang.Object arg1) {
      switch (method) {
        case NEW_MUTABLE_INSTANCE: {
          return new androidx.test.espresso.web.proto.assertion.WebAssertions.CheckResultAssertionProto();
        }
        case NEW_BUILDER: {
          return new Builder();
        }
        case BUILD_MESSAGE_INFO: {
            java.lang.Object[] objects = new java.lang.Object[] {
              "result_",
              "resultCase_",
              "id_",
              com.google.protobuf.Any.class,
              "webAssertion_",
            };
            java.lang.String info =
                "\u0000\u0005\u0001\u0000\u0001\u0005\u0005\u0000\u0000\u0000\u0001\u0208\u0002=\u0000" +
                "\u0003=\u0000\u0004<\u0000\u0005\t";
            return newMessageInfo(DEFAULT_INSTANCE, info, objects);
        }
        // fall through
        case GET_DEFAULT_INSTANCE: {
          return DEFAULT_INSTANCE;
        }
        case GET_PARSER: {
          com.google.protobuf.Parser<androidx.test.espresso.web.proto.assertion.WebAssertions.CheckResultAssertionProto> parser = PARSER;
          if (parser == null) {
            synchronized (androidx.test.espresso.web.proto.assertion.WebAssertions.CheckResultAssertionProto.class) {
              parser = PARSER;
              if (parser == null) {
                parser =
                    new DefaultInstanceBasedParser<androidx.test.espresso.web.proto.assertion.WebAssertions.CheckResultAssertionProto>(
                        DEFAULT_INSTANCE);
                PARSER = parser;
              }
            }
          }
          return parser;
      }
      case GET_MEMOIZED_IS_INITIALIZED: {
        return (byte) 1;
      }
      case SET_MEMOIZED_IS_INITIALIZED: {
        return null;
      }
      }
      throw new UnsupportedOperationException();
    }


    // @@protoc_insertion_point(class_scope:google.test.remote.web.assertion.CheckResultAssertionProto)
    private static final androidx.test.espresso.web.proto.assertion.WebAssertions.CheckResultAssertionProto DEFAULT_INSTANCE;
    static {
      CheckResultAssertionProto defaultInstance = new CheckResultAssertionProto();
      // New instances are implicitly immutable so no need to make
      // immutable.
      DEFAULT_INSTANCE = defaultInstance;
      com.google.protobuf.GeneratedMessageLite.registerDefaultInstance(
        CheckResultAssertionProto.class, defaultInstance);
    }

    public static androidx.test.espresso.web.proto.assertion.WebAssertions.CheckResultAssertionProto getDefaultInstance() {
      return DEFAULT_INSTANCE;
    }

    private static volatile com.google.protobuf.Parser<CheckResultAssertionProto> PARSER;

    public static com.google.protobuf.Parser<CheckResultAssertionProto> parser() {
      return DEFAULT_INSTANCE.getParserForType();
    }
  }

  public interface ResultCheckingWebAssertionProtoOrBuilder extends
      // @@protoc_insertion_point(interface_extends:google.test.remote.web.assertion.ResultCheckingWebAssertionProto)
      com.google.protobuf.MessageLiteOrBuilder {

    /**
     * <code>string id = 1;</code>
     * @return The id.
     */
    java.lang.String getId();
    /**
     * <code>string id = 1;</code>
     * @return The bytes for id.
     */
    com.google.protobuf.ByteString
        getIdBytes();

    /**
     * <code>.google.protobuf.Any atom = 2;</code>
     * @return Whether the atom field is set.
     */
    boolean hasAtom();
    /**
     * <code>.google.protobuf.Any atom = 2;</code>
     * @return The atom.
     */
    com.google.protobuf.Any getAtom();

    /**
     * <code>.google.protobuf.Any resultMatcher = 3;</code>
     * @return Whether the resultMatcher field is set.
     */
    boolean hasResultMatcher();
    /**
     * <code>.google.protobuf.Any resultMatcher = 3;</code>
     * @return The resultMatcher.
     */
    com.google.protobuf.Any getResultMatcher();

    /**
     * <code>.google.protobuf.Any resultDescriber = 4;</code>
     * @return Whether the resultDescriber field is set.
     */
    boolean hasResultDescriber();
    /**
     * <code>.google.protobuf.Any resultDescriber = 4;</code>
     * @return The resultDescriber.
     */
    com.google.protobuf.Any getResultDescriber();
  }
  /**
   * Protobuf type {@code google.test.remote.web.assertion.ResultCheckingWebAssertionProto}
   */
  public  static final class ResultCheckingWebAssertionProto extends
      com.google.protobuf.GeneratedMessageLite<
          ResultCheckingWebAssertionProto, ResultCheckingWebAssertionProto.Builder> implements
      // @@protoc_insertion_point(message_implements:google.test.remote.web.assertion.ResultCheckingWebAssertionProto)
      ResultCheckingWebAssertionProtoOrBuilder {
    private ResultCheckingWebAssertionProto() {
      id_ = "";
    }
    public static final int ID_FIELD_NUMBER = 1;
    private java.lang.String id_;
    /**
     * <code>string id = 1;</code>
     * @return The id.
     */
    @java.lang.Override
    public java.lang.String getId() {
      return id_;
    }
    /**
     * <code>string id = 1;</code>
     * @return The bytes for id.
     */
    @java.lang.Override
    public com.google.protobuf.ByteString
        getIdBytes() {
      return com.google.protobuf.ByteString.copyFromUtf8(id_);
    }
    /**
     * <code>string id = 1;</code>
     * @param value The id to set.
     */
    private void setId(
        java.lang.String value) {
      value.getClass();
  
      id_ = value;
    }
    /**
     * <code>string id = 1;</code>
     */
    private void clearId() {
      
      id_ = getDefaultInstance().getId();
    }
    /**
     * <code>string id = 1;</code>
     * @param value The bytes for id to set.
     */
    private void setIdBytes(
        com.google.protobuf.ByteString value) {
      checkByteStringIsUtf8(value);
      id_ = value.toStringUtf8();
      
    }

    public static final int ATOM_FIELD_NUMBER = 2;
    private com.google.protobuf.Any atom_;
    /**
     * <code>.google.protobuf.Any atom = 2;</code>
     */
    @java.lang.Override
    public boolean hasAtom() {
      return atom_ != null;
    }
    /**
     * <code>.google.protobuf.Any atom = 2;</code>
     */
    @java.lang.Override
    public com.google.protobuf.Any getAtom() {
      return atom_ == null ? com.google.protobuf.Any.getDefaultInstance() : atom_;
    }
    /**
     * <code>.google.protobuf.Any atom = 2;</code>
     */
    private void setAtom(com.google.protobuf.Any value) {
      value.getClass();
  atom_ = value;
      
      }
    /**
     * <code>.google.protobuf.Any atom = 2;</code>
     */
    @java.lang.SuppressWarnings({"ReferenceEquality"})
    private void mergeAtom(com.google.protobuf.Any value) {
      value.getClass();
  if (atom_ != null &&
          atom_ != com.google.protobuf.Any.getDefaultInstance()) {
        atom_ =
          com.google.protobuf.Any.newBuilder(atom_).mergeFrom(value).buildPartial();
      } else {
        atom_ = value;
      }
      
    }
    /**
     * <code>.google.protobuf.Any atom = 2;</code>
     */
    private void clearAtom() {  atom_ = null;
      
    }

    public static final int RESULTMATCHER_FIELD_NUMBER = 3;
    private com.google.protobuf.Any resultMatcher_;
    /**
     * <code>.google.protobuf.Any resultMatcher = 3;</code>
     */
    @java.lang.Override
    public boolean hasResultMatcher() {
      return resultMatcher_ != null;
    }
    /**
     * <code>.google.protobuf.Any resultMatcher = 3;</code>
     */
    @java.lang.Override
    public com.google.protobuf.Any getResultMatcher() {
      return resultMatcher_ == null ? com.google.protobuf.Any.getDefaultInstance() : resultMatcher_;
    }
    /**
     * <code>.google.protobuf.Any resultMatcher = 3;</code>
     */
    private void setResultMatcher(com.google.protobuf.Any value) {
      value.getClass();
  resultMatcher_ = value;
      
      }
    /**
     * <code>.google.protobuf.Any resultMatcher = 3;</code>
     */
    @java.lang.SuppressWarnings({"ReferenceEquality"})
    private void mergeResultMatcher(com.google.protobuf.Any value) {
      value.getClass();
  if (resultMatcher_ != null &&
          resultMatcher_ != com.google.protobuf.Any.getDefaultInstance()) {
        resultMatcher_ =
          com.google.protobuf.Any.newBuilder(resultMatcher_).mergeFrom(value).buildPartial();
      } else {
        resultMatcher_ = value;
      }
      
    }
    /**
     * <code>.google.protobuf.Any resultMatcher = 3;</code>
     */
    private void clearResultMatcher() {  resultMatcher_ = null;
      
    }

    public static final int RESULTDESCRIBER_FIELD_NUMBER = 4;
    private com.google.protobuf.Any resultDescriber_;
    /**
     * <code>.google.protobuf.Any resultDescriber = 4;</code>
     */
    @java.lang.Override
    public boolean hasResultDescriber() {
      return resultDescriber_ != null;
    }
    /**
     * <code>.google.protobuf.Any resultDescriber = 4;</code>
     */
    @java.lang.Override
    public com.google.protobuf.Any getResultDescriber() {
      return resultDescriber_ == null ? com.google.protobuf.Any.getDefaultInstance() : resultDescriber_;
    }
    /**
     * <code>.google.protobuf.Any resultDescriber = 4;</code>
     */
    private void setResultDescriber(com.google.protobuf.Any value) {
      value.getClass();
  resultDescriber_ = value;
      
      }
    /**
     * <code>.google.protobuf.Any resultDescriber = 4;</code>
     */
    @java.lang.SuppressWarnings({"ReferenceEquality"})
    private void mergeResultDescriber(com.google.protobuf.Any value) {
      value.getClass();
  if (resultDescriber_ != null &&
          resultDescriber_ != com.google.protobuf.Any.getDefaultInstance()) {
        resultDescriber_ =
          com.google.protobuf.Any.newBuilder(resultDescriber_).mergeFrom(value).buildPartial();
      } else {
        resultDescriber_ = value;
      }
      
    }
    /**
     * <code>.google.protobuf.Any resultDescriber = 4;</code>
     */
    private void clearResultDescriber() {  resultDescriber_ = null;
      
    }

    public static androidx.test.espresso.web.proto.assertion.WebAssertions.ResultCheckingWebAssertionProto parseFrom(
        java.nio.ByteBuffer data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, data);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.ResultCheckingWebAssertionProto parseFrom(
        java.nio.ByteBuffer data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, data, extensionRegistry);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.ResultCheckingWebAssertionProto parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, data);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.ResultCheckingWebAssertionProto parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, data, extensionRegistry);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.ResultCheckingWebAssertionProto parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, data);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.ResultCheckingWebAssertionProto parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, data, extensionRegistry);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.ResultCheckingWebAssertionProto parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, input);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.ResultCheckingWebAssertionProto parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, input, extensionRegistry);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.ResultCheckingWebAssertionProto parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return parseDelimitedFrom(DEFAULT_INSTANCE, input);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.ResultCheckingWebAssertionProto parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.ResultCheckingWebAssertionProto parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, input);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.ResultCheckingWebAssertionProto parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, input, extensionRegistry);
    }

    public static Builder newBuilder() {
      return (Builder) DEFAULT_INSTANCE.createBuilder();
    }
    public static Builder newBuilder(androidx.test.espresso.web.proto.assertion.WebAssertions.ResultCheckingWebAssertionProto prototype) {
      return (Builder) DEFAULT_INSTANCE.createBuilder(prototype);
    }

    /**
     * Protobuf type {@code google.test.remote.web.assertion.ResultCheckingWebAssertionProto}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessageLite.Builder<
          androidx.test.espresso.web.proto.assertion.WebAssertions.ResultCheckingWebAssertionProto, Builder> implements
        // @@protoc_insertion_point(builder_implements:google.test.remote.web.assertion.ResultCheckingWebAssertionProto)
        androidx.test.espresso.web.proto.assertion.WebAssertions.ResultCheckingWebAssertionProtoOrBuilder {
      // Construct using androidx.test.espresso.web.proto.assertion.WebAssertions.ResultCheckingWebAssertionProto.newBuilder()
      private Builder() {
        super(DEFAULT_INSTANCE);
      }


      /**
       * <code>string id = 1;</code>
       * @return The id.
       */
      @java.lang.Override
      public java.lang.String getId() {
        return instance.getId();
      }
      /**
       * <code>string id = 1;</code>
       * @return The bytes for id.
       */
      @java.lang.Override
      public com.google.protobuf.ByteString
          getIdBytes() {
        return instance.getIdBytes();
      }
      /**
       * <code>string id = 1;</code>
       * @param value The id to set.
       * @return This builder for chaining.
       */
      public Builder setId(
          java.lang.String value) {
        copyOnWrite();
        instance.setId(value);
        return this;
      }
      /**
       * <code>string id = 1;</code>
       * @return This builder for chaining.
       */
      public Builder clearId() {
        copyOnWrite();
        instance.clearId();
        return this;
      }
      /**
       * <code>string id = 1;</code>
       * @param value The bytes for id to set.
       * @return This builder for chaining.
       */
      public Builder setIdBytes(
          com.google.protobuf.ByteString value) {
        copyOnWrite();
        instance.setIdBytes(value);
        return this;
      }

      /**
       * <code>.google.protobuf.Any atom = 2;</code>
       */
      @java.lang.Override
      public boolean hasAtom() {
        return instance.hasAtom();
      }
      /**
       * <code>.google.protobuf.Any atom = 2;</code>
       */
      @java.lang.Override
      public com.google.protobuf.Any getAtom() {
        return instance.getAtom();
      }
      /**
       * <code>.google.protobuf.Any atom = 2;</code>
       */
      public Builder setAtom(com.google.protobuf.Any value) {
        copyOnWrite();
        instance.setAtom(value);
        return this;
        }
      /**
       * <code>.google.protobuf.Any atom = 2;</code>
       */
      public Builder setAtom(
          com.google.protobuf.Any.Builder builderForValue) {
        copyOnWrite();
        instance.setAtom(builderForValue.build());
        return this;
      }
      /**
       * <code>.google.protobuf.Any atom = 2;</code>
       */
      public Builder mergeAtom(com.google.protobuf.Any value) {
        copyOnWrite();
        instance.mergeAtom(value);
        return this;
      }
      /**
       * <code>.google.protobuf.Any atom = 2;</code>
       */
      public Builder clearAtom() {  copyOnWrite();
        instance.clearAtom();
        return this;
      }

      /**
       * <code>.google.protobuf.Any resultMatcher = 3;</code>
       */
      @java.lang.Override
      public boolean hasResultMatcher() {
        return instance.hasResultMatcher();
      }
      /**
       * <code>.google.protobuf.Any resultMatcher = 3;</code>
       */
      @java.lang.Override
      public com.google.protobuf.Any getResultMatcher() {
        return instance.getResultMatcher();
      }
      /**
       * <code>.google.protobuf.Any resultMatcher = 3;</code>
       */
      public Builder setResultMatcher(com.google.protobuf.Any value) {
        copyOnWrite();
        instance.setResultMatcher(value);
        return this;
        }
      /**
       * <code>.google.protobuf.Any resultMatcher = 3;</code>
       */
      public Builder setResultMatcher(
          com.google.protobuf.Any.Builder builderForValue) {
        copyOnWrite();
        instance.setResultMatcher(builderForValue.build());
        return this;
      }
      /**
       * <code>.google.protobuf.Any resultMatcher = 3;</code>
       */
      public Builder mergeResultMatcher(com.google.protobuf.Any value) {
        copyOnWrite();
        instance.mergeResultMatcher(value);
        return this;
      }
      /**
       * <code>.google.protobuf.Any resultMatcher = 3;</code>
       */
      public Builder clearResultMatcher() {  copyOnWrite();
        instance.clearResultMatcher();
        return this;
      }

      /**
       * <code>.google.protobuf.Any resultDescriber = 4;</code>
       */
      @java.lang.Override
      public boolean hasResultDescriber() {
        return instance.hasResultDescriber();
      }
      /**
       * <code>.google.protobuf.Any resultDescriber = 4;</code>
       */
      @java.lang.Override
      public com.google.protobuf.Any getResultDescriber() {
        return instance.getResultDescriber();
      }
      /**
       * <code>.google.protobuf.Any resultDescriber = 4;</code>
       */
      public Builder setResultDescriber(com.google.protobuf.Any value) {
        copyOnWrite();
        instance.setResultDescriber(value);
        return this;
        }
      /**
       * <code>.google.protobuf.Any resultDescriber = 4;</code>
       */
      public Builder setResultDescriber(
          com.google.protobuf.Any.Builder builderForValue) {
        copyOnWrite();
        instance.setResultDescriber(builderForValue.build());
        return this;
      }
      /**
       * <code>.google.protobuf.Any resultDescriber = 4;</code>
       */
      public Builder mergeResultDescriber(com.google.protobuf.Any value) {
        copyOnWrite();
        instance.mergeResultDescriber(value);
        return this;
      }
      /**
       * <code>.google.protobuf.Any resultDescriber = 4;</code>
       */
      public Builder clearResultDescriber() {  copyOnWrite();
        instance.clearResultDescriber();
        return this;
      }

      // @@protoc_insertion_point(builder_scope:google.test.remote.web.assertion.ResultCheckingWebAssertionProto)
    }
    @java.lang.Override
    @java.lang.SuppressWarnings({"unchecked", "fallthrough"})
    protected final java.lang.Object dynamicMethod(
        com.google.protobuf.GeneratedMessageLite.MethodToInvoke method,
        java.lang.Object arg0, java.lang.Object arg1) {
      switch (method) {
        case NEW_MUTABLE_INSTANCE: {
          return new androidx.test.espresso.web.proto.assertion.WebAssertions.ResultCheckingWebAssertionProto();
        }
        case NEW_BUILDER: {
          return new Builder();
        }
        case BUILD_MESSAGE_INFO: {
            java.lang.Object[] objects = new java.lang.Object[] {
              "id_",
              "atom_",
              "resultMatcher_",
              "resultDescriber_",
            };
            java.lang.String info =
                "\u0000\u0004\u0000\u0000\u0001\u0004\u0004\u0000\u0000\u0000\u0001\u0208\u0002\t" +
                "\u0003\t\u0004\t";
            return newMessageInfo(DEFAULT_INSTANCE, info, objects);
        }
        // fall through
        case GET_DEFAULT_INSTANCE: {
          return DEFAULT_INSTANCE;
        }
        case GET_PARSER: {
          com.google.protobuf.Parser<androidx.test.espresso.web.proto.assertion.WebAssertions.ResultCheckingWebAssertionProto> parser = PARSER;
          if (parser == null) {
            synchronized (androidx.test.espresso.web.proto.assertion.WebAssertions.ResultCheckingWebAssertionProto.class) {
              parser = PARSER;
              if (parser == null) {
                parser =
                    new DefaultInstanceBasedParser<androidx.test.espresso.web.proto.assertion.WebAssertions.ResultCheckingWebAssertionProto>(
                        DEFAULT_INSTANCE);
                PARSER = parser;
              }
            }
          }
          return parser;
      }
      case GET_MEMOIZED_IS_INITIALIZED: {
        return (byte) 1;
      }
      case SET_MEMOIZED_IS_INITIALIZED: {
        return null;
      }
      }
      throw new UnsupportedOperationException();
    }


    // @@protoc_insertion_point(class_scope:google.test.remote.web.assertion.ResultCheckingWebAssertionProto)
    private static final androidx.test.espresso.web.proto.assertion.WebAssertions.ResultCheckingWebAssertionProto DEFAULT_INSTANCE;
    static {
      ResultCheckingWebAssertionProto defaultInstance = new ResultCheckingWebAssertionProto();
      // New instances are implicitly immutable so no need to make
      // immutable.
      DEFAULT_INSTANCE = defaultInstance;
      com.google.protobuf.GeneratedMessageLite.registerDefaultInstance(
        ResultCheckingWebAssertionProto.class, defaultInstance);
    }

    public static androidx.test.espresso.web.proto.assertion.WebAssertions.ResultCheckingWebAssertionProto getDefaultInstance() {
      return DEFAULT_INSTANCE;
    }

    private static volatile com.google.protobuf.Parser<ResultCheckingWebAssertionProto> PARSER;

    public static com.google.protobuf.Parser<ResultCheckingWebAssertionProto> parser() {
      return DEFAULT_INSTANCE.getParserForType();
    }
  }

  public interface ToStringResultDescriberProtoOrBuilder extends
      // @@protoc_insertion_point(interface_extends:google.test.remote.web.assertion.ToStringResultDescriberProto)
      com.google.protobuf.MessageLiteOrBuilder {

    /**
     * <code>string id = 1;</code>
     * @return The id.
     */
    java.lang.String getId();
    /**
     * <code>string id = 1;</code>
     * @return The bytes for id.
     */
    com.google.protobuf.ByteString
        getIdBytes();
  }
  /**
   * Protobuf type {@code google.test.remote.web.assertion.ToStringResultDescriberProto}
   */
  public  static final class ToStringResultDescriberProto extends
      com.google.protobuf.GeneratedMessageLite<
          ToStringResultDescriberProto, ToStringResultDescriberProto.Builder> implements
      // @@protoc_insertion_point(message_implements:google.test.remote.web.assertion.ToStringResultDescriberProto)
      ToStringResultDescriberProtoOrBuilder {
    private ToStringResultDescriberProto() {
      id_ = "";
    }
    public static final int ID_FIELD_NUMBER = 1;
    private java.lang.String id_;
    /**
     * <code>string id = 1;</code>
     * @return The id.
     */
    @java.lang.Override
    public java.lang.String getId() {
      return id_;
    }
    /**
     * <code>string id = 1;</code>
     * @return The bytes for id.
     */
    @java.lang.Override
    public com.google.protobuf.ByteString
        getIdBytes() {
      return com.google.protobuf.ByteString.copyFromUtf8(id_);
    }
    /**
     * <code>string id = 1;</code>
     * @param value The id to set.
     */
    private void setId(
        java.lang.String value) {
      value.getClass();
  
      id_ = value;
    }
    /**
     * <code>string id = 1;</code>
     */
    private void clearId() {
      
      id_ = getDefaultInstance().getId();
    }
    /**
     * <code>string id = 1;</code>
     * @param value The bytes for id to set.
     */
    private void setIdBytes(
        com.google.protobuf.ByteString value) {
      checkByteStringIsUtf8(value);
      id_ = value.toStringUtf8();
      
    }

    public static androidx.test.espresso.web.proto.assertion.WebAssertions.ToStringResultDescriberProto parseFrom(
        java.nio.ByteBuffer data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, data);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.ToStringResultDescriberProto parseFrom(
        java.nio.ByteBuffer data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, data, extensionRegistry);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.ToStringResultDescriberProto parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, data);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.ToStringResultDescriberProto parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, data, extensionRegistry);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.ToStringResultDescriberProto parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, data);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.ToStringResultDescriberProto parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, data, extensionRegistry);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.ToStringResultDescriberProto parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, input);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.ToStringResultDescriberProto parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, input, extensionRegistry);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.ToStringResultDescriberProto parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return parseDelimitedFrom(DEFAULT_INSTANCE, input);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.ToStringResultDescriberProto parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.ToStringResultDescriberProto parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, input);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.ToStringResultDescriberProto parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, input, extensionRegistry);
    }

    public static Builder newBuilder() {
      return (Builder) DEFAULT_INSTANCE.createBuilder();
    }
    public static Builder newBuilder(androidx.test.espresso.web.proto.assertion.WebAssertions.ToStringResultDescriberProto prototype) {
      return (Builder) DEFAULT_INSTANCE.createBuilder(prototype);
    }

    /**
     * Protobuf type {@code google.test.remote.web.assertion.ToStringResultDescriberProto}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessageLite.Builder<
          androidx.test.espresso.web.proto.assertion.WebAssertions.ToStringResultDescriberProto, Builder> implements
        // @@protoc_insertion_point(builder_implements:google.test.remote.web.assertion.ToStringResultDescriberProto)
        androidx.test.espresso.web.proto.assertion.WebAssertions.ToStringResultDescriberProtoOrBuilder {
      // Construct using androidx.test.espresso.web.proto.assertion.WebAssertions.ToStringResultDescriberProto.newBuilder()
      private Builder() {
        super(DEFAULT_INSTANCE);
      }


      /**
       * <code>string id = 1;</code>
       * @return The id.
       */
      @java.lang.Override
      public java.lang.String getId() {
        return instance.getId();
      }
      /**
       * <code>string id = 1;</code>
       * @return The bytes for id.
       */
      @java.lang.Override
      public com.google.protobuf.ByteString
          getIdBytes() {
        return instance.getIdBytes();
      }
      /**
       * <code>string id = 1;</code>
       * @param value The id to set.
       * @return This builder for chaining.
       */
      public Builder setId(
          java.lang.String value) {
        copyOnWrite();
        instance.setId(value);
        return this;
      }
      /**
       * <code>string id = 1;</code>
       * @return This builder for chaining.
       */
      public Builder clearId() {
        copyOnWrite();
        instance.clearId();
        return this;
      }
      /**
       * <code>string id = 1;</code>
       * @param value The bytes for id to set.
       * @return This builder for chaining.
       */
      public Builder setIdBytes(
          com.google.protobuf.ByteString value) {
        copyOnWrite();
        instance.setIdBytes(value);
        return this;
      }

      // @@protoc_insertion_point(builder_scope:google.test.remote.web.assertion.ToStringResultDescriberProto)
    }
    @java.lang.Override
    @java.lang.SuppressWarnings({"unchecked", "fallthrough"})
    protected final java.lang.Object dynamicMethod(
        com.google.protobuf.GeneratedMessageLite.MethodToInvoke method,
        java.lang.Object arg0, java.lang.Object arg1) {
      switch (method) {
        case NEW_MUTABLE_INSTANCE: {
          return new androidx.test.espresso.web.proto.assertion.WebAssertions.ToStringResultDescriberProto();
        }
        case NEW_BUILDER: {
          return new Builder();
        }
        case BUILD_MESSAGE_INFO: {
            java.lang.Object[] objects = new java.lang.Object[] {
              "id_",
            };
            java.lang.String info =
                "\u0000\u0001\u0000\u0000\u0001\u0001\u0001\u0000\u0000\u0000\u0001\u0208";
            return newMessageInfo(DEFAULT_INSTANCE, info, objects);
        }
        // fall through
        case GET_DEFAULT_INSTANCE: {
          return DEFAULT_INSTANCE;
        }
        case GET_PARSER: {
          com.google.protobuf.Parser<androidx.test.espresso.web.proto.assertion.WebAssertions.ToStringResultDescriberProto> parser = PARSER;
          if (parser == null) {
            synchronized (androidx.test.espresso.web.proto.assertion.WebAssertions.ToStringResultDescriberProto.class) {
              parser = PARSER;
              if (parser == null) {
                parser =
                    new DefaultInstanceBasedParser<androidx.test.espresso.web.proto.assertion.WebAssertions.ToStringResultDescriberProto>(
                        DEFAULT_INSTANCE);
                PARSER = parser;
              }
            }
          }
          return parser;
      }
      case GET_MEMOIZED_IS_INITIALIZED: {
        return (byte) 1;
      }
      case SET_MEMOIZED_IS_INITIALIZED: {
        return null;
      }
      }
      throw new UnsupportedOperationException();
    }


    // @@protoc_insertion_point(class_scope:google.test.remote.web.assertion.ToStringResultDescriberProto)
    private static final androidx.test.espresso.web.proto.assertion.WebAssertions.ToStringResultDescriberProto DEFAULT_INSTANCE;
    static {
      ToStringResultDescriberProto defaultInstance = new ToStringResultDescriberProto();
      // New instances are implicitly immutable so no need to make
      // immutable.
      DEFAULT_INSTANCE = defaultInstance;
      com.google.protobuf.GeneratedMessageLite.registerDefaultInstance(
        ToStringResultDescriberProto.class, defaultInstance);
    }

    public static androidx.test.espresso.web.proto.assertion.WebAssertions.ToStringResultDescriberProto getDefaultInstance() {
      return DEFAULT_INSTANCE;
    }

    private static volatile com.google.protobuf.Parser<ToStringResultDescriberProto> PARSER;

    public static com.google.protobuf.Parser<ToStringResultDescriberProto> parser() {
      return DEFAULT_INSTANCE.getParserForType();
    }
  }

  public interface WebContentResultDescriberProtoOrBuilder extends
      // @@protoc_insertion_point(interface_extends:google.test.remote.web.assertion.WebContentResultDescriberProto)
      com.google.protobuf.MessageLiteOrBuilder {

    /**
     * <code>string id = 1;</code>
     * @return The id.
     */
    java.lang.String getId();
    /**
     * <code>string id = 1;</code>
     * @return The bytes for id.
     */
    com.google.protobuf.ByteString
        getIdBytes();
  }
  /**
   * Protobuf type {@code google.test.remote.web.assertion.WebContentResultDescriberProto}
   */
  public  static final class WebContentResultDescriberProto extends
      com.google.protobuf.GeneratedMessageLite<
          WebContentResultDescriberProto, WebContentResultDescriberProto.Builder> implements
      // @@protoc_insertion_point(message_implements:google.test.remote.web.assertion.WebContentResultDescriberProto)
      WebContentResultDescriberProtoOrBuilder {
    private WebContentResultDescriberProto() {
      id_ = "";
    }
    public static final int ID_FIELD_NUMBER = 1;
    private java.lang.String id_;
    /**
     * <code>string id = 1;</code>
     * @return The id.
     */
    @java.lang.Override
    public java.lang.String getId() {
      return id_;
    }
    /**
     * <code>string id = 1;</code>
     * @return The bytes for id.
     */
    @java.lang.Override
    public com.google.protobuf.ByteString
        getIdBytes() {
      return com.google.protobuf.ByteString.copyFromUtf8(id_);
    }
    /**
     * <code>string id = 1;</code>
     * @param value The id to set.
     */
    private void setId(
        java.lang.String value) {
      value.getClass();
  
      id_ = value;
    }
    /**
     * <code>string id = 1;</code>
     */
    private void clearId() {
      
      id_ = getDefaultInstance().getId();
    }
    /**
     * <code>string id = 1;</code>
     * @param value The bytes for id to set.
     */
    private void setIdBytes(
        com.google.protobuf.ByteString value) {
      checkByteStringIsUtf8(value);
      id_ = value.toStringUtf8();
      
    }

    public static androidx.test.espresso.web.proto.assertion.WebAssertions.WebContentResultDescriberProto parseFrom(
        java.nio.ByteBuffer data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, data);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.WebContentResultDescriberProto parseFrom(
        java.nio.ByteBuffer data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, data, extensionRegistry);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.WebContentResultDescriberProto parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, data);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.WebContentResultDescriberProto parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, data, extensionRegistry);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.WebContentResultDescriberProto parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, data);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.WebContentResultDescriberProto parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, data, extensionRegistry);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.WebContentResultDescriberProto parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, input);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.WebContentResultDescriberProto parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, input, extensionRegistry);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.WebContentResultDescriberProto parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return parseDelimitedFrom(DEFAULT_INSTANCE, input);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.WebContentResultDescriberProto parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.WebContentResultDescriberProto parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, input);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.WebContentResultDescriberProto parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, input, extensionRegistry);
    }

    public static Builder newBuilder() {
      return (Builder) DEFAULT_INSTANCE.createBuilder();
    }
    public static Builder newBuilder(androidx.test.espresso.web.proto.assertion.WebAssertions.WebContentResultDescriberProto prototype) {
      return (Builder) DEFAULT_INSTANCE.createBuilder(prototype);
    }

    /**
     * Protobuf type {@code google.test.remote.web.assertion.WebContentResultDescriberProto}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessageLite.Builder<
          androidx.test.espresso.web.proto.assertion.WebAssertions.WebContentResultDescriberProto, Builder> implements
        // @@protoc_insertion_point(builder_implements:google.test.remote.web.assertion.WebContentResultDescriberProto)
        androidx.test.espresso.web.proto.assertion.WebAssertions.WebContentResultDescriberProtoOrBuilder {
      // Construct using androidx.test.espresso.web.proto.assertion.WebAssertions.WebContentResultDescriberProto.newBuilder()
      private Builder() {
        super(DEFAULT_INSTANCE);
      }


      /**
       * <code>string id = 1;</code>
       * @return The id.
       */
      @java.lang.Override
      public java.lang.String getId() {
        return instance.getId();
      }
      /**
       * <code>string id = 1;</code>
       * @return The bytes for id.
       */
      @java.lang.Override
      public com.google.protobuf.ByteString
          getIdBytes() {
        return instance.getIdBytes();
      }
      /**
       * <code>string id = 1;</code>
       * @param value The id to set.
       * @return This builder for chaining.
       */
      public Builder setId(
          java.lang.String value) {
        copyOnWrite();
        instance.setId(value);
        return this;
      }
      /**
       * <code>string id = 1;</code>
       * @return This builder for chaining.
       */
      public Builder clearId() {
        copyOnWrite();
        instance.clearId();
        return this;
      }
      /**
       * <code>string id = 1;</code>
       * @param value The bytes for id to set.
       * @return This builder for chaining.
       */
      public Builder setIdBytes(
          com.google.protobuf.ByteString value) {
        copyOnWrite();
        instance.setIdBytes(value);
        return this;
      }

      // @@protoc_insertion_point(builder_scope:google.test.remote.web.assertion.WebContentResultDescriberProto)
    }
    @java.lang.Override
    @java.lang.SuppressWarnings({"unchecked", "fallthrough"})
    protected final java.lang.Object dynamicMethod(
        com.google.protobuf.GeneratedMessageLite.MethodToInvoke method,
        java.lang.Object arg0, java.lang.Object arg1) {
      switch (method) {
        case NEW_MUTABLE_INSTANCE: {
          return new androidx.test.espresso.web.proto.assertion.WebAssertions.WebContentResultDescriberProto();
        }
        case NEW_BUILDER: {
          return new Builder();
        }
        case BUILD_MESSAGE_INFO: {
            java.lang.Object[] objects = new java.lang.Object[] {
              "id_",
            };
            java.lang.String info =
                "\u0000\u0001\u0000\u0000\u0001\u0001\u0001\u0000\u0000\u0000\u0001\u0208";
            return newMessageInfo(DEFAULT_INSTANCE, info, objects);
        }
        // fall through
        case GET_DEFAULT_INSTANCE: {
          return DEFAULT_INSTANCE;
        }
        case GET_PARSER: {
          com.google.protobuf.Parser<androidx.test.espresso.web.proto.assertion.WebAssertions.WebContentResultDescriberProto> parser = PARSER;
          if (parser == null) {
            synchronized (androidx.test.espresso.web.proto.assertion.WebAssertions.WebContentResultDescriberProto.class) {
              parser = PARSER;
              if (parser == null) {
                parser =
                    new DefaultInstanceBasedParser<androidx.test.espresso.web.proto.assertion.WebAssertions.WebContentResultDescriberProto>(
                        DEFAULT_INSTANCE);
                PARSER = parser;
              }
            }
          }
          return parser;
      }
      case GET_MEMOIZED_IS_INITIALIZED: {
        return (byte) 1;
      }
      case SET_MEMOIZED_IS_INITIALIZED: {
        return null;
      }
      }
      throw new UnsupportedOperationException();
    }


    // @@protoc_insertion_point(class_scope:google.test.remote.web.assertion.WebContentResultDescriberProto)
    private static final androidx.test.espresso.web.proto.assertion.WebAssertions.WebContentResultDescriberProto DEFAULT_INSTANCE;
    static {
      WebContentResultDescriberProto defaultInstance = new WebContentResultDescriberProto();
      // New instances are implicitly immutable so no need to make
      // immutable.
      DEFAULT_INSTANCE = defaultInstance;
      com.google.protobuf.GeneratedMessageLite.registerDefaultInstance(
        WebContentResultDescriberProto.class, defaultInstance);
    }

    public static androidx.test.espresso.web.proto.assertion.WebAssertions.WebContentResultDescriberProto getDefaultInstance() {
      return DEFAULT_INSTANCE;
    }

    private static volatile com.google.protobuf.Parser<WebContentResultDescriberProto> PARSER;

    public static com.google.protobuf.Parser<WebContentResultDescriberProto> parser() {
      return DEFAULT_INSTANCE.getParserForType();
    }
  }

  public interface DocumentParserAtomProtoOrBuilder extends
      // @@protoc_insertion_point(interface_extends:google.test.remote.web.assertion.DocumentParserAtomProto)
      com.google.protobuf.MessageLiteOrBuilder {

    /**
     * <code>string id = 1;</code>
     * @return The id.
     */
    java.lang.String getId();
    /**
     * <code>string id = 1;</code>
     * @return The bytes for id.
     */
    com.google.protobuf.ByteString
        getIdBytes();
  }
  /**
   * Protobuf type {@code google.test.remote.web.assertion.DocumentParserAtomProto}
   */
  public  static final class DocumentParserAtomProto extends
      com.google.protobuf.GeneratedMessageLite<
          DocumentParserAtomProto, DocumentParserAtomProto.Builder> implements
      // @@protoc_insertion_point(message_implements:google.test.remote.web.assertion.DocumentParserAtomProto)
      DocumentParserAtomProtoOrBuilder {
    private DocumentParserAtomProto() {
      id_ = "";
    }
    public static final int ID_FIELD_NUMBER = 1;
    private java.lang.String id_;
    /**
     * <code>string id = 1;</code>
     * @return The id.
     */
    @java.lang.Override
    public java.lang.String getId() {
      return id_;
    }
    /**
     * <code>string id = 1;</code>
     * @return The bytes for id.
     */
    @java.lang.Override
    public com.google.protobuf.ByteString
        getIdBytes() {
      return com.google.protobuf.ByteString.copyFromUtf8(id_);
    }
    /**
     * <code>string id = 1;</code>
     * @param value The id to set.
     */
    private void setId(
        java.lang.String value) {
      value.getClass();
  
      id_ = value;
    }
    /**
     * <code>string id = 1;</code>
     */
    private void clearId() {
      
      id_ = getDefaultInstance().getId();
    }
    /**
     * <code>string id = 1;</code>
     * @param value The bytes for id to set.
     */
    private void setIdBytes(
        com.google.protobuf.ByteString value) {
      checkByteStringIsUtf8(value);
      id_ = value.toStringUtf8();
      
    }

    public static androidx.test.espresso.web.proto.assertion.WebAssertions.DocumentParserAtomProto parseFrom(
        java.nio.ByteBuffer data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, data);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.DocumentParserAtomProto parseFrom(
        java.nio.ByteBuffer data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, data, extensionRegistry);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.DocumentParserAtomProto parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, data);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.DocumentParserAtomProto parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, data, extensionRegistry);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.DocumentParserAtomProto parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, data);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.DocumentParserAtomProto parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, data, extensionRegistry);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.DocumentParserAtomProto parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, input);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.DocumentParserAtomProto parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, input, extensionRegistry);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.DocumentParserAtomProto parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return parseDelimitedFrom(DEFAULT_INSTANCE, input);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.DocumentParserAtomProto parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.DocumentParserAtomProto parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, input);
    }
    public static androidx.test.espresso.web.proto.assertion.WebAssertions.DocumentParserAtomProto parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return com.google.protobuf.GeneratedMessageLite.parseFrom(
          DEFAULT_INSTANCE, input, extensionRegistry);
    }

    public static Builder newBuilder() {
      return (Builder) DEFAULT_INSTANCE.createBuilder();
    }
    public static Builder newBuilder(androidx.test.espresso.web.proto.assertion.WebAssertions.DocumentParserAtomProto prototype) {
      return (Builder) DEFAULT_INSTANCE.createBuilder(prototype);
    }

    /**
     * Protobuf type {@code google.test.remote.web.assertion.DocumentParserAtomProto}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessageLite.Builder<
          androidx.test.espresso.web.proto.assertion.WebAssertions.DocumentParserAtomProto, Builder> implements
        // @@protoc_insertion_point(builder_implements:google.test.remote.web.assertion.DocumentParserAtomProto)
        androidx.test.espresso.web.proto.assertion.WebAssertions.DocumentParserAtomProtoOrBuilder {
      // Construct using androidx.test.espresso.web.proto.assertion.WebAssertions.DocumentParserAtomProto.newBuilder()
      private Builder() {
        super(DEFAULT_INSTANCE);
      }


      /**
       * <code>string id = 1;</code>
       * @return The id.
       */
      @java.lang.Override
      public java.lang.String getId() {
        return instance.getId();
      }
      /**
       * <code>string id = 1;</code>
       * @return The bytes for id.
       */
      @java.lang.Override
      public com.google.protobuf.ByteString
          getIdBytes() {
        return instance.getIdBytes();
      }
      /**
       * <code>string id = 1;</code>
       * @param value The id to set.
       * @return This builder for chaining.
       */
      public Builder setId(
          java.lang.String value) {
        copyOnWrite();
        instance.setId(value);
        return this;
      }
      /**
       * <code>string id = 1;</code>
       * @return This builder for chaining.
       */
      public Builder clearId() {
        copyOnWrite();
        instance.clearId();
        return this;
      }
      /**
       * <code>string id = 1;</code>
       * @param value The bytes for id to set.
       * @return This builder for chaining.
       */
      public Builder setIdBytes(
          com.google.protobuf.ByteString value) {
        copyOnWrite();
        instance.setIdBytes(value);
        return this;
      }

      // @@protoc_insertion_point(builder_scope:google.test.remote.web.assertion.DocumentParserAtomProto)
    }
    @java.lang.Override
    @java.lang.SuppressWarnings({"unchecked", "fallthrough"})
    protected final java.lang.Object dynamicMethod(
        com.google.protobuf.GeneratedMessageLite.MethodToInvoke method,
        java.lang.Object arg0, java.lang.Object arg1) {
      switch (method) {
        case NEW_MUTABLE_INSTANCE: {
          return new androidx.test.espresso.web.proto.assertion.WebAssertions.DocumentParserAtomProto();
        }
        case NEW_BUILDER: {
          return new Builder();
        }
        case BUILD_MESSAGE_INFO: {
            java.lang.Object[] objects = new java.lang.Object[] {
              "id_",
            };
            java.lang.String info =
                "\u0000\u0001\u0000\u0000\u0001\u0001\u0001\u0000\u0000\u0000\u0001\u0208";
            return newMessageInfo(DEFAULT_INSTANCE, info, objects);
        }
        // fall through
        case GET_DEFAULT_INSTANCE: {
          return DEFAULT_INSTANCE;
        }
        case GET_PARSER: {
          com.google.protobuf.Parser<androidx.test.espresso.web.proto.assertion.WebAssertions.DocumentParserAtomProto> parser = PARSER;
          if (parser == null) {
            synchronized (androidx.test.espresso.web.proto.assertion.WebAssertions.DocumentParserAtomProto.class) {
              parser = PARSER;
              if (parser == null) {
                parser =
                    new DefaultInstanceBasedParser<androidx.test.espresso.web.proto.assertion.WebAssertions.DocumentParserAtomProto>(
                        DEFAULT_INSTANCE);
                PARSER = parser;
              }
            }
          }
          return parser;
      }
      case GET_MEMOIZED_IS_INITIALIZED: {
        return (byte) 1;
      }
      case SET_MEMOIZED_IS_INITIALIZED: {
        return null;
      }
      }
      throw new UnsupportedOperationException();
    }


    // @@protoc_insertion_point(class_scope:google.test.remote.web.assertion.DocumentParserAtomProto)
    private static final androidx.test.espresso.web.proto.assertion.WebAssertions.DocumentParserAtomProto DEFAULT_INSTANCE;
    static {
      DocumentParserAtomProto defaultInstance = new DocumentParserAtomProto();
      // New instances are implicitly immutable so no need to make
      // immutable.
      DEFAULT_INSTANCE = defaultInstance;
      com.google.protobuf.GeneratedMessageLite.registerDefaultInstance(
        DocumentParserAtomProto.class, defaultInstance);
    }

    public static androidx.test.espresso.web.proto.assertion.WebAssertions.DocumentParserAtomProto getDefaultInstance() {
      return DEFAULT_INSTANCE;
    }

    private static volatile com.google.protobuf.Parser<DocumentParserAtomProto> PARSER;

    public static com.google.protobuf.Parser<DocumentParserAtomProto> parser() {
      return DEFAULT_INSTANCE.getParserForType();
    }
  }


  static {
  }

  // @@protoc_insertion_point(outer_class_scope)
}