/*
 * Copyright 2020 Google LLC
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/analytics/data/v1alpha/data.proto

package com.google.analytics.data.v1alpha;

/**
 *
 *
 * <pre>
 * Event segments are subsets of events that were triggered on your site or app.
 * for example, all purchase events made in a particular location; app_exception
 * events that occurred on a specific operating system.
 * </pre>
 *
 * Protobuf type {@code google.analytics.data.v1alpha.EventSegment}
 */
public final class EventSegment extends com.google.protobuf.GeneratedMessageV3
    implements
    // @@protoc_insertion_point(message_implements:google.analytics.data.v1alpha.EventSegment)
    EventSegmentOrBuilder {
  private static final long serialVersionUID = 0L;
  // Use EventSegment.newBuilder() to construct.
  private EventSegment(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {
    super(builder);
  }

  private EventSegment() {}

  @java.lang.Override
  @SuppressWarnings({"unused"})
  protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
    return new EventSegment();
  }

  @java.lang.Override
  public final com.google.protobuf.UnknownFieldSet getUnknownFields() {
    return this.unknownFields;
  }

  public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
    return com.google.analytics.data.v1alpha.ReportingApiProto
        .internal_static_google_analytics_data_v1alpha_EventSegment_descriptor;
  }

  @java.lang.Override
  protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return com.google.analytics.data.v1alpha.ReportingApiProto
        .internal_static_google_analytics_data_v1alpha_EventSegment_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            com.google.analytics.data.v1alpha.EventSegment.class,
            com.google.analytics.data.v1alpha.EventSegment.Builder.class);
  }

  public static final int EVENT_INCLUSION_CRITERIA_FIELD_NUMBER = 1;
  private com.google.analytics.data.v1alpha.EventSegmentCriteria eventInclusionCriteria_;
  /**
   *
   *
   * <pre>
   * Defines which events are included in this segment. Optional.
   * </pre>
   *
   * <code>.google.analytics.data.v1alpha.EventSegmentCriteria event_inclusion_criteria = 1;</code>
   *
   * @return Whether the eventInclusionCriteria field is set.
   */
  @java.lang.Override
  public boolean hasEventInclusionCriteria() {
    return eventInclusionCriteria_ != null;
  }
  /**
   *
   *
   * <pre>
   * Defines which events are included in this segment. Optional.
   * </pre>
   *
   * <code>.google.analytics.data.v1alpha.EventSegmentCriteria event_inclusion_criteria = 1;</code>
   *
   * @return The eventInclusionCriteria.
   */
  @java.lang.Override
  public com.google.analytics.data.v1alpha.EventSegmentCriteria getEventInclusionCriteria() {
    return eventInclusionCriteria_ == null
        ? com.google.analytics.data.v1alpha.EventSegmentCriteria.getDefaultInstance()
        : eventInclusionCriteria_;
  }
  /**
   *
   *
   * <pre>
   * Defines which events are included in this segment. Optional.
   * </pre>
   *
   * <code>.google.analytics.data.v1alpha.EventSegmentCriteria event_inclusion_criteria = 1;</code>
   */
  @java.lang.Override
  public com.google.analytics.data.v1alpha.EventSegmentCriteriaOrBuilder
      getEventInclusionCriteriaOrBuilder() {
    return eventInclusionCriteria_ == null
        ? com.google.analytics.data.v1alpha.EventSegmentCriteria.getDefaultInstance()
        : eventInclusionCriteria_;
  }

  public static final int EXCLUSION_FIELD_NUMBER = 2;
  private com.google.analytics.data.v1alpha.EventSegmentExclusion exclusion_;
  /**
   *
   *
   * <pre>
   * Defines which events are excluded in this segment. Optional.
   * </pre>
   *
   * <code>.google.analytics.data.v1alpha.EventSegmentExclusion exclusion = 2;</code>
   *
   * @return Whether the exclusion field is set.
   */
  @java.lang.Override
  public boolean hasExclusion() {
    return exclusion_ != null;
  }
  /**
   *
   *
   * <pre>
   * Defines which events are excluded in this segment. Optional.
   * </pre>
   *
   * <code>.google.analytics.data.v1alpha.EventSegmentExclusion exclusion = 2;</code>
   *
   * @return The exclusion.
   */
  @java.lang.Override
  public com.google.analytics.data.v1alpha.EventSegmentExclusion getExclusion() {
    return exclusion_ == null
        ? com.google.analytics.data.v1alpha.EventSegmentExclusion.getDefaultInstance()
        : exclusion_;
  }
  /**
   *
   *
   * <pre>
   * Defines which events are excluded in this segment. Optional.
   * </pre>
   *
   * <code>.google.analytics.data.v1alpha.EventSegmentExclusion exclusion = 2;</code>
   */
  @java.lang.Override
  public com.google.analytics.data.v1alpha.EventSegmentExclusionOrBuilder getExclusionOrBuilder() {
    return exclusion_ == null
        ? com.google.analytics.data.v1alpha.EventSegmentExclusion.getDefaultInstance()
        : exclusion_;
  }

  private byte memoizedIsInitialized = -1;

  @java.lang.Override
  public final boolean isInitialized() {
    byte isInitialized = memoizedIsInitialized;
    if (isInitialized == 1) return true;
    if (isInitialized == 0) return false;

    memoizedIsInitialized = 1;
    return true;
  }

  @java.lang.Override
  public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
    if (eventInclusionCriteria_ != null) {
      output.writeMessage(1, getEventInclusionCriteria());
    }
    if (exclusion_ != null) {
      output.writeMessage(2, getExclusion());
    }
    getUnknownFields().writeTo(output);
  }

  @java.lang.Override
  public int getSerializedSize() {
    int size = memoizedSize;
    if (size != -1) return size;

    size = 0;
    if (eventInclusionCriteria_ != null) {
      size +=
          com.google.protobuf.CodedOutputStream.computeMessageSize(1, getEventInclusionCriteria());
    }
    if (exclusion_ != null) {
      size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, getExclusion());
    }
    size += getUnknownFields().getSerializedSize();
    memoizedSize = size;
    return size;
  }

  @java.lang.Override
  public boolean equals(final java.lang.Object obj) {
    if (obj == this) {
      return true;
    }
    if (!(obj instanceof com.google.analytics.data.v1alpha.EventSegment)) {
      return super.equals(obj);
    }
    com.google.analytics.data.v1alpha.EventSegment other =
        (com.google.analytics.data.v1alpha.EventSegment) obj;

    if (hasEventInclusionCriteria() != other.hasEventInclusionCriteria()) return false;
    if (hasEventInclusionCriteria()) {
      if (!getEventInclusionCriteria().equals(other.getEventInclusionCriteria())) return false;
    }
    if (hasExclusion() != other.hasExclusion()) return false;
    if (hasExclusion()) {
      if (!getExclusion().equals(other.getExclusion())) return false;
    }
    if (!getUnknownFields().equals(other.getUnknownFields())) return false;
    return true;
  }

  @java.lang.Override
  public int hashCode() {
    if (memoizedHashCode != 0) {
      return memoizedHashCode;
    }
    int hash = 41;
    hash = (19 * hash) + getDescriptor().hashCode();
    if (hasEventInclusionCriteria()) {
      hash = (37 * hash) + EVENT_INCLUSION_CRITERIA_FIELD_NUMBER;
      hash = (53 * hash) + getEventInclusionCriteria().hashCode();
    }
    if (hasExclusion()) {
      hash = (37 * hash) + EXCLUSION_FIELD_NUMBER;
      hash = (53 * hash) + getExclusion().hashCode();
    }
    hash = (29 * hash) + getUnknownFields().hashCode();
    memoizedHashCode = hash;
    return hash;
  }

  public static com.google.analytics.data.v1alpha.EventSegment parseFrom(java.nio.ByteBuffer data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }

  public static com.google.analytics.data.v1alpha.EventSegment parseFrom(
      java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }

  public static com.google.analytics.data.v1alpha.EventSegment parseFrom(
      com.google.protobuf.ByteString data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }

  public static com.google.analytics.data.v1alpha.EventSegment parseFrom(
      com.google.protobuf.ByteString data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }

  public static com.google.analytics.data.v1alpha.EventSegment parseFrom(byte[] data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }

  public static com.google.analytics.data.v1alpha.EventSegment parseFrom(
      byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }

  public static com.google.analytics.data.v1alpha.EventSegment parseFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
  }

  public static com.google.analytics.data.v1alpha.EventSegment parseFrom(
      java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
        PARSER, input, extensionRegistry);
  }

  public static com.google.analytics.data.v1alpha.EventSegment parseDelimitedFrom(
      java.io.InputStream input) throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
  }

  public static com.google.analytics.data.v1alpha.EventSegment parseDelimitedFrom(
      java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
        PARSER, input, extensionRegistry);
  }

  public static com.google.analytics.data.v1alpha.EventSegment parseFrom(
      com.google.protobuf.CodedInputStream input) throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
  }

  public static com.google.analytics.data.v1alpha.EventSegment parseFrom(
      com.google.protobuf.CodedInputStream input,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
        PARSER, input, extensionRegistry);
  }

  @java.lang.Override
  public Builder newBuilderForType() {
    return newBuilder();
  }

  public static Builder newBuilder() {
    return DEFAULT_INSTANCE.toBuilder();
  }

  public static Builder newBuilder(com.google.analytics.data.v1alpha.EventSegment prototype) {
    return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
  }

  @java.lang.Override
  public Builder toBuilder() {
    return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
  }

  @java.lang.Override
  protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
    Builder builder = new Builder(parent);
    return builder;
  }
  /**
   *
   *
   * <pre>
   * Event segments are subsets of events that were triggered on your site or app.
   * for example, all purchase events made in a particular location; app_exception
   * events that occurred on a specific operating system.
   * </pre>
   *
   * Protobuf type {@code google.analytics.data.v1alpha.EventSegment}
   */
  public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder<Builder>
      implements
      // @@protoc_insertion_point(builder_implements:google.analytics.data.v1alpha.EventSegment)
      com.google.analytics.data.v1alpha.EventSegmentOrBuilder {
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
      return com.google.analytics.data.v1alpha.ReportingApiProto
          .internal_static_google_analytics_data_v1alpha_EventSegment_descriptor;
    }

    @java.lang.Override
    protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return com.google.analytics.data.v1alpha.ReportingApiProto
          .internal_static_google_analytics_data_v1alpha_EventSegment_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              com.google.analytics.data.v1alpha.EventSegment.class,
              com.google.analytics.data.v1alpha.EventSegment.Builder.class);
    }

    // Construct using com.google.analytics.data.v1alpha.EventSegment.newBuilder()
    private Builder() {}

    private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
      super(parent);
    }

    @java.lang.Override
    public Builder clear() {
      super.clear();
      bitField0_ = 0;
      eventInclusionCriteria_ = null;
      if (eventInclusionCriteriaBuilder_ != null) {
        eventInclusionCriteriaBuilder_.dispose();
        eventInclusionCriteriaBuilder_ = null;
      }
      exclusion_ = null;
      if (exclusionBuilder_ != null) {
        exclusionBuilder_.dispose();
        exclusionBuilder_ = null;
      }
      return this;
    }

    @java.lang.Override
    public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
      return com.google.analytics.data.v1alpha.ReportingApiProto
          .internal_static_google_analytics_data_v1alpha_EventSegment_descriptor;
    }

    @java.lang.Override
    public com.google.analytics.data.v1alpha.EventSegment getDefaultInstanceForType() {
      return com.google.analytics.data.v1alpha.EventSegment.getDefaultInstance();
    }

    @java.lang.Override
    public com.google.analytics.data.v1alpha.EventSegment build() {
      com.google.analytics.data.v1alpha.EventSegment result = buildPartial();
      if (!result.isInitialized()) {
        throw newUninitializedMessageException(result);
      }
      return result;
    }

    @java.lang.Override
    public com.google.analytics.data.v1alpha.EventSegment buildPartial() {
      com.google.analytics.data.v1alpha.EventSegment result =
          new com.google.analytics.data.v1alpha.EventSegment(this);
      if (bitField0_ != 0) {
        buildPartial0(result);
      }
      onBuilt();
      return result;
    }

    private void buildPartial0(com.google.analytics.data.v1alpha.EventSegment result) {
      int from_bitField0_ = bitField0_;
      if (((from_bitField0_ & 0x00000001) != 0)) {
        result.eventInclusionCriteria_ =
            eventInclusionCriteriaBuilder_ == null
                ? eventInclusionCriteria_
                : eventInclusionCriteriaBuilder_.build();
      }
      if (((from_bitField0_ & 0x00000002) != 0)) {
        result.exclusion_ = exclusionBuilder_ == null ? exclusion_ : exclusionBuilder_.build();
      }
    }

    @java.lang.Override
    public Builder clone() {
      return super.clone();
    }

    @java.lang.Override
    public Builder setField(
        com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
      return super.setField(field, value);
    }

    @java.lang.Override
    public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
      return super.clearField(field);
    }

    @java.lang.Override
    public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
      return super.clearOneof(oneof);
    }

    @java.lang.Override
    public Builder setRepeatedField(
        com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) {
      return super.setRepeatedField(field, index, value);
    }

    @java.lang.Override
    public Builder addRepeatedField(
        com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
      return super.addRepeatedField(field, value);
    }

    @java.lang.Override
    public Builder mergeFrom(com.google.protobuf.Message other) {
      if (other instanceof com.google.analytics.data.v1alpha.EventSegment) {
        return mergeFrom((com.google.analytics.data.v1alpha.EventSegment) other);
      } else {
        super.mergeFrom(other);
        return this;
      }
    }

    public Builder mergeFrom(com.google.analytics.data.v1alpha.EventSegment other) {
      if (other == com.google.analytics.data.v1alpha.EventSegment.getDefaultInstance()) return this;
      if (other.hasEventInclusionCriteria()) {
        mergeEventInclusionCriteria(other.getEventInclusionCriteria());
      }
      if (other.hasExclusion()) {
        mergeExclusion(other.getExclusion());
      }
      this.mergeUnknownFields(other.getUnknownFields());
      onChanged();
      return this;
    }

    @java.lang.Override
    public final boolean isInitialized() {
      return true;
    }

    @java.lang.Override
    public Builder mergeFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      if (extensionRegistry == null) {
        throw new java.lang.NullPointerException();
      }
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            case 10:
              {
                input.readMessage(
                    getEventInclusionCriteriaFieldBuilder().getBuilder(), extensionRegistry);
                bitField0_ |= 0x00000001;
                break;
              } // case 10
            case 18:
              {
                input.readMessage(getExclusionFieldBuilder().getBuilder(), extensionRegistry);
                bitField0_ |= 0x00000002;
                break;
              } // case 18
            default:
              {
                if (!super.parseUnknownField(input, extensionRegistry, tag)) {
                  done = true; // was an endgroup tag
                }
                break;
              } // default:
          } // switch (tag)
        } // while (!done)
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.unwrapIOException();
      } finally {
        onChanged();
      } // finally
      return this;
    }

    private int bitField0_;

    private com.google.analytics.data.v1alpha.EventSegmentCriteria eventInclusionCriteria_;
    private com.google.protobuf.SingleFieldBuilderV3<
            com.google.analytics.data.v1alpha.EventSegmentCriteria,
            com.google.analytics.data.v1alpha.EventSegmentCriteria.Builder,
            com.google.analytics.data.v1alpha.EventSegmentCriteriaOrBuilder>
        eventInclusionCriteriaBuilder_;
    /**
     *
     *
     * <pre>
     * Defines which events are included in this segment. Optional.
     * </pre>
     *
     * <code>.google.analytics.data.v1alpha.EventSegmentCriteria event_inclusion_criteria = 1;
     * </code>
     *
     * @return Whether the eventInclusionCriteria field is set.
     */
    public boolean hasEventInclusionCriteria() {
      return ((bitField0_ & 0x00000001) != 0);
    }
    /**
     *
     *
     * <pre>
     * Defines which events are included in this segment. Optional.
     * </pre>
     *
     * <code>.google.analytics.data.v1alpha.EventSegmentCriteria event_inclusion_criteria = 1;
     * </code>
     *
     * @return The eventInclusionCriteria.
     */
    public com.google.analytics.data.v1alpha.EventSegmentCriteria getEventInclusionCriteria() {
      if (eventInclusionCriteriaBuilder_ == null) {
        return eventInclusionCriteria_ == null
            ? com.google.analytics.data.v1alpha.EventSegmentCriteria.getDefaultInstance()
            : eventInclusionCriteria_;
      } else {
        return eventInclusionCriteriaBuilder_.getMessage();
      }
    }
    /**
     *
     *
     * <pre>
     * Defines which events are included in this segment. Optional.
     * </pre>
     *
     * <code>.google.analytics.data.v1alpha.EventSegmentCriteria event_inclusion_criteria = 1;
     * </code>
     */
    public Builder setEventInclusionCriteria(
        com.google.analytics.data.v1alpha.EventSegmentCriteria value) {
      if (eventInclusionCriteriaBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        eventInclusionCriteria_ = value;
      } else {
        eventInclusionCriteriaBuilder_.setMessage(value);
      }
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Defines which events are included in this segment. Optional.
     * </pre>
     *
     * <code>.google.analytics.data.v1alpha.EventSegmentCriteria event_inclusion_criteria = 1;
     * </code>
     */
    public Builder setEventInclusionCriteria(
        com.google.analytics.data.v1alpha.EventSegmentCriteria.Builder builderForValue) {
      if (eventInclusionCriteriaBuilder_ == null) {
        eventInclusionCriteria_ = builderForValue.build();
      } else {
        eventInclusionCriteriaBuilder_.setMessage(builderForValue.build());
      }
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Defines which events are included in this segment. Optional.
     * </pre>
     *
     * <code>.google.analytics.data.v1alpha.EventSegmentCriteria event_inclusion_criteria = 1;
     * </code>
     */
    public Builder mergeEventInclusionCriteria(
        com.google.analytics.data.v1alpha.EventSegmentCriteria value) {
      if (eventInclusionCriteriaBuilder_ == null) {
        if (((bitField0_ & 0x00000001) != 0)
            && eventInclusionCriteria_ != null
            && eventInclusionCriteria_
                != com.google.analytics.data.v1alpha.EventSegmentCriteria.getDefaultInstance()) {
          getEventInclusionCriteriaBuilder().mergeFrom(value);
        } else {
          eventInclusionCriteria_ = value;
        }
      } else {
        eventInclusionCriteriaBuilder_.mergeFrom(value);
      }
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Defines which events are included in this segment. Optional.
     * </pre>
     *
     * <code>.google.analytics.data.v1alpha.EventSegmentCriteria event_inclusion_criteria = 1;
     * </code>
     */
    public Builder clearEventInclusionCriteria() {
      bitField0_ = (bitField0_ & ~0x00000001);
      eventInclusionCriteria_ = null;
      if (eventInclusionCriteriaBuilder_ != null) {
        eventInclusionCriteriaBuilder_.dispose();
        eventInclusionCriteriaBuilder_ = null;
      }
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Defines which events are included in this segment. Optional.
     * </pre>
     *
     * <code>.google.analytics.data.v1alpha.EventSegmentCriteria event_inclusion_criteria = 1;
     * </code>
     */
    public com.google.analytics.data.v1alpha.EventSegmentCriteria.Builder
        getEventInclusionCriteriaBuilder() {
      bitField0_ |= 0x00000001;
      onChanged();
      return getEventInclusionCriteriaFieldBuilder().getBuilder();
    }
    /**
     *
     *
     * <pre>
     * Defines which events are included in this segment. Optional.
     * </pre>
     *
     * <code>.google.analytics.data.v1alpha.EventSegmentCriteria event_inclusion_criteria = 1;
     * </code>
     */
    public com.google.analytics.data.v1alpha.EventSegmentCriteriaOrBuilder
        getEventInclusionCriteriaOrBuilder() {
      if (eventInclusionCriteriaBuilder_ != null) {
        return eventInclusionCriteriaBuilder_.getMessageOrBuilder();
      } else {
        return eventInclusionCriteria_ == null
            ? com.google.analytics.data.v1alpha.EventSegmentCriteria.getDefaultInstance()
            : eventInclusionCriteria_;
      }
    }
    /**
     *
     *
     * <pre>
     * Defines which events are included in this segment. Optional.
     * </pre>
     *
     * <code>.google.analytics.data.v1alpha.EventSegmentCriteria event_inclusion_criteria = 1;
     * </code>
     */
    private com.google.protobuf.SingleFieldBuilderV3<
            com.google.analytics.data.v1alpha.EventSegmentCriteria,
            com.google.analytics.data.v1alpha.EventSegmentCriteria.Builder,
            com.google.analytics.data.v1alpha.EventSegmentCriteriaOrBuilder>
        getEventInclusionCriteriaFieldBuilder() {
      if (eventInclusionCriteriaBuilder_ == null) {
        eventInclusionCriteriaBuilder_ =
            new com.google.protobuf.SingleFieldBuilderV3<
                com.google.analytics.data.v1alpha.EventSegmentCriteria,
                com.google.analytics.data.v1alpha.EventSegmentCriteria.Builder,
                com.google.analytics.data.v1alpha.EventSegmentCriteriaOrBuilder>(
                getEventInclusionCriteria(), getParentForChildren(), isClean());
        eventInclusionCriteria_ = null;
      }
      return eventInclusionCriteriaBuilder_;
    }

    private com.google.analytics.data.v1alpha.EventSegmentExclusion exclusion_;
    private com.google.protobuf.SingleFieldBuilderV3<
            com.google.analytics.data.v1alpha.EventSegmentExclusion,
            com.google.analytics.data.v1alpha.EventSegmentExclusion.Builder,
            com.google.analytics.data.v1alpha.EventSegmentExclusionOrBuilder>
        exclusionBuilder_;
    /**
     *
     *
     * <pre>
     * Defines which events are excluded in this segment. Optional.
     * </pre>
     *
     * <code>.google.analytics.data.v1alpha.EventSegmentExclusion exclusion = 2;</code>
     *
     * @return Whether the exclusion field is set.
     */
    public boolean hasExclusion() {
      return ((bitField0_ & 0x00000002) != 0);
    }
    /**
     *
     *
     * <pre>
     * Defines which events are excluded in this segment. Optional.
     * </pre>
     *
     * <code>.google.analytics.data.v1alpha.EventSegmentExclusion exclusion = 2;</code>
     *
     * @return The exclusion.
     */
    public com.google.analytics.data.v1alpha.EventSegmentExclusion getExclusion() {
      if (exclusionBuilder_ == null) {
        return exclusion_ == null
            ? com.google.analytics.data.v1alpha.EventSegmentExclusion.getDefaultInstance()
            : exclusion_;
      } else {
        return exclusionBuilder_.getMessage();
      }
    }
    /**
     *
     *
     * <pre>
     * Defines which events are excluded in this segment. Optional.
     * </pre>
     *
     * <code>.google.analytics.data.v1alpha.EventSegmentExclusion exclusion = 2;</code>
     */
    public Builder setExclusion(com.google.analytics.data.v1alpha.EventSegmentExclusion value) {
      if (exclusionBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        exclusion_ = value;
      } else {
        exclusionBuilder_.setMessage(value);
      }
      bitField0_ |= 0x00000002;
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Defines which events are excluded in this segment. Optional.
     * </pre>
     *
     * <code>.google.analytics.data.v1alpha.EventSegmentExclusion exclusion = 2;</code>
     */
    public Builder setExclusion(
        com.google.analytics.data.v1alpha.EventSegmentExclusion.Builder builderForValue) {
      if (exclusionBuilder_ == null) {
        exclusion_ = builderForValue.build();
      } else {
        exclusionBuilder_.setMessage(builderForValue.build());
      }
      bitField0_ |= 0x00000002;
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Defines which events are excluded in this segment. Optional.
     * </pre>
     *
     * <code>.google.analytics.data.v1alpha.EventSegmentExclusion exclusion = 2;</code>
     */
    public Builder mergeExclusion(com.google.analytics.data.v1alpha.EventSegmentExclusion value) {
      if (exclusionBuilder_ == null) {
        if (((bitField0_ & 0x00000002) != 0)
            && exclusion_ != null
            && exclusion_
                != com.google.analytics.data.v1alpha.EventSegmentExclusion.getDefaultInstance()) {
          getExclusionBuilder().mergeFrom(value);
        } else {
          exclusion_ = value;
        }
      } else {
        exclusionBuilder_.mergeFrom(value);
      }
      bitField0_ |= 0x00000002;
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Defines which events are excluded in this segment. Optional.
     * </pre>
     *
     * <code>.google.analytics.data.v1alpha.EventSegmentExclusion exclusion = 2;</code>
     */
    public Builder clearExclusion() {
      bitField0_ = (bitField0_ & ~0x00000002);
      exclusion_ = null;
      if (exclusionBuilder_ != null) {
        exclusionBuilder_.dispose();
        exclusionBuilder_ = null;
      }
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Defines which events are excluded in this segment. Optional.
     * </pre>
     *
     * <code>.google.analytics.data.v1alpha.EventSegmentExclusion exclusion = 2;</code>
     */
    public com.google.analytics.data.v1alpha.EventSegmentExclusion.Builder getExclusionBuilder() {
      bitField0_ |= 0x00000002;
      onChanged();
      return getExclusionFieldBuilder().getBuilder();
    }
    /**
     *
     *
     * <pre>
     * Defines which events are excluded in this segment. Optional.
     * </pre>
     *
     * <code>.google.analytics.data.v1alpha.EventSegmentExclusion exclusion = 2;</code>
     */
    public com.google.analytics.data.v1alpha.EventSegmentExclusionOrBuilder
        getExclusionOrBuilder() {
      if (exclusionBuilder_ != null) {
        return exclusionBuilder_.getMessageOrBuilder();
      } else {
        return exclusion_ == null
            ? com.google.analytics.data.v1alpha.EventSegmentExclusion.getDefaultInstance()
            : exclusion_;
      }
    }
    /**
     *
     *
     * <pre>
     * Defines which events are excluded in this segment. Optional.
     * </pre>
     *
     * <code>.google.analytics.data.v1alpha.EventSegmentExclusion exclusion = 2;</code>
     */
    private com.google.protobuf.SingleFieldBuilderV3<
            com.google.analytics.data.v1alpha.EventSegmentExclusion,
            com.google.analytics.data.v1alpha.EventSegmentExclusion.Builder,
            com.google.analytics.data.v1alpha.EventSegmentExclusionOrBuilder>
        getExclusionFieldBuilder() {
      if (exclusionBuilder_ == null) {
        exclusionBuilder_ =
            new com.google.protobuf.SingleFieldBuilderV3<
                com.google.analytics.data.v1alpha.EventSegmentExclusion,
                com.google.analytics.data.v1alpha.EventSegmentExclusion.Builder,
                com.google.analytics.data.v1alpha.EventSegmentExclusionOrBuilder>(
                getExclusion(), getParentForChildren(), isClean());
        exclusion_ = null;
      }
      return exclusionBuilder_;
    }

    @java.lang.Override
    public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) {
      return super.setUnknownFields(unknownFields);
    }

    @java.lang.Override
    public final Builder mergeUnknownFields(
        final com.google.protobuf.UnknownFieldSet unknownFields) {
      return super.mergeUnknownFields(unknownFields);
    }

    // @@protoc_insertion_point(builder_scope:google.analytics.data.v1alpha.EventSegment)
  }

  // @@protoc_insertion_point(class_scope:google.analytics.data.v1alpha.EventSegment)
  private static final com.google.analytics.data.v1alpha.EventSegment DEFAULT_INSTANCE;

  static {
    DEFAULT_INSTANCE = new com.google.analytics.data.v1alpha.EventSegment();
  }

  public static com.google.analytics.data.v1alpha.EventSegment getDefaultInstance() {
    return DEFAULT_INSTANCE;
  }

  private static final com.google.protobuf.Parser<EventSegment> PARSER =
      new com.google.protobuf.AbstractParser<EventSegment>() {
        @java.lang.Override
        public EventSegment parsePartialFrom(
            com.google.protobuf.CodedInputStream input,
            com.google.protobuf.ExtensionRegistryLite extensionRegistry)
            throws com.google.protobuf.InvalidProtocolBufferException {
          Builder builder = newBuilder();
          try {
            builder.mergeFrom(input, extensionRegistry);
          } catch (com.google.protobuf.InvalidProtocolBufferException e) {
            throw e.setUnfinishedMessage(builder.buildPartial());
          } catch (com.google.protobuf.UninitializedMessageException e) {
            throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
          } catch (java.io.IOException e) {
            throw new com.google.protobuf.InvalidProtocolBufferException(e)
                .setUnfinishedMessage(builder.buildPartial());
          }
          return builder.buildPartial();
        }
      };

  public static com.google.protobuf.Parser<EventSegment> parser() {
    return PARSER;
  }

  @java.lang.Override
  public com.google.protobuf.Parser<EventSegment> getParserForType() {
    return PARSER;
  }

  @java.lang.Override
  public com.google.analytics.data.v1alpha.EventSegment getDefaultInstanceForType() {
    return DEFAULT_INSTANCE;
  }
}
