/*
 * 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/cloud/videointelligence/v1p3beta1/video_intelligence.proto

package com.google.cloud.videointelligence.v1p3beta1;

/**
 *
 *
 * <pre>
 * Provides information to the annotator that specifies how to process the
 * request.
 * </pre>
 *
 * Protobuf type {@code google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig}
 */
public final class StreamingVideoConfig extends com.google.protobuf.GeneratedMessageV3
    implements
    // @@protoc_insertion_point(message_implements:google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig)
    StreamingVideoConfigOrBuilder {
  private static final long serialVersionUID = 0L;
  // Use StreamingVideoConfig.newBuilder() to construct.
  private StreamingVideoConfig(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {
    super(builder);
  }

  private StreamingVideoConfig() {
    feature_ = 0;
  }

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

  @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.cloud.videointelligence.v1p3beta1.VideoIntelligenceServiceProto
        .internal_static_google_cloud_videointelligence_v1p3beta1_StreamingVideoConfig_descriptor;
  }

  @java.lang.Override
  protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return com.google.cloud.videointelligence.v1p3beta1.VideoIntelligenceServiceProto
        .internal_static_google_cloud_videointelligence_v1p3beta1_StreamingVideoConfig_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            com.google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig.class,
            com.google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig.Builder.class);
  }

  private int streamingConfigCase_ = 0;
  private java.lang.Object streamingConfig_;

  public enum StreamingConfigCase
      implements
          com.google.protobuf.Internal.EnumLite,
          com.google.protobuf.AbstractMessage.InternalOneOfEnum {
    SHOT_CHANGE_DETECTION_CONFIG(2),
    LABEL_DETECTION_CONFIG(3),
    EXPLICIT_CONTENT_DETECTION_CONFIG(4),
    OBJECT_TRACKING_CONFIG(5),
    AUTOML_ACTION_RECOGNITION_CONFIG(23),
    AUTOML_CLASSIFICATION_CONFIG(21),
    AUTOML_OBJECT_TRACKING_CONFIG(22),
    STREAMINGCONFIG_NOT_SET(0);
    private final int value;

    private StreamingConfigCase(int value) {
      this.value = value;
    }
    /**
     * @param value The number of the enum to look for.
     * @return The enum associated with the given number.
     * @deprecated Use {@link #forNumber(int)} instead.
     */
    @java.lang.Deprecated
    public static StreamingConfigCase valueOf(int value) {
      return forNumber(value);
    }

    public static StreamingConfigCase forNumber(int value) {
      switch (value) {
        case 2:
          return SHOT_CHANGE_DETECTION_CONFIG;
        case 3:
          return LABEL_DETECTION_CONFIG;
        case 4:
          return EXPLICIT_CONTENT_DETECTION_CONFIG;
        case 5:
          return OBJECT_TRACKING_CONFIG;
        case 23:
          return AUTOML_ACTION_RECOGNITION_CONFIG;
        case 21:
          return AUTOML_CLASSIFICATION_CONFIG;
        case 22:
          return AUTOML_OBJECT_TRACKING_CONFIG;
        case 0:
          return STREAMINGCONFIG_NOT_SET;
        default:
          return null;
      }
    }

    public int getNumber() {
      return this.value;
    }
  };

  public StreamingConfigCase getStreamingConfigCase() {
    return StreamingConfigCase.forNumber(streamingConfigCase_);
  }

  public static final int SHOT_CHANGE_DETECTION_CONFIG_FIELD_NUMBER = 2;
  /**
   *
   *
   * <pre>
   * Config for STREAMING_SHOT_CHANGE_DETECTION.
   * </pre>
   *
   * <code>
   * .google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig shot_change_detection_config = 2;
   * </code>
   *
   * @return Whether the shotChangeDetectionConfig field is set.
   */
  @java.lang.Override
  public boolean hasShotChangeDetectionConfig() {
    return streamingConfigCase_ == 2;
  }
  /**
   *
   *
   * <pre>
   * Config for STREAMING_SHOT_CHANGE_DETECTION.
   * </pre>
   *
   * <code>
   * .google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig shot_change_detection_config = 2;
   * </code>
   *
   * @return The shotChangeDetectionConfig.
   */
  @java.lang.Override
  public com.google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig
      getShotChangeDetectionConfig() {
    if (streamingConfigCase_ == 2) {
      return (com.google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig)
          streamingConfig_;
    }
    return com.google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig
        .getDefaultInstance();
  }
  /**
   *
   *
   * <pre>
   * Config for STREAMING_SHOT_CHANGE_DETECTION.
   * </pre>
   *
   * <code>
   * .google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig shot_change_detection_config = 2;
   * </code>
   */
  @java.lang.Override
  public com.google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfigOrBuilder
      getShotChangeDetectionConfigOrBuilder() {
    if (streamingConfigCase_ == 2) {
      return (com.google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig)
          streamingConfig_;
    }
    return com.google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig
        .getDefaultInstance();
  }

  public static final int LABEL_DETECTION_CONFIG_FIELD_NUMBER = 3;
  /**
   *
   *
   * <pre>
   * Config for STREAMING_LABEL_DETECTION.
   * </pre>
   *
   * <code>
   * .google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig label_detection_config = 3;
   * </code>
   *
   * @return Whether the labelDetectionConfig field is set.
   */
  @java.lang.Override
  public boolean hasLabelDetectionConfig() {
    return streamingConfigCase_ == 3;
  }
  /**
   *
   *
   * <pre>
   * Config for STREAMING_LABEL_DETECTION.
   * </pre>
   *
   * <code>
   * .google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig label_detection_config = 3;
   * </code>
   *
   * @return The labelDetectionConfig.
   */
  @java.lang.Override
  public com.google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig
      getLabelDetectionConfig() {
    if (streamingConfigCase_ == 3) {
      return (com.google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig)
          streamingConfig_;
    }
    return com.google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig
        .getDefaultInstance();
  }
  /**
   *
   *
   * <pre>
   * Config for STREAMING_LABEL_DETECTION.
   * </pre>
   *
   * <code>
   * .google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig label_detection_config = 3;
   * </code>
   */
  @java.lang.Override
  public com.google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfigOrBuilder
      getLabelDetectionConfigOrBuilder() {
    if (streamingConfigCase_ == 3) {
      return (com.google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig)
          streamingConfig_;
    }
    return com.google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig
        .getDefaultInstance();
  }

  public static final int EXPLICIT_CONTENT_DETECTION_CONFIG_FIELD_NUMBER = 4;
  /**
   *
   *
   * <pre>
   * Config for STREAMING_EXPLICIT_CONTENT_DETECTION.
   * </pre>
   *
   * <code>
   * .google.cloud.videointelligence.v1p3beta1.StreamingExplicitContentDetectionConfig explicit_content_detection_config = 4;
   * </code>
   *
   * @return Whether the explicitContentDetectionConfig field is set.
   */
  @java.lang.Override
  public boolean hasExplicitContentDetectionConfig() {
    return streamingConfigCase_ == 4;
  }
  /**
   *
   *
   * <pre>
   * Config for STREAMING_EXPLICIT_CONTENT_DETECTION.
   * </pre>
   *
   * <code>
   * .google.cloud.videointelligence.v1p3beta1.StreamingExplicitContentDetectionConfig explicit_content_detection_config = 4;
   * </code>
   *
   * @return The explicitContentDetectionConfig.
   */
  @java.lang.Override
  public com.google.cloud.videointelligence.v1p3beta1.StreamingExplicitContentDetectionConfig
      getExplicitContentDetectionConfig() {
    if (streamingConfigCase_ == 4) {
      return (com.google.cloud.videointelligence.v1p3beta1.StreamingExplicitContentDetectionConfig)
          streamingConfig_;
    }
    return com.google.cloud.videointelligence.v1p3beta1.StreamingExplicitContentDetectionConfig
        .getDefaultInstance();
  }
  /**
   *
   *
   * <pre>
   * Config for STREAMING_EXPLICIT_CONTENT_DETECTION.
   * </pre>
   *
   * <code>
   * .google.cloud.videointelligence.v1p3beta1.StreamingExplicitContentDetectionConfig explicit_content_detection_config = 4;
   * </code>
   */
  @java.lang.Override
  public com.google.cloud.videointelligence.v1p3beta1
          .StreamingExplicitContentDetectionConfigOrBuilder
      getExplicitContentDetectionConfigOrBuilder() {
    if (streamingConfigCase_ == 4) {
      return (com.google.cloud.videointelligence.v1p3beta1.StreamingExplicitContentDetectionConfig)
          streamingConfig_;
    }
    return com.google.cloud.videointelligence.v1p3beta1.StreamingExplicitContentDetectionConfig
        .getDefaultInstance();
  }

  public static final int OBJECT_TRACKING_CONFIG_FIELD_NUMBER = 5;
  /**
   *
   *
   * <pre>
   * Config for STREAMING_OBJECT_TRACKING.
   * </pre>
   *
   * <code>
   * .google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig object_tracking_config = 5;
   * </code>
   *
   * @return Whether the objectTrackingConfig field is set.
   */
  @java.lang.Override
  public boolean hasObjectTrackingConfig() {
    return streamingConfigCase_ == 5;
  }
  /**
   *
   *
   * <pre>
   * Config for STREAMING_OBJECT_TRACKING.
   * </pre>
   *
   * <code>
   * .google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig object_tracking_config = 5;
   * </code>
   *
   * @return The objectTrackingConfig.
   */
  @java.lang.Override
  public com.google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig
      getObjectTrackingConfig() {
    if (streamingConfigCase_ == 5) {
      return (com.google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig)
          streamingConfig_;
    }
    return com.google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig
        .getDefaultInstance();
  }
  /**
   *
   *
   * <pre>
   * Config for STREAMING_OBJECT_TRACKING.
   * </pre>
   *
   * <code>
   * .google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig object_tracking_config = 5;
   * </code>
   */
  @java.lang.Override
  public com.google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfigOrBuilder
      getObjectTrackingConfigOrBuilder() {
    if (streamingConfigCase_ == 5) {
      return (com.google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig)
          streamingConfig_;
    }
    return com.google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig
        .getDefaultInstance();
  }

  public static final int AUTOML_ACTION_RECOGNITION_CONFIG_FIELD_NUMBER = 23;
  /**
   *
   *
   * <pre>
   * Config for STREAMING_AUTOML_ACTION_RECOGNITION.
   * </pre>
   *
   * <code>
   * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig automl_action_recognition_config = 23;
   * </code>
   *
   * @return Whether the automlActionRecognitionConfig field is set.
   */
  @java.lang.Override
  public boolean hasAutomlActionRecognitionConfig() {
    return streamingConfigCase_ == 23;
  }
  /**
   *
   *
   * <pre>
   * Config for STREAMING_AUTOML_ACTION_RECOGNITION.
   * </pre>
   *
   * <code>
   * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig automl_action_recognition_config = 23;
   * </code>
   *
   * @return The automlActionRecognitionConfig.
   */
  @java.lang.Override
  public com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig
      getAutomlActionRecognitionConfig() {
    if (streamingConfigCase_ == 23) {
      return (com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig)
          streamingConfig_;
    }
    return com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig
        .getDefaultInstance();
  }
  /**
   *
   *
   * <pre>
   * Config for STREAMING_AUTOML_ACTION_RECOGNITION.
   * </pre>
   *
   * <code>
   * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig automl_action_recognition_config = 23;
   * </code>
   */
  @java.lang.Override
  public com.google.cloud.videointelligence.v1p3beta1
          .StreamingAutomlActionRecognitionConfigOrBuilder
      getAutomlActionRecognitionConfigOrBuilder() {
    if (streamingConfigCase_ == 23) {
      return (com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig)
          streamingConfig_;
    }
    return com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig
        .getDefaultInstance();
  }

  public static final int AUTOML_CLASSIFICATION_CONFIG_FIELD_NUMBER = 21;
  /**
   *
   *
   * <pre>
   * Config for STREAMING_AUTOML_CLASSIFICATION.
   * </pre>
   *
   * <code>
   * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig automl_classification_config = 21;
   * </code>
   *
   * @return Whether the automlClassificationConfig field is set.
   */
  @java.lang.Override
  public boolean hasAutomlClassificationConfig() {
    return streamingConfigCase_ == 21;
  }
  /**
   *
   *
   * <pre>
   * Config for STREAMING_AUTOML_CLASSIFICATION.
   * </pre>
   *
   * <code>
   * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig automl_classification_config = 21;
   * </code>
   *
   * @return The automlClassificationConfig.
   */
  @java.lang.Override
  public com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig
      getAutomlClassificationConfig() {
    if (streamingConfigCase_ == 21) {
      return (com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig)
          streamingConfig_;
    }
    return com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig
        .getDefaultInstance();
  }
  /**
   *
   *
   * <pre>
   * Config for STREAMING_AUTOML_CLASSIFICATION.
   * </pre>
   *
   * <code>
   * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig automl_classification_config = 21;
   * </code>
   */
  @java.lang.Override
  public com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfigOrBuilder
      getAutomlClassificationConfigOrBuilder() {
    if (streamingConfigCase_ == 21) {
      return (com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig)
          streamingConfig_;
    }
    return com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig
        .getDefaultInstance();
  }

  public static final int AUTOML_OBJECT_TRACKING_CONFIG_FIELD_NUMBER = 22;
  /**
   *
   *
   * <pre>
   * Config for STREAMING_AUTOML_OBJECT_TRACKING.
   * </pre>
   *
   * <code>
   * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig automl_object_tracking_config = 22;
   * </code>
   *
   * @return Whether the automlObjectTrackingConfig field is set.
   */
  @java.lang.Override
  public boolean hasAutomlObjectTrackingConfig() {
    return streamingConfigCase_ == 22;
  }
  /**
   *
   *
   * <pre>
   * Config for STREAMING_AUTOML_OBJECT_TRACKING.
   * </pre>
   *
   * <code>
   * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig automl_object_tracking_config = 22;
   * </code>
   *
   * @return The automlObjectTrackingConfig.
   */
  @java.lang.Override
  public com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig
      getAutomlObjectTrackingConfig() {
    if (streamingConfigCase_ == 22) {
      return (com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig)
          streamingConfig_;
    }
    return com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig
        .getDefaultInstance();
  }
  /**
   *
   *
   * <pre>
   * Config for STREAMING_AUTOML_OBJECT_TRACKING.
   * </pre>
   *
   * <code>
   * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig automl_object_tracking_config = 22;
   * </code>
   */
  @java.lang.Override
  public com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfigOrBuilder
      getAutomlObjectTrackingConfigOrBuilder() {
    if (streamingConfigCase_ == 22) {
      return (com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig)
          streamingConfig_;
    }
    return com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig
        .getDefaultInstance();
  }

  public static final int FEATURE_FIELD_NUMBER = 1;
  private int feature_ = 0;
  /**
   *
   *
   * <pre>
   * Requested annotation feature.
   * </pre>
   *
   * <code>.google.cloud.videointelligence.v1p3beta1.StreamingFeature feature = 1;</code>
   *
   * @return The enum numeric value on the wire for feature.
   */
  @java.lang.Override
  public int getFeatureValue() {
    return feature_;
  }
  /**
   *
   *
   * <pre>
   * Requested annotation feature.
   * </pre>
   *
   * <code>.google.cloud.videointelligence.v1p3beta1.StreamingFeature feature = 1;</code>
   *
   * @return The feature.
   */
  @java.lang.Override
  public com.google.cloud.videointelligence.v1p3beta1.StreamingFeature getFeature() {
    com.google.cloud.videointelligence.v1p3beta1.StreamingFeature result =
        com.google.cloud.videointelligence.v1p3beta1.StreamingFeature.forNumber(feature_);
    return result == null
        ? com.google.cloud.videointelligence.v1p3beta1.StreamingFeature.UNRECOGNIZED
        : result;
  }

  public static final int STORAGE_CONFIG_FIELD_NUMBER = 30;
  private com.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfig storageConfig_;
  /**
   *
   *
   * <pre>
   * Streaming storage option. By default: storage is disabled.
   * </pre>
   *
   * <code>.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfig storage_config = 30;
   * </code>
   *
   * @return Whether the storageConfig field is set.
   */
  @java.lang.Override
  public boolean hasStorageConfig() {
    return storageConfig_ != null;
  }
  /**
   *
   *
   * <pre>
   * Streaming storage option. By default: storage is disabled.
   * </pre>
   *
   * <code>.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfig storage_config = 30;
   * </code>
   *
   * @return The storageConfig.
   */
  @java.lang.Override
  public com.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfig getStorageConfig() {
    return storageConfig_ == null
        ? com.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfig.getDefaultInstance()
        : storageConfig_;
  }
  /**
   *
   *
   * <pre>
   * Streaming storage option. By default: storage is disabled.
   * </pre>
   *
   * <code>.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfig storage_config = 30;
   * </code>
   */
  @java.lang.Override
  public com.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfigOrBuilder
      getStorageConfigOrBuilder() {
    return storageConfig_ == null
        ? com.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfig.getDefaultInstance()
        : storageConfig_;
  }

  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 (feature_
        != com.google.cloud.videointelligence.v1p3beta1.StreamingFeature
            .STREAMING_FEATURE_UNSPECIFIED
            .getNumber()) {
      output.writeEnum(1, feature_);
    }
    if (streamingConfigCase_ == 2) {
      output.writeMessage(
          2,
          (com.google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig)
              streamingConfig_);
    }
    if (streamingConfigCase_ == 3) {
      output.writeMessage(
          3,
          (com.google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig)
              streamingConfig_);
    }
    if (streamingConfigCase_ == 4) {
      output.writeMessage(
          4,
          (com.google.cloud.videointelligence.v1p3beta1.StreamingExplicitContentDetectionConfig)
              streamingConfig_);
    }
    if (streamingConfigCase_ == 5) {
      output.writeMessage(
          5,
          (com.google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig)
              streamingConfig_);
    }
    if (streamingConfigCase_ == 21) {
      output.writeMessage(
          21,
          (com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig)
              streamingConfig_);
    }
    if (streamingConfigCase_ == 22) {
      output.writeMessage(
          22,
          (com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig)
              streamingConfig_);
    }
    if (streamingConfigCase_ == 23) {
      output.writeMessage(
          23,
          (com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig)
              streamingConfig_);
    }
    if (storageConfig_ != null) {
      output.writeMessage(30, getStorageConfig());
    }
    getUnknownFields().writeTo(output);
  }

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

    size = 0;
    if (feature_
        != com.google.cloud.videointelligence.v1p3beta1.StreamingFeature
            .STREAMING_FEATURE_UNSPECIFIED
            .getNumber()) {
      size += com.google.protobuf.CodedOutputStream.computeEnumSize(1, feature_);
    }
    if (streamingConfigCase_ == 2) {
      size +=
          com.google.protobuf.CodedOutputStream.computeMessageSize(
              2,
              (com.google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig)
                  streamingConfig_);
    }
    if (streamingConfigCase_ == 3) {
      size +=
          com.google.protobuf.CodedOutputStream.computeMessageSize(
              3,
              (com.google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig)
                  streamingConfig_);
    }
    if (streamingConfigCase_ == 4) {
      size +=
          com.google.protobuf.CodedOutputStream.computeMessageSize(
              4,
              (com.google.cloud.videointelligence.v1p3beta1.StreamingExplicitContentDetectionConfig)
                  streamingConfig_);
    }
    if (streamingConfigCase_ == 5) {
      size +=
          com.google.protobuf.CodedOutputStream.computeMessageSize(
              5,
              (com.google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig)
                  streamingConfig_);
    }
    if (streamingConfigCase_ == 21) {
      size +=
          com.google.protobuf.CodedOutputStream.computeMessageSize(
              21,
              (com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig)
                  streamingConfig_);
    }
    if (streamingConfigCase_ == 22) {
      size +=
          com.google.protobuf.CodedOutputStream.computeMessageSize(
              22,
              (com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig)
                  streamingConfig_);
    }
    if (streamingConfigCase_ == 23) {
      size +=
          com.google.protobuf.CodedOutputStream.computeMessageSize(
              23,
              (com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig)
                  streamingConfig_);
    }
    if (storageConfig_ != null) {
      size += com.google.protobuf.CodedOutputStream.computeMessageSize(30, getStorageConfig());
    }
    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.cloud.videointelligence.v1p3beta1.StreamingVideoConfig)) {
      return super.equals(obj);
    }
    com.google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig other =
        (com.google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig) obj;

    if (feature_ != other.feature_) return false;
    if (hasStorageConfig() != other.hasStorageConfig()) return false;
    if (hasStorageConfig()) {
      if (!getStorageConfig().equals(other.getStorageConfig())) return false;
    }
    if (!getStreamingConfigCase().equals(other.getStreamingConfigCase())) return false;
    switch (streamingConfigCase_) {
      case 2:
        if (!getShotChangeDetectionConfig().equals(other.getShotChangeDetectionConfig()))
          return false;
        break;
      case 3:
        if (!getLabelDetectionConfig().equals(other.getLabelDetectionConfig())) return false;
        break;
      case 4:
        if (!getExplicitContentDetectionConfig().equals(other.getExplicitContentDetectionConfig()))
          return false;
        break;
      case 5:
        if (!getObjectTrackingConfig().equals(other.getObjectTrackingConfig())) return false;
        break;
      case 23:
        if (!getAutomlActionRecognitionConfig().equals(other.getAutomlActionRecognitionConfig()))
          return false;
        break;
      case 21:
        if (!getAutomlClassificationConfig().equals(other.getAutomlClassificationConfig()))
          return false;
        break;
      case 22:
        if (!getAutomlObjectTrackingConfig().equals(other.getAutomlObjectTrackingConfig()))
          return false;
        break;
      case 0:
      default:
    }
    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();
    hash = (37 * hash) + FEATURE_FIELD_NUMBER;
    hash = (53 * hash) + feature_;
    if (hasStorageConfig()) {
      hash = (37 * hash) + STORAGE_CONFIG_FIELD_NUMBER;
      hash = (53 * hash) + getStorageConfig().hashCode();
    }
    switch (streamingConfigCase_) {
      case 2:
        hash = (37 * hash) + SHOT_CHANGE_DETECTION_CONFIG_FIELD_NUMBER;
        hash = (53 * hash) + getShotChangeDetectionConfig().hashCode();
        break;
      case 3:
        hash = (37 * hash) + LABEL_DETECTION_CONFIG_FIELD_NUMBER;
        hash = (53 * hash) + getLabelDetectionConfig().hashCode();
        break;
      case 4:
        hash = (37 * hash) + EXPLICIT_CONTENT_DETECTION_CONFIG_FIELD_NUMBER;
        hash = (53 * hash) + getExplicitContentDetectionConfig().hashCode();
        break;
      case 5:
        hash = (37 * hash) + OBJECT_TRACKING_CONFIG_FIELD_NUMBER;
        hash = (53 * hash) + getObjectTrackingConfig().hashCode();
        break;
      case 23:
        hash = (37 * hash) + AUTOML_ACTION_RECOGNITION_CONFIG_FIELD_NUMBER;
        hash = (53 * hash) + getAutomlActionRecognitionConfig().hashCode();
        break;
      case 21:
        hash = (37 * hash) + AUTOML_CLASSIFICATION_CONFIG_FIELD_NUMBER;
        hash = (53 * hash) + getAutomlClassificationConfig().hashCode();
        break;
      case 22:
        hash = (37 * hash) + AUTOML_OBJECT_TRACKING_CONFIG_FIELD_NUMBER;
        hash = (53 * hash) + getAutomlObjectTrackingConfig().hashCode();
        break;
      case 0:
      default:
    }
    hash = (29 * hash) + getUnknownFields().hashCode();
    memoizedHashCode = hash;
    return hash;
  }

  public static com.google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig parseFrom(
      java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }

  public static com.google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig parseFrom(
      java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }

  public static com.google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig parseFrom(
      com.google.protobuf.ByteString data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }

  public static com.google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig 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.cloud.videointelligence.v1p3beta1.StreamingVideoConfig parseFrom(
      byte[] data) throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }

  public static com.google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig parseFrom(
      byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }

  public static com.google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig parseFrom(
      java.io.InputStream input) throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
  }

  public static com.google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig 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.cloud.videointelligence.v1p3beta1.StreamingVideoConfig
      parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
  }

  public static com.google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig
      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.cloud.videointelligence.v1p3beta1.StreamingVideoConfig parseFrom(
      com.google.protobuf.CodedInputStream input) throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
  }

  public static com.google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig 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.cloud.videointelligence.v1p3beta1.StreamingVideoConfig 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>
   * Provides information to the annotator that specifies how to process the
   * request.
   * </pre>
   *
   * Protobuf type {@code google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig}
   */
  public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder<Builder>
      implements
      // @@protoc_insertion_point(builder_implements:google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig)
      com.google.cloud.videointelligence.v1p3beta1.StreamingVideoConfigOrBuilder {
    public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
      return com.google.cloud.videointelligence.v1p3beta1.VideoIntelligenceServiceProto
          .internal_static_google_cloud_videointelligence_v1p3beta1_StreamingVideoConfig_descriptor;
    }

    @java.lang.Override
    protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return com.google.cloud.videointelligence.v1p3beta1.VideoIntelligenceServiceProto
          .internal_static_google_cloud_videointelligence_v1p3beta1_StreamingVideoConfig_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              com.google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig.class,
              com.google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig.Builder.class);
    }

    // Construct using
    // com.google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig.newBuilder()
    private Builder() {}

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

    @java.lang.Override
    public Builder clear() {
      super.clear();
      bitField0_ = 0;
      if (shotChangeDetectionConfigBuilder_ != null) {
        shotChangeDetectionConfigBuilder_.clear();
      }
      if (labelDetectionConfigBuilder_ != null) {
        labelDetectionConfigBuilder_.clear();
      }
      if (explicitContentDetectionConfigBuilder_ != null) {
        explicitContentDetectionConfigBuilder_.clear();
      }
      if (objectTrackingConfigBuilder_ != null) {
        objectTrackingConfigBuilder_.clear();
      }
      if (automlActionRecognitionConfigBuilder_ != null) {
        automlActionRecognitionConfigBuilder_.clear();
      }
      if (automlClassificationConfigBuilder_ != null) {
        automlClassificationConfigBuilder_.clear();
      }
      if (automlObjectTrackingConfigBuilder_ != null) {
        automlObjectTrackingConfigBuilder_.clear();
      }
      feature_ = 0;
      storageConfig_ = null;
      if (storageConfigBuilder_ != null) {
        storageConfigBuilder_.dispose();
        storageConfigBuilder_ = null;
      }
      streamingConfigCase_ = 0;
      streamingConfig_ = null;
      return this;
    }

    @java.lang.Override
    public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
      return com.google.cloud.videointelligence.v1p3beta1.VideoIntelligenceServiceProto
          .internal_static_google_cloud_videointelligence_v1p3beta1_StreamingVideoConfig_descriptor;
    }

    @java.lang.Override
    public com.google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig
        getDefaultInstanceForType() {
      return com.google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig.getDefaultInstance();
    }

    @java.lang.Override
    public com.google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig build() {
      com.google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig result = buildPartial();
      if (!result.isInitialized()) {
        throw newUninitializedMessageException(result);
      }
      return result;
    }

    @java.lang.Override
    public com.google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig buildPartial() {
      com.google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig result =
          new com.google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig(this);
      if (bitField0_ != 0) {
        buildPartial0(result);
      }
      buildPartialOneofs(result);
      onBuilt();
      return result;
    }

    private void buildPartial0(
        com.google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig result) {
      int from_bitField0_ = bitField0_;
      if (((from_bitField0_ & 0x00000080) != 0)) {
        result.feature_ = feature_;
      }
      if (((from_bitField0_ & 0x00000100) != 0)) {
        result.storageConfig_ =
            storageConfigBuilder_ == null ? storageConfig_ : storageConfigBuilder_.build();
      }
    }

    private void buildPartialOneofs(
        com.google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig result) {
      result.streamingConfigCase_ = streamingConfigCase_;
      result.streamingConfig_ = this.streamingConfig_;
      if (streamingConfigCase_ == 2 && shotChangeDetectionConfigBuilder_ != null) {
        result.streamingConfig_ = shotChangeDetectionConfigBuilder_.build();
      }
      if (streamingConfigCase_ == 3 && labelDetectionConfigBuilder_ != null) {
        result.streamingConfig_ = labelDetectionConfigBuilder_.build();
      }
      if (streamingConfigCase_ == 4 && explicitContentDetectionConfigBuilder_ != null) {
        result.streamingConfig_ = explicitContentDetectionConfigBuilder_.build();
      }
      if (streamingConfigCase_ == 5 && objectTrackingConfigBuilder_ != null) {
        result.streamingConfig_ = objectTrackingConfigBuilder_.build();
      }
      if (streamingConfigCase_ == 23 && automlActionRecognitionConfigBuilder_ != null) {
        result.streamingConfig_ = automlActionRecognitionConfigBuilder_.build();
      }
      if (streamingConfigCase_ == 21 && automlClassificationConfigBuilder_ != null) {
        result.streamingConfig_ = automlClassificationConfigBuilder_.build();
      }
      if (streamingConfigCase_ == 22 && automlObjectTrackingConfigBuilder_ != null) {
        result.streamingConfig_ = automlObjectTrackingConfigBuilder_.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.cloud.videointelligence.v1p3beta1.StreamingVideoConfig) {
        return mergeFrom((com.google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig) other);
      } else {
        super.mergeFrom(other);
        return this;
      }
    }

    public Builder mergeFrom(
        com.google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig other) {
      if (other
          == com.google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig.getDefaultInstance())
        return this;
      if (other.feature_ != 0) {
        setFeatureValue(other.getFeatureValue());
      }
      if (other.hasStorageConfig()) {
        mergeStorageConfig(other.getStorageConfig());
      }
      switch (other.getStreamingConfigCase()) {
        case SHOT_CHANGE_DETECTION_CONFIG:
          {
            mergeShotChangeDetectionConfig(other.getShotChangeDetectionConfig());
            break;
          }
        case LABEL_DETECTION_CONFIG:
          {
            mergeLabelDetectionConfig(other.getLabelDetectionConfig());
            break;
          }
        case EXPLICIT_CONTENT_DETECTION_CONFIG:
          {
            mergeExplicitContentDetectionConfig(other.getExplicitContentDetectionConfig());
            break;
          }
        case OBJECT_TRACKING_CONFIG:
          {
            mergeObjectTrackingConfig(other.getObjectTrackingConfig());
            break;
          }
        case AUTOML_ACTION_RECOGNITION_CONFIG:
          {
            mergeAutomlActionRecognitionConfig(other.getAutomlActionRecognitionConfig());
            break;
          }
        case AUTOML_CLASSIFICATION_CONFIG:
          {
            mergeAutomlClassificationConfig(other.getAutomlClassificationConfig());
            break;
          }
        case AUTOML_OBJECT_TRACKING_CONFIG:
          {
            mergeAutomlObjectTrackingConfig(other.getAutomlObjectTrackingConfig());
            break;
          }
        case STREAMINGCONFIG_NOT_SET:
          {
            break;
          }
      }
      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 8:
              {
                feature_ = input.readEnum();
                bitField0_ |= 0x00000080;
                break;
              } // case 8
            case 18:
              {
                input.readMessage(
                    getShotChangeDetectionConfigFieldBuilder().getBuilder(), extensionRegistry);
                streamingConfigCase_ = 2;
                break;
              } // case 18
            case 26:
              {
                input.readMessage(
                    getLabelDetectionConfigFieldBuilder().getBuilder(), extensionRegistry);
                streamingConfigCase_ = 3;
                break;
              } // case 26
            case 34:
              {
                input.readMessage(
                    getExplicitContentDetectionConfigFieldBuilder().getBuilder(),
                    extensionRegistry);
                streamingConfigCase_ = 4;
                break;
              } // case 34
            case 42:
              {
                input.readMessage(
                    getObjectTrackingConfigFieldBuilder().getBuilder(), extensionRegistry);
                streamingConfigCase_ = 5;
                break;
              } // case 42
            case 170:
              {
                input.readMessage(
                    getAutomlClassificationConfigFieldBuilder().getBuilder(), extensionRegistry);
                streamingConfigCase_ = 21;
                break;
              } // case 170
            case 178:
              {
                input.readMessage(
                    getAutomlObjectTrackingConfigFieldBuilder().getBuilder(), extensionRegistry);
                streamingConfigCase_ = 22;
                break;
              } // case 178
            case 186:
              {
                input.readMessage(
                    getAutomlActionRecognitionConfigFieldBuilder().getBuilder(), extensionRegistry);
                streamingConfigCase_ = 23;
                break;
              } // case 186
            case 242:
              {
                input.readMessage(getStorageConfigFieldBuilder().getBuilder(), extensionRegistry);
                bitField0_ |= 0x00000100;
                break;
              } // case 242
            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 streamingConfigCase_ = 0;
    private java.lang.Object streamingConfig_;

    public StreamingConfigCase getStreamingConfigCase() {
      return StreamingConfigCase.forNumber(streamingConfigCase_);
    }

    public Builder clearStreamingConfig() {
      streamingConfigCase_ = 0;
      streamingConfig_ = null;
      onChanged();
      return this;
    }

    private int bitField0_;

    private com.google.protobuf.SingleFieldBuilderV3<
            com.google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig,
            com.google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig.Builder,
            com.google.cloud.videointelligence.v1p3beta1
                .StreamingShotChangeDetectionConfigOrBuilder>
        shotChangeDetectionConfigBuilder_;
    /**
     *
     *
     * <pre>
     * Config for STREAMING_SHOT_CHANGE_DETECTION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig shot_change_detection_config = 2;
     * </code>
     *
     * @return Whether the shotChangeDetectionConfig field is set.
     */
    @java.lang.Override
    public boolean hasShotChangeDetectionConfig() {
      return streamingConfigCase_ == 2;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_SHOT_CHANGE_DETECTION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig shot_change_detection_config = 2;
     * </code>
     *
     * @return The shotChangeDetectionConfig.
     */
    @java.lang.Override
    public com.google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig
        getShotChangeDetectionConfig() {
      if (shotChangeDetectionConfigBuilder_ == null) {
        if (streamingConfigCase_ == 2) {
          return (com.google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig)
              streamingConfig_;
        }
        return com.google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig
            .getDefaultInstance();
      } else {
        if (streamingConfigCase_ == 2) {
          return shotChangeDetectionConfigBuilder_.getMessage();
        }
        return com.google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig
            .getDefaultInstance();
      }
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_SHOT_CHANGE_DETECTION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig shot_change_detection_config = 2;
     * </code>
     */
    public Builder setShotChangeDetectionConfig(
        com.google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig value) {
      if (shotChangeDetectionConfigBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        streamingConfig_ = value;
        onChanged();
      } else {
        shotChangeDetectionConfigBuilder_.setMessage(value);
      }
      streamingConfigCase_ = 2;
      return this;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_SHOT_CHANGE_DETECTION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig shot_change_detection_config = 2;
     * </code>
     */
    public Builder setShotChangeDetectionConfig(
        com.google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig.Builder
            builderForValue) {
      if (shotChangeDetectionConfigBuilder_ == null) {
        streamingConfig_ = builderForValue.build();
        onChanged();
      } else {
        shotChangeDetectionConfigBuilder_.setMessage(builderForValue.build());
      }
      streamingConfigCase_ = 2;
      return this;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_SHOT_CHANGE_DETECTION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig shot_change_detection_config = 2;
     * </code>
     */
    public Builder mergeShotChangeDetectionConfig(
        com.google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig value) {
      if (shotChangeDetectionConfigBuilder_ == null) {
        if (streamingConfigCase_ == 2
            && streamingConfig_
                != com.google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig
                    .getDefaultInstance()) {
          streamingConfig_ =
              com.google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig
                  .newBuilder(
                      (com.google.cloud.videointelligence.v1p3beta1
                              .StreamingShotChangeDetectionConfig)
                          streamingConfig_)
                  .mergeFrom(value)
                  .buildPartial();
        } else {
          streamingConfig_ = value;
        }
        onChanged();
      } else {
        if (streamingConfigCase_ == 2) {
          shotChangeDetectionConfigBuilder_.mergeFrom(value);
        } else {
          shotChangeDetectionConfigBuilder_.setMessage(value);
        }
      }
      streamingConfigCase_ = 2;
      return this;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_SHOT_CHANGE_DETECTION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig shot_change_detection_config = 2;
     * </code>
     */
    public Builder clearShotChangeDetectionConfig() {
      if (shotChangeDetectionConfigBuilder_ == null) {
        if (streamingConfigCase_ == 2) {
          streamingConfigCase_ = 0;
          streamingConfig_ = null;
          onChanged();
        }
      } else {
        if (streamingConfigCase_ == 2) {
          streamingConfigCase_ = 0;
          streamingConfig_ = null;
        }
        shotChangeDetectionConfigBuilder_.clear();
      }
      return this;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_SHOT_CHANGE_DETECTION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig shot_change_detection_config = 2;
     * </code>
     */
    public com.google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig.Builder
        getShotChangeDetectionConfigBuilder() {
      return getShotChangeDetectionConfigFieldBuilder().getBuilder();
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_SHOT_CHANGE_DETECTION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig shot_change_detection_config = 2;
     * </code>
     */
    @java.lang.Override
    public com.google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfigOrBuilder
        getShotChangeDetectionConfigOrBuilder() {
      if ((streamingConfigCase_ == 2) && (shotChangeDetectionConfigBuilder_ != null)) {
        return shotChangeDetectionConfigBuilder_.getMessageOrBuilder();
      } else {
        if (streamingConfigCase_ == 2) {
          return (com.google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig)
              streamingConfig_;
        }
        return com.google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig
            .getDefaultInstance();
      }
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_SHOT_CHANGE_DETECTION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig shot_change_detection_config = 2;
     * </code>
     */
    private com.google.protobuf.SingleFieldBuilderV3<
            com.google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig,
            com.google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig.Builder,
            com.google.cloud.videointelligence.v1p3beta1
                .StreamingShotChangeDetectionConfigOrBuilder>
        getShotChangeDetectionConfigFieldBuilder() {
      if (shotChangeDetectionConfigBuilder_ == null) {
        if (!(streamingConfigCase_ == 2)) {
          streamingConfig_ =
              com.google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig
                  .getDefaultInstance();
        }
        shotChangeDetectionConfigBuilder_ =
            new com.google.protobuf.SingleFieldBuilderV3<
                com.google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig,
                com.google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig
                    .Builder,
                com.google.cloud.videointelligence.v1p3beta1
                    .StreamingShotChangeDetectionConfigOrBuilder>(
                (com.google.cloud.videointelligence.v1p3beta1.StreamingShotChangeDetectionConfig)
                    streamingConfig_,
                getParentForChildren(),
                isClean());
        streamingConfig_ = null;
      }
      streamingConfigCase_ = 2;
      onChanged();
      return shotChangeDetectionConfigBuilder_;
    }

    private com.google.protobuf.SingleFieldBuilderV3<
            com.google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig,
            com.google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig.Builder,
            com.google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfigOrBuilder>
        labelDetectionConfigBuilder_;
    /**
     *
     *
     * <pre>
     * Config for STREAMING_LABEL_DETECTION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig label_detection_config = 3;
     * </code>
     *
     * @return Whether the labelDetectionConfig field is set.
     */
    @java.lang.Override
    public boolean hasLabelDetectionConfig() {
      return streamingConfigCase_ == 3;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_LABEL_DETECTION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig label_detection_config = 3;
     * </code>
     *
     * @return The labelDetectionConfig.
     */
    @java.lang.Override
    public com.google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig
        getLabelDetectionConfig() {
      if (labelDetectionConfigBuilder_ == null) {
        if (streamingConfigCase_ == 3) {
          return (com.google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig)
              streamingConfig_;
        }
        return com.google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig
            .getDefaultInstance();
      } else {
        if (streamingConfigCase_ == 3) {
          return labelDetectionConfigBuilder_.getMessage();
        }
        return com.google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig
            .getDefaultInstance();
      }
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_LABEL_DETECTION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig label_detection_config = 3;
     * </code>
     */
    public Builder setLabelDetectionConfig(
        com.google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig value) {
      if (labelDetectionConfigBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        streamingConfig_ = value;
        onChanged();
      } else {
        labelDetectionConfigBuilder_.setMessage(value);
      }
      streamingConfigCase_ = 3;
      return this;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_LABEL_DETECTION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig label_detection_config = 3;
     * </code>
     */
    public Builder setLabelDetectionConfig(
        com.google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig.Builder
            builderForValue) {
      if (labelDetectionConfigBuilder_ == null) {
        streamingConfig_ = builderForValue.build();
        onChanged();
      } else {
        labelDetectionConfigBuilder_.setMessage(builderForValue.build());
      }
      streamingConfigCase_ = 3;
      return this;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_LABEL_DETECTION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig label_detection_config = 3;
     * </code>
     */
    public Builder mergeLabelDetectionConfig(
        com.google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig value) {
      if (labelDetectionConfigBuilder_ == null) {
        if (streamingConfigCase_ == 3
            && streamingConfig_
                != com.google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig
                    .getDefaultInstance()) {
          streamingConfig_ =
              com.google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig.newBuilder(
                      (com.google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig)
                          streamingConfig_)
                  .mergeFrom(value)
                  .buildPartial();
        } else {
          streamingConfig_ = value;
        }
        onChanged();
      } else {
        if (streamingConfigCase_ == 3) {
          labelDetectionConfigBuilder_.mergeFrom(value);
        } else {
          labelDetectionConfigBuilder_.setMessage(value);
        }
      }
      streamingConfigCase_ = 3;
      return this;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_LABEL_DETECTION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig label_detection_config = 3;
     * </code>
     */
    public Builder clearLabelDetectionConfig() {
      if (labelDetectionConfigBuilder_ == null) {
        if (streamingConfigCase_ == 3) {
          streamingConfigCase_ = 0;
          streamingConfig_ = null;
          onChanged();
        }
      } else {
        if (streamingConfigCase_ == 3) {
          streamingConfigCase_ = 0;
          streamingConfig_ = null;
        }
        labelDetectionConfigBuilder_.clear();
      }
      return this;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_LABEL_DETECTION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig label_detection_config = 3;
     * </code>
     */
    public com.google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig.Builder
        getLabelDetectionConfigBuilder() {
      return getLabelDetectionConfigFieldBuilder().getBuilder();
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_LABEL_DETECTION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig label_detection_config = 3;
     * </code>
     */
    @java.lang.Override
    public com.google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfigOrBuilder
        getLabelDetectionConfigOrBuilder() {
      if ((streamingConfigCase_ == 3) && (labelDetectionConfigBuilder_ != null)) {
        return labelDetectionConfigBuilder_.getMessageOrBuilder();
      } else {
        if (streamingConfigCase_ == 3) {
          return (com.google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig)
              streamingConfig_;
        }
        return com.google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig
            .getDefaultInstance();
      }
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_LABEL_DETECTION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig label_detection_config = 3;
     * </code>
     */
    private com.google.protobuf.SingleFieldBuilderV3<
            com.google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig,
            com.google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig.Builder,
            com.google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfigOrBuilder>
        getLabelDetectionConfigFieldBuilder() {
      if (labelDetectionConfigBuilder_ == null) {
        if (!(streamingConfigCase_ == 3)) {
          streamingConfig_ =
              com.google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig
                  .getDefaultInstance();
        }
        labelDetectionConfigBuilder_ =
            new com.google.protobuf.SingleFieldBuilderV3<
                com.google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig,
                com.google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig.Builder,
                com.google.cloud.videointelligence.v1p3beta1
                    .StreamingLabelDetectionConfigOrBuilder>(
                (com.google.cloud.videointelligence.v1p3beta1.StreamingLabelDetectionConfig)
                    streamingConfig_,
                getParentForChildren(),
                isClean());
        streamingConfig_ = null;
      }
      streamingConfigCase_ = 3;
      onChanged();
      return labelDetectionConfigBuilder_;
    }

    private com.google.protobuf.SingleFieldBuilderV3<
            com.google.cloud.videointelligence.v1p3beta1.StreamingExplicitContentDetectionConfig,
            com.google.cloud.videointelligence.v1p3beta1.StreamingExplicitContentDetectionConfig
                .Builder,
            com.google.cloud.videointelligence.v1p3beta1
                .StreamingExplicitContentDetectionConfigOrBuilder>
        explicitContentDetectionConfigBuilder_;
    /**
     *
     *
     * <pre>
     * Config for STREAMING_EXPLICIT_CONTENT_DETECTION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingExplicitContentDetectionConfig explicit_content_detection_config = 4;
     * </code>
     *
     * @return Whether the explicitContentDetectionConfig field is set.
     */
    @java.lang.Override
    public boolean hasExplicitContentDetectionConfig() {
      return streamingConfigCase_ == 4;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_EXPLICIT_CONTENT_DETECTION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingExplicitContentDetectionConfig explicit_content_detection_config = 4;
     * </code>
     *
     * @return The explicitContentDetectionConfig.
     */
    @java.lang.Override
    public com.google.cloud.videointelligence.v1p3beta1.StreamingExplicitContentDetectionConfig
        getExplicitContentDetectionConfig() {
      if (explicitContentDetectionConfigBuilder_ == null) {
        if (streamingConfigCase_ == 4) {
          return (com.google.cloud.videointelligence.v1p3beta1
                  .StreamingExplicitContentDetectionConfig)
              streamingConfig_;
        }
        return com.google.cloud.videointelligence.v1p3beta1.StreamingExplicitContentDetectionConfig
            .getDefaultInstance();
      } else {
        if (streamingConfigCase_ == 4) {
          return explicitContentDetectionConfigBuilder_.getMessage();
        }
        return com.google.cloud.videointelligence.v1p3beta1.StreamingExplicitContentDetectionConfig
            .getDefaultInstance();
      }
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_EXPLICIT_CONTENT_DETECTION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingExplicitContentDetectionConfig explicit_content_detection_config = 4;
     * </code>
     */
    public Builder setExplicitContentDetectionConfig(
        com.google.cloud.videointelligence.v1p3beta1.StreamingExplicitContentDetectionConfig
            value) {
      if (explicitContentDetectionConfigBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        streamingConfig_ = value;
        onChanged();
      } else {
        explicitContentDetectionConfigBuilder_.setMessage(value);
      }
      streamingConfigCase_ = 4;
      return this;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_EXPLICIT_CONTENT_DETECTION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingExplicitContentDetectionConfig explicit_content_detection_config = 4;
     * </code>
     */
    public Builder setExplicitContentDetectionConfig(
        com.google.cloud.videointelligence.v1p3beta1.StreamingExplicitContentDetectionConfig.Builder
            builderForValue) {
      if (explicitContentDetectionConfigBuilder_ == null) {
        streamingConfig_ = builderForValue.build();
        onChanged();
      } else {
        explicitContentDetectionConfigBuilder_.setMessage(builderForValue.build());
      }
      streamingConfigCase_ = 4;
      return this;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_EXPLICIT_CONTENT_DETECTION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingExplicitContentDetectionConfig explicit_content_detection_config = 4;
     * </code>
     */
    public Builder mergeExplicitContentDetectionConfig(
        com.google.cloud.videointelligence.v1p3beta1.StreamingExplicitContentDetectionConfig
            value) {
      if (explicitContentDetectionConfigBuilder_ == null) {
        if (streamingConfigCase_ == 4
            && streamingConfig_
                != com.google.cloud.videointelligence.v1p3beta1
                    .StreamingExplicitContentDetectionConfig.getDefaultInstance()) {
          streamingConfig_ =
              com.google.cloud.videointelligence.v1p3beta1.StreamingExplicitContentDetectionConfig
                  .newBuilder(
                      (com.google.cloud.videointelligence.v1p3beta1
                              .StreamingExplicitContentDetectionConfig)
                          streamingConfig_)
                  .mergeFrom(value)
                  .buildPartial();
        } else {
          streamingConfig_ = value;
        }
        onChanged();
      } else {
        if (streamingConfigCase_ == 4) {
          explicitContentDetectionConfigBuilder_.mergeFrom(value);
        } else {
          explicitContentDetectionConfigBuilder_.setMessage(value);
        }
      }
      streamingConfigCase_ = 4;
      return this;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_EXPLICIT_CONTENT_DETECTION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingExplicitContentDetectionConfig explicit_content_detection_config = 4;
     * </code>
     */
    public Builder clearExplicitContentDetectionConfig() {
      if (explicitContentDetectionConfigBuilder_ == null) {
        if (streamingConfigCase_ == 4) {
          streamingConfigCase_ = 0;
          streamingConfig_ = null;
          onChanged();
        }
      } else {
        if (streamingConfigCase_ == 4) {
          streamingConfigCase_ = 0;
          streamingConfig_ = null;
        }
        explicitContentDetectionConfigBuilder_.clear();
      }
      return this;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_EXPLICIT_CONTENT_DETECTION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingExplicitContentDetectionConfig explicit_content_detection_config = 4;
     * </code>
     */
    public com.google.cloud.videointelligence.v1p3beta1.StreamingExplicitContentDetectionConfig
            .Builder
        getExplicitContentDetectionConfigBuilder() {
      return getExplicitContentDetectionConfigFieldBuilder().getBuilder();
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_EXPLICIT_CONTENT_DETECTION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingExplicitContentDetectionConfig explicit_content_detection_config = 4;
     * </code>
     */
    @java.lang.Override
    public com.google.cloud.videointelligence.v1p3beta1
            .StreamingExplicitContentDetectionConfigOrBuilder
        getExplicitContentDetectionConfigOrBuilder() {
      if ((streamingConfigCase_ == 4) && (explicitContentDetectionConfigBuilder_ != null)) {
        return explicitContentDetectionConfigBuilder_.getMessageOrBuilder();
      } else {
        if (streamingConfigCase_ == 4) {
          return (com.google.cloud.videointelligence.v1p3beta1
                  .StreamingExplicitContentDetectionConfig)
              streamingConfig_;
        }
        return com.google.cloud.videointelligence.v1p3beta1.StreamingExplicitContentDetectionConfig
            .getDefaultInstance();
      }
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_EXPLICIT_CONTENT_DETECTION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingExplicitContentDetectionConfig explicit_content_detection_config = 4;
     * </code>
     */
    private com.google.protobuf.SingleFieldBuilderV3<
            com.google.cloud.videointelligence.v1p3beta1.StreamingExplicitContentDetectionConfig,
            com.google.cloud.videointelligence.v1p3beta1.StreamingExplicitContentDetectionConfig
                .Builder,
            com.google.cloud.videointelligence.v1p3beta1
                .StreamingExplicitContentDetectionConfigOrBuilder>
        getExplicitContentDetectionConfigFieldBuilder() {
      if (explicitContentDetectionConfigBuilder_ == null) {
        if (!(streamingConfigCase_ == 4)) {
          streamingConfig_ =
              com.google.cloud.videointelligence.v1p3beta1.StreamingExplicitContentDetectionConfig
                  .getDefaultInstance();
        }
        explicitContentDetectionConfigBuilder_ =
            new com.google.protobuf.SingleFieldBuilderV3<
                com.google.cloud.videointelligence.v1p3beta1
                    .StreamingExplicitContentDetectionConfig,
                com.google.cloud.videointelligence.v1p3beta1.StreamingExplicitContentDetectionConfig
                    .Builder,
                com.google.cloud.videointelligence.v1p3beta1
                    .StreamingExplicitContentDetectionConfigOrBuilder>(
                (com.google.cloud.videointelligence.v1p3beta1
                        .StreamingExplicitContentDetectionConfig)
                    streamingConfig_,
                getParentForChildren(),
                isClean());
        streamingConfig_ = null;
      }
      streamingConfigCase_ = 4;
      onChanged();
      return explicitContentDetectionConfigBuilder_;
    }

    private com.google.protobuf.SingleFieldBuilderV3<
            com.google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig,
            com.google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig.Builder,
            com.google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfigOrBuilder>
        objectTrackingConfigBuilder_;
    /**
     *
     *
     * <pre>
     * Config for STREAMING_OBJECT_TRACKING.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig object_tracking_config = 5;
     * </code>
     *
     * @return Whether the objectTrackingConfig field is set.
     */
    @java.lang.Override
    public boolean hasObjectTrackingConfig() {
      return streamingConfigCase_ == 5;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_OBJECT_TRACKING.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig object_tracking_config = 5;
     * </code>
     *
     * @return The objectTrackingConfig.
     */
    @java.lang.Override
    public com.google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig
        getObjectTrackingConfig() {
      if (objectTrackingConfigBuilder_ == null) {
        if (streamingConfigCase_ == 5) {
          return (com.google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig)
              streamingConfig_;
        }
        return com.google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig
            .getDefaultInstance();
      } else {
        if (streamingConfigCase_ == 5) {
          return objectTrackingConfigBuilder_.getMessage();
        }
        return com.google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig
            .getDefaultInstance();
      }
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_OBJECT_TRACKING.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig object_tracking_config = 5;
     * </code>
     */
    public Builder setObjectTrackingConfig(
        com.google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig value) {
      if (objectTrackingConfigBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        streamingConfig_ = value;
        onChanged();
      } else {
        objectTrackingConfigBuilder_.setMessage(value);
      }
      streamingConfigCase_ = 5;
      return this;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_OBJECT_TRACKING.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig object_tracking_config = 5;
     * </code>
     */
    public Builder setObjectTrackingConfig(
        com.google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig.Builder
            builderForValue) {
      if (objectTrackingConfigBuilder_ == null) {
        streamingConfig_ = builderForValue.build();
        onChanged();
      } else {
        objectTrackingConfigBuilder_.setMessage(builderForValue.build());
      }
      streamingConfigCase_ = 5;
      return this;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_OBJECT_TRACKING.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig object_tracking_config = 5;
     * </code>
     */
    public Builder mergeObjectTrackingConfig(
        com.google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig value) {
      if (objectTrackingConfigBuilder_ == null) {
        if (streamingConfigCase_ == 5
            && streamingConfig_
                != com.google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig
                    .getDefaultInstance()) {
          streamingConfig_ =
              com.google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig.newBuilder(
                      (com.google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig)
                          streamingConfig_)
                  .mergeFrom(value)
                  .buildPartial();
        } else {
          streamingConfig_ = value;
        }
        onChanged();
      } else {
        if (streamingConfigCase_ == 5) {
          objectTrackingConfigBuilder_.mergeFrom(value);
        } else {
          objectTrackingConfigBuilder_.setMessage(value);
        }
      }
      streamingConfigCase_ = 5;
      return this;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_OBJECT_TRACKING.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig object_tracking_config = 5;
     * </code>
     */
    public Builder clearObjectTrackingConfig() {
      if (objectTrackingConfigBuilder_ == null) {
        if (streamingConfigCase_ == 5) {
          streamingConfigCase_ = 0;
          streamingConfig_ = null;
          onChanged();
        }
      } else {
        if (streamingConfigCase_ == 5) {
          streamingConfigCase_ = 0;
          streamingConfig_ = null;
        }
        objectTrackingConfigBuilder_.clear();
      }
      return this;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_OBJECT_TRACKING.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig object_tracking_config = 5;
     * </code>
     */
    public com.google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig.Builder
        getObjectTrackingConfigBuilder() {
      return getObjectTrackingConfigFieldBuilder().getBuilder();
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_OBJECT_TRACKING.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig object_tracking_config = 5;
     * </code>
     */
    @java.lang.Override
    public com.google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfigOrBuilder
        getObjectTrackingConfigOrBuilder() {
      if ((streamingConfigCase_ == 5) && (objectTrackingConfigBuilder_ != null)) {
        return objectTrackingConfigBuilder_.getMessageOrBuilder();
      } else {
        if (streamingConfigCase_ == 5) {
          return (com.google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig)
              streamingConfig_;
        }
        return com.google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig
            .getDefaultInstance();
      }
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_OBJECT_TRACKING.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig object_tracking_config = 5;
     * </code>
     */
    private com.google.protobuf.SingleFieldBuilderV3<
            com.google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig,
            com.google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig.Builder,
            com.google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfigOrBuilder>
        getObjectTrackingConfigFieldBuilder() {
      if (objectTrackingConfigBuilder_ == null) {
        if (!(streamingConfigCase_ == 5)) {
          streamingConfig_ =
              com.google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig
                  .getDefaultInstance();
        }
        objectTrackingConfigBuilder_ =
            new com.google.protobuf.SingleFieldBuilderV3<
                com.google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig,
                com.google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig.Builder,
                com.google.cloud.videointelligence.v1p3beta1
                    .StreamingObjectTrackingConfigOrBuilder>(
                (com.google.cloud.videointelligence.v1p3beta1.StreamingObjectTrackingConfig)
                    streamingConfig_,
                getParentForChildren(),
                isClean());
        streamingConfig_ = null;
      }
      streamingConfigCase_ = 5;
      onChanged();
      return objectTrackingConfigBuilder_;
    }

    private com.google.protobuf.SingleFieldBuilderV3<
            com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig,
            com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig
                .Builder,
            com.google.cloud.videointelligence.v1p3beta1
                .StreamingAutomlActionRecognitionConfigOrBuilder>
        automlActionRecognitionConfigBuilder_;
    /**
     *
     *
     * <pre>
     * Config for STREAMING_AUTOML_ACTION_RECOGNITION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig automl_action_recognition_config = 23;
     * </code>
     *
     * @return Whether the automlActionRecognitionConfig field is set.
     */
    @java.lang.Override
    public boolean hasAutomlActionRecognitionConfig() {
      return streamingConfigCase_ == 23;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_AUTOML_ACTION_RECOGNITION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig automl_action_recognition_config = 23;
     * </code>
     *
     * @return The automlActionRecognitionConfig.
     */
    @java.lang.Override
    public com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig
        getAutomlActionRecognitionConfig() {
      if (automlActionRecognitionConfigBuilder_ == null) {
        if (streamingConfigCase_ == 23) {
          return (com.google.cloud.videointelligence.v1p3beta1
                  .StreamingAutomlActionRecognitionConfig)
              streamingConfig_;
        }
        return com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig
            .getDefaultInstance();
      } else {
        if (streamingConfigCase_ == 23) {
          return automlActionRecognitionConfigBuilder_.getMessage();
        }
        return com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig
            .getDefaultInstance();
      }
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_AUTOML_ACTION_RECOGNITION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig automl_action_recognition_config = 23;
     * </code>
     */
    public Builder setAutomlActionRecognitionConfig(
        com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig value) {
      if (automlActionRecognitionConfigBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        streamingConfig_ = value;
        onChanged();
      } else {
        automlActionRecognitionConfigBuilder_.setMessage(value);
      }
      streamingConfigCase_ = 23;
      return this;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_AUTOML_ACTION_RECOGNITION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig automl_action_recognition_config = 23;
     * </code>
     */
    public Builder setAutomlActionRecognitionConfig(
        com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig.Builder
            builderForValue) {
      if (automlActionRecognitionConfigBuilder_ == null) {
        streamingConfig_ = builderForValue.build();
        onChanged();
      } else {
        automlActionRecognitionConfigBuilder_.setMessage(builderForValue.build());
      }
      streamingConfigCase_ = 23;
      return this;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_AUTOML_ACTION_RECOGNITION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig automl_action_recognition_config = 23;
     * </code>
     */
    public Builder mergeAutomlActionRecognitionConfig(
        com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig value) {
      if (automlActionRecognitionConfigBuilder_ == null) {
        if (streamingConfigCase_ == 23
            && streamingConfig_
                != com.google.cloud.videointelligence.v1p3beta1
                    .StreamingAutomlActionRecognitionConfig.getDefaultInstance()) {
          streamingConfig_ =
              com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig
                  .newBuilder(
                      (com.google.cloud.videointelligence.v1p3beta1
                              .StreamingAutomlActionRecognitionConfig)
                          streamingConfig_)
                  .mergeFrom(value)
                  .buildPartial();
        } else {
          streamingConfig_ = value;
        }
        onChanged();
      } else {
        if (streamingConfigCase_ == 23) {
          automlActionRecognitionConfigBuilder_.mergeFrom(value);
        } else {
          automlActionRecognitionConfigBuilder_.setMessage(value);
        }
      }
      streamingConfigCase_ = 23;
      return this;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_AUTOML_ACTION_RECOGNITION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig automl_action_recognition_config = 23;
     * </code>
     */
    public Builder clearAutomlActionRecognitionConfig() {
      if (automlActionRecognitionConfigBuilder_ == null) {
        if (streamingConfigCase_ == 23) {
          streamingConfigCase_ = 0;
          streamingConfig_ = null;
          onChanged();
        }
      } else {
        if (streamingConfigCase_ == 23) {
          streamingConfigCase_ = 0;
          streamingConfig_ = null;
        }
        automlActionRecognitionConfigBuilder_.clear();
      }
      return this;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_AUTOML_ACTION_RECOGNITION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig automl_action_recognition_config = 23;
     * </code>
     */
    public com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig
            .Builder
        getAutomlActionRecognitionConfigBuilder() {
      return getAutomlActionRecognitionConfigFieldBuilder().getBuilder();
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_AUTOML_ACTION_RECOGNITION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig automl_action_recognition_config = 23;
     * </code>
     */
    @java.lang.Override
    public com.google.cloud.videointelligence.v1p3beta1
            .StreamingAutomlActionRecognitionConfigOrBuilder
        getAutomlActionRecognitionConfigOrBuilder() {
      if ((streamingConfigCase_ == 23) && (automlActionRecognitionConfigBuilder_ != null)) {
        return automlActionRecognitionConfigBuilder_.getMessageOrBuilder();
      } else {
        if (streamingConfigCase_ == 23) {
          return (com.google.cloud.videointelligence.v1p3beta1
                  .StreamingAutomlActionRecognitionConfig)
              streamingConfig_;
        }
        return com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig
            .getDefaultInstance();
      }
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_AUTOML_ACTION_RECOGNITION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig automl_action_recognition_config = 23;
     * </code>
     */
    private com.google.protobuf.SingleFieldBuilderV3<
            com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig,
            com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig
                .Builder,
            com.google.cloud.videointelligence.v1p3beta1
                .StreamingAutomlActionRecognitionConfigOrBuilder>
        getAutomlActionRecognitionConfigFieldBuilder() {
      if (automlActionRecognitionConfigBuilder_ == null) {
        if (!(streamingConfigCase_ == 23)) {
          streamingConfig_ =
              com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig
                  .getDefaultInstance();
        }
        automlActionRecognitionConfigBuilder_ =
            new com.google.protobuf.SingleFieldBuilderV3<
                com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig,
                com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlActionRecognitionConfig
                    .Builder,
                com.google.cloud.videointelligence.v1p3beta1
                    .StreamingAutomlActionRecognitionConfigOrBuilder>(
                (com.google.cloud.videointelligence.v1p3beta1
                        .StreamingAutomlActionRecognitionConfig)
                    streamingConfig_,
                getParentForChildren(),
                isClean());
        streamingConfig_ = null;
      }
      streamingConfigCase_ = 23;
      onChanged();
      return automlActionRecognitionConfigBuilder_;
    }

    private com.google.protobuf.SingleFieldBuilderV3<
            com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig,
            com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig
                .Builder,
            com.google.cloud.videointelligence.v1p3beta1
                .StreamingAutomlClassificationConfigOrBuilder>
        automlClassificationConfigBuilder_;
    /**
     *
     *
     * <pre>
     * Config for STREAMING_AUTOML_CLASSIFICATION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig automl_classification_config = 21;
     * </code>
     *
     * @return Whether the automlClassificationConfig field is set.
     */
    @java.lang.Override
    public boolean hasAutomlClassificationConfig() {
      return streamingConfigCase_ == 21;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_AUTOML_CLASSIFICATION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig automl_classification_config = 21;
     * </code>
     *
     * @return The automlClassificationConfig.
     */
    @java.lang.Override
    public com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig
        getAutomlClassificationConfig() {
      if (automlClassificationConfigBuilder_ == null) {
        if (streamingConfigCase_ == 21) {
          return (com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig)
              streamingConfig_;
        }
        return com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig
            .getDefaultInstance();
      } else {
        if (streamingConfigCase_ == 21) {
          return automlClassificationConfigBuilder_.getMessage();
        }
        return com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig
            .getDefaultInstance();
      }
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_AUTOML_CLASSIFICATION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig automl_classification_config = 21;
     * </code>
     */
    public Builder setAutomlClassificationConfig(
        com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig value) {
      if (automlClassificationConfigBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        streamingConfig_ = value;
        onChanged();
      } else {
        automlClassificationConfigBuilder_.setMessage(value);
      }
      streamingConfigCase_ = 21;
      return this;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_AUTOML_CLASSIFICATION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig automl_classification_config = 21;
     * </code>
     */
    public Builder setAutomlClassificationConfig(
        com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig.Builder
            builderForValue) {
      if (automlClassificationConfigBuilder_ == null) {
        streamingConfig_ = builderForValue.build();
        onChanged();
      } else {
        automlClassificationConfigBuilder_.setMessage(builderForValue.build());
      }
      streamingConfigCase_ = 21;
      return this;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_AUTOML_CLASSIFICATION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig automl_classification_config = 21;
     * </code>
     */
    public Builder mergeAutomlClassificationConfig(
        com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig value) {
      if (automlClassificationConfigBuilder_ == null) {
        if (streamingConfigCase_ == 21
            && streamingConfig_
                != com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig
                    .getDefaultInstance()) {
          streamingConfig_ =
              com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig
                  .newBuilder(
                      (com.google.cloud.videointelligence.v1p3beta1
                              .StreamingAutomlClassificationConfig)
                          streamingConfig_)
                  .mergeFrom(value)
                  .buildPartial();
        } else {
          streamingConfig_ = value;
        }
        onChanged();
      } else {
        if (streamingConfigCase_ == 21) {
          automlClassificationConfigBuilder_.mergeFrom(value);
        } else {
          automlClassificationConfigBuilder_.setMessage(value);
        }
      }
      streamingConfigCase_ = 21;
      return this;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_AUTOML_CLASSIFICATION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig automl_classification_config = 21;
     * </code>
     */
    public Builder clearAutomlClassificationConfig() {
      if (automlClassificationConfigBuilder_ == null) {
        if (streamingConfigCase_ == 21) {
          streamingConfigCase_ = 0;
          streamingConfig_ = null;
          onChanged();
        }
      } else {
        if (streamingConfigCase_ == 21) {
          streamingConfigCase_ = 0;
          streamingConfig_ = null;
        }
        automlClassificationConfigBuilder_.clear();
      }
      return this;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_AUTOML_CLASSIFICATION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig automl_classification_config = 21;
     * </code>
     */
    public com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig.Builder
        getAutomlClassificationConfigBuilder() {
      return getAutomlClassificationConfigFieldBuilder().getBuilder();
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_AUTOML_CLASSIFICATION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig automl_classification_config = 21;
     * </code>
     */
    @java.lang.Override
    public com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfigOrBuilder
        getAutomlClassificationConfigOrBuilder() {
      if ((streamingConfigCase_ == 21) && (automlClassificationConfigBuilder_ != null)) {
        return automlClassificationConfigBuilder_.getMessageOrBuilder();
      } else {
        if (streamingConfigCase_ == 21) {
          return (com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig)
              streamingConfig_;
        }
        return com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig
            .getDefaultInstance();
      }
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_AUTOML_CLASSIFICATION.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig automl_classification_config = 21;
     * </code>
     */
    private com.google.protobuf.SingleFieldBuilderV3<
            com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig,
            com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig
                .Builder,
            com.google.cloud.videointelligence.v1p3beta1
                .StreamingAutomlClassificationConfigOrBuilder>
        getAutomlClassificationConfigFieldBuilder() {
      if (automlClassificationConfigBuilder_ == null) {
        if (!(streamingConfigCase_ == 21)) {
          streamingConfig_ =
              com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig
                  .getDefaultInstance();
        }
        automlClassificationConfigBuilder_ =
            new com.google.protobuf.SingleFieldBuilderV3<
                com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig,
                com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig
                    .Builder,
                com.google.cloud.videointelligence.v1p3beta1
                    .StreamingAutomlClassificationConfigOrBuilder>(
                (com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlClassificationConfig)
                    streamingConfig_,
                getParentForChildren(),
                isClean());
        streamingConfig_ = null;
      }
      streamingConfigCase_ = 21;
      onChanged();
      return automlClassificationConfigBuilder_;
    }

    private com.google.protobuf.SingleFieldBuilderV3<
            com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig,
            com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig
                .Builder,
            com.google.cloud.videointelligence.v1p3beta1
                .StreamingAutomlObjectTrackingConfigOrBuilder>
        automlObjectTrackingConfigBuilder_;
    /**
     *
     *
     * <pre>
     * Config for STREAMING_AUTOML_OBJECT_TRACKING.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig automl_object_tracking_config = 22;
     * </code>
     *
     * @return Whether the automlObjectTrackingConfig field is set.
     */
    @java.lang.Override
    public boolean hasAutomlObjectTrackingConfig() {
      return streamingConfigCase_ == 22;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_AUTOML_OBJECT_TRACKING.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig automl_object_tracking_config = 22;
     * </code>
     *
     * @return The automlObjectTrackingConfig.
     */
    @java.lang.Override
    public com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig
        getAutomlObjectTrackingConfig() {
      if (automlObjectTrackingConfigBuilder_ == null) {
        if (streamingConfigCase_ == 22) {
          return (com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig)
              streamingConfig_;
        }
        return com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig
            .getDefaultInstance();
      } else {
        if (streamingConfigCase_ == 22) {
          return automlObjectTrackingConfigBuilder_.getMessage();
        }
        return com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig
            .getDefaultInstance();
      }
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_AUTOML_OBJECT_TRACKING.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig automl_object_tracking_config = 22;
     * </code>
     */
    public Builder setAutomlObjectTrackingConfig(
        com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig value) {
      if (automlObjectTrackingConfigBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        streamingConfig_ = value;
        onChanged();
      } else {
        automlObjectTrackingConfigBuilder_.setMessage(value);
      }
      streamingConfigCase_ = 22;
      return this;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_AUTOML_OBJECT_TRACKING.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig automl_object_tracking_config = 22;
     * </code>
     */
    public Builder setAutomlObjectTrackingConfig(
        com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig.Builder
            builderForValue) {
      if (automlObjectTrackingConfigBuilder_ == null) {
        streamingConfig_ = builderForValue.build();
        onChanged();
      } else {
        automlObjectTrackingConfigBuilder_.setMessage(builderForValue.build());
      }
      streamingConfigCase_ = 22;
      return this;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_AUTOML_OBJECT_TRACKING.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig automl_object_tracking_config = 22;
     * </code>
     */
    public Builder mergeAutomlObjectTrackingConfig(
        com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig value) {
      if (automlObjectTrackingConfigBuilder_ == null) {
        if (streamingConfigCase_ == 22
            && streamingConfig_
                != com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig
                    .getDefaultInstance()) {
          streamingConfig_ =
              com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig
                  .newBuilder(
                      (com.google.cloud.videointelligence.v1p3beta1
                              .StreamingAutomlObjectTrackingConfig)
                          streamingConfig_)
                  .mergeFrom(value)
                  .buildPartial();
        } else {
          streamingConfig_ = value;
        }
        onChanged();
      } else {
        if (streamingConfigCase_ == 22) {
          automlObjectTrackingConfigBuilder_.mergeFrom(value);
        } else {
          automlObjectTrackingConfigBuilder_.setMessage(value);
        }
      }
      streamingConfigCase_ = 22;
      return this;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_AUTOML_OBJECT_TRACKING.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig automl_object_tracking_config = 22;
     * </code>
     */
    public Builder clearAutomlObjectTrackingConfig() {
      if (automlObjectTrackingConfigBuilder_ == null) {
        if (streamingConfigCase_ == 22) {
          streamingConfigCase_ = 0;
          streamingConfig_ = null;
          onChanged();
        }
      } else {
        if (streamingConfigCase_ == 22) {
          streamingConfigCase_ = 0;
          streamingConfig_ = null;
        }
        automlObjectTrackingConfigBuilder_.clear();
      }
      return this;
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_AUTOML_OBJECT_TRACKING.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig automl_object_tracking_config = 22;
     * </code>
     */
    public com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig.Builder
        getAutomlObjectTrackingConfigBuilder() {
      return getAutomlObjectTrackingConfigFieldBuilder().getBuilder();
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_AUTOML_OBJECT_TRACKING.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig automl_object_tracking_config = 22;
     * </code>
     */
    @java.lang.Override
    public com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfigOrBuilder
        getAutomlObjectTrackingConfigOrBuilder() {
      if ((streamingConfigCase_ == 22) && (automlObjectTrackingConfigBuilder_ != null)) {
        return automlObjectTrackingConfigBuilder_.getMessageOrBuilder();
      } else {
        if (streamingConfigCase_ == 22) {
          return (com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig)
              streamingConfig_;
        }
        return com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig
            .getDefaultInstance();
      }
    }
    /**
     *
     *
     * <pre>
     * Config for STREAMING_AUTOML_OBJECT_TRACKING.
     * </pre>
     *
     * <code>
     * .google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig automl_object_tracking_config = 22;
     * </code>
     */
    private com.google.protobuf.SingleFieldBuilderV3<
            com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig,
            com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig
                .Builder,
            com.google.cloud.videointelligence.v1p3beta1
                .StreamingAutomlObjectTrackingConfigOrBuilder>
        getAutomlObjectTrackingConfigFieldBuilder() {
      if (automlObjectTrackingConfigBuilder_ == null) {
        if (!(streamingConfigCase_ == 22)) {
          streamingConfig_ =
              com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig
                  .getDefaultInstance();
        }
        automlObjectTrackingConfigBuilder_ =
            new com.google.protobuf.SingleFieldBuilderV3<
                com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig,
                com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig
                    .Builder,
                com.google.cloud.videointelligence.v1p3beta1
                    .StreamingAutomlObjectTrackingConfigOrBuilder>(
                (com.google.cloud.videointelligence.v1p3beta1.StreamingAutomlObjectTrackingConfig)
                    streamingConfig_,
                getParentForChildren(),
                isClean());
        streamingConfig_ = null;
      }
      streamingConfigCase_ = 22;
      onChanged();
      return automlObjectTrackingConfigBuilder_;
    }

    private int feature_ = 0;
    /**
     *
     *
     * <pre>
     * Requested annotation feature.
     * </pre>
     *
     * <code>.google.cloud.videointelligence.v1p3beta1.StreamingFeature feature = 1;</code>
     *
     * @return The enum numeric value on the wire for feature.
     */
    @java.lang.Override
    public int getFeatureValue() {
      return feature_;
    }
    /**
     *
     *
     * <pre>
     * Requested annotation feature.
     * </pre>
     *
     * <code>.google.cloud.videointelligence.v1p3beta1.StreamingFeature feature = 1;</code>
     *
     * @param value The enum numeric value on the wire for feature to set.
     * @return This builder for chaining.
     */
    public Builder setFeatureValue(int value) {
      feature_ = value;
      bitField0_ |= 0x00000080;
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Requested annotation feature.
     * </pre>
     *
     * <code>.google.cloud.videointelligence.v1p3beta1.StreamingFeature feature = 1;</code>
     *
     * @return The feature.
     */
    @java.lang.Override
    public com.google.cloud.videointelligence.v1p3beta1.StreamingFeature getFeature() {
      com.google.cloud.videointelligence.v1p3beta1.StreamingFeature result =
          com.google.cloud.videointelligence.v1p3beta1.StreamingFeature.forNumber(feature_);
      return result == null
          ? com.google.cloud.videointelligence.v1p3beta1.StreamingFeature.UNRECOGNIZED
          : result;
    }
    /**
     *
     *
     * <pre>
     * Requested annotation feature.
     * </pre>
     *
     * <code>.google.cloud.videointelligence.v1p3beta1.StreamingFeature feature = 1;</code>
     *
     * @param value The feature to set.
     * @return This builder for chaining.
     */
    public Builder setFeature(com.google.cloud.videointelligence.v1p3beta1.StreamingFeature value) {
      if (value == null) {
        throw new NullPointerException();
      }
      bitField0_ |= 0x00000080;
      feature_ = value.getNumber();
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Requested annotation feature.
     * </pre>
     *
     * <code>.google.cloud.videointelligence.v1p3beta1.StreamingFeature feature = 1;</code>
     *
     * @return This builder for chaining.
     */
    public Builder clearFeature() {
      bitField0_ = (bitField0_ & ~0x00000080);
      feature_ = 0;
      onChanged();
      return this;
    }

    private com.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfig storageConfig_;
    private com.google.protobuf.SingleFieldBuilderV3<
            com.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfig,
            com.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfig.Builder,
            com.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfigOrBuilder>
        storageConfigBuilder_;
    /**
     *
     *
     * <pre>
     * Streaming storage option. By default: storage is disabled.
     * </pre>
     *
     * <code>.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfig storage_config = 30;
     * </code>
     *
     * @return Whether the storageConfig field is set.
     */
    public boolean hasStorageConfig() {
      return ((bitField0_ & 0x00000100) != 0);
    }
    /**
     *
     *
     * <pre>
     * Streaming storage option. By default: storage is disabled.
     * </pre>
     *
     * <code>.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfig storage_config = 30;
     * </code>
     *
     * @return The storageConfig.
     */
    public com.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfig getStorageConfig() {
      if (storageConfigBuilder_ == null) {
        return storageConfig_ == null
            ? com.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfig
                .getDefaultInstance()
            : storageConfig_;
      } else {
        return storageConfigBuilder_.getMessage();
      }
    }
    /**
     *
     *
     * <pre>
     * Streaming storage option. By default: storage is disabled.
     * </pre>
     *
     * <code>.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfig storage_config = 30;
     * </code>
     */
    public Builder setStorageConfig(
        com.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfig value) {
      if (storageConfigBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        storageConfig_ = value;
      } else {
        storageConfigBuilder_.setMessage(value);
      }
      bitField0_ |= 0x00000100;
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Streaming storage option. By default: storage is disabled.
     * </pre>
     *
     * <code>.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfig storage_config = 30;
     * </code>
     */
    public Builder setStorageConfig(
        com.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfig.Builder
            builderForValue) {
      if (storageConfigBuilder_ == null) {
        storageConfig_ = builderForValue.build();
      } else {
        storageConfigBuilder_.setMessage(builderForValue.build());
      }
      bitField0_ |= 0x00000100;
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Streaming storage option. By default: storage is disabled.
     * </pre>
     *
     * <code>.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfig storage_config = 30;
     * </code>
     */
    public Builder mergeStorageConfig(
        com.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfig value) {
      if (storageConfigBuilder_ == null) {
        if (((bitField0_ & 0x00000100) != 0)
            && storageConfig_ != null
            && storageConfig_
                != com.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfig
                    .getDefaultInstance()) {
          getStorageConfigBuilder().mergeFrom(value);
        } else {
          storageConfig_ = value;
        }
      } else {
        storageConfigBuilder_.mergeFrom(value);
      }
      bitField0_ |= 0x00000100;
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Streaming storage option. By default: storage is disabled.
     * </pre>
     *
     * <code>.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfig storage_config = 30;
     * </code>
     */
    public Builder clearStorageConfig() {
      bitField0_ = (bitField0_ & ~0x00000100);
      storageConfig_ = null;
      if (storageConfigBuilder_ != null) {
        storageConfigBuilder_.dispose();
        storageConfigBuilder_ = null;
      }
      onChanged();
      return this;
    }
    /**
     *
     *
     * <pre>
     * Streaming storage option. By default: storage is disabled.
     * </pre>
     *
     * <code>.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfig storage_config = 30;
     * </code>
     */
    public com.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfig.Builder
        getStorageConfigBuilder() {
      bitField0_ |= 0x00000100;
      onChanged();
      return getStorageConfigFieldBuilder().getBuilder();
    }
    /**
     *
     *
     * <pre>
     * Streaming storage option. By default: storage is disabled.
     * </pre>
     *
     * <code>.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfig storage_config = 30;
     * </code>
     */
    public com.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfigOrBuilder
        getStorageConfigOrBuilder() {
      if (storageConfigBuilder_ != null) {
        return storageConfigBuilder_.getMessageOrBuilder();
      } else {
        return storageConfig_ == null
            ? com.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfig
                .getDefaultInstance()
            : storageConfig_;
      }
    }
    /**
     *
     *
     * <pre>
     * Streaming storage option. By default: storage is disabled.
     * </pre>
     *
     * <code>.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfig storage_config = 30;
     * </code>
     */
    private com.google.protobuf.SingleFieldBuilderV3<
            com.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfig,
            com.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfig.Builder,
            com.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfigOrBuilder>
        getStorageConfigFieldBuilder() {
      if (storageConfigBuilder_ == null) {
        storageConfigBuilder_ =
            new com.google.protobuf.SingleFieldBuilderV3<
                com.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfig,
                com.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfig.Builder,
                com.google.cloud.videointelligence.v1p3beta1.StreamingStorageConfigOrBuilder>(
                getStorageConfig(), getParentForChildren(), isClean());
        storageConfig_ = null;
      }
      return storageConfigBuilder_;
    }

    @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.cloud.videointelligence.v1p3beta1.StreamingVideoConfig)
  }

  // @@protoc_insertion_point(class_scope:google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig)
  private static final com.google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig
      DEFAULT_INSTANCE;

  static {
    DEFAULT_INSTANCE = new com.google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig();
  }

  public static com.google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig
      getDefaultInstance() {
    return DEFAULT_INSTANCE;
  }

  private static final com.google.protobuf.Parser<StreamingVideoConfig> PARSER =
      new com.google.protobuf.AbstractParser<StreamingVideoConfig>() {
        @java.lang.Override
        public StreamingVideoConfig 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<StreamingVideoConfig> parser() {
    return PARSER;
  }

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

  @java.lang.Override
  public com.google.cloud.videointelligence.v1p3beta1.StreamingVideoConfig
      getDefaultInstanceForType() {
    return DEFAULT_INSTANCE;
  }
}
