All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.api.PythonSettings Maven / Gradle / Ivy

There is a newer version: 2.49.0
Show newest version
/*
 * Copyright 2024 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/api/client.proto

// Protobuf Java Version: 3.25.5
package com.google.api;

/**
 *
 *
 * 
 * Settings for Python client libraries.
 * 
* * Protobuf type {@code google.api.PythonSettings} */ public final class PythonSettings extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.api.PythonSettings) PythonSettingsOrBuilder { private static final long serialVersionUID = 0L; // Use PythonSettings.newBuilder() to construct. private PythonSettings(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private PythonSettings() {} @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance(UnusedPrivateParameter unused) { return new PythonSettings(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.api.ClientProto.internal_static_google_api_PythonSettings_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.api.ClientProto.internal_static_google_api_PythonSettings_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.api.PythonSettings.class, com.google.api.PythonSettings.Builder.class); } public interface ExperimentalFeaturesOrBuilder extends // @@protoc_insertion_point(interface_extends:google.api.PythonSettings.ExperimentalFeatures) com.google.protobuf.MessageOrBuilder { /** * * *
     * Enables generation of asynchronous REST clients if `rest` transport is
     * enabled. By default, asynchronous REST clients will not be generated.
     * This feature will be enabled by default 1 month after launching the
     * feature in preview packages.
     * 
* * bool rest_async_io_enabled = 1; * * @return The restAsyncIoEnabled. */ boolean getRestAsyncIoEnabled(); } /** * * *
   * Experimental features to be included during client library generation.
   * These fields will be deprecated once the feature graduates and is enabled
   * by default.
   * 
* * Protobuf type {@code google.api.PythonSettings.ExperimentalFeatures} */ public static final class ExperimentalFeatures extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.api.PythonSettings.ExperimentalFeatures) ExperimentalFeaturesOrBuilder { private static final long serialVersionUID = 0L; // Use ExperimentalFeatures.newBuilder() to construct. private ExperimentalFeatures(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private ExperimentalFeatures() {} @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance(UnusedPrivateParameter unused) { return new ExperimentalFeatures(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.api.ClientProto .internal_static_google_api_PythonSettings_ExperimentalFeatures_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.api.ClientProto .internal_static_google_api_PythonSettings_ExperimentalFeatures_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.api.PythonSettings.ExperimentalFeatures.class, com.google.api.PythonSettings.ExperimentalFeatures.Builder.class); } public static final int REST_ASYNC_IO_ENABLED_FIELD_NUMBER = 1; private boolean restAsyncIoEnabled_ = false; /** * * *
     * Enables generation of asynchronous REST clients if `rest` transport is
     * enabled. By default, asynchronous REST clients will not be generated.
     * This feature will be enabled by default 1 month after launching the
     * feature in preview packages.
     * 
* * bool rest_async_io_enabled = 1; * * @return The restAsyncIoEnabled. */ @java.lang.Override public boolean getRestAsyncIoEnabled() { return restAsyncIoEnabled_; } 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 (restAsyncIoEnabled_ != false) { output.writeBool(1, restAsyncIoEnabled_); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (restAsyncIoEnabled_ != false) { size += com.google.protobuf.CodedOutputStream.computeBoolSize(1, restAsyncIoEnabled_); } 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.api.PythonSettings.ExperimentalFeatures)) { return super.equals(obj); } com.google.api.PythonSettings.ExperimentalFeatures other = (com.google.api.PythonSettings.ExperimentalFeatures) obj; if (getRestAsyncIoEnabled() != other.getRestAsyncIoEnabled()) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + REST_ASYNC_IO_ENABLED_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getRestAsyncIoEnabled()); hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static com.google.api.PythonSettings.ExperimentalFeatures parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.api.PythonSettings.ExperimentalFeatures parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.api.PythonSettings.ExperimentalFeatures parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.api.PythonSettings.ExperimentalFeatures 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.api.PythonSettings.ExperimentalFeatures parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.api.PythonSettings.ExperimentalFeatures parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.api.PythonSettings.ExperimentalFeatures parseFrom( java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); } public static com.google.api.PythonSettings.ExperimentalFeatures 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.api.PythonSettings.ExperimentalFeatures parseDelimitedFrom( java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); } public static com.google.api.PythonSettings.ExperimentalFeatures 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.api.PythonSettings.ExperimentalFeatures parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); } public static com.google.api.PythonSettings.ExperimentalFeatures 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.api.PythonSettings.ExperimentalFeatures 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; } /** * * *
     * Experimental features to be included during client library generation.
     * These fields will be deprecated once the feature graduates and is enabled
     * by default.
     * 
* * Protobuf type {@code google.api.PythonSettings.ExperimentalFeatures} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:google.api.PythonSettings.ExperimentalFeatures) com.google.api.PythonSettings.ExperimentalFeaturesOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.api.ClientProto .internal_static_google_api_PythonSettings_ExperimentalFeatures_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.api.ClientProto .internal_static_google_api_PythonSettings_ExperimentalFeatures_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.api.PythonSettings.ExperimentalFeatures.class, com.google.api.PythonSettings.ExperimentalFeatures.Builder.class); } // Construct using com.google.api.PythonSettings.ExperimentalFeatures.newBuilder() private Builder() {} private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; restAsyncIoEnabled_ = false; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.google.api.ClientProto .internal_static_google_api_PythonSettings_ExperimentalFeatures_descriptor; } @java.lang.Override public com.google.api.PythonSettings.ExperimentalFeatures getDefaultInstanceForType() { return com.google.api.PythonSettings.ExperimentalFeatures.getDefaultInstance(); } @java.lang.Override public com.google.api.PythonSettings.ExperimentalFeatures build() { com.google.api.PythonSettings.ExperimentalFeatures result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.google.api.PythonSettings.ExperimentalFeatures buildPartial() { com.google.api.PythonSettings.ExperimentalFeatures result = new com.google.api.PythonSettings.ExperimentalFeatures(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(com.google.api.PythonSettings.ExperimentalFeatures result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { result.restAsyncIoEnabled_ = restAsyncIoEnabled_; } } @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.api.PythonSettings.ExperimentalFeatures) { return mergeFrom((com.google.api.PythonSettings.ExperimentalFeatures) other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.google.api.PythonSettings.ExperimentalFeatures other) { if (other == com.google.api.PythonSettings.ExperimentalFeatures.getDefaultInstance()) return this; if (other.getRestAsyncIoEnabled() != false) { setRestAsyncIoEnabled(other.getRestAsyncIoEnabled()); } 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: { restAsyncIoEnabled_ = input.readBool(); bitField0_ |= 0x00000001; break; } // case 8 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { done = true; // was an endgroup tag } break; } // default: } // switch (tag) } // while (!done) } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.unwrapIOException(); } finally { onChanged(); } // finally return this; } private int bitField0_; private boolean restAsyncIoEnabled_; /** * * *
       * Enables generation of asynchronous REST clients if `rest` transport is
       * enabled. By default, asynchronous REST clients will not be generated.
       * This feature will be enabled by default 1 month after launching the
       * feature in preview packages.
       * 
* * bool rest_async_io_enabled = 1; * * @return The restAsyncIoEnabled. */ @java.lang.Override public boolean getRestAsyncIoEnabled() { return restAsyncIoEnabled_; } /** * * *
       * Enables generation of asynchronous REST clients if `rest` transport is
       * enabled. By default, asynchronous REST clients will not be generated.
       * This feature will be enabled by default 1 month after launching the
       * feature in preview packages.
       * 
* * bool rest_async_io_enabled = 1; * * @param value The restAsyncIoEnabled to set. * @return This builder for chaining. */ public Builder setRestAsyncIoEnabled(boolean value) { restAsyncIoEnabled_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** * * *
       * Enables generation of asynchronous REST clients if `rest` transport is
       * enabled. By default, asynchronous REST clients will not be generated.
       * This feature will be enabled by default 1 month after launching the
       * feature in preview packages.
       * 
* * bool rest_async_io_enabled = 1; * * @return This builder for chaining. */ public Builder clearRestAsyncIoEnabled() { bitField0_ = (bitField0_ & ~0x00000001); restAsyncIoEnabled_ = false; onChanged(); return this; } @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.api.PythonSettings.ExperimentalFeatures) } // @@protoc_insertion_point(class_scope:google.api.PythonSettings.ExperimentalFeatures) private static final com.google.api.PythonSettings.ExperimentalFeatures DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.google.api.PythonSettings.ExperimentalFeatures(); } public static com.google.api.PythonSettings.ExperimentalFeatures getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public ExperimentalFeatures 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 parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } @java.lang.Override public com.google.api.PythonSettings.ExperimentalFeatures getDefaultInstanceForType() { return DEFAULT_INSTANCE; } } private int bitField0_; public static final int COMMON_FIELD_NUMBER = 1; private com.google.api.CommonLanguageSettings common_; /** * * *
   * Some settings.
   * 
* * .google.api.CommonLanguageSettings common = 1; * * @return Whether the common field is set. */ @java.lang.Override public boolean hasCommon() { return ((bitField0_ & 0x00000001) != 0); } /** * * *
   * Some settings.
   * 
* * .google.api.CommonLanguageSettings common = 1; * * @return The common. */ @java.lang.Override public com.google.api.CommonLanguageSettings getCommon() { return common_ == null ? com.google.api.CommonLanguageSettings.getDefaultInstance() : common_; } /** * * *
   * Some settings.
   * 
* * .google.api.CommonLanguageSettings common = 1; */ @java.lang.Override public com.google.api.CommonLanguageSettingsOrBuilder getCommonOrBuilder() { return common_ == null ? com.google.api.CommonLanguageSettings.getDefaultInstance() : common_; } public static final int EXPERIMENTAL_FEATURES_FIELD_NUMBER = 2; private com.google.api.PythonSettings.ExperimentalFeatures experimentalFeatures_; /** * * *
   * Experimental features to be included during client library generation.
   * 
* * .google.api.PythonSettings.ExperimentalFeatures experimental_features = 2; * * @return Whether the experimentalFeatures field is set. */ @java.lang.Override public boolean hasExperimentalFeatures() { return ((bitField0_ & 0x00000002) != 0); } /** * * *
   * Experimental features to be included during client library generation.
   * 
* * .google.api.PythonSettings.ExperimentalFeatures experimental_features = 2; * * @return The experimentalFeatures. */ @java.lang.Override public com.google.api.PythonSettings.ExperimentalFeatures getExperimentalFeatures() { return experimentalFeatures_ == null ? com.google.api.PythonSettings.ExperimentalFeatures.getDefaultInstance() : experimentalFeatures_; } /** * * *
   * Experimental features to be included during client library generation.
   * 
* * .google.api.PythonSettings.ExperimentalFeatures experimental_features = 2; */ @java.lang.Override public com.google.api.PythonSettings.ExperimentalFeaturesOrBuilder getExperimentalFeaturesOrBuilder() { return experimentalFeatures_ == null ? com.google.api.PythonSettings.ExperimentalFeatures.getDefaultInstance() : experimentalFeatures_; } 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 (((bitField0_ & 0x00000001) != 0)) { output.writeMessage(1, getCommon()); } if (((bitField0_ & 0x00000002) != 0)) { output.writeMessage(2, getExperimentalFeatures()); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (((bitField0_ & 0x00000001) != 0)) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, getCommon()); } if (((bitField0_ & 0x00000002) != 0)) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, getExperimentalFeatures()); } 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.api.PythonSettings)) { return super.equals(obj); } com.google.api.PythonSettings other = (com.google.api.PythonSettings) obj; if (hasCommon() != other.hasCommon()) return false; if (hasCommon()) { if (!getCommon().equals(other.getCommon())) return false; } if (hasExperimentalFeatures() != other.hasExperimentalFeatures()) return false; if (hasExperimentalFeatures()) { if (!getExperimentalFeatures().equals(other.getExperimentalFeatures())) return false; } if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); if (hasCommon()) { hash = (37 * hash) + COMMON_FIELD_NUMBER; hash = (53 * hash) + getCommon().hashCode(); } if (hasExperimentalFeatures()) { hash = (37 * hash) + EXPERIMENTAL_FEATURES_FIELD_NUMBER; hash = (53 * hash) + getExperimentalFeatures().hashCode(); } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static com.google.api.PythonSettings parseFrom(java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.api.PythonSettings parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.api.PythonSettings parseFrom(com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.api.PythonSettings 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.api.PythonSettings parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.api.PythonSettings parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.api.PythonSettings parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); } public static com.google.api.PythonSettings 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.api.PythonSettings parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); } public static com.google.api.PythonSettings 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.api.PythonSettings parseFrom(com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); } public static com.google.api.PythonSettings 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.api.PythonSettings 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; } /** * * *
   * Settings for Python client libraries.
   * 
* * Protobuf type {@code google.api.PythonSettings} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:google.api.PythonSettings) com.google.api.PythonSettingsOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.api.ClientProto.internal_static_google_api_PythonSettings_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.api.ClientProto.internal_static_google_api_PythonSettings_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.api.PythonSettings.class, com.google.api.PythonSettings.Builder.class); } // Construct using com.google.api.PythonSettings.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) { getCommonFieldBuilder(); getExperimentalFeaturesFieldBuilder(); } } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; common_ = null; if (commonBuilder_ != null) { commonBuilder_.dispose(); commonBuilder_ = null; } experimentalFeatures_ = null; if (experimentalFeaturesBuilder_ != null) { experimentalFeaturesBuilder_.dispose(); experimentalFeaturesBuilder_ = null; } return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.google.api.ClientProto.internal_static_google_api_PythonSettings_descriptor; } @java.lang.Override public com.google.api.PythonSettings getDefaultInstanceForType() { return com.google.api.PythonSettings.getDefaultInstance(); } @java.lang.Override public com.google.api.PythonSettings build() { com.google.api.PythonSettings result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.google.api.PythonSettings buildPartial() { com.google.api.PythonSettings result = new com.google.api.PythonSettings(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(com.google.api.PythonSettings result) { int from_bitField0_ = bitField0_; int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000001) != 0)) { result.common_ = commonBuilder_ == null ? common_ : commonBuilder_.build(); to_bitField0_ |= 0x00000001; } if (((from_bitField0_ & 0x00000002) != 0)) { result.experimentalFeatures_ = experimentalFeaturesBuilder_ == null ? experimentalFeatures_ : experimentalFeaturesBuilder_.build(); to_bitField0_ |= 0x00000002; } result.bitField0_ |= to_bitField0_; } @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.api.PythonSettings) { return mergeFrom((com.google.api.PythonSettings) other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.google.api.PythonSettings other) { if (other == com.google.api.PythonSettings.getDefaultInstance()) return this; if (other.hasCommon()) { mergeCommon(other.getCommon()); } if (other.hasExperimentalFeatures()) { mergeExperimentalFeatures(other.getExperimentalFeatures()); } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); return this; } @java.lang.Override public final boolean isInitialized() { return true; } @java.lang.Override public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; case 10: { input.readMessage(getCommonFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000001; break; } // case 10 case 18: { input.readMessage( getExperimentalFeaturesFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000002; break; } // case 18 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { done = true; // was an endgroup tag } break; } // default: } // switch (tag) } // while (!done) } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.unwrapIOException(); } finally { onChanged(); } // finally return this; } private int bitField0_; private com.google.api.CommonLanguageSettings common_; private com.google.protobuf.SingleFieldBuilderV3< com.google.api.CommonLanguageSettings, com.google.api.CommonLanguageSettings.Builder, com.google.api.CommonLanguageSettingsOrBuilder> commonBuilder_; /** * * *
     * Some settings.
     * 
* * .google.api.CommonLanguageSettings common = 1; * * @return Whether the common field is set. */ public boolean hasCommon() { return ((bitField0_ & 0x00000001) != 0); } /** * * *
     * Some settings.
     * 
* * .google.api.CommonLanguageSettings common = 1; * * @return The common. */ public com.google.api.CommonLanguageSettings getCommon() { if (commonBuilder_ == null) { return common_ == null ? com.google.api.CommonLanguageSettings.getDefaultInstance() : common_; } else { return commonBuilder_.getMessage(); } } /** * * *
     * Some settings.
     * 
* * .google.api.CommonLanguageSettings common = 1; */ public Builder setCommon(com.google.api.CommonLanguageSettings value) { if (commonBuilder_ == null) { if (value == null) { throw new NullPointerException(); } common_ = value; } else { commonBuilder_.setMessage(value); } bitField0_ |= 0x00000001; onChanged(); return this; } /** * * *
     * Some settings.
     * 
* * .google.api.CommonLanguageSettings common = 1; */ public Builder setCommon(com.google.api.CommonLanguageSettings.Builder builderForValue) { if (commonBuilder_ == null) { common_ = builderForValue.build(); } else { commonBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000001; onChanged(); return this; } /** * * *
     * Some settings.
     * 
* * .google.api.CommonLanguageSettings common = 1; */ public Builder mergeCommon(com.google.api.CommonLanguageSettings value) { if (commonBuilder_ == null) { if (((bitField0_ & 0x00000001) != 0) && common_ != null && common_ != com.google.api.CommonLanguageSettings.getDefaultInstance()) { getCommonBuilder().mergeFrom(value); } else { common_ = value; } } else { commonBuilder_.mergeFrom(value); } if (common_ != null) { bitField0_ |= 0x00000001; onChanged(); } return this; } /** * * *
     * Some settings.
     * 
* * .google.api.CommonLanguageSettings common = 1; */ public Builder clearCommon() { bitField0_ = (bitField0_ & ~0x00000001); common_ = null; if (commonBuilder_ != null) { commonBuilder_.dispose(); commonBuilder_ = null; } onChanged(); return this; } /** * * *
     * Some settings.
     * 
* * .google.api.CommonLanguageSettings common = 1; */ public com.google.api.CommonLanguageSettings.Builder getCommonBuilder() { bitField0_ |= 0x00000001; onChanged(); return getCommonFieldBuilder().getBuilder(); } /** * * *
     * Some settings.
     * 
* * .google.api.CommonLanguageSettings common = 1; */ public com.google.api.CommonLanguageSettingsOrBuilder getCommonOrBuilder() { if (commonBuilder_ != null) { return commonBuilder_.getMessageOrBuilder(); } else { return common_ == null ? com.google.api.CommonLanguageSettings.getDefaultInstance() : common_; } } /** * * *
     * Some settings.
     * 
* * .google.api.CommonLanguageSettings common = 1; */ private com.google.protobuf.SingleFieldBuilderV3< com.google.api.CommonLanguageSettings, com.google.api.CommonLanguageSettings.Builder, com.google.api.CommonLanguageSettingsOrBuilder> getCommonFieldBuilder() { if (commonBuilder_ == null) { commonBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.google.api.CommonLanguageSettings, com.google.api.CommonLanguageSettings.Builder, com.google.api.CommonLanguageSettingsOrBuilder>( getCommon(), getParentForChildren(), isClean()); common_ = null; } return commonBuilder_; } private com.google.api.PythonSettings.ExperimentalFeatures experimentalFeatures_; private com.google.protobuf.SingleFieldBuilderV3< com.google.api.PythonSettings.ExperimentalFeatures, com.google.api.PythonSettings.ExperimentalFeatures.Builder, com.google.api.PythonSettings.ExperimentalFeaturesOrBuilder> experimentalFeaturesBuilder_; /** * * *
     * Experimental features to be included during client library generation.
     * 
* * .google.api.PythonSettings.ExperimentalFeatures experimental_features = 2; * * @return Whether the experimentalFeatures field is set. */ public boolean hasExperimentalFeatures() { return ((bitField0_ & 0x00000002) != 0); } /** * * *
     * Experimental features to be included during client library generation.
     * 
* * .google.api.PythonSettings.ExperimentalFeatures experimental_features = 2; * * @return The experimentalFeatures. */ public com.google.api.PythonSettings.ExperimentalFeatures getExperimentalFeatures() { if (experimentalFeaturesBuilder_ == null) { return experimentalFeatures_ == null ? com.google.api.PythonSettings.ExperimentalFeatures.getDefaultInstance() : experimentalFeatures_; } else { return experimentalFeaturesBuilder_.getMessage(); } } /** * * *
     * Experimental features to be included during client library generation.
     * 
* * .google.api.PythonSettings.ExperimentalFeatures experimental_features = 2; */ public Builder setExperimentalFeatures( com.google.api.PythonSettings.ExperimentalFeatures value) { if (experimentalFeaturesBuilder_ == null) { if (value == null) { throw new NullPointerException(); } experimentalFeatures_ = value; } else { experimentalFeaturesBuilder_.setMessage(value); } bitField0_ |= 0x00000002; onChanged(); return this; } /** * * *
     * Experimental features to be included during client library generation.
     * 
* * .google.api.PythonSettings.ExperimentalFeatures experimental_features = 2; */ public Builder setExperimentalFeatures( com.google.api.PythonSettings.ExperimentalFeatures.Builder builderForValue) { if (experimentalFeaturesBuilder_ == null) { experimentalFeatures_ = builderForValue.build(); } else { experimentalFeaturesBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000002; onChanged(); return this; } /** * * *
     * Experimental features to be included during client library generation.
     * 
* * .google.api.PythonSettings.ExperimentalFeatures experimental_features = 2; */ public Builder mergeExperimentalFeatures( com.google.api.PythonSettings.ExperimentalFeatures value) { if (experimentalFeaturesBuilder_ == null) { if (((bitField0_ & 0x00000002) != 0) && experimentalFeatures_ != null && experimentalFeatures_ != com.google.api.PythonSettings.ExperimentalFeatures.getDefaultInstance()) { getExperimentalFeaturesBuilder().mergeFrom(value); } else { experimentalFeatures_ = value; } } else { experimentalFeaturesBuilder_.mergeFrom(value); } if (experimentalFeatures_ != null) { bitField0_ |= 0x00000002; onChanged(); } return this; } /** * * *
     * Experimental features to be included during client library generation.
     * 
* * .google.api.PythonSettings.ExperimentalFeatures experimental_features = 2; */ public Builder clearExperimentalFeatures() { bitField0_ = (bitField0_ & ~0x00000002); experimentalFeatures_ = null; if (experimentalFeaturesBuilder_ != null) { experimentalFeaturesBuilder_.dispose(); experimentalFeaturesBuilder_ = null; } onChanged(); return this; } /** * * *
     * Experimental features to be included during client library generation.
     * 
* * .google.api.PythonSettings.ExperimentalFeatures experimental_features = 2; */ public com.google.api.PythonSettings.ExperimentalFeatures.Builder getExperimentalFeaturesBuilder() { bitField0_ |= 0x00000002; onChanged(); return getExperimentalFeaturesFieldBuilder().getBuilder(); } /** * * *
     * Experimental features to be included during client library generation.
     * 
* * .google.api.PythonSettings.ExperimentalFeatures experimental_features = 2; */ public com.google.api.PythonSettings.ExperimentalFeaturesOrBuilder getExperimentalFeaturesOrBuilder() { if (experimentalFeaturesBuilder_ != null) { return experimentalFeaturesBuilder_.getMessageOrBuilder(); } else { return experimentalFeatures_ == null ? com.google.api.PythonSettings.ExperimentalFeatures.getDefaultInstance() : experimentalFeatures_; } } /** * * *
     * Experimental features to be included during client library generation.
     * 
* * .google.api.PythonSettings.ExperimentalFeatures experimental_features = 2; */ private com.google.protobuf.SingleFieldBuilderV3< com.google.api.PythonSettings.ExperimentalFeatures, com.google.api.PythonSettings.ExperimentalFeatures.Builder, com.google.api.PythonSettings.ExperimentalFeaturesOrBuilder> getExperimentalFeaturesFieldBuilder() { if (experimentalFeaturesBuilder_ == null) { experimentalFeaturesBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.google.api.PythonSettings.ExperimentalFeatures, com.google.api.PythonSettings.ExperimentalFeatures.Builder, com.google.api.PythonSettings.ExperimentalFeaturesOrBuilder>( getExperimentalFeatures(), getParentForChildren(), isClean()); experimentalFeatures_ = null; } return experimentalFeaturesBuilder_; } @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.api.PythonSettings) } // @@protoc_insertion_point(class_scope:google.api.PythonSettings) private static final com.google.api.PythonSettings DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.google.api.PythonSettings(); } public static com.google.api.PythonSettings getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public PythonSettings 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 parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } @java.lang.Override public com.google.api.PythonSettings getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy