diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index c7eb31e6..e31c2fa8 100644 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -4,7 +4,7 @@ env: GRADLE_OPTS: '-Dorg.gradle.daemon=false -Dkotlin.compiler.execution.strategy=in-process' JAVA_VERSION: 11 NODEJS_VERSION: 14 - PROTOBUF_VERSION: 3.10.1 + PROTOBUF_CONFORMANCE_VERSION: 3.10.1 on: pull_request: @@ -42,32 +42,9 @@ jobs: - name: Build project and run tests run: ./gradlew build --stacktrace - - name: Cache protobuf ${{ env.PROTOBUF_VERSION }} - uses: actions/cache@v2 - id: cache-protobuf - with: - path: ~/protobuf - key: ${{ runner.os }}-protobuf-${{ env.PROTOBUF_VERSION }} - - - name: Build protoc and protobuf conformance-test-runner - if: steps.cache-protobuf.outputs.cache-hit != 'true' - run: | - cd ~ - curl -sSLO https://github.com/protocolbuffers/protobuf/releases/download/v${{ env.PROTOBUF_VERSION }}/protobuf-all-${{ env.PROTOBUF_VERSION }}.tar.gz - tar xzvf protobuf-all-${{ env.PROTOBUF_VERSION }}.tar.gz - mv protobuf-${{ env.PROTOBUF_VERSION }} protobuf - cd protobuf - ./configure --prefix="$(pwd)/install" - make - make install - cd conformance - make - - name: Ensure bundled types are up-to-date run: | - export PATH="$PATH:$HOME/protobuf/install/bin" - ./gradlew -Dprotoc.path=$HOME/protobuf/install \ - :runtime:generateWellKnownTypes \ + ./gradlew :runtime:generateWellKnownTypes \ :runtime:generateTestTypes \ :protoc-gen-kotlin:protoc-gen-kotlin-lib:generateProto \ :conformance:conformance-lib:generateProto @@ -127,8 +104,32 @@ jobs: name: error-report path: build-reports.zip + build-conformance-test-runner: + runs-on: ubuntu-18.04 + + steps: + - name: Cache protobuf conformance-test-runner ${{ env.PROTOBUF_CONFORMANCE_VERSION }} + uses: actions/cache@v2 + id: cache-protobuf + with: + path: ~/protobuf + key: ${{ runner.os }}-protobuf-${{ env.PROTOBUF_CONFORMANCE_VERSION }} + + - name: Build protobuf conformance-test-runner + if: steps.cache-protobuf.outputs.cache-hit != 'true' + run: | + cd ~ + curl -sSLO https://github.com/protocolbuffers/protobuf/releases/download/v${{ env.PROTOBUF_CONFORMANCE_VERSION }}/protobuf-all-${{ env.PROTOBUF_CONFORMANCE_VERSION }}.tar.gz + tar xzvf protobuf-all-${{ env.PROTOBUF_CONFORMANCE_VERSION }}.tar.gz + mv protobuf-${{ env.PROTOBUF_CONFORMANCE_VERSION }} protobuf + cd protobuf + ./configure + make + cd conformance + make + conformance: - needs: build + needs: [build, build-conformance-test-runner] strategy: matrix: platform: [jvm, js, linux] @@ -148,11 +149,11 @@ jobs: with: node-version: ${{ env.NODEJS_VERSION }} - - name: Cache protobuf ${{ env.PROTOBUF_VERSION }} + - name: Cache protobuf conformance-test-runner ${{ env.PROTOBUF_CONFORMANCE_VERSION }} uses: actions/cache@v2 with: path: ~/protobuf - key: ${{ runner.os }}-protobuf-${{ env.PROTOBUF_VERSION }} + key: ${{ runner.os }}-protobuf-${{ env.PROTOBUF_CONFORMANCE_VERSION }} - name: Download conformance test files uses: actions/download-artifact@v2 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 55a09da9..70bf2a75 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -4,7 +4,7 @@ env: GRADLE_OPTS: '-Dorg.gradle.daemon=false -Dkotlin.compiler.execution.strategy=in-process' JAVA_VERSION: 11 NODEJS_VERSION: 14 - PROTOBUF_VERSION: 3.10.1 + PROTOBUF_CONFORMANCE_VERSION: 3.10.1 SIGNING_KEY_ASCII_ARMORED: ${{ secrets.SIGNING_KEY_ASCII_ARMORED }} SONATYPE_API_USER: ${{ secrets.SONATYPE_API_USER }} SONATYPE_API_KEY: ${{ secrets.SONATYPE_API_KEY }} @@ -49,32 +49,9 @@ jobs: - name: Build project and run tests run: ./gradlew build --stacktrace - - name: Cache protobuf ${{ env.PROTOBUF_VERSION }} - uses: actions/cache@v2 - id: cache-protobuf - with: - path: ~/protobuf - key: ${{ runner.os }}-protobuf-${{ env.PROTOBUF_VERSION }} - - - name: Build protoc and protobuf conformance-test-runner - if: steps.cache-protobuf.outputs.cache-hit != 'true' - run: | - cd ~ - curl -sSLO https://github.com/protocolbuffers/protobuf/releases/download/v${{ env.PROTOBUF_VERSION }}/protobuf-all-${{ env.PROTOBUF_VERSION }}.tar.gz - tar xzvf protobuf-all-${{ env.PROTOBUF_VERSION }}.tar.gz - mv protobuf-${{ env.PROTOBUF_VERSION }} protobuf - cd protobuf - ./configure --prefix="$(pwd)/install" - make - make install - cd conformance - make - - name: Ensure bundled types are up-to-date run: | - export PATH="$PATH:$HOME/protobuf/install/bin" - ./gradlew -Dprotoc.path=$HOME/protobuf/install \ - :runtime:generateWellKnownTypes \ + ./gradlew :runtime:generateWellKnownTypes \ :runtime:generateTestTypes \ :protoc-gen-kotlin:protoc-gen-kotlin-lib:generateProto \ :conformance:conformance-lib:generateProto @@ -134,8 +111,32 @@ jobs: name: error-report path: build-reports.zip + build-conformance-test-runner: + runs-on: ubuntu-18.04 + + steps: + - name: Cache protobuf conformance-test-runner ${{ env.PROTOBUF_CONFORMANCE_VERSION }} + uses: actions/cache@v2 + id: cache-protobuf + with: + path: ~/protobuf + key: ${{ runner.os }}-protobuf-${{ env.PROTOBUF_CONFORMANCE_VERSION }} + + - name: Build protobuf conformance-test-runner + if: steps.cache-protobuf.outputs.cache-hit != 'true' + run: | + cd ~ + curl -sSLO https://github.com/protocolbuffers/protobuf/releases/download/v${{ env.PROTOBUF_CONFORMANCE_VERSION }}/protobuf-all-${{ env.POTOBUF_CONFORMANCE_VERSION }}.tar.gz + tar xzvf protobuf-all-${{ env.PROTOBUF_CONFORMANCE_VERSION }}.tar.gz + mv protobuf-${{ env.PROTOBUF_CONFORMANCE_VERSION }} protobuf + cd protobuf + ./configure + make + cd conformance + make + conformance: - needs: build + needs: [build, build-conformance-test-runner] strategy: matrix: platform: [jvm, js, linux] @@ -155,11 +156,11 @@ jobs: with: node-version: ${{ env.NODEJS_VERSION }} - - name: Cache protobuf ${{ env.PROTOBUF_VERSION }} + - name: Cache protobuf conformance-test-runner ${{ env.PROTOBUF_CONFORMANCE_VERSION }} uses: actions/cache@v2 with: path: ~/protobuf - key: ${{ runner.os }}-protobuf-${{ env.PROTOBUF_VERSION }} + key: ${{ runner.os }}-protobuf-${{ env.PROTOBUF_CONFORMANCE_VERSION }} - name: Download conformance test files uses: actions/download-artifact@v2 diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f6a1618..c8f219f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,6 +31,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), * `pbandk-runtime` on JVM and Android no longer depends on the `protobuf-java` library. It instead uses the same pure-Kotlin implementation of protobuf primitives that is used by the `pbandk-runtime` on Kotlin/Native. This avoids dependency conflicts with other libraries (such as `com.google.firebase:firebase-perf` on Android). (PRs [#124], [#148], [#151], fixes [#91], [#138]) (thanks @jeroenmols) * Updated protobuf well-known types to the versions shipped with protobuf 3.15.5. * Updated `pbandk-runtime-js` dependency on `protobuf.js` to `6.10.2`. +* Building pbandk no longer requires downloading and compiling protobuf. Running conformance tests still requires compiling protobuf however. ### Fixed diff --git a/README.md b/README.md index a9b4ef35..e6e9c4d7 100644 --- a/README.md +++ b/README.md @@ -511,14 +511,12 @@ To build the runtime library for both JS and the JVM, run: If any changes are made to the generated code that is output by `protoc-gen-kotlin`, then the well-known types (and other proto types used by pbandk) need to be re-generated using the updated -`protoc-gen-kotlin` binary. To do this, first download a recent [release of `protoc`](https://github.com/protocolbuffers/protobuf/releases), -extract it to a local directory, and then run: +`protoc-gen-kotlin` binary: ``` -./gradlew -Dprotoc.path=path/to/protobuf/install/directory \ - :runtime:generateWellKnownTypes - :runtime:generateTestTypes - :protoc-gen-kotlin:protoc-gen-kotlin-lib:generateProto +./gradlew :runtime:generateWellKnownTypes \ + :runtime:generateTestTypes \ + :protoc-gen-kotlin:protoc-gen-kotlin-lib:generateProto \ :conformance:conformance-lib:generateProto ``` @@ -554,7 +552,9 @@ export CONF_TEST_PATH="$(pwd)/conformance-test-runner" Now, back in `pbandk`, build all JS. JVM and native projects via: ``` -./gradlew :conformance:conformance-lib:assemble :conformance:conformance-jvm:installDist :conformance:conformance-native:build +./gradlew :conformance:conformance-lib:assemble \ + :conformance:conformance-jvm:installDist \ + :conformance:conformance-native:build ``` You are now ready to run the conformance tests. Make sure `CONF_TEST_PATH` environment variable is set to `path/to/protobuf/conformance/conformance-test-runner` (see above). diff --git a/build.gradle.kts b/build.gradle.kts index dc15a85e..a2d1448d 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -9,8 +9,8 @@ plugins { kotlin("multiplatform") version Versions.kotlin apply false id("com.android.library") version Versions.androidGradlePlugin apply false id("org.springframework.boot") version Versions.springBootGradlePlugin apply false - id("com.google.osdetector") version Versions.osDetectorGradlePlugin apply false + id("com.google.osdetector") version Versions.osDetectorGradlePlugin id("binary-compatibility-validator") version Versions.binaryCompatibilityValidatorGradlePlugin id("io.github.gradle-nexus.publish-plugin") version Versions.nexusPublishGradlePlugin } @@ -54,11 +54,22 @@ if (signingKeyAsciiArmored.isPresent) { logger.info("PGP signing key not defined, skipping signing configuration") } +val downloadProtoc by configurations.creating { + isTransitive = false +} + val wellKnownTypes by configurations.creating { isTransitive = false } dependencies { + downloadProtoc( + group = "com.google.protobuf", + name = "protoc", + version = Versions.protoc, + classifier = osdetector.classifier, + ext = "exe" + ) wellKnownTypes("com.google.protobuf:protobuf-java:${Versions.protobufJava}") } @@ -89,4 +100,4 @@ allprojects { ) } } -} \ No newline at end of file +} diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts index 4ccbdb80..34da0bfa 100644 --- a/buildSrc/build.gradle.kts +++ b/buildSrc/build.gradle.kts @@ -8,4 +8,8 @@ repositories { dependencies { implementation("com.google.guava:guava:28.0-jre") -} \ No newline at end of file +} + +kotlinDslPluginOptions { + experimentalWarning.set(false) +} diff --git a/buildSrc/src/main/kotlin/DescriptorProtocTask.kt b/buildSrc/src/main/kotlin/DescriptorProtocTask.kt index 5ad24a60..7d676f47 100644 --- a/buildSrc/src/main/kotlin/DescriptorProtocTask.kt +++ b/buildSrc/src/main/kotlin/DescriptorProtocTask.kt @@ -1,45 +1,7 @@ -import org.gradle.api.file.DirectoryProperty -import org.gradle.api.file.FileCollection -import org.gradle.api.provider.Property -import org.gradle.api.tasks.* -import org.gradle.kotlin.dsl.property - @Suppress("UnstableApiUsage") -open class DescriptorProtocTask : AbstractExecTask(DescriptorProtocTask::class.java) { - @InputDirectory - val includeDir: DirectoryProperty = project.objects.directoryProperty() - - @OutputDirectory - val outputDir: DirectoryProperty = project.objects.directoryProperty() - - @Input - val protoc: Property = project.objects.property().apply { - convention("protoc") - } - - @Input - val descriptorSetOutput: Property = project.objects.property().apply { - convention("fileDescriptor.protoset") - } - - private val protoFileDir: DirectoryProperty = project.objects.directoryProperty().apply { - convention(includeDir) - } - - @InputFiles - @SkipWhenEmpty - val protoFiles: FileCollection = protoFileDir.asFileTree.matching { - this.include("*.proto") - } - - override fun exec() { - executable = protoc.get() - - args("--proto_path=${includeDir.get()}") - args("--descriptor_set_out=${outputDir.get().file(descriptorSetOutput.get()).asFile.absolutePath}") - - args(protoFiles.map { it.absolutePath }) - - super.exec() +open class DescriptorProtocTask : ProtocTask() { + init { + plugin.set("descriptor_set") + outputFileName.convention("fileDescriptor.protoset") } } diff --git a/buildSrc/src/main/kotlin/ProtocTask.kt b/buildSrc/src/main/kotlin/ProtocTask.kt index 9ead9b5d..de9d2347 100644 --- a/buildSrc/src/main/kotlin/ProtocTask.kt +++ b/buildSrc/src/main/kotlin/ProtocTask.kt @@ -1,10 +1,21 @@ +import org.gradle.api.file.Directory import org.gradle.api.file.DirectoryProperty import org.gradle.api.file.FileCollection import org.gradle.api.file.RegularFileProperty import org.gradle.api.provider.ListProperty import org.gradle.api.provider.Property -import org.gradle.api.tasks.* +import org.gradle.api.provider.Provider +import org.gradle.api.tasks.AbstractExecTask +import org.gradle.api.tasks.Input +import org.gradle.api.tasks.InputDirectory +import org.gradle.api.tasks.InputFile +import org.gradle.api.tasks.InputFiles +import org.gradle.api.tasks.Optional +import org.gradle.api.tasks.OutputDirectory +import org.gradle.api.tasks.SkipWhenEmpty +import org.gradle.api.tasks.Sync import org.gradle.kotlin.dsl.listProperty +import org.gradle.kotlin.dsl.named import org.gradle.kotlin.dsl.property @Suppress("UnstableApiUsage") @@ -12,18 +23,22 @@ open class ProtocTask : AbstractExecTask(ProtocTask::class.java) { @InputDirectory val includeDir: DirectoryProperty = project.objects.directoryProperty() + @InputDirectory + val wellKnownTypesDir: Provider = project.layout.dir( + project.rootProject.tasks.named("extractWellKnownTypeProtos").map { it.destinationDir } + ) + @OutputDirectory val outputDir: DirectoryProperty = project.objects.directoryProperty() @Input - val protoc: Property = project.objects.property().apply { - convention( - project.providers.systemProperty("protoc.path") - .map { project.layout.projectDirectory.dir(it).file("bin/protoc") } - .map { it.asFile.absolutePath } - .orElse("protoc") - ) - } + @Optional + val outputFileName: Property = project.objects.property() + + @InputFile + val protoc: RegularFileProperty = project.objects.fileProperty().fileProvider( + project.rootProject.configurations.named("downloadProtoc").map { it.singleFile } + ) @Input val plugin: Property = project.objects.property() @@ -51,20 +66,27 @@ open class ProtocTask : AbstractExecTask(ProtocTask::class.java) { } override fun exec() { - executable = protoc.get() + executable = protoc.get().asFile.also { + it.setExecutable(true) + }.absolutePath + + // If outputFileName was specified, append it to outputDir. Otherwise use outputDir as-is. + val output = outputFileName.flatMap { outputDir.file(it) }.map { it.asFile } + .orElse(outputDir.asFile) // Build CLI args args( pluginOptions.orNull ?.takeUnless { it.isEmpty() } ?.joinToString(separator = ",", postfix = ":") { (k, v) -> "$k=$v" } - .let { "--${plugin.get()}_out=${it.orEmpty()}${outputDir.get()}" } + .let { "--${plugin.get()}_out=${it.orEmpty()}${output.get()}" } ) pluginPath.orNull?.let { args("--plugin=protoc-gen-${plugin.get()}=${it.asFile.absolutePath}") } + args("-I", wellKnownTypesDir.get()) args("-I", includeDir.get()) args(protoFiles.map { it.absolutePath }) diff --git a/buildSrc/src/main/kotlin/Versions.kt b/buildSrc/src/main/kotlin/Versions.kt index 2bd3df2b..9b376770 100644 --- a/buildSrc/src/main/kotlin/Versions.kt +++ b/buildSrc/src/main/kotlin/Versions.kt @@ -10,8 +10,8 @@ object Versions { const val nexusPublishGradlePlugin = "1.1.0" const val robolectric = "10-robolectric-5803371" // Only update when Android Studio supports Java 11 (11-x requires Java 9) const val osDetectorGradlePlugin = "1.6.2" - const val protoc = "3.10.1" - const val protobufJava = "3.15.5" + const val protoc = "3.15.5" + const val protobufJava = protoc const val protobufJs = "6.10.2" const val springBootGradlePlugin = "2.3.7.RELEASE" } diff --git a/jvm-test-types/src/main/java/com/google/protobuf_test_messages/proto3/TestMessagesProto3.java b/jvm-test-types/src/main/java/com/google/protobuf_test_messages/proto3/TestMessagesProto3.java index 52ed34c7..cfbcce06 100644 --- a/jvm-test-types/src/main/java/com/google/protobuf_test_messages/proto3/TestMessagesProto3.java +++ b/jvm-test-types/src/main/java/com/google/protobuf_test_messages/proto3/TestMessagesProto3.java @@ -93,6 +93,10 @@ public ForeignEnum findValueByNumber(int number) { public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() { + if (this == UNRECOGNIZED) { + throw new java.lang.IllegalStateException( + "Can't get the descriptor of an unrecognized enum value."); + } return getDescriptor().getValues().get(ordinal()); } public final com.google.protobuf.Descriptors.EnumDescriptor @@ -1998,6 +2002,11 @@ int getMapStringForeignEnumValueOrDefault( int getMapStringForeignEnumValueOrThrow( java.lang.String key); + /** + * uint32 oneof_uint32 = 111; + * @return Whether the oneofUint32 field is set. + */ + boolean hasOneofUint32(); /** * uint32 oneof_uint32 = 111; * @return The oneofUint32. @@ -2019,6 +2028,11 @@ int getMapStringForeignEnumValueOrThrow( */ com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedMessageOrBuilder getOneofNestedMessageOrBuilder(); + /** + * string oneof_string = 113; + * @return Whether the oneofString field is set. + */ + boolean hasOneofString(); /** * string oneof_string = 113; * @return The oneofString. @@ -2031,36 +2045,66 @@ int getMapStringForeignEnumValueOrThrow( com.google.protobuf.ByteString getOneofStringBytes(); + /** + * bytes oneof_bytes = 114; + * @return Whether the oneofBytes field is set. + */ + boolean hasOneofBytes(); /** * bytes oneof_bytes = 114; * @return The oneofBytes. */ com.google.protobuf.ByteString getOneofBytes(); + /** + * bool oneof_bool = 115; + * @return Whether the oneofBool field is set. + */ + boolean hasOneofBool(); /** * bool oneof_bool = 115; * @return The oneofBool. */ boolean getOneofBool(); + /** + * uint64 oneof_uint64 = 116; + * @return Whether the oneofUint64 field is set. + */ + boolean hasOneofUint64(); /** * uint64 oneof_uint64 = 116; * @return The oneofUint64. */ long getOneofUint64(); + /** + * float oneof_float = 117; + * @return Whether the oneofFloat field is set. + */ + boolean hasOneofFloat(); /** * float oneof_float = 117; * @return The oneofFloat. */ float getOneofFloat(); + /** + * double oneof_double = 118; + * @return Whether the oneofDouble field is set. + */ + boolean hasOneofDouble(); /** * double oneof_double = 118; * @return The oneofDouble. */ double getOneofDouble(); + /** + * .protobuf_test_messages.proto3.TestAllTypesProto3.NestedEnum oneof_enum = 119; + * @return Whether the oneofEnum field is set. + */ + boolean hasOneofEnum(); /** * .protobuf_test_messages.proto3.TestAllTypesProto3.NestedEnum oneof_enum = 119; * @return The enum numeric value on the wire for oneofEnum. @@ -2820,7 +2864,7 @@ com.google.protobuf.ListValueOrBuilder getRepeatedListValueOrBuilder( * * Protobuf type {@code protobuf_test_messages.proto3.TestAllTypesProto3} */ - public static final class TestAllTypesProto3 extends + public static final class TestAllTypesProto3 extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:protobuf_test_messages.proto3.TestAllTypesProto3) TestAllTypesProto3OrBuilder { @@ -5149,6 +5193,10 @@ public NestedEnum findValueByNumber(int number) { public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() { + if (this == UNRECOGNIZED) { + throw new java.lang.IllegalStateException( + "Can't get the descriptor of an unrecognized enum value."); + } return getDescriptor().getValues().get(ordinal()); } public final com.google.protobuf.Descriptors.EnumDescriptor @@ -5286,6 +5334,10 @@ public AliasedEnum findValueByNumber(int number) { public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() { + if (this == UNRECOGNIZED) { + throw new java.lang.IllegalStateException( + "Can't get the descriptor of an unrecognized enum value."); + } return getDescriptor().getValues().get(ordinal()); } public final com.google.protobuf.Descriptors.EnumDescriptor @@ -5297,10 +5349,12 @@ public AliasedEnum findValueByNumber(int number) { return com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.getDescriptor().getEnumTypes().get(1); } - private static final AliasedEnum[] VALUES = { - ALIAS_FOO, ALIAS_BAR, ALIAS_BAZ, QUX, qux, bAz, - }; - + private static final AliasedEnum[] VALUES = getStaticValuesArray(); + private static AliasedEnum[] getStaticValuesArray() { + return new AliasedEnum[] { + ALIAS_FOO, ALIAS_BAR, ALIAS_BAZ, QUX, qux, bAz, + }; + } public static AliasedEnum valueOf( com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { @@ -5350,7 +5404,7 @@ public interface NestedMessageOrBuilder extends /** * Protobuf type {@code protobuf_test_messages.proto3.TestAllTypesProto3.NestedMessage} */ - public static final class NestedMessage extends + public static final class NestedMessage extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:protobuf_test_messages.proto3.TestAllTypesProto3.NestedMessage) NestedMessageOrBuilder { @@ -5448,6 +5502,7 @@ private NestedMessage( * int32 a = 1; * @return The a. */ + @java.lang.Override public int getA() { return a_; } @@ -5458,6 +5513,7 @@ public int getA() { * .protobuf_test_messages.proto3.TestAllTypesProto3 corecursive = 2; * @return Whether the corecursive field is set. */ + @java.lang.Override public boolean hasCorecursive() { return corecursive_ != null; } @@ -5465,12 +5521,14 @@ public boolean hasCorecursive() { * .protobuf_test_messages.proto3.TestAllTypesProto3 corecursive = 2; * @return The corecursive. */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3 getCorecursive() { return corecursive_ == null ? com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.getDefaultInstance() : corecursive_; } /** * .protobuf_test_messages.proto3.TestAllTypesProto3 corecursive = 2; */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3OrBuilder getCorecursiveOrBuilder() { return getCorecursive(); } @@ -5812,6 +5870,7 @@ public Builder mergeFrom( * int32 a = 1; * @return The a. */ + @java.lang.Override public int getA() { return a_; } @@ -6073,6 +6132,7 @@ public int getNumber() { * int32 optional_int32 = 1; * @return The optionalInt32. */ + @java.lang.Override public int getOptionalInt32() { return optionalInt32_; } @@ -6083,6 +6143,7 @@ public int getOptionalInt32() { * int64 optional_int64 = 2; * @return The optionalInt64. */ + @java.lang.Override public long getOptionalInt64() { return optionalInt64_; } @@ -6093,6 +6154,7 @@ public long getOptionalInt64() { * uint32 optional_uint32 = 3; * @return The optionalUint32. */ + @java.lang.Override public int getOptionalUint32() { return optionalUint32_; } @@ -6103,6 +6165,7 @@ public int getOptionalUint32() { * uint64 optional_uint64 = 4; * @return The optionalUint64. */ + @java.lang.Override public long getOptionalUint64() { return optionalUint64_; } @@ -6113,6 +6176,7 @@ public long getOptionalUint64() { * sint32 optional_sint32 = 5; * @return The optionalSint32. */ + @java.lang.Override public int getOptionalSint32() { return optionalSint32_; } @@ -6123,6 +6187,7 @@ public int getOptionalSint32() { * sint64 optional_sint64 = 6; * @return The optionalSint64. */ + @java.lang.Override public long getOptionalSint64() { return optionalSint64_; } @@ -6133,6 +6198,7 @@ public long getOptionalSint64() { * fixed32 optional_fixed32 = 7; * @return The optionalFixed32. */ + @java.lang.Override public int getOptionalFixed32() { return optionalFixed32_; } @@ -6143,6 +6209,7 @@ public int getOptionalFixed32() { * fixed64 optional_fixed64 = 8; * @return The optionalFixed64. */ + @java.lang.Override public long getOptionalFixed64() { return optionalFixed64_; } @@ -6153,6 +6220,7 @@ public long getOptionalFixed64() { * sfixed32 optional_sfixed32 = 9; * @return The optionalSfixed32. */ + @java.lang.Override public int getOptionalSfixed32() { return optionalSfixed32_; } @@ -6163,6 +6231,7 @@ public int getOptionalSfixed32() { * sfixed64 optional_sfixed64 = 10; * @return The optionalSfixed64. */ + @java.lang.Override public long getOptionalSfixed64() { return optionalSfixed64_; } @@ -6173,6 +6242,7 @@ public long getOptionalSfixed64() { * float optional_float = 11; * @return The optionalFloat. */ + @java.lang.Override public float getOptionalFloat() { return optionalFloat_; } @@ -6183,6 +6253,7 @@ public float getOptionalFloat() { * double optional_double = 12; * @return The optionalDouble. */ + @java.lang.Override public double getOptionalDouble() { return optionalDouble_; } @@ -6193,6 +6264,7 @@ public double getOptionalDouble() { * bool optional_bool = 13; * @return The optionalBool. */ + @java.lang.Override public boolean getOptionalBool() { return optionalBool_; } @@ -6203,6 +6275,7 @@ public boolean getOptionalBool() { * string optional_string = 14; * @return The optionalString. */ + @java.lang.Override public java.lang.String getOptionalString() { java.lang.Object ref = optionalString_; if (ref instanceof java.lang.String) { @@ -6219,6 +6292,7 @@ public java.lang.String getOptionalString() { * string optional_string = 14; * @return The bytes for optionalString. */ + @java.lang.Override public com.google.protobuf.ByteString getOptionalStringBytes() { java.lang.Object ref = optionalString_; @@ -6239,6 +6313,7 @@ public java.lang.String getOptionalString() { * bytes optional_bytes = 15; * @return The optionalBytes. */ + @java.lang.Override public com.google.protobuf.ByteString getOptionalBytes() { return optionalBytes_; } @@ -6249,6 +6324,7 @@ public com.google.protobuf.ByteString getOptionalBytes() { * .protobuf_test_messages.proto3.TestAllTypesProto3.NestedMessage optional_nested_message = 18; * @return Whether the optionalNestedMessage field is set. */ + @java.lang.Override public boolean hasOptionalNestedMessage() { return optionalNestedMessage_ != null; } @@ -6256,12 +6332,14 @@ public boolean hasOptionalNestedMessage() { * .protobuf_test_messages.proto3.TestAllTypesProto3.NestedMessage optional_nested_message = 18; * @return The optionalNestedMessage. */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedMessage getOptionalNestedMessage() { return optionalNestedMessage_ == null ? com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedMessage.getDefaultInstance() : optionalNestedMessage_; } /** * .protobuf_test_messages.proto3.TestAllTypesProto3.NestedMessage optional_nested_message = 18; */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedMessageOrBuilder getOptionalNestedMessageOrBuilder() { return getOptionalNestedMessage(); } @@ -6272,6 +6350,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesP * .protobuf_test_messages.proto3.ForeignMessage optional_foreign_message = 19; * @return Whether the optionalForeignMessage field is set. */ + @java.lang.Override public boolean hasOptionalForeignMessage() { return optionalForeignMessage_ != null; } @@ -6279,12 +6358,14 @@ public boolean hasOptionalForeignMessage() { * .protobuf_test_messages.proto3.ForeignMessage optional_foreign_message = 19; * @return The optionalForeignMessage. */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignMessage getOptionalForeignMessage() { return optionalForeignMessage_ == null ? com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignMessage.getDefaultInstance() : optionalForeignMessage_; } /** * .protobuf_test_messages.proto3.ForeignMessage optional_foreign_message = 19; */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignMessageOrBuilder getOptionalForeignMessageOrBuilder() { return getOptionalForeignMessage(); } @@ -6295,14 +6376,14 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignMessag * .protobuf_test_messages.proto3.TestAllTypesProto3.NestedEnum optional_nested_enum = 21; * @return The enum numeric value on the wire for optionalNestedEnum. */ - public int getOptionalNestedEnumValue() { + @java.lang.Override public int getOptionalNestedEnumValue() { return optionalNestedEnum_; } /** * .protobuf_test_messages.proto3.TestAllTypesProto3.NestedEnum optional_nested_enum = 21; * @return The optionalNestedEnum. */ - public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedEnum getOptionalNestedEnum() { + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedEnum getOptionalNestedEnum() { @SuppressWarnings("deprecation") com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedEnum result = com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedEnum.valueOf(optionalNestedEnum_); return result == null ? com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedEnum.UNRECOGNIZED : result; @@ -6314,14 +6395,14 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesP * .protobuf_test_messages.proto3.ForeignEnum optional_foreign_enum = 22; * @return The enum numeric value on the wire for optionalForeignEnum. */ - public int getOptionalForeignEnumValue() { + @java.lang.Override public int getOptionalForeignEnumValue() { return optionalForeignEnum_; } /** * .protobuf_test_messages.proto3.ForeignEnum optional_foreign_enum = 22; * @return The optionalForeignEnum. */ - public com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignEnum getOptionalForeignEnum() { + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignEnum getOptionalForeignEnum() { @SuppressWarnings("deprecation") com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignEnum result = com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignEnum.valueOf(optionalForeignEnum_); return result == null ? com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignEnum.UNRECOGNIZED : result; @@ -6333,14 +6414,14 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignEnum g * .protobuf_test_messages.proto3.TestAllTypesProto3.AliasedEnum optional_aliased_enum = 23; * @return The enum numeric value on the wire for optionalAliasedEnum. */ - public int getOptionalAliasedEnumValue() { + @java.lang.Override public int getOptionalAliasedEnumValue() { return optionalAliasedEnum_; } /** * .protobuf_test_messages.proto3.TestAllTypesProto3.AliasedEnum optional_aliased_enum = 23; * @return The optionalAliasedEnum. */ - public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.AliasedEnum getOptionalAliasedEnum() { + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.AliasedEnum getOptionalAliasedEnum() { @SuppressWarnings("deprecation") com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.AliasedEnum result = com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.AliasedEnum.valueOf(optionalAliasedEnum_); return result == null ? com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.AliasedEnum.UNRECOGNIZED : result; @@ -6352,6 +6433,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesP * string optional_string_piece = 24 [ctype = STRING_PIECE]; * @return The optionalStringPiece. */ + @java.lang.Override public java.lang.String getOptionalStringPiece() { java.lang.Object ref = optionalStringPiece_; if (ref instanceof java.lang.String) { @@ -6368,6 +6450,7 @@ public java.lang.String getOptionalStringPiece() { * string optional_string_piece = 24 [ctype = STRING_PIECE]; * @return The bytes for optionalStringPiece. */ + @java.lang.Override public com.google.protobuf.ByteString getOptionalStringPieceBytes() { java.lang.Object ref = optionalStringPiece_; @@ -6388,6 +6471,7 @@ public java.lang.String getOptionalStringPiece() { * string optional_cord = 25 [ctype = CORD]; * @return The optionalCord. */ + @java.lang.Override public java.lang.String getOptionalCord() { java.lang.Object ref = optionalCord_; if (ref instanceof java.lang.String) { @@ -6404,6 +6488,7 @@ public java.lang.String getOptionalCord() { * string optional_cord = 25 [ctype = CORD]; * @return The bytes for optionalCord. */ + @java.lang.Override public com.google.protobuf.ByteString getOptionalCordBytes() { java.lang.Object ref = optionalCord_; @@ -6424,6 +6509,7 @@ public java.lang.String getOptionalCord() { * .protobuf_test_messages.proto3.TestAllTypesProto3 recursive_message = 27; * @return Whether the recursiveMessage field is set. */ + @java.lang.Override public boolean hasRecursiveMessage() { return recursiveMessage_ != null; } @@ -6431,12 +6517,14 @@ public boolean hasRecursiveMessage() { * .protobuf_test_messages.proto3.TestAllTypesProto3 recursive_message = 27; * @return The recursiveMessage. */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3 getRecursiveMessage() { return recursiveMessage_ == null ? com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.getDefaultInstance() : recursiveMessage_; } /** * .protobuf_test_messages.proto3.TestAllTypesProto3 recursive_message = 27; */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3OrBuilder getRecursiveMessageOrBuilder() { return getRecursiveMessage(); } @@ -6451,6 +6539,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesP * repeated int32 repeated_int32 = 31; * @return A list containing the repeatedInt32. */ + @java.lang.Override public java.util.List getRepeatedInt32List() { return repeatedInt32_; @@ -6486,6 +6575,7 @@ public int getRepeatedInt32(int index) { * repeated int64 repeated_int64 = 32; * @return A list containing the repeatedInt64. */ + @java.lang.Override public java.util.List getRepeatedInt64List() { return repeatedInt64_; @@ -6513,6 +6603,7 @@ public long getRepeatedInt64(int index) { * repeated uint32 repeated_uint32 = 33; * @return A list containing the repeatedUint32. */ + @java.lang.Override public java.util.List getRepeatedUint32List() { return repeatedUint32_; @@ -6540,6 +6631,7 @@ public int getRepeatedUint32(int index) { * repeated uint64 repeated_uint64 = 34; * @return A list containing the repeatedUint64. */ + @java.lang.Override public java.util.List getRepeatedUint64List() { return repeatedUint64_; @@ -6567,6 +6659,7 @@ public long getRepeatedUint64(int index) { * repeated sint32 repeated_sint32 = 35; * @return A list containing the repeatedSint32. */ + @java.lang.Override public java.util.List getRepeatedSint32List() { return repeatedSint32_; @@ -6594,6 +6687,7 @@ public int getRepeatedSint32(int index) { * repeated sint64 repeated_sint64 = 36; * @return A list containing the repeatedSint64. */ + @java.lang.Override public java.util.List getRepeatedSint64List() { return repeatedSint64_; @@ -6621,6 +6715,7 @@ public long getRepeatedSint64(int index) { * repeated fixed32 repeated_fixed32 = 37; * @return A list containing the repeatedFixed32. */ + @java.lang.Override public java.util.List getRepeatedFixed32List() { return repeatedFixed32_; @@ -6648,6 +6743,7 @@ public int getRepeatedFixed32(int index) { * repeated fixed64 repeated_fixed64 = 38; * @return A list containing the repeatedFixed64. */ + @java.lang.Override public java.util.List getRepeatedFixed64List() { return repeatedFixed64_; @@ -6675,6 +6771,7 @@ public long getRepeatedFixed64(int index) { * repeated sfixed32 repeated_sfixed32 = 39; * @return A list containing the repeatedSfixed32. */ + @java.lang.Override public java.util.List getRepeatedSfixed32List() { return repeatedSfixed32_; @@ -6702,6 +6799,7 @@ public int getRepeatedSfixed32(int index) { * repeated sfixed64 repeated_sfixed64 = 40; * @return A list containing the repeatedSfixed64. */ + @java.lang.Override public java.util.List getRepeatedSfixed64List() { return repeatedSfixed64_; @@ -6729,6 +6827,7 @@ public long getRepeatedSfixed64(int index) { * repeated float repeated_float = 41; * @return A list containing the repeatedFloat. */ + @java.lang.Override public java.util.List getRepeatedFloatList() { return repeatedFloat_; @@ -6756,6 +6855,7 @@ public float getRepeatedFloat(int index) { * repeated double repeated_double = 42; * @return A list containing the repeatedDouble. */ + @java.lang.Override public java.util.List getRepeatedDoubleList() { return repeatedDouble_; @@ -6783,6 +6883,7 @@ public double getRepeatedDouble(int index) { * repeated bool repeated_bool = 43; * @return A list containing the repeatedBool. */ + @java.lang.Override public java.util.List getRepeatedBoolList() { return repeatedBool_; @@ -6845,6 +6946,7 @@ public java.lang.String getRepeatedString(int index) { * repeated bytes repeated_bytes = 45; * @return A list containing the repeatedBytes. */ + @java.lang.Override public java.util.List getRepeatedBytesList() { return repeatedBytes_; @@ -6870,12 +6972,14 @@ public com.google.protobuf.ByteString getRepeatedBytes(int index) { /** * repeated .protobuf_test_messages.proto3.TestAllTypesProto3.NestedMessage repeated_nested_message = 48; */ + @java.lang.Override public java.util.List getRepeatedNestedMessageList() { return repeatedNestedMessage_; } /** * repeated .protobuf_test_messages.proto3.TestAllTypesProto3.NestedMessage repeated_nested_message = 48; */ + @java.lang.Override public java.util.List getRepeatedNestedMessageOrBuilderList() { return repeatedNestedMessage_; @@ -6883,18 +6987,21 @@ public java.util.Listrepeated .protobuf_test_messages.proto3.TestAllTypesProto3.NestedMessage repeated_nested_message = 48; */ + @java.lang.Override public int getRepeatedNestedMessageCount() { return repeatedNestedMessage_.size(); } /** * repeated .protobuf_test_messages.proto3.TestAllTypesProto3.NestedMessage repeated_nested_message = 48; */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedMessage getRepeatedNestedMessage(int index) { return repeatedNestedMessage_.get(index); } /** * repeated .protobuf_test_messages.proto3.TestAllTypesProto3.NestedMessage repeated_nested_message = 48; */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedMessageOrBuilder getRepeatedNestedMessageOrBuilder( int index) { return repeatedNestedMessage_.get(index); @@ -6905,12 +7012,14 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesP /** * repeated .protobuf_test_messages.proto3.ForeignMessage repeated_foreign_message = 49; */ + @java.lang.Override public java.util.List getRepeatedForeignMessageList() { return repeatedForeignMessage_; } /** * repeated .protobuf_test_messages.proto3.ForeignMessage repeated_foreign_message = 49; */ + @java.lang.Override public java.util.List getRepeatedForeignMessageOrBuilderList() { return repeatedForeignMessage_; @@ -6918,18 +7027,21 @@ public java.util.Listrepeated .protobuf_test_messages.proto3.ForeignMessage repeated_foreign_message = 49; */ + @java.lang.Override public int getRepeatedForeignMessageCount() { return repeatedForeignMessage_.size(); } /** * repeated .protobuf_test_messages.proto3.ForeignMessage repeated_foreign_message = 49; */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignMessage getRepeatedForeignMessage(int index) { return repeatedForeignMessage_.get(index); } /** * repeated .protobuf_test_messages.proto3.ForeignMessage repeated_foreign_message = 49; */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignMessageOrBuilder getRepeatedForeignMessageOrBuilder( int index) { return repeatedForeignMessage_.get(index); @@ -6951,14 +7063,16 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesP * repeated .protobuf_test_messages.proto3.TestAllTypesProto3.NestedEnum repeated_nested_enum = 51; * @return A list containing the repeatedNestedEnum. */ + @java.lang.Override public java.util.List getRepeatedNestedEnumList() { return new com.google.protobuf.Internal.ListAdapter< java.lang.Integer, com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedEnum>(repeatedNestedEnum_, repeatedNestedEnum_converter_); } /** * repeated .protobuf_test_messages.proto3.TestAllTypesProto3.NestedEnum repeated_nested_enum = 51; - * @param value The repeatedNestedEnum to add. + * @return The count of repeatedNestedEnum. */ + @java.lang.Override public int getRepeatedNestedEnumCount() { return repeatedNestedEnum_.size(); } @@ -6967,6 +7081,7 @@ public int getRepeatedNestedEnumCount() { * @param index The index of the element to return. * @return The repeatedNestedEnum at the given index. */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedEnum getRepeatedNestedEnum(int index) { return repeatedNestedEnum_converter_.convert(repeatedNestedEnum_.get(index)); } @@ -6974,6 +7089,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesP * repeated .protobuf_test_messages.proto3.TestAllTypesProto3.NestedEnum repeated_nested_enum = 51; * @return A list containing the enum numeric values on the wire for repeatedNestedEnum. */ + @java.lang.Override public java.util.List getRepeatedNestedEnumValueList() { return repeatedNestedEnum_; @@ -6983,6 +7099,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesP * @param index The index of the value to return. * @return The enum numeric value on the wire of repeatedNestedEnum at the given index. */ + @java.lang.Override public int getRepeatedNestedEnumValue(int index) { return repeatedNestedEnum_.get(index); } @@ -7004,14 +7121,16 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignEnum c * repeated .protobuf_test_messages.proto3.ForeignEnum repeated_foreign_enum = 52; * @return A list containing the repeatedForeignEnum. */ + @java.lang.Override public java.util.List getRepeatedForeignEnumList() { return new com.google.protobuf.Internal.ListAdapter< java.lang.Integer, com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignEnum>(repeatedForeignEnum_, repeatedForeignEnum_converter_); } /** * repeated .protobuf_test_messages.proto3.ForeignEnum repeated_foreign_enum = 52; - * @param value The repeatedForeignEnum to add. + * @return The count of repeatedForeignEnum. */ + @java.lang.Override public int getRepeatedForeignEnumCount() { return repeatedForeignEnum_.size(); } @@ -7020,6 +7139,7 @@ public int getRepeatedForeignEnumCount() { * @param index The index of the element to return. * @return The repeatedForeignEnum at the given index. */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignEnum getRepeatedForeignEnum(int index) { return repeatedForeignEnum_converter_.convert(repeatedForeignEnum_.get(index)); } @@ -7027,6 +7147,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignEnum g * repeated .protobuf_test_messages.proto3.ForeignEnum repeated_foreign_enum = 52; * @return A list containing the enum numeric values on the wire for repeatedForeignEnum. */ + @java.lang.Override public java.util.List getRepeatedForeignEnumValueList() { return repeatedForeignEnum_; @@ -7036,6 +7157,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignEnum g * @param index The index of the value to return. * @return The enum numeric value on the wire of repeatedForeignEnum at the given index. */ + @java.lang.Override public int getRepeatedForeignEnumValue(int index) { return repeatedForeignEnum_.get(index); } @@ -7121,6 +7243,7 @@ public java.lang.String getRepeatedCord(int index) { * repeated int32 packed_int32 = 75 [packed = true]; * @return A list containing the packedInt32. */ + @java.lang.Override public java.util.List getPackedInt32List() { return packedInt32_; @@ -7156,6 +7279,7 @@ public int getPackedInt32(int index) { * repeated int64 packed_int64 = 76 [packed = true]; * @return A list containing the packedInt64. */ + @java.lang.Override public java.util.List getPackedInt64List() { return packedInt64_; @@ -7183,6 +7307,7 @@ public long getPackedInt64(int index) { * repeated uint32 packed_uint32 = 77 [packed = true]; * @return A list containing the packedUint32. */ + @java.lang.Override public java.util.List getPackedUint32List() { return packedUint32_; @@ -7210,6 +7335,7 @@ public int getPackedUint32(int index) { * repeated uint64 packed_uint64 = 78 [packed = true]; * @return A list containing the packedUint64. */ + @java.lang.Override public java.util.List getPackedUint64List() { return packedUint64_; @@ -7237,6 +7363,7 @@ public long getPackedUint64(int index) { * repeated sint32 packed_sint32 = 79 [packed = true]; * @return A list containing the packedSint32. */ + @java.lang.Override public java.util.List getPackedSint32List() { return packedSint32_; @@ -7264,6 +7391,7 @@ public int getPackedSint32(int index) { * repeated sint64 packed_sint64 = 80 [packed = true]; * @return A list containing the packedSint64. */ + @java.lang.Override public java.util.List getPackedSint64List() { return packedSint64_; @@ -7291,6 +7419,7 @@ public long getPackedSint64(int index) { * repeated fixed32 packed_fixed32 = 81 [packed = true]; * @return A list containing the packedFixed32. */ + @java.lang.Override public java.util.List getPackedFixed32List() { return packedFixed32_; @@ -7318,6 +7447,7 @@ public int getPackedFixed32(int index) { * repeated fixed64 packed_fixed64 = 82 [packed = true]; * @return A list containing the packedFixed64. */ + @java.lang.Override public java.util.List getPackedFixed64List() { return packedFixed64_; @@ -7345,6 +7475,7 @@ public long getPackedFixed64(int index) { * repeated sfixed32 packed_sfixed32 = 83 [packed = true]; * @return A list containing the packedSfixed32. */ + @java.lang.Override public java.util.List getPackedSfixed32List() { return packedSfixed32_; @@ -7372,6 +7503,7 @@ public int getPackedSfixed32(int index) { * repeated sfixed64 packed_sfixed64 = 84 [packed = true]; * @return A list containing the packedSfixed64. */ + @java.lang.Override public java.util.List getPackedSfixed64List() { return packedSfixed64_; @@ -7399,6 +7531,7 @@ public long getPackedSfixed64(int index) { * repeated float packed_float = 85 [packed = true]; * @return A list containing the packedFloat. */ + @java.lang.Override public java.util.List getPackedFloatList() { return packedFloat_; @@ -7426,6 +7559,7 @@ public float getPackedFloat(int index) { * repeated double packed_double = 86 [packed = true]; * @return A list containing the packedDouble. */ + @java.lang.Override public java.util.List getPackedDoubleList() { return packedDouble_; @@ -7453,6 +7587,7 @@ public double getPackedDouble(int index) { * repeated bool packed_bool = 87 [packed = true]; * @return A list containing the packedBool. */ + @java.lang.Override public java.util.List getPackedBoolList() { return packedBool_; @@ -7490,14 +7625,16 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesP * repeated .protobuf_test_messages.proto3.TestAllTypesProto3.NestedEnum packed_nested_enum = 88 [packed = true]; * @return A list containing the packedNestedEnum. */ + @java.lang.Override public java.util.List getPackedNestedEnumList() { return new com.google.protobuf.Internal.ListAdapter< java.lang.Integer, com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedEnum>(packedNestedEnum_, packedNestedEnum_converter_); } /** * repeated .protobuf_test_messages.proto3.TestAllTypesProto3.NestedEnum packed_nested_enum = 88 [packed = true]; - * @param value The packedNestedEnum to add. + * @return The count of packedNestedEnum. */ + @java.lang.Override public int getPackedNestedEnumCount() { return packedNestedEnum_.size(); } @@ -7506,6 +7643,7 @@ public int getPackedNestedEnumCount() { * @param index The index of the element to return. * @return The packedNestedEnum at the given index. */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedEnum getPackedNestedEnum(int index) { return packedNestedEnum_converter_.convert(packedNestedEnum_.get(index)); } @@ -7513,6 +7651,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesP * repeated .protobuf_test_messages.proto3.TestAllTypesProto3.NestedEnum packed_nested_enum = 88 [packed = true]; * @return A list containing the enum numeric values on the wire for packedNestedEnum. */ + @java.lang.Override public java.util.List getPackedNestedEnumValueList() { return packedNestedEnum_; @@ -7522,6 +7661,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesP * @param index The index of the value to return. * @return The enum numeric value on the wire of packedNestedEnum at the given index. */ + @java.lang.Override public int getPackedNestedEnumValue(int index) { return packedNestedEnum_.get(index); } @@ -7537,6 +7677,7 @@ public int getPackedNestedEnumValue(int index) { * repeated int32 unpacked_int32 = 89 [packed = false]; * @return A list containing the unpackedInt32. */ + @java.lang.Override public java.util.List getUnpackedInt32List() { return unpackedInt32_; @@ -7571,6 +7712,7 @@ public int getUnpackedInt32(int index) { * repeated int64 unpacked_int64 = 90 [packed = false]; * @return A list containing the unpackedInt64. */ + @java.lang.Override public java.util.List getUnpackedInt64List() { return unpackedInt64_; @@ -7597,6 +7739,7 @@ public long getUnpackedInt64(int index) { * repeated uint32 unpacked_uint32 = 91 [packed = false]; * @return A list containing the unpackedUint32. */ + @java.lang.Override public java.util.List getUnpackedUint32List() { return unpackedUint32_; @@ -7623,6 +7766,7 @@ public int getUnpackedUint32(int index) { * repeated uint64 unpacked_uint64 = 92 [packed = false]; * @return A list containing the unpackedUint64. */ + @java.lang.Override public java.util.List getUnpackedUint64List() { return unpackedUint64_; @@ -7649,6 +7793,7 @@ public long getUnpackedUint64(int index) { * repeated sint32 unpacked_sint32 = 93 [packed = false]; * @return A list containing the unpackedSint32. */ + @java.lang.Override public java.util.List getUnpackedSint32List() { return unpackedSint32_; @@ -7675,6 +7820,7 @@ public int getUnpackedSint32(int index) { * repeated sint64 unpacked_sint64 = 94 [packed = false]; * @return A list containing the unpackedSint64. */ + @java.lang.Override public java.util.List getUnpackedSint64List() { return unpackedSint64_; @@ -7701,6 +7847,7 @@ public long getUnpackedSint64(int index) { * repeated fixed32 unpacked_fixed32 = 95 [packed = false]; * @return A list containing the unpackedFixed32. */ + @java.lang.Override public java.util.List getUnpackedFixed32List() { return unpackedFixed32_; @@ -7727,6 +7874,7 @@ public int getUnpackedFixed32(int index) { * repeated fixed64 unpacked_fixed64 = 96 [packed = false]; * @return A list containing the unpackedFixed64. */ + @java.lang.Override public java.util.List getUnpackedFixed64List() { return unpackedFixed64_; @@ -7753,6 +7901,7 @@ public long getUnpackedFixed64(int index) { * repeated sfixed32 unpacked_sfixed32 = 97 [packed = false]; * @return A list containing the unpackedSfixed32. */ + @java.lang.Override public java.util.List getUnpackedSfixed32List() { return unpackedSfixed32_; @@ -7779,6 +7928,7 @@ public int getUnpackedSfixed32(int index) { * repeated sfixed64 unpacked_sfixed64 = 98 [packed = false]; * @return A list containing the unpackedSfixed64. */ + @java.lang.Override public java.util.List getUnpackedSfixed64List() { return unpackedSfixed64_; @@ -7805,6 +7955,7 @@ public long getUnpackedSfixed64(int index) { * repeated float unpacked_float = 99 [packed = false]; * @return A list containing the unpackedFloat. */ + @java.lang.Override public java.util.List getUnpackedFloatList() { return unpackedFloat_; @@ -7831,6 +7982,7 @@ public float getUnpackedFloat(int index) { * repeated double unpacked_double = 100 [packed = false]; * @return A list containing the unpackedDouble. */ + @java.lang.Override public java.util.List getUnpackedDoubleList() { return unpackedDouble_; @@ -7857,6 +8009,7 @@ public double getUnpackedDouble(int index) { * repeated bool unpacked_bool = 101 [packed = false]; * @return A list containing the unpackedBool. */ + @java.lang.Override public java.util.List getUnpackedBoolList() { return unpackedBool_; @@ -7893,14 +8046,16 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesP * repeated .protobuf_test_messages.proto3.TestAllTypesProto3.NestedEnum unpacked_nested_enum = 102 [packed = false]; * @return A list containing the unpackedNestedEnum. */ + @java.lang.Override public java.util.List getUnpackedNestedEnumList() { return new com.google.protobuf.Internal.ListAdapter< java.lang.Integer, com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedEnum>(unpackedNestedEnum_, unpackedNestedEnum_converter_); } /** * repeated .protobuf_test_messages.proto3.TestAllTypesProto3.NestedEnum unpacked_nested_enum = 102 [packed = false]; - * @param value The unpackedNestedEnum to add. + * @return The count of unpackedNestedEnum. */ + @java.lang.Override public int getUnpackedNestedEnumCount() { return unpackedNestedEnum_.size(); } @@ -7909,6 +8064,7 @@ public int getUnpackedNestedEnumCount() { * @param index The index of the element to return. * @return The unpackedNestedEnum at the given index. */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedEnum getUnpackedNestedEnum(int index) { return unpackedNestedEnum_converter_.convert(unpackedNestedEnum_.get(index)); } @@ -7916,6 +8072,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesP * repeated .protobuf_test_messages.proto3.TestAllTypesProto3.NestedEnum unpacked_nested_enum = 102 [packed = false]; * @return A list containing the enum numeric values on the wire for unpackedNestedEnum. */ + @java.lang.Override public java.util.List getUnpackedNestedEnumValueList() { return unpackedNestedEnum_; @@ -7925,6 +8082,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesP * @param index The index of the value to return. * @return The enum numeric value on the wire of unpackedNestedEnum at the given index. */ + @java.lang.Override public int getUnpackedNestedEnumValue(int index) { return unpackedNestedEnum_.get(index); } @@ -7963,6 +8121,7 @@ public int getMapInt32Int32Count() { * map<int32, int32> map_int32_int32 = 56; */ + @java.lang.Override public boolean containsMapInt32Int32( int key) { @@ -7971,6 +8130,7 @@ public boolean containsMapInt32Int32( /** * Use {@link #getMapInt32Int32Map()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapInt32Int32() { return getMapInt32Int32Map(); @@ -7982,6 +8142,7 @@ public java.util.Map getMapInt32Int32() { * * map<int32, int32> map_int32_int32 = 56; */ + @java.lang.Override public java.util.Map getMapInt32Int32Map() { return internalGetMapInt32Int32().getMap(); @@ -7993,6 +8154,7 @@ public java.util.Map getMapInt32Int32Map() * * map<int32, int32> map_int32_int32 = 56; */ + @java.lang.Override public int getMapInt32Int32OrDefault( int key, @@ -8009,6 +8171,7 @@ public int getMapInt32Int32OrDefault( * * map<int32, int32> map_int32_int32 = 56; */ + @java.lang.Override public int getMapInt32Int32OrThrow( int key) { @@ -8051,6 +8214,7 @@ public int getMapInt64Int64Count() { * map<int64, int64> map_int64_int64 = 57; */ + @java.lang.Override public boolean containsMapInt64Int64( long key) { @@ -8059,6 +8223,7 @@ public boolean containsMapInt64Int64( /** * Use {@link #getMapInt64Int64Map()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapInt64Int64() { return getMapInt64Int64Map(); @@ -8066,6 +8231,7 @@ public java.util.Map getMapInt64Int64() { /** * map<int64, int64> map_int64_int64 = 57; */ + @java.lang.Override public java.util.Map getMapInt64Int64Map() { return internalGetMapInt64Int64().getMap(); @@ -8073,6 +8239,7 @@ public java.util.Map getMapInt64Int64Map() { /** * map<int64, int64> map_int64_int64 = 57; */ + @java.lang.Override public long getMapInt64Int64OrDefault( long key, @@ -8085,6 +8252,7 @@ public long getMapInt64Int64OrDefault( /** * map<int64, int64> map_int64_int64 = 57; */ + @java.lang.Override public long getMapInt64Int64OrThrow( long key) { @@ -8127,6 +8295,7 @@ public int getMapUint32Uint32Count() { * map<uint32, uint32> map_uint32_uint32 = 58; */ + @java.lang.Override public boolean containsMapUint32Uint32( int key) { @@ -8135,6 +8304,7 @@ public boolean containsMapUint32Uint32( /** * Use {@link #getMapUint32Uint32Map()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapUint32Uint32() { return getMapUint32Uint32Map(); @@ -8142,6 +8312,7 @@ public java.util.Map getMapUint32Uint32() /** * map<uint32, uint32> map_uint32_uint32 = 58; */ + @java.lang.Override public java.util.Map getMapUint32Uint32Map() { return internalGetMapUint32Uint32().getMap(); @@ -8149,6 +8320,7 @@ public java.util.Map getMapUint32Uint32Map /** * map<uint32, uint32> map_uint32_uint32 = 58; */ + @java.lang.Override public int getMapUint32Uint32OrDefault( int key, @@ -8161,6 +8333,7 @@ public int getMapUint32Uint32OrDefault( /** * map<uint32, uint32> map_uint32_uint32 = 58; */ + @java.lang.Override public int getMapUint32Uint32OrThrow( int key) { @@ -8203,6 +8376,7 @@ public int getMapUint64Uint64Count() { * map<uint64, uint64> map_uint64_uint64 = 59; */ + @java.lang.Override public boolean containsMapUint64Uint64( long key) { @@ -8211,6 +8385,7 @@ public boolean containsMapUint64Uint64( /** * Use {@link #getMapUint64Uint64Map()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapUint64Uint64() { return getMapUint64Uint64Map(); @@ -8218,6 +8393,7 @@ public java.util.Map getMapUint64Uint64() { /** * map<uint64, uint64> map_uint64_uint64 = 59; */ + @java.lang.Override public java.util.Map getMapUint64Uint64Map() { return internalGetMapUint64Uint64().getMap(); @@ -8225,6 +8401,7 @@ public java.util.Map getMapUint64Uint64Map() { /** * map<uint64, uint64> map_uint64_uint64 = 59; */ + @java.lang.Override public long getMapUint64Uint64OrDefault( long key, @@ -8237,6 +8414,7 @@ public long getMapUint64Uint64OrDefault( /** * map<uint64, uint64> map_uint64_uint64 = 59; */ + @java.lang.Override public long getMapUint64Uint64OrThrow( long key) { @@ -8279,6 +8457,7 @@ public int getMapSint32Sint32Count() { * map<sint32, sint32> map_sint32_sint32 = 60; */ + @java.lang.Override public boolean containsMapSint32Sint32( int key) { @@ -8287,6 +8466,7 @@ public boolean containsMapSint32Sint32( /** * Use {@link #getMapSint32Sint32Map()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapSint32Sint32() { return getMapSint32Sint32Map(); @@ -8294,6 +8474,7 @@ public java.util.Map getMapSint32Sint32() /** * map<sint32, sint32> map_sint32_sint32 = 60; */ + @java.lang.Override public java.util.Map getMapSint32Sint32Map() { return internalGetMapSint32Sint32().getMap(); @@ -8301,6 +8482,7 @@ public java.util.Map getMapSint32Sint32Map /** * map<sint32, sint32> map_sint32_sint32 = 60; */ + @java.lang.Override public int getMapSint32Sint32OrDefault( int key, @@ -8313,6 +8495,7 @@ public int getMapSint32Sint32OrDefault( /** * map<sint32, sint32> map_sint32_sint32 = 60; */ + @java.lang.Override public int getMapSint32Sint32OrThrow( int key) { @@ -8355,6 +8538,7 @@ public int getMapSint64Sint64Count() { * map<sint64, sint64> map_sint64_sint64 = 61; */ + @java.lang.Override public boolean containsMapSint64Sint64( long key) { @@ -8363,6 +8547,7 @@ public boolean containsMapSint64Sint64( /** * Use {@link #getMapSint64Sint64Map()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapSint64Sint64() { return getMapSint64Sint64Map(); @@ -8370,6 +8555,7 @@ public java.util.Map getMapSint64Sint64() { /** * map<sint64, sint64> map_sint64_sint64 = 61; */ + @java.lang.Override public java.util.Map getMapSint64Sint64Map() { return internalGetMapSint64Sint64().getMap(); @@ -8377,6 +8563,7 @@ public java.util.Map getMapSint64Sint64Map() { /** * map<sint64, sint64> map_sint64_sint64 = 61; */ + @java.lang.Override public long getMapSint64Sint64OrDefault( long key, @@ -8389,6 +8576,7 @@ public long getMapSint64Sint64OrDefault( /** * map<sint64, sint64> map_sint64_sint64 = 61; */ + @java.lang.Override public long getMapSint64Sint64OrThrow( long key) { @@ -8431,6 +8619,7 @@ public int getMapFixed32Fixed32Count() { * map<fixed32, fixed32> map_fixed32_fixed32 = 62; */ + @java.lang.Override public boolean containsMapFixed32Fixed32( int key) { @@ -8439,6 +8628,7 @@ public boolean containsMapFixed32Fixed32( /** * Use {@link #getMapFixed32Fixed32Map()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapFixed32Fixed32() { return getMapFixed32Fixed32Map(); @@ -8446,6 +8636,7 @@ public java.util.Map getMapFixed32Fixed32( /** * map<fixed32, fixed32> map_fixed32_fixed32 = 62; */ + @java.lang.Override public java.util.Map getMapFixed32Fixed32Map() { return internalGetMapFixed32Fixed32().getMap(); @@ -8453,6 +8644,7 @@ public java.util.Map getMapFixed32Fixed32M /** * map<fixed32, fixed32> map_fixed32_fixed32 = 62; */ + @java.lang.Override public int getMapFixed32Fixed32OrDefault( int key, @@ -8465,6 +8657,7 @@ public int getMapFixed32Fixed32OrDefault( /** * map<fixed32, fixed32> map_fixed32_fixed32 = 62; */ + @java.lang.Override public int getMapFixed32Fixed32OrThrow( int key) { @@ -8507,6 +8700,7 @@ public int getMapFixed64Fixed64Count() { * map<fixed64, fixed64> map_fixed64_fixed64 = 63; */ + @java.lang.Override public boolean containsMapFixed64Fixed64( long key) { @@ -8515,6 +8709,7 @@ public boolean containsMapFixed64Fixed64( /** * Use {@link #getMapFixed64Fixed64Map()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapFixed64Fixed64() { return getMapFixed64Fixed64Map(); @@ -8522,6 +8717,7 @@ public java.util.Map getMapFixed64Fixed64() { /** * map<fixed64, fixed64> map_fixed64_fixed64 = 63; */ + @java.lang.Override public java.util.Map getMapFixed64Fixed64Map() { return internalGetMapFixed64Fixed64().getMap(); @@ -8529,6 +8725,7 @@ public java.util.Map getMapFixed64Fixed64Map() { /** * map<fixed64, fixed64> map_fixed64_fixed64 = 63; */ + @java.lang.Override public long getMapFixed64Fixed64OrDefault( long key, @@ -8541,6 +8738,7 @@ public long getMapFixed64Fixed64OrDefault( /** * map<fixed64, fixed64> map_fixed64_fixed64 = 63; */ + @java.lang.Override public long getMapFixed64Fixed64OrThrow( long key) { @@ -8583,6 +8781,7 @@ public int getMapSfixed32Sfixed32Count() { * map<sfixed32, sfixed32> map_sfixed32_sfixed32 = 64; */ + @java.lang.Override public boolean containsMapSfixed32Sfixed32( int key) { @@ -8591,6 +8790,7 @@ public boolean containsMapSfixed32Sfixed32( /** * Use {@link #getMapSfixed32Sfixed32Map()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapSfixed32Sfixed32() { return getMapSfixed32Sfixed32Map(); @@ -8598,6 +8798,7 @@ public java.util.Map getMapSfixed32Sfixed3 /** * map<sfixed32, sfixed32> map_sfixed32_sfixed32 = 64; */ + @java.lang.Override public java.util.Map getMapSfixed32Sfixed32Map() { return internalGetMapSfixed32Sfixed32().getMap(); @@ -8605,6 +8806,7 @@ public java.util.Map getMapSfixed32Sfixed3 /** * map<sfixed32, sfixed32> map_sfixed32_sfixed32 = 64; */ + @java.lang.Override public int getMapSfixed32Sfixed32OrDefault( int key, @@ -8617,6 +8819,7 @@ public int getMapSfixed32Sfixed32OrDefault( /** * map<sfixed32, sfixed32> map_sfixed32_sfixed32 = 64; */ + @java.lang.Override public int getMapSfixed32Sfixed32OrThrow( int key) { @@ -8659,6 +8862,7 @@ public int getMapSfixed64Sfixed64Count() { * map<sfixed64, sfixed64> map_sfixed64_sfixed64 = 65; */ + @java.lang.Override public boolean containsMapSfixed64Sfixed64( long key) { @@ -8667,6 +8871,7 @@ public boolean containsMapSfixed64Sfixed64( /** * Use {@link #getMapSfixed64Sfixed64Map()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapSfixed64Sfixed64() { return getMapSfixed64Sfixed64Map(); @@ -8674,6 +8879,7 @@ public java.util.Map getMapSfixed64Sfixed64() { /** * map<sfixed64, sfixed64> map_sfixed64_sfixed64 = 65; */ + @java.lang.Override public java.util.Map getMapSfixed64Sfixed64Map() { return internalGetMapSfixed64Sfixed64().getMap(); @@ -8681,6 +8887,7 @@ public java.util.Map getMapSfixed64Sfixed64Map() /** * map<sfixed64, sfixed64> map_sfixed64_sfixed64 = 65; */ + @java.lang.Override public long getMapSfixed64Sfixed64OrDefault( long key, @@ -8693,6 +8900,7 @@ public long getMapSfixed64Sfixed64OrDefault( /** * map<sfixed64, sfixed64> map_sfixed64_sfixed64 = 65; */ + @java.lang.Override public long getMapSfixed64Sfixed64OrThrow( long key) { @@ -8735,6 +8943,7 @@ public int getMapInt32FloatCount() { * map<int32, float> map_int32_float = 66; */ + @java.lang.Override public boolean containsMapInt32Float( int key) { @@ -8743,6 +8952,7 @@ public boolean containsMapInt32Float( /** * Use {@link #getMapInt32FloatMap()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapInt32Float() { return getMapInt32FloatMap(); @@ -8750,6 +8960,7 @@ public java.util.Map getMapInt32Float() { /** * map<int32, float> map_int32_float = 66; */ + @java.lang.Override public java.util.Map getMapInt32FloatMap() { return internalGetMapInt32Float().getMap(); @@ -8757,6 +8968,7 @@ public java.util.Map getMapInt32FloatMap() { /** * map<int32, float> map_int32_float = 66; */ + @java.lang.Override public float getMapInt32FloatOrDefault( int key, @@ -8769,6 +8981,7 @@ public float getMapInt32FloatOrDefault( /** * map<int32, float> map_int32_float = 66; */ + @java.lang.Override public float getMapInt32FloatOrThrow( int key) { @@ -8811,6 +9024,7 @@ public int getMapInt32DoubleCount() { * map<int32, double> map_int32_double = 67; */ + @java.lang.Override public boolean containsMapInt32Double( int key) { @@ -8819,6 +9033,7 @@ public boolean containsMapInt32Double( /** * Use {@link #getMapInt32DoubleMap()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapInt32Double() { return getMapInt32DoubleMap(); @@ -8826,6 +9041,7 @@ public java.util.Map getMapInt32Double() { /** * map<int32, double> map_int32_double = 67; */ + @java.lang.Override public java.util.Map getMapInt32DoubleMap() { return internalGetMapInt32Double().getMap(); @@ -8833,6 +9049,7 @@ public java.util.Map getMapInt32DoubleMap() /** * map<int32, double> map_int32_double = 67; */ + @java.lang.Override public double getMapInt32DoubleOrDefault( int key, @@ -8845,6 +9062,7 @@ public double getMapInt32DoubleOrDefault( /** * map<int32, double> map_int32_double = 67; */ + @java.lang.Override public double getMapInt32DoubleOrThrow( int key) { @@ -8887,6 +9105,7 @@ public int getMapBoolBoolCount() { * map<bool, bool> map_bool_bool = 68; */ + @java.lang.Override public boolean containsMapBoolBool( boolean key) { @@ -8895,6 +9114,7 @@ public boolean containsMapBoolBool( /** * Use {@link #getMapBoolBoolMap()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapBoolBool() { return getMapBoolBoolMap(); @@ -8902,6 +9122,7 @@ public java.util.Map getMapBoolBool() { /** * map<bool, bool> map_bool_bool = 68; */ + @java.lang.Override public java.util.Map getMapBoolBoolMap() { return internalGetMapBoolBool().getMap(); @@ -8909,6 +9130,7 @@ public java.util.Map getMapBoolBoolMap() { /** * map<bool, bool> map_bool_bool = 68; */ + @java.lang.Override public boolean getMapBoolBoolOrDefault( boolean key, @@ -8921,6 +9143,7 @@ public boolean getMapBoolBoolOrDefault( /** * map<bool, bool> map_bool_bool = 68; */ + @java.lang.Override public boolean getMapBoolBoolOrThrow( boolean key) { @@ -8963,6 +9186,7 @@ public int getMapStringStringCount() { * map<string, string> map_string_string = 69; */ + @java.lang.Override public boolean containsMapStringString( java.lang.String key) { if (key == null) { throw new java.lang.NullPointerException(); } @@ -8971,6 +9195,7 @@ public boolean containsMapStringString( /** * Use {@link #getMapStringStringMap()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapStringString() { return getMapStringStringMap(); @@ -8978,6 +9203,7 @@ public java.util.Map getMapStringString() { /** * map<string, string> map_string_string = 69; */ + @java.lang.Override public java.util.Map getMapStringStringMap() { return internalGetMapStringString().getMap(); @@ -8985,6 +9211,7 @@ public java.util.Map getMapStringStringMap() /** * map<string, string> map_string_string = 69; */ + @java.lang.Override public java.lang.String getMapStringStringOrDefault( java.lang.String key, @@ -8997,6 +9224,7 @@ public java.lang.String getMapStringStringOrDefault( /** * map<string, string> map_string_string = 69; */ + @java.lang.Override public java.lang.String getMapStringStringOrThrow( java.lang.String key) { @@ -9039,6 +9267,7 @@ public int getMapStringBytesCount() { * map<string, bytes> map_string_bytes = 70; */ + @java.lang.Override public boolean containsMapStringBytes( java.lang.String key) { if (key == null) { throw new java.lang.NullPointerException(); } @@ -9047,6 +9276,7 @@ public boolean containsMapStringBytes( /** * Use {@link #getMapStringBytesMap()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapStringBytes() { return getMapStringBytesMap(); @@ -9054,6 +9284,7 @@ public java.util.Map getMapStr /** * map<string, bytes> map_string_bytes = 70; */ + @java.lang.Override public java.util.Map getMapStringBytesMap() { return internalGetMapStringBytes().getMap(); @@ -9061,6 +9292,7 @@ public java.util.Map getMapStr /** * map<string, bytes> map_string_bytes = 70; */ + @java.lang.Override public com.google.protobuf.ByteString getMapStringBytesOrDefault( java.lang.String key, @@ -9073,6 +9305,7 @@ public com.google.protobuf.ByteString getMapStringBytesOrDefault( /** * map<string, bytes> map_string_bytes = 70; */ + @java.lang.Override public com.google.protobuf.ByteString getMapStringBytesOrThrow( java.lang.String key) { @@ -9115,6 +9348,7 @@ public int getMapStringNestedMessageCount() { * map<string, .protobuf_test_messages.proto3.TestAllTypesProto3.NestedMessage> map_string_nested_message = 71; */ + @java.lang.Override public boolean containsMapStringNestedMessage( java.lang.String key) { if (key == null) { throw new java.lang.NullPointerException(); } @@ -9123,6 +9357,7 @@ public boolean containsMapStringNestedMessage( /** * Use {@link #getMapStringNestedMessageMap()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapStringNestedMessage() { return getMapStringNestedMessageMap(); @@ -9130,6 +9365,7 @@ public java.util.Mapmap<string, .protobuf_test_messages.proto3.TestAllTypesProto3.NestedMessage> map_string_nested_message = 71; */ + @java.lang.Override public java.util.Map getMapStringNestedMessageMap() { return internalGetMapStringNestedMessage().getMap(); @@ -9137,6 +9373,7 @@ public java.util.Mapmap<string, .protobuf_test_messages.proto3.TestAllTypesProto3.NestedMessage> map_string_nested_message = 71; */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedMessage getMapStringNestedMessageOrDefault( java.lang.String key, @@ -9149,6 +9386,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesP /** * map<string, .protobuf_test_messages.proto3.TestAllTypesProto3.NestedMessage> map_string_nested_message = 71; */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedMessage getMapStringNestedMessageOrThrow( java.lang.String key) { @@ -9191,6 +9429,7 @@ public int getMapStringForeignMessageCount() { * map<string, .protobuf_test_messages.proto3.ForeignMessage> map_string_foreign_message = 72; */ + @java.lang.Override public boolean containsMapStringForeignMessage( java.lang.String key) { if (key == null) { throw new java.lang.NullPointerException(); } @@ -9199,6 +9438,7 @@ public boolean containsMapStringForeignMessage( /** * Use {@link #getMapStringForeignMessageMap()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapStringForeignMessage() { return getMapStringForeignMessageMap(); @@ -9206,6 +9446,7 @@ public java.util.Mapmap<string, .protobuf_test_messages.proto3.ForeignMessage> map_string_foreign_message = 72; */ + @java.lang.Override public java.util.Map getMapStringForeignMessageMap() { return internalGetMapStringForeignMessage().getMap(); @@ -9213,6 +9454,7 @@ public java.util.Mapmap<string, .protobuf_test_messages.proto3.ForeignMessage> map_string_foreign_message = 72; */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignMessage getMapStringForeignMessageOrDefault( java.lang.String key, @@ -9225,6 +9467,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignMessag /** * map<string, .protobuf_test_messages.proto3.ForeignMessage> map_string_foreign_message = 72; */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignMessage getMapStringForeignMessageOrThrow( java.lang.String key) { @@ -9280,6 +9523,7 @@ public int getMapStringNestedEnumCount() { * map<string, .protobuf_test_messages.proto3.TestAllTypesProto3.NestedEnum> map_string_nested_enum = 73; */ + @java.lang.Override public boolean containsMapStringNestedEnum( java.lang.String key) { if (key == null) { throw new java.lang.NullPointerException(); } @@ -9288,6 +9532,7 @@ public boolean containsMapStringNestedEnum( /** * Use {@link #getMapStringNestedEnumMap()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapStringNestedEnum() { @@ -9296,6 +9541,7 @@ public boolean containsMapStringNestedEnum( /** * map<string, .protobuf_test_messages.proto3.TestAllTypesProto3.NestedEnum> map_string_nested_enum = 73; */ + @java.lang.Override public java.util.Map getMapStringNestedEnumMap() { @@ -9304,6 +9550,7 @@ public boolean containsMapStringNestedEnum( /** * map<string, .protobuf_test_messages.proto3.TestAllTypesProto3.NestedEnum> map_string_nested_enum = 73; */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedEnum getMapStringNestedEnumOrDefault( java.lang.String key, @@ -9318,6 +9565,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesP /** * map<string, .protobuf_test_messages.proto3.TestAllTypesProto3.NestedEnum> map_string_nested_enum = 73; */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedEnum getMapStringNestedEnumOrThrow( java.lang.String key) { @@ -9332,6 +9580,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesP /** * Use {@link #getMapStringNestedEnumValueMap()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapStringNestedEnumValue() { @@ -9340,6 +9589,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesP /** * map<string, .protobuf_test_messages.proto3.TestAllTypesProto3.NestedEnum> map_string_nested_enum = 73; */ + @java.lang.Override public java.util.Map getMapStringNestedEnumValueMap() { @@ -9348,6 +9598,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesP /** * map<string, .protobuf_test_messages.proto3.TestAllTypesProto3.NestedEnum> map_string_nested_enum = 73; */ + @java.lang.Override public int getMapStringNestedEnumValueOrDefault( java.lang.String key, @@ -9360,6 +9611,7 @@ public int getMapStringNestedEnumValueOrDefault( /** * map<string, .protobuf_test_messages.proto3.TestAllTypesProto3.NestedEnum> map_string_nested_enum = 73; */ + @java.lang.Override public int getMapStringNestedEnumValueOrThrow( java.lang.String key) { @@ -9415,6 +9667,7 @@ public int getMapStringForeignEnumCount() { * map<string, .protobuf_test_messages.proto3.ForeignEnum> map_string_foreign_enum = 74; */ + @java.lang.Override public boolean containsMapStringForeignEnum( java.lang.String key) { if (key == null) { throw new java.lang.NullPointerException(); } @@ -9423,6 +9676,7 @@ public boolean containsMapStringForeignEnum( /** * Use {@link #getMapStringForeignEnumMap()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapStringForeignEnum() { @@ -9431,6 +9685,7 @@ public boolean containsMapStringForeignEnum( /** * map<string, .protobuf_test_messages.proto3.ForeignEnum> map_string_foreign_enum = 74; */ + @java.lang.Override public java.util.Map getMapStringForeignEnumMap() { @@ -9439,6 +9694,7 @@ public boolean containsMapStringForeignEnum( /** * map<string, .protobuf_test_messages.proto3.ForeignEnum> map_string_foreign_enum = 74; */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignEnum getMapStringForeignEnumOrDefault( java.lang.String key, @@ -9453,6 +9709,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignEnum g /** * map<string, .protobuf_test_messages.proto3.ForeignEnum> map_string_foreign_enum = 74; */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignEnum getMapStringForeignEnumOrThrow( java.lang.String key) { @@ -9467,6 +9724,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignEnum g /** * Use {@link #getMapStringForeignEnumValueMap()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapStringForeignEnumValue() { @@ -9475,6 +9733,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignEnum g /** * map<string, .protobuf_test_messages.proto3.ForeignEnum> map_string_foreign_enum = 74; */ + @java.lang.Override public java.util.Map getMapStringForeignEnumValueMap() { @@ -9483,6 +9742,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignEnum g /** * map<string, .protobuf_test_messages.proto3.ForeignEnum> map_string_foreign_enum = 74; */ + @java.lang.Override public int getMapStringForeignEnumValueOrDefault( java.lang.String key, @@ -9495,6 +9755,7 @@ public int getMapStringForeignEnumValueOrDefault( /** * map<string, .protobuf_test_messages.proto3.ForeignEnum> map_string_foreign_enum = 74; */ + @java.lang.Override public int getMapStringForeignEnumValueOrThrow( java.lang.String key) { @@ -9508,10 +9769,19 @@ public int getMapStringForeignEnumValueOrThrow( } public static final int ONEOF_UINT32_FIELD_NUMBER = 111; + /** + * uint32 oneof_uint32 = 111; + * @return Whether the oneofUint32 field is set. + */ + @java.lang.Override + public boolean hasOneofUint32() { + return oneofFieldCase_ == 111; + } /** * uint32 oneof_uint32 = 111; * @return The oneofUint32. */ + @java.lang.Override public int getOneofUint32() { if (oneofFieldCase_ == 111) { return (java.lang.Integer) oneofField_; @@ -9524,6 +9794,7 @@ public int getOneofUint32() { * .protobuf_test_messages.proto3.TestAllTypesProto3.NestedMessage oneof_nested_message = 112; * @return Whether the oneofNestedMessage field is set. */ + @java.lang.Override public boolean hasOneofNestedMessage() { return oneofFieldCase_ == 112; } @@ -9531,6 +9802,7 @@ public boolean hasOneofNestedMessage() { * .protobuf_test_messages.proto3.TestAllTypesProto3.NestedMessage oneof_nested_message = 112; * @return The oneofNestedMessage. */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedMessage getOneofNestedMessage() { if (oneofFieldCase_ == 112) { return (com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedMessage) oneofField_; @@ -9540,6 +9812,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesP /** * .protobuf_test_messages.proto3.TestAllTypesProto3.NestedMessage oneof_nested_message = 112; */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedMessageOrBuilder getOneofNestedMessageOrBuilder() { if (oneofFieldCase_ == 112) { return (com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedMessage) oneofField_; @@ -9548,6 +9821,13 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesP } public static final int ONEOF_STRING_FIELD_NUMBER = 113; + /** + * string oneof_string = 113; + * @return Whether the oneofString field is set. + */ + public boolean hasOneofString() { + return oneofFieldCase_ == 113; + } /** * string oneof_string = 113; * @return The oneofString. @@ -9593,10 +9873,19 @@ public java.lang.String getOneofString() { } public static final int ONEOF_BYTES_FIELD_NUMBER = 114; + /** + * bytes oneof_bytes = 114; + * @return Whether the oneofBytes field is set. + */ + @java.lang.Override + public boolean hasOneofBytes() { + return oneofFieldCase_ == 114; + } /** * bytes oneof_bytes = 114; * @return The oneofBytes. */ + @java.lang.Override public com.google.protobuf.ByteString getOneofBytes() { if (oneofFieldCase_ == 114) { return (com.google.protobuf.ByteString) oneofField_; @@ -9605,10 +9894,19 @@ public com.google.protobuf.ByteString getOneofBytes() { } public static final int ONEOF_BOOL_FIELD_NUMBER = 115; + /** + * bool oneof_bool = 115; + * @return Whether the oneofBool field is set. + */ + @java.lang.Override + public boolean hasOneofBool() { + return oneofFieldCase_ == 115; + } /** * bool oneof_bool = 115; * @return The oneofBool. */ + @java.lang.Override public boolean getOneofBool() { if (oneofFieldCase_ == 115) { return (java.lang.Boolean) oneofField_; @@ -9617,10 +9915,19 @@ public boolean getOneofBool() { } public static final int ONEOF_UINT64_FIELD_NUMBER = 116; + /** + * uint64 oneof_uint64 = 116; + * @return Whether the oneofUint64 field is set. + */ + @java.lang.Override + public boolean hasOneofUint64() { + return oneofFieldCase_ == 116; + } /** * uint64 oneof_uint64 = 116; * @return The oneofUint64. */ + @java.lang.Override public long getOneofUint64() { if (oneofFieldCase_ == 116) { return (java.lang.Long) oneofField_; @@ -9629,10 +9936,19 @@ public long getOneofUint64() { } public static final int ONEOF_FLOAT_FIELD_NUMBER = 117; + /** + * float oneof_float = 117; + * @return Whether the oneofFloat field is set. + */ + @java.lang.Override + public boolean hasOneofFloat() { + return oneofFieldCase_ == 117; + } /** * float oneof_float = 117; * @return The oneofFloat. */ + @java.lang.Override public float getOneofFloat() { if (oneofFieldCase_ == 117) { return (java.lang.Float) oneofField_; @@ -9641,10 +9957,19 @@ public float getOneofFloat() { } public static final int ONEOF_DOUBLE_FIELD_NUMBER = 118; + /** + * double oneof_double = 118; + * @return Whether the oneofDouble field is set. + */ + @java.lang.Override + public boolean hasOneofDouble() { + return oneofFieldCase_ == 118; + } /** * double oneof_double = 118; * @return The oneofDouble. */ + @java.lang.Override public double getOneofDouble() { if (oneofFieldCase_ == 118) { return (java.lang.Double) oneofField_; @@ -9653,6 +9978,13 @@ public double getOneofDouble() { } public static final int ONEOF_ENUM_FIELD_NUMBER = 119; + /** + * .protobuf_test_messages.proto3.TestAllTypesProto3.NestedEnum oneof_enum = 119; + * @return Whether the oneofEnum field is set. + */ + public boolean hasOneofEnum() { + return oneofFieldCase_ == 119; + } /** * .protobuf_test_messages.proto3.TestAllTypesProto3.NestedEnum oneof_enum = 119; * @return The enum numeric value on the wire for oneofEnum. @@ -9687,6 +10019,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesP * .google.protobuf.BoolValue optional_bool_wrapper = 201; * @return Whether the optionalBoolWrapper field is set. */ + @java.lang.Override public boolean hasOptionalBoolWrapper() { return optionalBoolWrapper_ != null; } @@ -9698,6 +10031,7 @@ public boolean hasOptionalBoolWrapper() { * .google.protobuf.BoolValue optional_bool_wrapper = 201; * @return The optionalBoolWrapper. */ + @java.lang.Override public com.google.protobuf.BoolValue getOptionalBoolWrapper() { return optionalBoolWrapper_ == null ? com.google.protobuf.BoolValue.getDefaultInstance() : optionalBoolWrapper_; } @@ -9708,6 +10042,7 @@ public com.google.protobuf.BoolValue getOptionalBoolWrapper() { * * .google.protobuf.BoolValue optional_bool_wrapper = 201; */ + @java.lang.Override public com.google.protobuf.BoolValueOrBuilder getOptionalBoolWrapperOrBuilder() { return getOptionalBoolWrapper(); } @@ -9718,6 +10053,7 @@ public com.google.protobuf.BoolValueOrBuilder getOptionalBoolWrapperOrBuilder() * .google.protobuf.Int32Value optional_int32_wrapper = 202; * @return Whether the optionalInt32Wrapper field is set. */ + @java.lang.Override public boolean hasOptionalInt32Wrapper() { return optionalInt32Wrapper_ != null; } @@ -9725,12 +10061,14 @@ public boolean hasOptionalInt32Wrapper() { * .google.protobuf.Int32Value optional_int32_wrapper = 202; * @return The optionalInt32Wrapper. */ + @java.lang.Override public com.google.protobuf.Int32Value getOptionalInt32Wrapper() { return optionalInt32Wrapper_ == null ? com.google.protobuf.Int32Value.getDefaultInstance() : optionalInt32Wrapper_; } /** * .google.protobuf.Int32Value optional_int32_wrapper = 202; */ + @java.lang.Override public com.google.protobuf.Int32ValueOrBuilder getOptionalInt32WrapperOrBuilder() { return getOptionalInt32Wrapper(); } @@ -9741,6 +10079,7 @@ public com.google.protobuf.Int32ValueOrBuilder getOptionalInt32WrapperOrBuilder( * .google.protobuf.Int64Value optional_int64_wrapper = 203; * @return Whether the optionalInt64Wrapper field is set. */ + @java.lang.Override public boolean hasOptionalInt64Wrapper() { return optionalInt64Wrapper_ != null; } @@ -9748,12 +10087,14 @@ public boolean hasOptionalInt64Wrapper() { * .google.protobuf.Int64Value optional_int64_wrapper = 203; * @return The optionalInt64Wrapper. */ + @java.lang.Override public com.google.protobuf.Int64Value getOptionalInt64Wrapper() { return optionalInt64Wrapper_ == null ? com.google.protobuf.Int64Value.getDefaultInstance() : optionalInt64Wrapper_; } /** * .google.protobuf.Int64Value optional_int64_wrapper = 203; */ + @java.lang.Override public com.google.protobuf.Int64ValueOrBuilder getOptionalInt64WrapperOrBuilder() { return getOptionalInt64Wrapper(); } @@ -9764,6 +10105,7 @@ public com.google.protobuf.Int64ValueOrBuilder getOptionalInt64WrapperOrBuilder( * .google.protobuf.UInt32Value optional_uint32_wrapper = 204; * @return Whether the optionalUint32Wrapper field is set. */ + @java.lang.Override public boolean hasOptionalUint32Wrapper() { return optionalUint32Wrapper_ != null; } @@ -9771,12 +10113,14 @@ public boolean hasOptionalUint32Wrapper() { * .google.protobuf.UInt32Value optional_uint32_wrapper = 204; * @return The optionalUint32Wrapper. */ + @java.lang.Override public com.google.protobuf.UInt32Value getOptionalUint32Wrapper() { return optionalUint32Wrapper_ == null ? com.google.protobuf.UInt32Value.getDefaultInstance() : optionalUint32Wrapper_; } /** * .google.protobuf.UInt32Value optional_uint32_wrapper = 204; */ + @java.lang.Override public com.google.protobuf.UInt32ValueOrBuilder getOptionalUint32WrapperOrBuilder() { return getOptionalUint32Wrapper(); } @@ -9787,6 +10131,7 @@ public com.google.protobuf.UInt32ValueOrBuilder getOptionalUint32WrapperOrBuilde * .google.protobuf.UInt64Value optional_uint64_wrapper = 205; * @return Whether the optionalUint64Wrapper field is set. */ + @java.lang.Override public boolean hasOptionalUint64Wrapper() { return optionalUint64Wrapper_ != null; } @@ -9794,12 +10139,14 @@ public boolean hasOptionalUint64Wrapper() { * .google.protobuf.UInt64Value optional_uint64_wrapper = 205; * @return The optionalUint64Wrapper. */ + @java.lang.Override public com.google.protobuf.UInt64Value getOptionalUint64Wrapper() { return optionalUint64Wrapper_ == null ? com.google.protobuf.UInt64Value.getDefaultInstance() : optionalUint64Wrapper_; } /** * .google.protobuf.UInt64Value optional_uint64_wrapper = 205; */ + @java.lang.Override public com.google.protobuf.UInt64ValueOrBuilder getOptionalUint64WrapperOrBuilder() { return getOptionalUint64Wrapper(); } @@ -9810,6 +10157,7 @@ public com.google.protobuf.UInt64ValueOrBuilder getOptionalUint64WrapperOrBuilde * .google.protobuf.FloatValue optional_float_wrapper = 206; * @return Whether the optionalFloatWrapper field is set. */ + @java.lang.Override public boolean hasOptionalFloatWrapper() { return optionalFloatWrapper_ != null; } @@ -9817,12 +10165,14 @@ public boolean hasOptionalFloatWrapper() { * .google.protobuf.FloatValue optional_float_wrapper = 206; * @return The optionalFloatWrapper. */ + @java.lang.Override public com.google.protobuf.FloatValue getOptionalFloatWrapper() { return optionalFloatWrapper_ == null ? com.google.protobuf.FloatValue.getDefaultInstance() : optionalFloatWrapper_; } /** * .google.protobuf.FloatValue optional_float_wrapper = 206; */ + @java.lang.Override public com.google.protobuf.FloatValueOrBuilder getOptionalFloatWrapperOrBuilder() { return getOptionalFloatWrapper(); } @@ -9833,6 +10183,7 @@ public com.google.protobuf.FloatValueOrBuilder getOptionalFloatWrapperOrBuilder( * .google.protobuf.DoubleValue optional_double_wrapper = 207; * @return Whether the optionalDoubleWrapper field is set. */ + @java.lang.Override public boolean hasOptionalDoubleWrapper() { return optionalDoubleWrapper_ != null; } @@ -9840,12 +10191,14 @@ public boolean hasOptionalDoubleWrapper() { * .google.protobuf.DoubleValue optional_double_wrapper = 207; * @return The optionalDoubleWrapper. */ + @java.lang.Override public com.google.protobuf.DoubleValue getOptionalDoubleWrapper() { return optionalDoubleWrapper_ == null ? com.google.protobuf.DoubleValue.getDefaultInstance() : optionalDoubleWrapper_; } /** * .google.protobuf.DoubleValue optional_double_wrapper = 207; */ + @java.lang.Override public com.google.protobuf.DoubleValueOrBuilder getOptionalDoubleWrapperOrBuilder() { return getOptionalDoubleWrapper(); } @@ -9856,6 +10209,7 @@ public com.google.protobuf.DoubleValueOrBuilder getOptionalDoubleWrapperOrBuilde * .google.protobuf.StringValue optional_string_wrapper = 208; * @return Whether the optionalStringWrapper field is set. */ + @java.lang.Override public boolean hasOptionalStringWrapper() { return optionalStringWrapper_ != null; } @@ -9863,12 +10217,14 @@ public boolean hasOptionalStringWrapper() { * .google.protobuf.StringValue optional_string_wrapper = 208; * @return The optionalStringWrapper. */ + @java.lang.Override public com.google.protobuf.StringValue getOptionalStringWrapper() { return optionalStringWrapper_ == null ? com.google.protobuf.StringValue.getDefaultInstance() : optionalStringWrapper_; } /** * .google.protobuf.StringValue optional_string_wrapper = 208; */ + @java.lang.Override public com.google.protobuf.StringValueOrBuilder getOptionalStringWrapperOrBuilder() { return getOptionalStringWrapper(); } @@ -9879,6 +10235,7 @@ public com.google.protobuf.StringValueOrBuilder getOptionalStringWrapperOrBuilde * .google.protobuf.BytesValue optional_bytes_wrapper = 209; * @return Whether the optionalBytesWrapper field is set. */ + @java.lang.Override public boolean hasOptionalBytesWrapper() { return optionalBytesWrapper_ != null; } @@ -9886,12 +10243,14 @@ public boolean hasOptionalBytesWrapper() { * .google.protobuf.BytesValue optional_bytes_wrapper = 209; * @return The optionalBytesWrapper. */ + @java.lang.Override public com.google.protobuf.BytesValue getOptionalBytesWrapper() { return optionalBytesWrapper_ == null ? com.google.protobuf.BytesValue.getDefaultInstance() : optionalBytesWrapper_; } /** * .google.protobuf.BytesValue optional_bytes_wrapper = 209; */ + @java.lang.Override public com.google.protobuf.BytesValueOrBuilder getOptionalBytesWrapperOrBuilder() { return getOptionalBytesWrapper(); } @@ -9901,12 +10260,14 @@ public com.google.protobuf.BytesValueOrBuilder getOptionalBytesWrapperOrBuilder( /** * repeated .google.protobuf.BoolValue repeated_bool_wrapper = 211; */ + @java.lang.Override public java.util.List getRepeatedBoolWrapperList() { return repeatedBoolWrapper_; } /** * repeated .google.protobuf.BoolValue repeated_bool_wrapper = 211; */ + @java.lang.Override public java.util.List getRepeatedBoolWrapperOrBuilderList() { return repeatedBoolWrapper_; @@ -9914,18 +10275,21 @@ public java.util.List getRepeatedBoolWrapperList( /** * repeated .google.protobuf.BoolValue repeated_bool_wrapper = 211; */ + @java.lang.Override public int getRepeatedBoolWrapperCount() { return repeatedBoolWrapper_.size(); } /** * repeated .google.protobuf.BoolValue repeated_bool_wrapper = 211; */ + @java.lang.Override public com.google.protobuf.BoolValue getRepeatedBoolWrapper(int index) { return repeatedBoolWrapper_.get(index); } /** * repeated .google.protobuf.BoolValue repeated_bool_wrapper = 211; */ + @java.lang.Override public com.google.protobuf.BoolValueOrBuilder getRepeatedBoolWrapperOrBuilder( int index) { return repeatedBoolWrapper_.get(index); @@ -9936,12 +10300,14 @@ public com.google.protobuf.BoolValueOrBuilder getRepeatedBoolWrapperOrBuilder( /** * repeated .google.protobuf.Int32Value repeated_int32_wrapper = 212; */ + @java.lang.Override public java.util.List getRepeatedInt32WrapperList() { return repeatedInt32Wrapper_; } /** * repeated .google.protobuf.Int32Value repeated_int32_wrapper = 212; */ + @java.lang.Override public java.util.List getRepeatedInt32WrapperOrBuilderList() { return repeatedInt32Wrapper_; @@ -9949,18 +10315,21 @@ public java.util.List getRepeatedInt32WrapperLis /** * repeated .google.protobuf.Int32Value repeated_int32_wrapper = 212; */ + @java.lang.Override public int getRepeatedInt32WrapperCount() { return repeatedInt32Wrapper_.size(); } /** * repeated .google.protobuf.Int32Value repeated_int32_wrapper = 212; */ + @java.lang.Override public com.google.protobuf.Int32Value getRepeatedInt32Wrapper(int index) { return repeatedInt32Wrapper_.get(index); } /** * repeated .google.protobuf.Int32Value repeated_int32_wrapper = 212; */ + @java.lang.Override public com.google.protobuf.Int32ValueOrBuilder getRepeatedInt32WrapperOrBuilder( int index) { return repeatedInt32Wrapper_.get(index); @@ -9971,12 +10340,14 @@ public com.google.protobuf.Int32ValueOrBuilder getRepeatedInt32WrapperOrBuilder( /** * repeated .google.protobuf.Int64Value repeated_int64_wrapper = 213; */ + @java.lang.Override public java.util.List getRepeatedInt64WrapperList() { return repeatedInt64Wrapper_; } /** * repeated .google.protobuf.Int64Value repeated_int64_wrapper = 213; */ + @java.lang.Override public java.util.List getRepeatedInt64WrapperOrBuilderList() { return repeatedInt64Wrapper_; @@ -9984,18 +10355,21 @@ public java.util.List getRepeatedInt64WrapperLis /** * repeated .google.protobuf.Int64Value repeated_int64_wrapper = 213; */ + @java.lang.Override public int getRepeatedInt64WrapperCount() { return repeatedInt64Wrapper_.size(); } /** * repeated .google.protobuf.Int64Value repeated_int64_wrapper = 213; */ + @java.lang.Override public com.google.protobuf.Int64Value getRepeatedInt64Wrapper(int index) { return repeatedInt64Wrapper_.get(index); } /** * repeated .google.protobuf.Int64Value repeated_int64_wrapper = 213; */ + @java.lang.Override public com.google.protobuf.Int64ValueOrBuilder getRepeatedInt64WrapperOrBuilder( int index) { return repeatedInt64Wrapper_.get(index); @@ -10006,12 +10380,14 @@ public com.google.protobuf.Int64ValueOrBuilder getRepeatedInt64WrapperOrBuilder( /** * repeated .google.protobuf.UInt32Value repeated_uint32_wrapper = 214; */ + @java.lang.Override public java.util.List getRepeatedUint32WrapperList() { return repeatedUint32Wrapper_; } /** * repeated .google.protobuf.UInt32Value repeated_uint32_wrapper = 214; */ + @java.lang.Override public java.util.List getRepeatedUint32WrapperOrBuilderList() { return repeatedUint32Wrapper_; @@ -10019,18 +10395,21 @@ public java.util.List getRepeatedUint32WrapperL /** * repeated .google.protobuf.UInt32Value repeated_uint32_wrapper = 214; */ + @java.lang.Override public int getRepeatedUint32WrapperCount() { return repeatedUint32Wrapper_.size(); } /** * repeated .google.protobuf.UInt32Value repeated_uint32_wrapper = 214; */ + @java.lang.Override public com.google.protobuf.UInt32Value getRepeatedUint32Wrapper(int index) { return repeatedUint32Wrapper_.get(index); } /** * repeated .google.protobuf.UInt32Value repeated_uint32_wrapper = 214; */ + @java.lang.Override public com.google.protobuf.UInt32ValueOrBuilder getRepeatedUint32WrapperOrBuilder( int index) { return repeatedUint32Wrapper_.get(index); @@ -10041,12 +10420,14 @@ public com.google.protobuf.UInt32ValueOrBuilder getRepeatedUint32WrapperOrBuilde /** * repeated .google.protobuf.UInt64Value repeated_uint64_wrapper = 215; */ + @java.lang.Override public java.util.List getRepeatedUint64WrapperList() { return repeatedUint64Wrapper_; } /** * repeated .google.protobuf.UInt64Value repeated_uint64_wrapper = 215; */ + @java.lang.Override public java.util.List getRepeatedUint64WrapperOrBuilderList() { return repeatedUint64Wrapper_; @@ -10054,18 +10435,21 @@ public java.util.List getRepeatedUint64WrapperL /** * repeated .google.protobuf.UInt64Value repeated_uint64_wrapper = 215; */ + @java.lang.Override public int getRepeatedUint64WrapperCount() { return repeatedUint64Wrapper_.size(); } /** * repeated .google.protobuf.UInt64Value repeated_uint64_wrapper = 215; */ + @java.lang.Override public com.google.protobuf.UInt64Value getRepeatedUint64Wrapper(int index) { return repeatedUint64Wrapper_.get(index); } /** * repeated .google.protobuf.UInt64Value repeated_uint64_wrapper = 215; */ + @java.lang.Override public com.google.protobuf.UInt64ValueOrBuilder getRepeatedUint64WrapperOrBuilder( int index) { return repeatedUint64Wrapper_.get(index); @@ -10076,12 +10460,14 @@ public com.google.protobuf.UInt64ValueOrBuilder getRepeatedUint64WrapperOrBuilde /** * repeated .google.protobuf.FloatValue repeated_float_wrapper = 216; */ + @java.lang.Override public java.util.List getRepeatedFloatWrapperList() { return repeatedFloatWrapper_; } /** * repeated .google.protobuf.FloatValue repeated_float_wrapper = 216; */ + @java.lang.Override public java.util.List getRepeatedFloatWrapperOrBuilderList() { return repeatedFloatWrapper_; @@ -10089,18 +10475,21 @@ public java.util.List getRepeatedFloatWrapperLis /** * repeated .google.protobuf.FloatValue repeated_float_wrapper = 216; */ + @java.lang.Override public int getRepeatedFloatWrapperCount() { return repeatedFloatWrapper_.size(); } /** * repeated .google.protobuf.FloatValue repeated_float_wrapper = 216; */ + @java.lang.Override public com.google.protobuf.FloatValue getRepeatedFloatWrapper(int index) { return repeatedFloatWrapper_.get(index); } /** * repeated .google.protobuf.FloatValue repeated_float_wrapper = 216; */ + @java.lang.Override public com.google.protobuf.FloatValueOrBuilder getRepeatedFloatWrapperOrBuilder( int index) { return repeatedFloatWrapper_.get(index); @@ -10111,12 +10500,14 @@ public com.google.protobuf.FloatValueOrBuilder getRepeatedFloatWrapperOrBuilder( /** * repeated .google.protobuf.DoubleValue repeated_double_wrapper = 217; */ + @java.lang.Override public java.util.List getRepeatedDoubleWrapperList() { return repeatedDoubleWrapper_; } /** * repeated .google.protobuf.DoubleValue repeated_double_wrapper = 217; */ + @java.lang.Override public java.util.List getRepeatedDoubleWrapperOrBuilderList() { return repeatedDoubleWrapper_; @@ -10124,18 +10515,21 @@ public java.util.List getRepeatedDoubleWrapperL /** * repeated .google.protobuf.DoubleValue repeated_double_wrapper = 217; */ + @java.lang.Override public int getRepeatedDoubleWrapperCount() { return repeatedDoubleWrapper_.size(); } /** * repeated .google.protobuf.DoubleValue repeated_double_wrapper = 217; */ + @java.lang.Override public com.google.protobuf.DoubleValue getRepeatedDoubleWrapper(int index) { return repeatedDoubleWrapper_.get(index); } /** * repeated .google.protobuf.DoubleValue repeated_double_wrapper = 217; */ + @java.lang.Override public com.google.protobuf.DoubleValueOrBuilder getRepeatedDoubleWrapperOrBuilder( int index) { return repeatedDoubleWrapper_.get(index); @@ -10146,12 +10540,14 @@ public com.google.protobuf.DoubleValueOrBuilder getRepeatedDoubleWrapperOrBuilde /** * repeated .google.protobuf.StringValue repeated_string_wrapper = 218; */ + @java.lang.Override public java.util.List getRepeatedStringWrapperList() { return repeatedStringWrapper_; } /** * repeated .google.protobuf.StringValue repeated_string_wrapper = 218; */ + @java.lang.Override public java.util.List getRepeatedStringWrapperOrBuilderList() { return repeatedStringWrapper_; @@ -10159,18 +10555,21 @@ public java.util.List getRepeatedStringWrapperL /** * repeated .google.protobuf.StringValue repeated_string_wrapper = 218; */ + @java.lang.Override public int getRepeatedStringWrapperCount() { return repeatedStringWrapper_.size(); } /** * repeated .google.protobuf.StringValue repeated_string_wrapper = 218; */ + @java.lang.Override public com.google.protobuf.StringValue getRepeatedStringWrapper(int index) { return repeatedStringWrapper_.get(index); } /** * repeated .google.protobuf.StringValue repeated_string_wrapper = 218; */ + @java.lang.Override public com.google.protobuf.StringValueOrBuilder getRepeatedStringWrapperOrBuilder( int index) { return repeatedStringWrapper_.get(index); @@ -10181,12 +10580,14 @@ public com.google.protobuf.StringValueOrBuilder getRepeatedStringWrapperOrBuilde /** * repeated .google.protobuf.BytesValue repeated_bytes_wrapper = 219; */ + @java.lang.Override public java.util.List getRepeatedBytesWrapperList() { return repeatedBytesWrapper_; } /** * repeated .google.protobuf.BytesValue repeated_bytes_wrapper = 219; */ + @java.lang.Override public java.util.List getRepeatedBytesWrapperOrBuilderList() { return repeatedBytesWrapper_; @@ -10194,18 +10595,21 @@ public java.util.List getRepeatedBytesWrapperLis /** * repeated .google.protobuf.BytesValue repeated_bytes_wrapper = 219; */ + @java.lang.Override public int getRepeatedBytesWrapperCount() { return repeatedBytesWrapper_.size(); } /** * repeated .google.protobuf.BytesValue repeated_bytes_wrapper = 219; */ + @java.lang.Override public com.google.protobuf.BytesValue getRepeatedBytesWrapper(int index) { return repeatedBytesWrapper_.get(index); } /** * repeated .google.protobuf.BytesValue repeated_bytes_wrapper = 219; */ + @java.lang.Override public com.google.protobuf.BytesValueOrBuilder getRepeatedBytesWrapperOrBuilder( int index) { return repeatedBytesWrapper_.get(index); @@ -10217,6 +10621,7 @@ public com.google.protobuf.BytesValueOrBuilder getRepeatedBytesWrapperOrBuilder( * .google.protobuf.Duration optional_duration = 301; * @return Whether the optionalDuration field is set. */ + @java.lang.Override public boolean hasOptionalDuration() { return optionalDuration_ != null; } @@ -10224,12 +10629,14 @@ public boolean hasOptionalDuration() { * .google.protobuf.Duration optional_duration = 301; * @return The optionalDuration. */ + @java.lang.Override public com.google.protobuf.Duration getOptionalDuration() { return optionalDuration_ == null ? com.google.protobuf.Duration.getDefaultInstance() : optionalDuration_; } /** * .google.protobuf.Duration optional_duration = 301; */ + @java.lang.Override public com.google.protobuf.DurationOrBuilder getOptionalDurationOrBuilder() { return getOptionalDuration(); } @@ -10240,6 +10647,7 @@ public com.google.protobuf.DurationOrBuilder getOptionalDurationOrBuilder() { * .google.protobuf.Timestamp optional_timestamp = 302; * @return Whether the optionalTimestamp field is set. */ + @java.lang.Override public boolean hasOptionalTimestamp() { return optionalTimestamp_ != null; } @@ -10247,12 +10655,14 @@ public boolean hasOptionalTimestamp() { * .google.protobuf.Timestamp optional_timestamp = 302; * @return The optionalTimestamp. */ + @java.lang.Override public com.google.protobuf.Timestamp getOptionalTimestamp() { return optionalTimestamp_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : optionalTimestamp_; } /** * .google.protobuf.Timestamp optional_timestamp = 302; */ + @java.lang.Override public com.google.protobuf.TimestampOrBuilder getOptionalTimestampOrBuilder() { return getOptionalTimestamp(); } @@ -10263,6 +10673,7 @@ public com.google.protobuf.TimestampOrBuilder getOptionalTimestampOrBuilder() { * .google.protobuf.FieldMask optional_field_mask = 303; * @return Whether the optionalFieldMask field is set. */ + @java.lang.Override public boolean hasOptionalFieldMask() { return optionalFieldMask_ != null; } @@ -10270,12 +10681,14 @@ public boolean hasOptionalFieldMask() { * .google.protobuf.FieldMask optional_field_mask = 303; * @return The optionalFieldMask. */ + @java.lang.Override public com.google.protobuf.FieldMask getOptionalFieldMask() { return optionalFieldMask_ == null ? com.google.protobuf.FieldMask.getDefaultInstance() : optionalFieldMask_; } /** * .google.protobuf.FieldMask optional_field_mask = 303; */ + @java.lang.Override public com.google.protobuf.FieldMaskOrBuilder getOptionalFieldMaskOrBuilder() { return getOptionalFieldMask(); } @@ -10286,6 +10699,7 @@ public com.google.protobuf.FieldMaskOrBuilder getOptionalFieldMaskOrBuilder() { * .google.protobuf.Struct optional_struct = 304; * @return Whether the optionalStruct field is set. */ + @java.lang.Override public boolean hasOptionalStruct() { return optionalStruct_ != null; } @@ -10293,12 +10707,14 @@ public boolean hasOptionalStruct() { * .google.protobuf.Struct optional_struct = 304; * @return The optionalStruct. */ + @java.lang.Override public com.google.protobuf.Struct getOptionalStruct() { return optionalStruct_ == null ? com.google.protobuf.Struct.getDefaultInstance() : optionalStruct_; } /** * .google.protobuf.Struct optional_struct = 304; */ + @java.lang.Override public com.google.protobuf.StructOrBuilder getOptionalStructOrBuilder() { return getOptionalStruct(); } @@ -10309,6 +10725,7 @@ public com.google.protobuf.StructOrBuilder getOptionalStructOrBuilder() { * .google.protobuf.Any optional_any = 305; * @return Whether the optionalAny field is set. */ + @java.lang.Override public boolean hasOptionalAny() { return optionalAny_ != null; } @@ -10316,12 +10733,14 @@ public boolean hasOptionalAny() { * .google.protobuf.Any optional_any = 305; * @return The optionalAny. */ + @java.lang.Override public com.google.protobuf.Any getOptionalAny() { return optionalAny_ == null ? com.google.protobuf.Any.getDefaultInstance() : optionalAny_; } /** * .google.protobuf.Any optional_any = 305; */ + @java.lang.Override public com.google.protobuf.AnyOrBuilder getOptionalAnyOrBuilder() { return getOptionalAny(); } @@ -10332,6 +10751,7 @@ public com.google.protobuf.AnyOrBuilder getOptionalAnyOrBuilder() { * .google.protobuf.Value optional_value = 306; * @return Whether the optionalValue field is set. */ + @java.lang.Override public boolean hasOptionalValue() { return optionalValue_ != null; } @@ -10339,12 +10759,14 @@ public boolean hasOptionalValue() { * .google.protobuf.Value optional_value = 306; * @return The optionalValue. */ + @java.lang.Override public com.google.protobuf.Value getOptionalValue() { return optionalValue_ == null ? com.google.protobuf.Value.getDefaultInstance() : optionalValue_; } /** * .google.protobuf.Value optional_value = 306; */ + @java.lang.Override public com.google.protobuf.ValueOrBuilder getOptionalValueOrBuilder() { return getOptionalValue(); } @@ -10354,12 +10776,14 @@ public com.google.protobuf.ValueOrBuilder getOptionalValueOrBuilder() { /** * repeated .google.protobuf.Duration repeated_duration = 311; */ + @java.lang.Override public java.util.List getRepeatedDurationList() { return repeatedDuration_; } /** * repeated .google.protobuf.Duration repeated_duration = 311; */ + @java.lang.Override public java.util.List getRepeatedDurationOrBuilderList() { return repeatedDuration_; @@ -10367,18 +10791,21 @@ public java.util.List getRepeatedDurationList() { /** * repeated .google.protobuf.Duration repeated_duration = 311; */ + @java.lang.Override public int getRepeatedDurationCount() { return repeatedDuration_.size(); } /** * repeated .google.protobuf.Duration repeated_duration = 311; */ + @java.lang.Override public com.google.protobuf.Duration getRepeatedDuration(int index) { return repeatedDuration_.get(index); } /** * repeated .google.protobuf.Duration repeated_duration = 311; */ + @java.lang.Override public com.google.protobuf.DurationOrBuilder getRepeatedDurationOrBuilder( int index) { return repeatedDuration_.get(index); @@ -10389,12 +10816,14 @@ public com.google.protobuf.DurationOrBuilder getRepeatedDurationOrBuilder( /** * repeated .google.protobuf.Timestamp repeated_timestamp = 312; */ + @java.lang.Override public java.util.List getRepeatedTimestampList() { return repeatedTimestamp_; } /** * repeated .google.protobuf.Timestamp repeated_timestamp = 312; */ + @java.lang.Override public java.util.List getRepeatedTimestampOrBuilderList() { return repeatedTimestamp_; @@ -10402,18 +10831,21 @@ public java.util.List getRepeatedTimestampList() /** * repeated .google.protobuf.Timestamp repeated_timestamp = 312; */ + @java.lang.Override public int getRepeatedTimestampCount() { return repeatedTimestamp_.size(); } /** * repeated .google.protobuf.Timestamp repeated_timestamp = 312; */ + @java.lang.Override public com.google.protobuf.Timestamp getRepeatedTimestamp(int index) { return repeatedTimestamp_.get(index); } /** * repeated .google.protobuf.Timestamp repeated_timestamp = 312; */ + @java.lang.Override public com.google.protobuf.TimestampOrBuilder getRepeatedTimestampOrBuilder( int index) { return repeatedTimestamp_.get(index); @@ -10424,12 +10856,14 @@ public com.google.protobuf.TimestampOrBuilder getRepeatedTimestampOrBuilder( /** * repeated .google.protobuf.FieldMask repeated_fieldmask = 313; */ + @java.lang.Override public java.util.List getRepeatedFieldmaskList() { return repeatedFieldmask_; } /** * repeated .google.protobuf.FieldMask repeated_fieldmask = 313; */ + @java.lang.Override public java.util.List getRepeatedFieldmaskOrBuilderList() { return repeatedFieldmask_; @@ -10437,18 +10871,21 @@ public java.util.List getRepeatedFieldmaskList() /** * repeated .google.protobuf.FieldMask repeated_fieldmask = 313; */ + @java.lang.Override public int getRepeatedFieldmaskCount() { return repeatedFieldmask_.size(); } /** * repeated .google.protobuf.FieldMask repeated_fieldmask = 313; */ + @java.lang.Override public com.google.protobuf.FieldMask getRepeatedFieldmask(int index) { return repeatedFieldmask_.get(index); } /** * repeated .google.protobuf.FieldMask repeated_fieldmask = 313; */ + @java.lang.Override public com.google.protobuf.FieldMaskOrBuilder getRepeatedFieldmaskOrBuilder( int index) { return repeatedFieldmask_.get(index); @@ -10459,12 +10896,14 @@ public com.google.protobuf.FieldMaskOrBuilder getRepeatedFieldmaskOrBuilder( /** * repeated .google.protobuf.Struct repeated_struct = 324; */ + @java.lang.Override public java.util.List getRepeatedStructList() { return repeatedStruct_; } /** * repeated .google.protobuf.Struct repeated_struct = 324; */ + @java.lang.Override public java.util.List getRepeatedStructOrBuilderList() { return repeatedStruct_; @@ -10472,18 +10911,21 @@ public java.util.List getRepeatedStructList() { /** * repeated .google.protobuf.Struct repeated_struct = 324; */ + @java.lang.Override public int getRepeatedStructCount() { return repeatedStruct_.size(); } /** * repeated .google.protobuf.Struct repeated_struct = 324; */ + @java.lang.Override public com.google.protobuf.Struct getRepeatedStruct(int index) { return repeatedStruct_.get(index); } /** * repeated .google.protobuf.Struct repeated_struct = 324; */ + @java.lang.Override public com.google.protobuf.StructOrBuilder getRepeatedStructOrBuilder( int index) { return repeatedStruct_.get(index); @@ -10494,12 +10936,14 @@ public com.google.protobuf.StructOrBuilder getRepeatedStructOrBuilder( /** * repeated .google.protobuf.Any repeated_any = 315; */ + @java.lang.Override public java.util.List getRepeatedAnyList() { return repeatedAny_; } /** * repeated .google.protobuf.Any repeated_any = 315; */ + @java.lang.Override public java.util.List getRepeatedAnyOrBuilderList() { return repeatedAny_; @@ -10507,18 +10951,21 @@ public java.util.List getRepeatedAnyList() { /** * repeated .google.protobuf.Any repeated_any = 315; */ + @java.lang.Override public int getRepeatedAnyCount() { return repeatedAny_.size(); } /** * repeated .google.protobuf.Any repeated_any = 315; */ + @java.lang.Override public com.google.protobuf.Any getRepeatedAny(int index) { return repeatedAny_.get(index); } /** * repeated .google.protobuf.Any repeated_any = 315; */ + @java.lang.Override public com.google.protobuf.AnyOrBuilder getRepeatedAnyOrBuilder( int index) { return repeatedAny_.get(index); @@ -10529,12 +10976,14 @@ public com.google.protobuf.AnyOrBuilder getRepeatedAnyOrBuilder( /** * repeated .google.protobuf.Value repeated_value = 316; */ + @java.lang.Override public java.util.List getRepeatedValueList() { return repeatedValue_; } /** * repeated .google.protobuf.Value repeated_value = 316; */ + @java.lang.Override public java.util.List getRepeatedValueOrBuilderList() { return repeatedValue_; @@ -10542,18 +10991,21 @@ public java.util.List getRepeatedValueList() { /** * repeated .google.protobuf.Value repeated_value = 316; */ + @java.lang.Override public int getRepeatedValueCount() { return repeatedValue_.size(); } /** * repeated .google.protobuf.Value repeated_value = 316; */ + @java.lang.Override public com.google.protobuf.Value getRepeatedValue(int index) { return repeatedValue_.get(index); } /** * repeated .google.protobuf.Value repeated_value = 316; */ + @java.lang.Override public com.google.protobuf.ValueOrBuilder getRepeatedValueOrBuilder( int index) { return repeatedValue_.get(index); @@ -10564,12 +11016,14 @@ public com.google.protobuf.ValueOrBuilder getRepeatedValueOrBuilder( /** * repeated .google.protobuf.ListValue repeated_list_value = 317; */ + @java.lang.Override public java.util.List getRepeatedListValueList() { return repeatedListValue_; } /** * repeated .google.protobuf.ListValue repeated_list_value = 317; */ + @java.lang.Override public java.util.List getRepeatedListValueOrBuilderList() { return repeatedListValue_; @@ -10577,18 +11031,21 @@ public java.util.List getRepeatedListValueList() /** * repeated .google.protobuf.ListValue repeated_list_value = 317; */ + @java.lang.Override public int getRepeatedListValueCount() { return repeatedListValue_.size(); } /** * repeated .google.protobuf.ListValue repeated_list_value = 317; */ + @java.lang.Override public com.google.protobuf.ListValue getRepeatedListValue(int index) { return repeatedListValue_.get(index); } /** * repeated .google.protobuf.ListValue repeated_list_value = 317; */ + @java.lang.Override public com.google.protobuf.ListValueOrBuilder getRepeatedListValueOrBuilder( int index) { return repeatedListValue_.get(index); @@ -10605,6 +11062,7 @@ public com.google.protobuf.ListValueOrBuilder getRepeatedListValueOrBuilder( * int32 fieldname1 = 401; * @return The fieldname1. */ + @java.lang.Override public int getFieldname1() { return fieldname1_; } @@ -10615,6 +11073,7 @@ public int getFieldname1() { * int32 field_name2 = 402; * @return The fieldName2. */ + @java.lang.Override public int getFieldName2() { return fieldName2_; } @@ -10625,6 +11084,7 @@ public int getFieldName2() { * int32 _field_name3 = 403; * @return The fieldName3. */ + @java.lang.Override public int getFieldName3() { return FieldName3_; } @@ -10635,6 +11095,7 @@ public int getFieldName3() { * int32 field__name4_ = 404; * @return The fieldName4. */ + @java.lang.Override public int getFieldName4() { return fieldName4_; } @@ -10645,6 +11106,7 @@ public int getFieldName4() { * int32 field0name5 = 405; * @return The field0name5. */ + @java.lang.Override public int getField0Name5() { return field0Name5_; } @@ -10655,6 +11117,7 @@ public int getField0Name5() { * int32 field_0_name6 = 406; * @return The field0Name6. */ + @java.lang.Override public int getField0Name6() { return field0Name6_; } @@ -10665,6 +11128,7 @@ public int getField0Name6() { * int32 fieldName7 = 407; * @return The fieldName7. */ + @java.lang.Override public int getFieldName7() { return fieldName7_; } @@ -10675,6 +11139,7 @@ public int getFieldName7() { * int32 FieldName8 = 408; * @return The fieldName8. */ + @java.lang.Override public int getFieldName8() { return fieldName8_; } @@ -10685,6 +11150,7 @@ public int getFieldName8() { * int32 field_Name9 = 409; * @return The fieldName9. */ + @java.lang.Override public int getFieldName9() { return fieldName9_; } @@ -10695,6 +11161,7 @@ public int getFieldName9() { * int32 Field_Name10 = 410; * @return The fieldName10. */ + @java.lang.Override public int getFieldName10() { return fieldName10_; } @@ -10705,6 +11172,7 @@ public int getFieldName10() { * int32 FIELD_NAME11 = 411; * @return The fIELDNAME11. */ + @java.lang.Override public int getFIELDNAME11() { return fIELDNAME11_; } @@ -10715,6 +11183,7 @@ public int getFIELDNAME11() { * int32 FIELD_name12 = 412; * @return The fIELDName12. */ + @java.lang.Override public int getFIELDName12() { return fIELDName12_; } @@ -10725,6 +11194,7 @@ public int getFIELDName12() { * int32 __field_name13 = 413; * @return The fieldName13. */ + @java.lang.Override public int getFieldName13() { return FieldName13_; } @@ -10735,6 +11205,7 @@ public int getFieldName13() { * int32 __Field_name14 = 414; * @return The fieldName14. */ + @java.lang.Override public int getFieldName14() { return FieldName14_; } @@ -10745,6 +11216,7 @@ public int getFieldName14() { * int32 field__name15 = 415; * @return The fieldName15. */ + @java.lang.Override public int getFieldName15() { return fieldName15_; } @@ -10755,6 +11227,7 @@ public int getFieldName15() { * int32 field__Name16 = 416; * @return The fieldName16. */ + @java.lang.Override public int getFieldName16() { return fieldName16_; } @@ -10765,6 +11238,7 @@ public int getFieldName16() { * int32 field_name17__ = 417; * @return The fieldName17. */ + @java.lang.Override public int getFieldName17() { return fieldName17_; } @@ -10775,6 +11249,7 @@ public int getFieldName17() { * int32 Field_name18__ = 418; * @return The fieldName18. */ + @java.lang.Override public int getFieldName18() { return fieldName18_; } @@ -15962,6 +16437,7 @@ public Builder clearOneofField() { * int32 optional_int32 = 1; * @return The optionalInt32. */ + @java.lang.Override public int getOptionalInt32() { return optionalInt32_; } @@ -16000,6 +16476,7 @@ public Builder clearOptionalInt32() { * int64 optional_int64 = 2; * @return The optionalInt64. */ + @java.lang.Override public long getOptionalInt64() { return optionalInt64_; } @@ -16030,6 +16507,7 @@ public Builder clearOptionalInt64() { * uint32 optional_uint32 = 3; * @return The optionalUint32. */ + @java.lang.Override public int getOptionalUint32() { return optionalUint32_; } @@ -16060,6 +16538,7 @@ public Builder clearOptionalUint32() { * uint64 optional_uint64 = 4; * @return The optionalUint64. */ + @java.lang.Override public long getOptionalUint64() { return optionalUint64_; } @@ -16090,6 +16569,7 @@ public Builder clearOptionalUint64() { * sint32 optional_sint32 = 5; * @return The optionalSint32. */ + @java.lang.Override public int getOptionalSint32() { return optionalSint32_; } @@ -16120,6 +16600,7 @@ public Builder clearOptionalSint32() { * sint64 optional_sint64 = 6; * @return The optionalSint64. */ + @java.lang.Override public long getOptionalSint64() { return optionalSint64_; } @@ -16150,6 +16631,7 @@ public Builder clearOptionalSint64() { * fixed32 optional_fixed32 = 7; * @return The optionalFixed32. */ + @java.lang.Override public int getOptionalFixed32() { return optionalFixed32_; } @@ -16180,6 +16662,7 @@ public Builder clearOptionalFixed32() { * fixed64 optional_fixed64 = 8; * @return The optionalFixed64. */ + @java.lang.Override public long getOptionalFixed64() { return optionalFixed64_; } @@ -16210,6 +16693,7 @@ public Builder clearOptionalFixed64() { * sfixed32 optional_sfixed32 = 9; * @return The optionalSfixed32. */ + @java.lang.Override public int getOptionalSfixed32() { return optionalSfixed32_; } @@ -16240,6 +16724,7 @@ public Builder clearOptionalSfixed32() { * sfixed64 optional_sfixed64 = 10; * @return The optionalSfixed64. */ + @java.lang.Override public long getOptionalSfixed64() { return optionalSfixed64_; } @@ -16270,6 +16755,7 @@ public Builder clearOptionalSfixed64() { * float optional_float = 11; * @return The optionalFloat. */ + @java.lang.Override public float getOptionalFloat() { return optionalFloat_; } @@ -16300,6 +16786,7 @@ public Builder clearOptionalFloat() { * double optional_double = 12; * @return The optionalDouble. */ + @java.lang.Override public double getOptionalDouble() { return optionalDouble_; } @@ -16330,6 +16817,7 @@ public Builder clearOptionalDouble() { * bool optional_bool = 13; * @return The optionalBool. */ + @java.lang.Override public boolean getOptionalBool() { return optionalBool_; } @@ -16436,6 +16924,7 @@ public Builder setOptionalStringBytes( * bytes optional_bytes = 15; * @return The optionalBytes. */ + @java.lang.Override public com.google.protobuf.ByteString getOptionalBytes() { return optionalBytes_; } @@ -16707,7 +17196,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignMessag * .protobuf_test_messages.proto3.TestAllTypesProto3.NestedEnum optional_nested_enum = 21; * @return The enum numeric value on the wire for optionalNestedEnum. */ - public int getOptionalNestedEnumValue() { + @java.lang.Override public int getOptionalNestedEnumValue() { return optionalNestedEnum_; } /** @@ -16716,6 +17205,7 @@ public int getOptionalNestedEnumValue() { * @return This builder for chaining. */ public Builder setOptionalNestedEnumValue(int value) { + optionalNestedEnum_ = value; onChanged(); return this; @@ -16724,6 +17214,7 @@ public Builder setOptionalNestedEnumValue(int value) { * .protobuf_test_messages.proto3.TestAllTypesProto3.NestedEnum optional_nested_enum = 21; * @return The optionalNestedEnum. */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedEnum getOptionalNestedEnum() { @SuppressWarnings("deprecation") com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedEnum result = com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedEnum.valueOf(optionalNestedEnum_); @@ -16759,7 +17250,7 @@ public Builder clearOptionalNestedEnum() { * .protobuf_test_messages.proto3.ForeignEnum optional_foreign_enum = 22; * @return The enum numeric value on the wire for optionalForeignEnum. */ - public int getOptionalForeignEnumValue() { + @java.lang.Override public int getOptionalForeignEnumValue() { return optionalForeignEnum_; } /** @@ -16768,6 +17259,7 @@ public int getOptionalForeignEnumValue() { * @return This builder for chaining. */ public Builder setOptionalForeignEnumValue(int value) { + optionalForeignEnum_ = value; onChanged(); return this; @@ -16776,6 +17268,7 @@ public Builder setOptionalForeignEnumValue(int value) { * .protobuf_test_messages.proto3.ForeignEnum optional_foreign_enum = 22; * @return The optionalForeignEnum. */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignEnum getOptionalForeignEnum() { @SuppressWarnings("deprecation") com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignEnum result = com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignEnum.valueOf(optionalForeignEnum_); @@ -16811,7 +17304,7 @@ public Builder clearOptionalForeignEnum() { * .protobuf_test_messages.proto3.TestAllTypesProto3.AliasedEnum optional_aliased_enum = 23; * @return The enum numeric value on the wire for optionalAliasedEnum. */ - public int getOptionalAliasedEnumValue() { + @java.lang.Override public int getOptionalAliasedEnumValue() { return optionalAliasedEnum_; } /** @@ -16820,6 +17313,7 @@ public int getOptionalAliasedEnumValue() { * @return This builder for chaining. */ public Builder setOptionalAliasedEnumValue(int value) { + optionalAliasedEnum_ = value; onChanged(); return this; @@ -16828,6 +17322,7 @@ public Builder setOptionalAliasedEnumValue(int value) { * .protobuf_test_messages.proto3.TestAllTypesProto3.AliasedEnum optional_aliased_enum = 23; * @return The optionalAliasedEnum. */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.AliasedEnum getOptionalAliasedEnum() { @SuppressWarnings("deprecation") com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.AliasedEnum result = com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.AliasedEnum.valueOf(optionalAliasedEnum_); @@ -21783,6 +22278,7 @@ public int getMapInt32Int32Count() { * map<int32, int32> map_int32_int32 = 56; */ + @java.lang.Override public boolean containsMapInt32Int32( int key) { @@ -21791,6 +22287,7 @@ public boolean containsMapInt32Int32( /** * Use {@link #getMapInt32Int32Map()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapInt32Int32() { return getMapInt32Int32Map(); @@ -21802,6 +22299,7 @@ public java.util.Map getMapInt32Int32() { * * map<int32, int32> map_int32_int32 = 56; */ + @java.lang.Override public java.util.Map getMapInt32Int32Map() { return internalGetMapInt32Int32().getMap(); @@ -21813,6 +22311,7 @@ public java.util.Map getMapInt32Int32Map() * * map<int32, int32> map_int32_int32 = 56; */ + @java.lang.Override public int getMapInt32Int32OrDefault( int key, @@ -21829,6 +22328,7 @@ public int getMapInt32Int32OrDefault( * * map<int32, int32> map_int32_int32 = 56; */ + @java.lang.Override public int getMapInt32Int32OrThrow( int key) { @@ -21930,6 +22430,7 @@ public int getMapInt64Int64Count() { * map<int64, int64> map_int64_int64 = 57; */ + @java.lang.Override public boolean containsMapInt64Int64( long key) { @@ -21938,6 +22439,7 @@ public boolean containsMapInt64Int64( /** * Use {@link #getMapInt64Int64Map()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapInt64Int64() { return getMapInt64Int64Map(); @@ -21945,6 +22447,7 @@ public java.util.Map getMapInt64Int64() { /** * map<int64, int64> map_int64_int64 = 57; */ + @java.lang.Override public java.util.Map getMapInt64Int64Map() { return internalGetMapInt64Int64().getMap(); @@ -21952,6 +22455,7 @@ public java.util.Map getMapInt64Int64Map() { /** * map<int64, int64> map_int64_int64 = 57; */ + @java.lang.Override public long getMapInt64Int64OrDefault( long key, @@ -21964,6 +22468,7 @@ public long getMapInt64Int64OrDefault( /** * map<int64, int64> map_int64_int64 = 57; */ + @java.lang.Override public long getMapInt64Int64OrThrow( long key) { @@ -22053,6 +22558,7 @@ public int getMapUint32Uint32Count() { * map<uint32, uint32> map_uint32_uint32 = 58; */ + @java.lang.Override public boolean containsMapUint32Uint32( int key) { @@ -22061,6 +22567,7 @@ public boolean containsMapUint32Uint32( /** * Use {@link #getMapUint32Uint32Map()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapUint32Uint32() { return getMapUint32Uint32Map(); @@ -22068,6 +22575,7 @@ public java.util.Map getMapUint32Uint32() /** * map<uint32, uint32> map_uint32_uint32 = 58; */ + @java.lang.Override public java.util.Map getMapUint32Uint32Map() { return internalGetMapUint32Uint32().getMap(); @@ -22075,6 +22583,7 @@ public java.util.Map getMapUint32Uint32Map /** * map<uint32, uint32> map_uint32_uint32 = 58; */ + @java.lang.Override public int getMapUint32Uint32OrDefault( int key, @@ -22087,6 +22596,7 @@ public int getMapUint32Uint32OrDefault( /** * map<uint32, uint32> map_uint32_uint32 = 58; */ + @java.lang.Override public int getMapUint32Uint32OrThrow( int key) { @@ -22176,6 +22686,7 @@ public int getMapUint64Uint64Count() { * map<uint64, uint64> map_uint64_uint64 = 59; */ + @java.lang.Override public boolean containsMapUint64Uint64( long key) { @@ -22184,6 +22695,7 @@ public boolean containsMapUint64Uint64( /** * Use {@link #getMapUint64Uint64Map()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapUint64Uint64() { return getMapUint64Uint64Map(); @@ -22191,6 +22703,7 @@ public java.util.Map getMapUint64Uint64() { /** * map<uint64, uint64> map_uint64_uint64 = 59; */ + @java.lang.Override public java.util.Map getMapUint64Uint64Map() { return internalGetMapUint64Uint64().getMap(); @@ -22198,6 +22711,7 @@ public java.util.Map getMapUint64Uint64Map() { /** * map<uint64, uint64> map_uint64_uint64 = 59; */ + @java.lang.Override public long getMapUint64Uint64OrDefault( long key, @@ -22210,6 +22724,7 @@ public long getMapUint64Uint64OrDefault( /** * map<uint64, uint64> map_uint64_uint64 = 59; */ + @java.lang.Override public long getMapUint64Uint64OrThrow( long key) { @@ -22299,6 +22814,7 @@ public int getMapSint32Sint32Count() { * map<sint32, sint32> map_sint32_sint32 = 60; */ + @java.lang.Override public boolean containsMapSint32Sint32( int key) { @@ -22307,6 +22823,7 @@ public boolean containsMapSint32Sint32( /** * Use {@link #getMapSint32Sint32Map()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapSint32Sint32() { return getMapSint32Sint32Map(); @@ -22314,6 +22831,7 @@ public java.util.Map getMapSint32Sint32() /** * map<sint32, sint32> map_sint32_sint32 = 60; */ + @java.lang.Override public java.util.Map getMapSint32Sint32Map() { return internalGetMapSint32Sint32().getMap(); @@ -22321,6 +22839,7 @@ public java.util.Map getMapSint32Sint32Map /** * map<sint32, sint32> map_sint32_sint32 = 60; */ + @java.lang.Override public int getMapSint32Sint32OrDefault( int key, @@ -22333,6 +22852,7 @@ public int getMapSint32Sint32OrDefault( /** * map<sint32, sint32> map_sint32_sint32 = 60; */ + @java.lang.Override public int getMapSint32Sint32OrThrow( int key) { @@ -22422,6 +22942,7 @@ public int getMapSint64Sint64Count() { * map<sint64, sint64> map_sint64_sint64 = 61; */ + @java.lang.Override public boolean containsMapSint64Sint64( long key) { @@ -22430,6 +22951,7 @@ public boolean containsMapSint64Sint64( /** * Use {@link #getMapSint64Sint64Map()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapSint64Sint64() { return getMapSint64Sint64Map(); @@ -22437,6 +22959,7 @@ public java.util.Map getMapSint64Sint64() { /** * map<sint64, sint64> map_sint64_sint64 = 61; */ + @java.lang.Override public java.util.Map getMapSint64Sint64Map() { return internalGetMapSint64Sint64().getMap(); @@ -22444,6 +22967,7 @@ public java.util.Map getMapSint64Sint64Map() { /** * map<sint64, sint64> map_sint64_sint64 = 61; */ + @java.lang.Override public long getMapSint64Sint64OrDefault( long key, @@ -22456,6 +22980,7 @@ public long getMapSint64Sint64OrDefault( /** * map<sint64, sint64> map_sint64_sint64 = 61; */ + @java.lang.Override public long getMapSint64Sint64OrThrow( long key) { @@ -22545,6 +23070,7 @@ public int getMapFixed32Fixed32Count() { * map<fixed32, fixed32> map_fixed32_fixed32 = 62; */ + @java.lang.Override public boolean containsMapFixed32Fixed32( int key) { @@ -22553,6 +23079,7 @@ public boolean containsMapFixed32Fixed32( /** * Use {@link #getMapFixed32Fixed32Map()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapFixed32Fixed32() { return getMapFixed32Fixed32Map(); @@ -22560,6 +23087,7 @@ public java.util.Map getMapFixed32Fixed32( /** * map<fixed32, fixed32> map_fixed32_fixed32 = 62; */ + @java.lang.Override public java.util.Map getMapFixed32Fixed32Map() { return internalGetMapFixed32Fixed32().getMap(); @@ -22567,6 +23095,7 @@ public java.util.Map getMapFixed32Fixed32M /** * map<fixed32, fixed32> map_fixed32_fixed32 = 62; */ + @java.lang.Override public int getMapFixed32Fixed32OrDefault( int key, @@ -22579,6 +23108,7 @@ public int getMapFixed32Fixed32OrDefault( /** * map<fixed32, fixed32> map_fixed32_fixed32 = 62; */ + @java.lang.Override public int getMapFixed32Fixed32OrThrow( int key) { @@ -22668,6 +23198,7 @@ public int getMapFixed64Fixed64Count() { * map<fixed64, fixed64> map_fixed64_fixed64 = 63; */ + @java.lang.Override public boolean containsMapFixed64Fixed64( long key) { @@ -22676,6 +23207,7 @@ public boolean containsMapFixed64Fixed64( /** * Use {@link #getMapFixed64Fixed64Map()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapFixed64Fixed64() { return getMapFixed64Fixed64Map(); @@ -22683,6 +23215,7 @@ public java.util.Map getMapFixed64Fixed64() { /** * map<fixed64, fixed64> map_fixed64_fixed64 = 63; */ + @java.lang.Override public java.util.Map getMapFixed64Fixed64Map() { return internalGetMapFixed64Fixed64().getMap(); @@ -22690,6 +23223,7 @@ public java.util.Map getMapFixed64Fixed64Map() { /** * map<fixed64, fixed64> map_fixed64_fixed64 = 63; */ + @java.lang.Override public long getMapFixed64Fixed64OrDefault( long key, @@ -22702,6 +23236,7 @@ public long getMapFixed64Fixed64OrDefault( /** * map<fixed64, fixed64> map_fixed64_fixed64 = 63; */ + @java.lang.Override public long getMapFixed64Fixed64OrThrow( long key) { @@ -22791,6 +23326,7 @@ public int getMapSfixed32Sfixed32Count() { * map<sfixed32, sfixed32> map_sfixed32_sfixed32 = 64; */ + @java.lang.Override public boolean containsMapSfixed32Sfixed32( int key) { @@ -22799,6 +23335,7 @@ public boolean containsMapSfixed32Sfixed32( /** * Use {@link #getMapSfixed32Sfixed32Map()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapSfixed32Sfixed32() { return getMapSfixed32Sfixed32Map(); @@ -22806,6 +23343,7 @@ public java.util.Map getMapSfixed32Sfixed3 /** * map<sfixed32, sfixed32> map_sfixed32_sfixed32 = 64; */ + @java.lang.Override public java.util.Map getMapSfixed32Sfixed32Map() { return internalGetMapSfixed32Sfixed32().getMap(); @@ -22813,6 +23351,7 @@ public java.util.Map getMapSfixed32Sfixed3 /** * map<sfixed32, sfixed32> map_sfixed32_sfixed32 = 64; */ + @java.lang.Override public int getMapSfixed32Sfixed32OrDefault( int key, @@ -22825,6 +23364,7 @@ public int getMapSfixed32Sfixed32OrDefault( /** * map<sfixed32, sfixed32> map_sfixed32_sfixed32 = 64; */ + @java.lang.Override public int getMapSfixed32Sfixed32OrThrow( int key) { @@ -22914,6 +23454,7 @@ public int getMapSfixed64Sfixed64Count() { * map<sfixed64, sfixed64> map_sfixed64_sfixed64 = 65; */ + @java.lang.Override public boolean containsMapSfixed64Sfixed64( long key) { @@ -22922,6 +23463,7 @@ public boolean containsMapSfixed64Sfixed64( /** * Use {@link #getMapSfixed64Sfixed64Map()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapSfixed64Sfixed64() { return getMapSfixed64Sfixed64Map(); @@ -22929,6 +23471,7 @@ public java.util.Map getMapSfixed64Sfixed64() { /** * map<sfixed64, sfixed64> map_sfixed64_sfixed64 = 65; */ + @java.lang.Override public java.util.Map getMapSfixed64Sfixed64Map() { return internalGetMapSfixed64Sfixed64().getMap(); @@ -22936,6 +23479,7 @@ public java.util.Map getMapSfixed64Sfixed64Map() /** * map<sfixed64, sfixed64> map_sfixed64_sfixed64 = 65; */ + @java.lang.Override public long getMapSfixed64Sfixed64OrDefault( long key, @@ -22948,6 +23492,7 @@ public long getMapSfixed64Sfixed64OrDefault( /** * map<sfixed64, sfixed64> map_sfixed64_sfixed64 = 65; */ + @java.lang.Override public long getMapSfixed64Sfixed64OrThrow( long key) { @@ -23037,6 +23582,7 @@ public int getMapInt32FloatCount() { * map<int32, float> map_int32_float = 66; */ + @java.lang.Override public boolean containsMapInt32Float( int key) { @@ -23045,6 +23591,7 @@ public boolean containsMapInt32Float( /** * Use {@link #getMapInt32FloatMap()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapInt32Float() { return getMapInt32FloatMap(); @@ -23052,6 +23599,7 @@ public java.util.Map getMapInt32Float() { /** * map<int32, float> map_int32_float = 66; */ + @java.lang.Override public java.util.Map getMapInt32FloatMap() { return internalGetMapInt32Float().getMap(); @@ -23059,6 +23607,7 @@ public java.util.Map getMapInt32FloatMap() { /** * map<int32, float> map_int32_float = 66; */ + @java.lang.Override public float getMapInt32FloatOrDefault( int key, @@ -23071,6 +23620,7 @@ public float getMapInt32FloatOrDefault( /** * map<int32, float> map_int32_float = 66; */ + @java.lang.Override public float getMapInt32FloatOrThrow( int key) { @@ -23160,6 +23710,7 @@ public int getMapInt32DoubleCount() { * map<int32, double> map_int32_double = 67; */ + @java.lang.Override public boolean containsMapInt32Double( int key) { @@ -23168,6 +23719,7 @@ public boolean containsMapInt32Double( /** * Use {@link #getMapInt32DoubleMap()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapInt32Double() { return getMapInt32DoubleMap(); @@ -23175,6 +23727,7 @@ public java.util.Map getMapInt32Double() { /** * map<int32, double> map_int32_double = 67; */ + @java.lang.Override public java.util.Map getMapInt32DoubleMap() { return internalGetMapInt32Double().getMap(); @@ -23182,6 +23735,7 @@ public java.util.Map getMapInt32DoubleMap() /** * map<int32, double> map_int32_double = 67; */ + @java.lang.Override public double getMapInt32DoubleOrDefault( int key, @@ -23194,6 +23748,7 @@ public double getMapInt32DoubleOrDefault( /** * map<int32, double> map_int32_double = 67; */ + @java.lang.Override public double getMapInt32DoubleOrThrow( int key) { @@ -23283,6 +23838,7 @@ public int getMapBoolBoolCount() { * map<bool, bool> map_bool_bool = 68; */ + @java.lang.Override public boolean containsMapBoolBool( boolean key) { @@ -23291,6 +23847,7 @@ public boolean containsMapBoolBool( /** * Use {@link #getMapBoolBoolMap()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapBoolBool() { return getMapBoolBoolMap(); @@ -23298,6 +23855,7 @@ public java.util.Map getMapBoolBool() { /** * map<bool, bool> map_bool_bool = 68; */ + @java.lang.Override public java.util.Map getMapBoolBoolMap() { return internalGetMapBoolBool().getMap(); @@ -23305,6 +23863,7 @@ public java.util.Map getMapBoolBoolMap() { /** * map<bool, bool> map_bool_bool = 68; */ + @java.lang.Override public boolean getMapBoolBoolOrDefault( boolean key, @@ -23317,6 +23876,7 @@ public boolean getMapBoolBoolOrDefault( /** * map<bool, bool> map_bool_bool = 68; */ + @java.lang.Override public boolean getMapBoolBoolOrThrow( boolean key) { @@ -23406,6 +23966,7 @@ public int getMapStringStringCount() { * map<string, string> map_string_string = 69; */ + @java.lang.Override public boolean containsMapStringString( java.lang.String key) { if (key == null) { throw new java.lang.NullPointerException(); } @@ -23414,6 +23975,7 @@ public boolean containsMapStringString( /** * Use {@link #getMapStringStringMap()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapStringString() { return getMapStringStringMap(); @@ -23421,6 +23983,7 @@ public java.util.Map getMapStringString() { /** * map<string, string> map_string_string = 69; */ + @java.lang.Override public java.util.Map getMapStringStringMap() { return internalGetMapStringString().getMap(); @@ -23428,6 +23991,7 @@ public java.util.Map getMapStringStringMap() /** * map<string, string> map_string_string = 69; */ + @java.lang.Override public java.lang.String getMapStringStringOrDefault( java.lang.String key, @@ -23440,6 +24004,7 @@ public java.lang.String getMapStringStringOrDefault( /** * map<string, string> map_string_string = 69; */ + @java.lang.Override public java.lang.String getMapStringStringOrThrow( java.lang.String key) { @@ -23529,6 +24094,7 @@ public int getMapStringBytesCount() { * map<string, bytes> map_string_bytes = 70; */ + @java.lang.Override public boolean containsMapStringBytes( java.lang.String key) { if (key == null) { throw new java.lang.NullPointerException(); } @@ -23537,6 +24103,7 @@ public boolean containsMapStringBytes( /** * Use {@link #getMapStringBytesMap()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapStringBytes() { return getMapStringBytesMap(); @@ -23544,6 +24111,7 @@ public java.util.Map getMapStr /** * map<string, bytes> map_string_bytes = 70; */ + @java.lang.Override public java.util.Map getMapStringBytesMap() { return internalGetMapStringBytes().getMap(); @@ -23551,6 +24119,7 @@ public java.util.Map getMapStr /** * map<string, bytes> map_string_bytes = 70; */ + @java.lang.Override public com.google.protobuf.ByteString getMapStringBytesOrDefault( java.lang.String key, @@ -23563,6 +24132,7 @@ public com.google.protobuf.ByteString getMapStringBytesOrDefault( /** * map<string, bytes> map_string_bytes = 70; */ + @java.lang.Override public com.google.protobuf.ByteString getMapStringBytesOrThrow( java.lang.String key) { @@ -23652,6 +24222,7 @@ public int getMapStringNestedMessageCount() { * map<string, .protobuf_test_messages.proto3.TestAllTypesProto3.NestedMessage> map_string_nested_message = 71; */ + @java.lang.Override public boolean containsMapStringNestedMessage( java.lang.String key) { if (key == null) { throw new java.lang.NullPointerException(); } @@ -23660,6 +24231,7 @@ public boolean containsMapStringNestedMessage( /** * Use {@link #getMapStringNestedMessageMap()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapStringNestedMessage() { return getMapStringNestedMessageMap(); @@ -23667,6 +24239,7 @@ public java.util.Mapmap<string, .protobuf_test_messages.proto3.TestAllTypesProto3.NestedMessage> map_string_nested_message = 71; */ + @java.lang.Override public java.util.Map getMapStringNestedMessageMap() { return internalGetMapStringNestedMessage().getMap(); @@ -23674,6 +24247,7 @@ public java.util.Mapmap<string, .protobuf_test_messages.proto3.TestAllTypesProto3.NestedMessage> map_string_nested_message = 71; */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedMessage getMapStringNestedMessageOrDefault( java.lang.String key, @@ -23686,6 +24260,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesP /** * map<string, .protobuf_test_messages.proto3.TestAllTypesProto3.NestedMessage> map_string_nested_message = 71; */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedMessage getMapStringNestedMessageOrThrow( java.lang.String key) { @@ -23775,6 +24350,7 @@ public int getMapStringForeignMessageCount() { * map<string, .protobuf_test_messages.proto3.ForeignMessage> map_string_foreign_message = 72; */ + @java.lang.Override public boolean containsMapStringForeignMessage( java.lang.String key) { if (key == null) { throw new java.lang.NullPointerException(); } @@ -23783,6 +24359,7 @@ public boolean containsMapStringForeignMessage( /** * Use {@link #getMapStringForeignMessageMap()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapStringForeignMessage() { return getMapStringForeignMessageMap(); @@ -23790,6 +24367,7 @@ public java.util.Mapmap<string, .protobuf_test_messages.proto3.ForeignMessage> map_string_foreign_message = 72; */ + @java.lang.Override public java.util.Map getMapStringForeignMessageMap() { return internalGetMapStringForeignMessage().getMap(); @@ -23797,6 +24375,7 @@ public java.util.Mapmap<string, .protobuf_test_messages.proto3.ForeignMessage> map_string_foreign_message = 72; */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignMessage getMapStringForeignMessageOrDefault( java.lang.String key, @@ -23809,6 +24388,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignMessag /** * map<string, .protobuf_test_messages.proto3.ForeignMessage> map_string_foreign_message = 72; */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignMessage getMapStringForeignMessageOrThrow( java.lang.String key) { @@ -23898,6 +24478,7 @@ public int getMapStringNestedEnumCount() { * map<string, .protobuf_test_messages.proto3.TestAllTypesProto3.NestedEnum> map_string_nested_enum = 73; */ + @java.lang.Override public boolean containsMapStringNestedEnum( java.lang.String key) { if (key == null) { throw new java.lang.NullPointerException(); } @@ -23906,6 +24487,7 @@ public boolean containsMapStringNestedEnum( /** * Use {@link #getMapStringNestedEnumMap()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapStringNestedEnum() { @@ -23914,6 +24496,7 @@ public boolean containsMapStringNestedEnum( /** * map<string, .protobuf_test_messages.proto3.TestAllTypesProto3.NestedEnum> map_string_nested_enum = 73; */ + @java.lang.Override public java.util.Map getMapStringNestedEnumMap() { @@ -23922,6 +24505,7 @@ public boolean containsMapStringNestedEnum( /** * map<string, .protobuf_test_messages.proto3.TestAllTypesProto3.NestedEnum> map_string_nested_enum = 73; */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedEnum getMapStringNestedEnumOrDefault( java.lang.String key, @@ -23936,6 +24520,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesP /** * map<string, .protobuf_test_messages.proto3.TestAllTypesProto3.NestedEnum> map_string_nested_enum = 73; */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedEnum getMapStringNestedEnumOrThrow( java.lang.String key) { @@ -23950,6 +24535,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesP /** * Use {@link #getMapStringNestedEnumValueMap()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapStringNestedEnumValue() { @@ -23958,6 +24544,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesP /** * map<string, .protobuf_test_messages.proto3.TestAllTypesProto3.NestedEnum> map_string_nested_enum = 73; */ + @java.lang.Override public java.util.Map getMapStringNestedEnumValueMap() { @@ -23966,6 +24553,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesP /** * map<string, .protobuf_test_messages.proto3.TestAllTypesProto3.NestedEnum> map_string_nested_enum = 73; */ + @java.lang.Override public int getMapStringNestedEnumValueOrDefault( java.lang.String key, @@ -23978,6 +24566,7 @@ public int getMapStringNestedEnumValueOrDefault( /** * map<string, .protobuf_test_messages.proto3.TestAllTypesProto3.NestedEnum> map_string_nested_enum = 73; */ + @java.lang.Override public int getMapStringNestedEnumValueOrThrow( java.lang.String key) { @@ -24096,6 +24685,7 @@ public int getMapStringForeignEnumCount() { * map<string, .protobuf_test_messages.proto3.ForeignEnum> map_string_foreign_enum = 74; */ + @java.lang.Override public boolean containsMapStringForeignEnum( java.lang.String key) { if (key == null) { throw new java.lang.NullPointerException(); } @@ -24104,6 +24694,7 @@ public boolean containsMapStringForeignEnum( /** * Use {@link #getMapStringForeignEnumMap()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapStringForeignEnum() { @@ -24112,6 +24703,7 @@ public boolean containsMapStringForeignEnum( /** * map<string, .protobuf_test_messages.proto3.ForeignEnum> map_string_foreign_enum = 74; */ + @java.lang.Override public java.util.Map getMapStringForeignEnumMap() { @@ -24120,6 +24712,7 @@ public boolean containsMapStringForeignEnum( /** * map<string, .protobuf_test_messages.proto3.ForeignEnum> map_string_foreign_enum = 74; */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignEnum getMapStringForeignEnumOrDefault( java.lang.String key, @@ -24134,6 +24727,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignEnum g /** * map<string, .protobuf_test_messages.proto3.ForeignEnum> map_string_foreign_enum = 74; */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignEnum getMapStringForeignEnumOrThrow( java.lang.String key) { @@ -24148,6 +24742,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignEnum g /** * Use {@link #getMapStringForeignEnumValueMap()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMapStringForeignEnumValue() { @@ -24156,6 +24751,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignEnum g /** * map<string, .protobuf_test_messages.proto3.ForeignEnum> map_string_foreign_enum = 74; */ + @java.lang.Override public java.util.Map getMapStringForeignEnumValueMap() { @@ -24164,6 +24760,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.ForeignEnum g /** * map<string, .protobuf_test_messages.proto3.ForeignEnum> map_string_foreign_enum = 74; */ + @java.lang.Override public int getMapStringForeignEnumValueOrDefault( java.lang.String key, @@ -24176,6 +24773,7 @@ public int getMapStringForeignEnumValueOrDefault( /** * map<string, .protobuf_test_messages.proto3.ForeignEnum> map_string_foreign_enum = 74; */ + @java.lang.Override public int getMapStringForeignEnumValueOrThrow( java.lang.String key) { @@ -24264,6 +24862,13 @@ public Builder putAllMapStringForeignEnumValue( return this; } + /** + * uint32 oneof_uint32 = 111; + * @return Whether the oneofUint32 field is set. + */ + public boolean hasOneofUint32() { + return oneofFieldCase_ == 111; + } /** * uint32 oneof_uint32 = 111; * @return The oneofUint32. @@ -24304,6 +24909,7 @@ public Builder clearOneofUint32() { * .protobuf_test_messages.proto3.TestAllTypesProto3.NestedMessage oneof_nested_message = 112; * @return Whether the oneofNestedMessage field is set. */ + @java.lang.Override public boolean hasOneofNestedMessage() { return oneofFieldCase_ == 112; } @@ -24311,6 +24917,7 @@ public boolean hasOneofNestedMessage() { * .protobuf_test_messages.proto3.TestAllTypesProto3.NestedMessage oneof_nested_message = 112; * @return The oneofNestedMessage. */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedMessage getOneofNestedMessage() { if (oneofNestedMessageBuilder_ == null) { if (oneofFieldCase_ == 112) { @@ -24404,6 +25011,7 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesP /** * .protobuf_test_messages.proto3.TestAllTypesProto3.NestedMessage oneof_nested_message = 112; */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedMessageOrBuilder getOneofNestedMessageOrBuilder() { if ((oneofFieldCase_ == 112) && (oneofNestedMessageBuilder_ != null)) { return oneofNestedMessageBuilder_.getMessageOrBuilder(); @@ -24436,10 +25044,19 @@ public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesP return oneofNestedMessageBuilder_; } + /** + * string oneof_string = 113; + * @return Whether the oneofString field is set. + */ + @java.lang.Override + public boolean hasOneofString() { + return oneofFieldCase_ == 113; + } /** * string oneof_string = 113; * @return The oneofString. */ + @java.lang.Override public java.lang.String getOneofString() { java.lang.Object ref = ""; if (oneofFieldCase_ == 113) { @@ -24461,6 +25078,7 @@ public java.lang.String getOneofString() { * string oneof_string = 113; * @return The bytes for oneofString. */ + @java.lang.Override public com.google.protobuf.ByteString getOneofStringBytes() { java.lang.Object ref = ""; @@ -24523,6 +25141,13 @@ public Builder setOneofStringBytes( return this; } + /** + * bytes oneof_bytes = 114; + * @return Whether the oneofBytes field is set. + */ + public boolean hasOneofBytes() { + return oneofFieldCase_ == 114; + } /** * bytes oneof_bytes = 114; * @return The oneofBytes. @@ -24560,6 +25185,13 @@ public Builder clearOneofBytes() { return this; } + /** + * bool oneof_bool = 115; + * @return Whether the oneofBool field is set. + */ + public boolean hasOneofBool() { + return oneofFieldCase_ == 115; + } /** * bool oneof_bool = 115; * @return The oneofBool. @@ -24594,6 +25226,13 @@ public Builder clearOneofBool() { return this; } + /** + * uint64 oneof_uint64 = 116; + * @return Whether the oneofUint64 field is set. + */ + public boolean hasOneofUint64() { + return oneofFieldCase_ == 116; + } /** * uint64 oneof_uint64 = 116; * @return The oneofUint64. @@ -24628,6 +25267,13 @@ public Builder clearOneofUint64() { return this; } + /** + * float oneof_float = 117; + * @return Whether the oneofFloat field is set. + */ + public boolean hasOneofFloat() { + return oneofFieldCase_ == 117; + } /** * float oneof_float = 117; * @return The oneofFloat. @@ -24662,6 +25308,13 @@ public Builder clearOneofFloat() { return this; } + /** + * double oneof_double = 118; + * @return Whether the oneofDouble field is set. + */ + public boolean hasOneofDouble() { + return oneofFieldCase_ == 118; + } /** * double oneof_double = 118; * @return The oneofDouble. @@ -24696,10 +25349,19 @@ public Builder clearOneofDouble() { return this; } + /** + * .protobuf_test_messages.proto3.TestAllTypesProto3.NestedEnum oneof_enum = 119; + * @return Whether the oneofEnum field is set. + */ + @java.lang.Override + public boolean hasOneofEnum() { + return oneofFieldCase_ == 119; + } /** * .protobuf_test_messages.proto3.TestAllTypesProto3.NestedEnum oneof_enum = 119; * @return The enum numeric value on the wire for oneofEnum. */ + @java.lang.Override public int getOneofEnumValue() { if (oneofFieldCase_ == 119) { return ((java.lang.Integer) oneofField_).intValue(); @@ -24721,6 +25383,7 @@ public Builder setOneofEnumValue(int value) { * .protobuf_test_messages.proto3.TestAllTypesProto3.NestedEnum oneof_enum = 119; * @return The oneofEnum. */ + @java.lang.Override public com.google.protobuf_test_messages.proto3.TestMessagesProto3.TestAllTypesProto3.NestedEnum getOneofEnum() { if (oneofFieldCase_ == 119) { @SuppressWarnings("deprecation") @@ -30428,6 +31091,7 @@ public com.google.protobuf.ListValue.Builder addRepeatedListValueBuilder( * int32 fieldname1 = 401; * @return The fieldname1. */ + @java.lang.Override public int getFieldname1() { return fieldname1_; } @@ -30468,6 +31132,7 @@ public Builder clearFieldname1() { * int32 field_name2 = 402; * @return The fieldName2. */ + @java.lang.Override public int getFieldName2() { return fieldName2_; } @@ -30498,6 +31163,7 @@ public Builder clearFieldName2() { * int32 _field_name3 = 403; * @return The fieldName3. */ + @java.lang.Override public int getFieldName3() { return FieldName3_; } @@ -30528,6 +31194,7 @@ public Builder clearFieldName3() { * int32 field__name4_ = 404; * @return The fieldName4. */ + @java.lang.Override public int getFieldName4() { return fieldName4_; } @@ -30558,6 +31225,7 @@ public Builder clearFieldName4() { * int32 field0name5 = 405; * @return The field0name5. */ + @java.lang.Override public int getField0Name5() { return field0Name5_; } @@ -30588,6 +31256,7 @@ public Builder clearField0Name5() { * int32 field_0_name6 = 406; * @return The field0Name6. */ + @java.lang.Override public int getField0Name6() { return field0Name6_; } @@ -30618,6 +31287,7 @@ public Builder clearField0Name6() { * int32 fieldName7 = 407; * @return The fieldName7. */ + @java.lang.Override public int getFieldName7() { return fieldName7_; } @@ -30648,6 +31318,7 @@ public Builder clearFieldName7() { * int32 FieldName8 = 408; * @return The fieldName8. */ + @java.lang.Override public int getFieldName8() { return fieldName8_; } @@ -30678,6 +31349,7 @@ public Builder clearFieldName8() { * int32 field_Name9 = 409; * @return The fieldName9. */ + @java.lang.Override public int getFieldName9() { return fieldName9_; } @@ -30708,6 +31380,7 @@ public Builder clearFieldName9() { * int32 Field_Name10 = 410; * @return The fieldName10. */ + @java.lang.Override public int getFieldName10() { return fieldName10_; } @@ -30738,6 +31411,7 @@ public Builder clearFieldName10() { * int32 FIELD_NAME11 = 411; * @return The fIELDNAME11. */ + @java.lang.Override public int getFIELDNAME11() { return fIELDNAME11_; } @@ -30768,6 +31442,7 @@ public Builder clearFIELDNAME11() { * int32 FIELD_name12 = 412; * @return The fIELDName12. */ + @java.lang.Override public int getFIELDName12() { return fIELDName12_; } @@ -30798,6 +31473,7 @@ public Builder clearFIELDName12() { * int32 __field_name13 = 413; * @return The fieldName13. */ + @java.lang.Override public int getFieldName13() { return FieldName13_; } @@ -30828,6 +31504,7 @@ public Builder clearFieldName13() { * int32 __Field_name14 = 414; * @return The fieldName14. */ + @java.lang.Override public int getFieldName14() { return FieldName14_; } @@ -30858,6 +31535,7 @@ public Builder clearFieldName14() { * int32 field__name15 = 415; * @return The fieldName15. */ + @java.lang.Override public int getFieldName15() { return fieldName15_; } @@ -30888,6 +31566,7 @@ public Builder clearFieldName15() { * int32 field__Name16 = 416; * @return The fieldName16. */ + @java.lang.Override public int getFieldName16() { return fieldName16_; } @@ -30918,6 +31597,7 @@ public Builder clearFieldName16() { * int32 field_name17__ = 417; * @return The fieldName17. */ + @java.lang.Override public int getFieldName17() { return fieldName17_; } @@ -30948,6 +31628,7 @@ public Builder clearFieldName17() { * int32 Field_name18__ = 418; * @return The fieldName18. */ + @java.lang.Override public int getFieldName18() { return fieldName18_; } @@ -31038,7 +31719,7 @@ public interface ForeignMessageOrBuilder extends /** * Protobuf type {@code protobuf_test_messages.proto3.ForeignMessage} */ - public static final class ForeignMessage extends + public static final class ForeignMessage extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:protobuf_test_messages.proto3.ForeignMessage) ForeignMessageOrBuilder { @@ -31123,6 +31804,7 @@ private ForeignMessage( * int32 c = 1; * @return The c. */ + @java.lang.Override public int getC() { return c_; } @@ -31434,6 +32116,7 @@ public Builder mergeFrom( * int32 c = 1; * @return The c. */ + @java.lang.Override public int getC() { return c_; } diff --git a/jvm-test-types/src/main/java/pbandk/testpb/CustomOptions.java b/jvm-test-types/src/main/java/pbandk/testpb/CustomOptions.java index 91f25bfe..9abf68f2 100644 --- a/jvm-test-types/src/main/java/pbandk/testpb/CustomOptions.java +++ b/jvm-test-types/src/main/java/pbandk/testpb/CustomOptions.java @@ -33,7 +33,7 @@ public interface SingleRequiredCustomOptionOrBuilder extends /** * Protobuf type {@code pbandk.testpb.SingleRequiredCustomOption} */ - public static final class SingleRequiredCustomOption extends + public static final class SingleRequiredCustomOption extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:pbandk.testpb.SingleRequiredCustomOption) SingleRequiredCustomOptionOrBuilder { @@ -120,6 +120,7 @@ private SingleRequiredCustomOption( * string single = 1 [(.pbandk.testpb.rules) = { ... } * @return The single. */ + @java.lang.Override public java.lang.String getSingle() { java.lang.Object ref = single_; if (ref instanceof java.lang.String) { @@ -136,6 +137,7 @@ public java.lang.String getSingle() { * string single = 1 [(.pbandk.testpb.rules) = { ... } * @return The bytes for single. */ + @java.lang.Override public com.google.protobuf.ByteString getSingleBytes() { java.lang.Object ref = single_; @@ -599,7 +601,7 @@ public interface MultipleCustomOptionsOrBuilder extends /** * Protobuf type {@code pbandk.testpb.MultipleCustomOptions} */ - public static final class MultipleCustomOptions extends + public static final class MultipleCustomOptions extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:pbandk.testpb.MultipleCustomOptions) MultipleCustomOptionsOrBuilder { @@ -686,6 +688,7 @@ private MultipleCustomOptions( * string multiple = 1 [(.pbandk.testpb.rules) = { ... } * @return The multiple. */ + @java.lang.Override public java.lang.String getMultiple() { java.lang.Object ref = multiple_; if (ref instanceof java.lang.String) { @@ -702,6 +705,7 @@ public java.lang.String getMultiple() { * string multiple = 1 [(.pbandk.testpb.rules) = { ... } * @return The bytes for multiple. */ + @java.lang.Override public com.google.protobuf.ByteString getMultipleBytes() { java.lang.Object ref = multiple_; @@ -1165,7 +1169,7 @@ public interface MultipleCustomOptionsPlusDeprecatedOrBuilder extends /** * Protobuf type {@code pbandk.testpb.MultipleCustomOptionsPlusDeprecated} */ - public static final class MultipleCustomOptionsPlusDeprecated extends + public static final class MultipleCustomOptionsPlusDeprecated extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:pbandk.testpb.MultipleCustomOptionsPlusDeprecated) MultipleCustomOptionsPlusDeprecatedOrBuilder { @@ -1252,6 +1256,7 @@ private MultipleCustomOptionsPlusDeprecated( * string multiple_deprecated = 1 [deprecated = true, (.pbandk.testpb.rules) = { ... } * @return The multipleDeprecated. */ + @java.lang.Override @java.lang.Deprecated public java.lang.String getMultipleDeprecated() { java.lang.Object ref = multipleDeprecated_; if (ref instanceof java.lang.String) { @@ -1268,6 +1273,7 @@ private MultipleCustomOptionsPlusDeprecated( * string multiple_deprecated = 1 [deprecated = true, (.pbandk.testpb.rules) = { ... } * @return The bytes for multipleDeprecated. */ + @java.lang.Override @java.lang.Deprecated public com.google.protobuf.ByteString getMultipleDeprecatedBytes() { java.lang.Object ref = multipleDeprecated_; diff --git a/jvm-test-types/src/main/java/pbandk/testpb/TestCompilerLimits.java b/jvm-test-types/src/main/java/pbandk/testpb/TestCompilerLimits.java index cad45608..fd2aadaf 100644 --- a/jvm-test-types/src/main/java/pbandk/testpb/TestCompilerLimits.java +++ b/jvm-test-types/src/main/java/pbandk/testpb/TestCompilerLimits.java @@ -9075,6 +9075,10 @@ public HugeEnum findValueByNumber(int number) { public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() { + if (this == UNRECOGNIZED) { + throw new java.lang.IllegalStateException( + "Can't get the descriptor of an unrecognized enum value."); + } return getDescriptor().getValues().get(ordinal()); } public final com.google.protobuf.Descriptors.EnumDescriptor @@ -21116,7 +21120,7 @@ public interface MessageWithLotsOfFieldsOrBuilder extends /** * Protobuf type {@code pbandk.testpb.MessageWithLotsOfFields} */ - public static final class MessageWithLotsOfFields extends + public static final class MessageWithLotsOfFields extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:pbandk.testpb.MessageWithLotsOfFields) MessageWithLotsOfFieldsOrBuilder { @@ -28196,6 +28200,7 @@ private MessageWithLotsOfFields( * string field_1000 = 1000; * @return The field1000. */ + @java.lang.Override public java.lang.String getField1000() { java.lang.Object ref = field1000_; if (ref instanceof java.lang.String) { @@ -28212,6 +28217,7 @@ public java.lang.String getField1000() { * string field_1000 = 1000; * @return The bytes for field1000. */ + @java.lang.Override public com.google.protobuf.ByteString getField1000Bytes() { java.lang.Object ref = field1000_; @@ -28232,6 +28238,7 @@ public java.lang.String getField1000() { * string field_1001 = 1001; * @return The field1001. */ + @java.lang.Override public java.lang.String getField1001() { java.lang.Object ref = field1001_; if (ref instanceof java.lang.String) { @@ -28248,6 +28255,7 @@ public java.lang.String getField1001() { * string field_1001 = 1001; * @return The bytes for field1001. */ + @java.lang.Override public com.google.protobuf.ByteString getField1001Bytes() { java.lang.Object ref = field1001_; @@ -28268,6 +28276,7 @@ public java.lang.String getField1001() { * string field_1002 = 1002; * @return The field1002. */ + @java.lang.Override public java.lang.String getField1002() { java.lang.Object ref = field1002_; if (ref instanceof java.lang.String) { @@ -28284,6 +28293,7 @@ public java.lang.String getField1002() { * string field_1002 = 1002; * @return The bytes for field1002. */ + @java.lang.Override public com.google.protobuf.ByteString getField1002Bytes() { java.lang.Object ref = field1002_; @@ -28304,6 +28314,7 @@ public java.lang.String getField1002() { * string field_1003 = 1003; * @return The field1003. */ + @java.lang.Override public java.lang.String getField1003() { java.lang.Object ref = field1003_; if (ref instanceof java.lang.String) { @@ -28320,6 +28331,7 @@ public java.lang.String getField1003() { * string field_1003 = 1003; * @return The bytes for field1003. */ + @java.lang.Override public com.google.protobuf.ByteString getField1003Bytes() { java.lang.Object ref = field1003_; @@ -28340,6 +28352,7 @@ public java.lang.String getField1003() { * string field_1004 = 1004; * @return The field1004. */ + @java.lang.Override public java.lang.String getField1004() { java.lang.Object ref = field1004_; if (ref instanceof java.lang.String) { @@ -28356,6 +28369,7 @@ public java.lang.String getField1004() { * string field_1004 = 1004; * @return The bytes for field1004. */ + @java.lang.Override public com.google.protobuf.ByteString getField1004Bytes() { java.lang.Object ref = field1004_; @@ -28376,6 +28390,7 @@ public java.lang.String getField1004() { * string field_1005 = 1005; * @return The field1005. */ + @java.lang.Override public java.lang.String getField1005() { java.lang.Object ref = field1005_; if (ref instanceof java.lang.String) { @@ -28392,6 +28407,7 @@ public java.lang.String getField1005() { * string field_1005 = 1005; * @return The bytes for field1005. */ + @java.lang.Override public com.google.protobuf.ByteString getField1005Bytes() { java.lang.Object ref = field1005_; @@ -28412,6 +28428,7 @@ public java.lang.String getField1005() { * string field_1006 = 1006; * @return The field1006. */ + @java.lang.Override public java.lang.String getField1006() { java.lang.Object ref = field1006_; if (ref instanceof java.lang.String) { @@ -28428,6 +28445,7 @@ public java.lang.String getField1006() { * string field_1006 = 1006; * @return The bytes for field1006. */ + @java.lang.Override public com.google.protobuf.ByteString getField1006Bytes() { java.lang.Object ref = field1006_; @@ -28448,6 +28466,7 @@ public java.lang.String getField1006() { * string field_1007 = 1007; * @return The field1007. */ + @java.lang.Override public java.lang.String getField1007() { java.lang.Object ref = field1007_; if (ref instanceof java.lang.String) { @@ -28464,6 +28483,7 @@ public java.lang.String getField1007() { * string field_1007 = 1007; * @return The bytes for field1007. */ + @java.lang.Override public com.google.protobuf.ByteString getField1007Bytes() { java.lang.Object ref = field1007_; @@ -28484,6 +28504,7 @@ public java.lang.String getField1007() { * string field_1008 = 1008; * @return The field1008. */ + @java.lang.Override public java.lang.String getField1008() { java.lang.Object ref = field1008_; if (ref instanceof java.lang.String) { @@ -28500,6 +28521,7 @@ public java.lang.String getField1008() { * string field_1008 = 1008; * @return The bytes for field1008. */ + @java.lang.Override public com.google.protobuf.ByteString getField1008Bytes() { java.lang.Object ref = field1008_; @@ -28520,6 +28542,7 @@ public java.lang.String getField1008() { * string field_1009 = 1009; * @return The field1009. */ + @java.lang.Override public java.lang.String getField1009() { java.lang.Object ref = field1009_; if (ref instanceof java.lang.String) { @@ -28536,6 +28559,7 @@ public java.lang.String getField1009() { * string field_1009 = 1009; * @return The bytes for field1009. */ + @java.lang.Override public com.google.protobuf.ByteString getField1009Bytes() { java.lang.Object ref = field1009_; @@ -28556,6 +28580,7 @@ public java.lang.String getField1009() { * string field_1010 = 1010; * @return The field1010. */ + @java.lang.Override public java.lang.String getField1010() { java.lang.Object ref = field1010_; if (ref instanceof java.lang.String) { @@ -28572,6 +28597,7 @@ public java.lang.String getField1010() { * string field_1010 = 1010; * @return The bytes for field1010. */ + @java.lang.Override public com.google.protobuf.ByteString getField1010Bytes() { java.lang.Object ref = field1010_; @@ -28592,6 +28618,7 @@ public java.lang.String getField1010() { * string field_1011 = 1011; * @return The field1011. */ + @java.lang.Override public java.lang.String getField1011() { java.lang.Object ref = field1011_; if (ref instanceof java.lang.String) { @@ -28608,6 +28635,7 @@ public java.lang.String getField1011() { * string field_1011 = 1011; * @return The bytes for field1011. */ + @java.lang.Override public com.google.protobuf.ByteString getField1011Bytes() { java.lang.Object ref = field1011_; @@ -28628,6 +28656,7 @@ public java.lang.String getField1011() { * string field_1012 = 1012; * @return The field1012. */ + @java.lang.Override public java.lang.String getField1012() { java.lang.Object ref = field1012_; if (ref instanceof java.lang.String) { @@ -28644,6 +28673,7 @@ public java.lang.String getField1012() { * string field_1012 = 1012; * @return The bytes for field1012. */ + @java.lang.Override public com.google.protobuf.ByteString getField1012Bytes() { java.lang.Object ref = field1012_; @@ -28664,6 +28694,7 @@ public java.lang.String getField1012() { * string field_1013 = 1013; * @return The field1013. */ + @java.lang.Override public java.lang.String getField1013() { java.lang.Object ref = field1013_; if (ref instanceof java.lang.String) { @@ -28680,6 +28711,7 @@ public java.lang.String getField1013() { * string field_1013 = 1013; * @return The bytes for field1013. */ + @java.lang.Override public com.google.protobuf.ByteString getField1013Bytes() { java.lang.Object ref = field1013_; @@ -28700,6 +28732,7 @@ public java.lang.String getField1013() { * string field_1014 = 1014; * @return The field1014. */ + @java.lang.Override public java.lang.String getField1014() { java.lang.Object ref = field1014_; if (ref instanceof java.lang.String) { @@ -28716,6 +28749,7 @@ public java.lang.String getField1014() { * string field_1014 = 1014; * @return The bytes for field1014. */ + @java.lang.Override public com.google.protobuf.ByteString getField1014Bytes() { java.lang.Object ref = field1014_; @@ -28736,6 +28770,7 @@ public java.lang.String getField1014() { * string field_1015 = 1015; * @return The field1015. */ + @java.lang.Override public java.lang.String getField1015() { java.lang.Object ref = field1015_; if (ref instanceof java.lang.String) { @@ -28752,6 +28787,7 @@ public java.lang.String getField1015() { * string field_1015 = 1015; * @return The bytes for field1015. */ + @java.lang.Override public com.google.protobuf.ByteString getField1015Bytes() { java.lang.Object ref = field1015_; @@ -28772,6 +28808,7 @@ public java.lang.String getField1015() { * string field_1016 = 1016; * @return The field1016. */ + @java.lang.Override public java.lang.String getField1016() { java.lang.Object ref = field1016_; if (ref instanceof java.lang.String) { @@ -28788,6 +28825,7 @@ public java.lang.String getField1016() { * string field_1016 = 1016; * @return The bytes for field1016. */ + @java.lang.Override public com.google.protobuf.ByteString getField1016Bytes() { java.lang.Object ref = field1016_; @@ -28808,6 +28846,7 @@ public java.lang.String getField1016() { * string field_1017 = 1017; * @return The field1017. */ + @java.lang.Override public java.lang.String getField1017() { java.lang.Object ref = field1017_; if (ref instanceof java.lang.String) { @@ -28824,6 +28863,7 @@ public java.lang.String getField1017() { * string field_1017 = 1017; * @return The bytes for field1017. */ + @java.lang.Override public com.google.protobuf.ByteString getField1017Bytes() { java.lang.Object ref = field1017_; @@ -28844,6 +28884,7 @@ public java.lang.String getField1017() { * string field_1018 = 1018; * @return The field1018. */ + @java.lang.Override public java.lang.String getField1018() { java.lang.Object ref = field1018_; if (ref instanceof java.lang.String) { @@ -28860,6 +28901,7 @@ public java.lang.String getField1018() { * string field_1018 = 1018; * @return The bytes for field1018. */ + @java.lang.Override public com.google.protobuf.ByteString getField1018Bytes() { java.lang.Object ref = field1018_; @@ -28880,6 +28922,7 @@ public java.lang.String getField1018() { * string field_1019 = 1019; * @return The field1019. */ + @java.lang.Override public java.lang.String getField1019() { java.lang.Object ref = field1019_; if (ref instanceof java.lang.String) { @@ -28896,6 +28939,7 @@ public java.lang.String getField1019() { * string field_1019 = 1019; * @return The bytes for field1019. */ + @java.lang.Override public com.google.protobuf.ByteString getField1019Bytes() { java.lang.Object ref = field1019_; @@ -28916,6 +28960,7 @@ public java.lang.String getField1019() { * string field_1020 = 1020; * @return The field1020. */ + @java.lang.Override public java.lang.String getField1020() { java.lang.Object ref = field1020_; if (ref instanceof java.lang.String) { @@ -28932,6 +28977,7 @@ public java.lang.String getField1020() { * string field_1020 = 1020; * @return The bytes for field1020. */ + @java.lang.Override public com.google.protobuf.ByteString getField1020Bytes() { java.lang.Object ref = field1020_; @@ -28952,6 +28998,7 @@ public java.lang.String getField1020() { * string field_1021 = 1021; * @return The field1021. */ + @java.lang.Override public java.lang.String getField1021() { java.lang.Object ref = field1021_; if (ref instanceof java.lang.String) { @@ -28968,6 +29015,7 @@ public java.lang.String getField1021() { * string field_1021 = 1021; * @return The bytes for field1021. */ + @java.lang.Override public com.google.protobuf.ByteString getField1021Bytes() { java.lang.Object ref = field1021_; @@ -28988,6 +29036,7 @@ public java.lang.String getField1021() { * string field_1022 = 1022; * @return The field1022. */ + @java.lang.Override public java.lang.String getField1022() { java.lang.Object ref = field1022_; if (ref instanceof java.lang.String) { @@ -29004,6 +29053,7 @@ public java.lang.String getField1022() { * string field_1022 = 1022; * @return The bytes for field1022. */ + @java.lang.Override public com.google.protobuf.ByteString getField1022Bytes() { java.lang.Object ref = field1022_; @@ -29024,6 +29074,7 @@ public java.lang.String getField1022() { * string field_1023 = 1023; * @return The field1023. */ + @java.lang.Override public java.lang.String getField1023() { java.lang.Object ref = field1023_; if (ref instanceof java.lang.String) { @@ -29040,6 +29091,7 @@ public java.lang.String getField1023() { * string field_1023 = 1023; * @return The bytes for field1023. */ + @java.lang.Override public com.google.protobuf.ByteString getField1023Bytes() { java.lang.Object ref = field1023_; @@ -29060,6 +29112,7 @@ public java.lang.String getField1023() { * string field_1024 = 1024; * @return The field1024. */ + @java.lang.Override public java.lang.String getField1024() { java.lang.Object ref = field1024_; if (ref instanceof java.lang.String) { @@ -29076,6 +29129,7 @@ public java.lang.String getField1024() { * string field_1024 = 1024; * @return The bytes for field1024. */ + @java.lang.Override public com.google.protobuf.ByteString getField1024Bytes() { java.lang.Object ref = field1024_; @@ -29096,6 +29150,7 @@ public java.lang.String getField1024() { * string field_1025 = 1025; * @return The field1025. */ + @java.lang.Override public java.lang.String getField1025() { java.lang.Object ref = field1025_; if (ref instanceof java.lang.String) { @@ -29112,6 +29167,7 @@ public java.lang.String getField1025() { * string field_1025 = 1025; * @return The bytes for field1025. */ + @java.lang.Override public com.google.protobuf.ByteString getField1025Bytes() { java.lang.Object ref = field1025_; @@ -29132,6 +29188,7 @@ public java.lang.String getField1025() { * string field_1026 = 1026; * @return The field1026. */ + @java.lang.Override public java.lang.String getField1026() { java.lang.Object ref = field1026_; if (ref instanceof java.lang.String) { @@ -29148,6 +29205,7 @@ public java.lang.String getField1026() { * string field_1026 = 1026; * @return The bytes for field1026. */ + @java.lang.Override public com.google.protobuf.ByteString getField1026Bytes() { java.lang.Object ref = field1026_; @@ -29168,6 +29226,7 @@ public java.lang.String getField1026() { * string field_1027 = 1027; * @return The field1027. */ + @java.lang.Override public java.lang.String getField1027() { java.lang.Object ref = field1027_; if (ref instanceof java.lang.String) { @@ -29184,6 +29243,7 @@ public java.lang.String getField1027() { * string field_1027 = 1027; * @return The bytes for field1027. */ + @java.lang.Override public com.google.protobuf.ByteString getField1027Bytes() { java.lang.Object ref = field1027_; @@ -29204,6 +29264,7 @@ public java.lang.String getField1027() { * string field_1028 = 1028; * @return The field1028. */ + @java.lang.Override public java.lang.String getField1028() { java.lang.Object ref = field1028_; if (ref instanceof java.lang.String) { @@ -29220,6 +29281,7 @@ public java.lang.String getField1028() { * string field_1028 = 1028; * @return The bytes for field1028. */ + @java.lang.Override public com.google.protobuf.ByteString getField1028Bytes() { java.lang.Object ref = field1028_; @@ -29240,6 +29302,7 @@ public java.lang.String getField1028() { * string field_1029 = 1029; * @return The field1029. */ + @java.lang.Override public java.lang.String getField1029() { java.lang.Object ref = field1029_; if (ref instanceof java.lang.String) { @@ -29256,6 +29319,7 @@ public java.lang.String getField1029() { * string field_1029 = 1029; * @return The bytes for field1029. */ + @java.lang.Override public com.google.protobuf.ByteString getField1029Bytes() { java.lang.Object ref = field1029_; @@ -29276,6 +29340,7 @@ public java.lang.String getField1029() { * string field_1030 = 1030; * @return The field1030. */ + @java.lang.Override public java.lang.String getField1030() { java.lang.Object ref = field1030_; if (ref instanceof java.lang.String) { @@ -29292,6 +29357,7 @@ public java.lang.String getField1030() { * string field_1030 = 1030; * @return The bytes for field1030. */ + @java.lang.Override public com.google.protobuf.ByteString getField1030Bytes() { java.lang.Object ref = field1030_; @@ -29312,6 +29378,7 @@ public java.lang.String getField1030() { * string field_1031 = 1031; * @return The field1031. */ + @java.lang.Override public java.lang.String getField1031() { java.lang.Object ref = field1031_; if (ref instanceof java.lang.String) { @@ -29328,6 +29395,7 @@ public java.lang.String getField1031() { * string field_1031 = 1031; * @return The bytes for field1031. */ + @java.lang.Override public com.google.protobuf.ByteString getField1031Bytes() { java.lang.Object ref = field1031_; @@ -29348,6 +29416,7 @@ public java.lang.String getField1031() { * string field_1032 = 1032; * @return The field1032. */ + @java.lang.Override public java.lang.String getField1032() { java.lang.Object ref = field1032_; if (ref instanceof java.lang.String) { @@ -29364,6 +29433,7 @@ public java.lang.String getField1032() { * string field_1032 = 1032; * @return The bytes for field1032. */ + @java.lang.Override public com.google.protobuf.ByteString getField1032Bytes() { java.lang.Object ref = field1032_; @@ -29384,6 +29454,7 @@ public java.lang.String getField1032() { * string field_1033 = 1033; * @return The field1033. */ + @java.lang.Override public java.lang.String getField1033() { java.lang.Object ref = field1033_; if (ref instanceof java.lang.String) { @@ -29400,6 +29471,7 @@ public java.lang.String getField1033() { * string field_1033 = 1033; * @return The bytes for field1033. */ + @java.lang.Override public com.google.protobuf.ByteString getField1033Bytes() { java.lang.Object ref = field1033_; @@ -29420,6 +29492,7 @@ public java.lang.String getField1033() { * string field_1034 = 1034; * @return The field1034. */ + @java.lang.Override public java.lang.String getField1034() { java.lang.Object ref = field1034_; if (ref instanceof java.lang.String) { @@ -29436,6 +29509,7 @@ public java.lang.String getField1034() { * string field_1034 = 1034; * @return The bytes for field1034. */ + @java.lang.Override public com.google.protobuf.ByteString getField1034Bytes() { java.lang.Object ref = field1034_; @@ -29456,6 +29530,7 @@ public java.lang.String getField1034() { * string field_1035 = 1035; * @return The field1035. */ + @java.lang.Override public java.lang.String getField1035() { java.lang.Object ref = field1035_; if (ref instanceof java.lang.String) { @@ -29472,6 +29547,7 @@ public java.lang.String getField1035() { * string field_1035 = 1035; * @return The bytes for field1035. */ + @java.lang.Override public com.google.protobuf.ByteString getField1035Bytes() { java.lang.Object ref = field1035_; @@ -29492,6 +29568,7 @@ public java.lang.String getField1035() { * string field_1036 = 1036; * @return The field1036. */ + @java.lang.Override public java.lang.String getField1036() { java.lang.Object ref = field1036_; if (ref instanceof java.lang.String) { @@ -29508,6 +29585,7 @@ public java.lang.String getField1036() { * string field_1036 = 1036; * @return The bytes for field1036. */ + @java.lang.Override public com.google.protobuf.ByteString getField1036Bytes() { java.lang.Object ref = field1036_; @@ -29528,6 +29606,7 @@ public java.lang.String getField1036() { * string field_1037 = 1037; * @return The field1037. */ + @java.lang.Override public java.lang.String getField1037() { java.lang.Object ref = field1037_; if (ref instanceof java.lang.String) { @@ -29544,6 +29623,7 @@ public java.lang.String getField1037() { * string field_1037 = 1037; * @return The bytes for field1037. */ + @java.lang.Override public com.google.protobuf.ByteString getField1037Bytes() { java.lang.Object ref = field1037_; @@ -29564,6 +29644,7 @@ public java.lang.String getField1037() { * string field_1038 = 1038; * @return The field1038. */ + @java.lang.Override public java.lang.String getField1038() { java.lang.Object ref = field1038_; if (ref instanceof java.lang.String) { @@ -29580,6 +29661,7 @@ public java.lang.String getField1038() { * string field_1038 = 1038; * @return The bytes for field1038. */ + @java.lang.Override public com.google.protobuf.ByteString getField1038Bytes() { java.lang.Object ref = field1038_; @@ -29600,6 +29682,7 @@ public java.lang.String getField1038() { * string field_1039 = 1039; * @return The field1039. */ + @java.lang.Override public java.lang.String getField1039() { java.lang.Object ref = field1039_; if (ref instanceof java.lang.String) { @@ -29616,6 +29699,7 @@ public java.lang.String getField1039() { * string field_1039 = 1039; * @return The bytes for field1039. */ + @java.lang.Override public com.google.protobuf.ByteString getField1039Bytes() { java.lang.Object ref = field1039_; @@ -29636,6 +29720,7 @@ public java.lang.String getField1039() { * string field_1040 = 1040; * @return The field1040. */ + @java.lang.Override public java.lang.String getField1040() { java.lang.Object ref = field1040_; if (ref instanceof java.lang.String) { @@ -29652,6 +29737,7 @@ public java.lang.String getField1040() { * string field_1040 = 1040; * @return The bytes for field1040. */ + @java.lang.Override public com.google.protobuf.ByteString getField1040Bytes() { java.lang.Object ref = field1040_; @@ -29672,6 +29758,7 @@ public java.lang.String getField1040() { * string field_1041 = 1041; * @return The field1041. */ + @java.lang.Override public java.lang.String getField1041() { java.lang.Object ref = field1041_; if (ref instanceof java.lang.String) { @@ -29688,6 +29775,7 @@ public java.lang.String getField1041() { * string field_1041 = 1041; * @return The bytes for field1041. */ + @java.lang.Override public com.google.protobuf.ByteString getField1041Bytes() { java.lang.Object ref = field1041_; @@ -29708,6 +29796,7 @@ public java.lang.String getField1041() { * string field_1042 = 1042; * @return The field1042. */ + @java.lang.Override public java.lang.String getField1042() { java.lang.Object ref = field1042_; if (ref instanceof java.lang.String) { @@ -29724,6 +29813,7 @@ public java.lang.String getField1042() { * string field_1042 = 1042; * @return The bytes for field1042. */ + @java.lang.Override public com.google.protobuf.ByteString getField1042Bytes() { java.lang.Object ref = field1042_; @@ -29744,6 +29834,7 @@ public java.lang.String getField1042() { * string field_1043 = 1043; * @return The field1043. */ + @java.lang.Override public java.lang.String getField1043() { java.lang.Object ref = field1043_; if (ref instanceof java.lang.String) { @@ -29760,6 +29851,7 @@ public java.lang.String getField1043() { * string field_1043 = 1043; * @return The bytes for field1043. */ + @java.lang.Override public com.google.protobuf.ByteString getField1043Bytes() { java.lang.Object ref = field1043_; @@ -29780,6 +29872,7 @@ public java.lang.String getField1043() { * string field_1044 = 1044; * @return The field1044. */ + @java.lang.Override public java.lang.String getField1044() { java.lang.Object ref = field1044_; if (ref instanceof java.lang.String) { @@ -29796,6 +29889,7 @@ public java.lang.String getField1044() { * string field_1044 = 1044; * @return The bytes for field1044. */ + @java.lang.Override public com.google.protobuf.ByteString getField1044Bytes() { java.lang.Object ref = field1044_; @@ -29816,6 +29910,7 @@ public java.lang.String getField1044() { * string field_1045 = 1045; * @return The field1045. */ + @java.lang.Override public java.lang.String getField1045() { java.lang.Object ref = field1045_; if (ref instanceof java.lang.String) { @@ -29832,6 +29927,7 @@ public java.lang.String getField1045() { * string field_1045 = 1045; * @return The bytes for field1045. */ + @java.lang.Override public com.google.protobuf.ByteString getField1045Bytes() { java.lang.Object ref = field1045_; @@ -29852,6 +29948,7 @@ public java.lang.String getField1045() { * string field_1046 = 1046; * @return The field1046. */ + @java.lang.Override public java.lang.String getField1046() { java.lang.Object ref = field1046_; if (ref instanceof java.lang.String) { @@ -29868,6 +29965,7 @@ public java.lang.String getField1046() { * string field_1046 = 1046; * @return The bytes for field1046. */ + @java.lang.Override public com.google.protobuf.ByteString getField1046Bytes() { java.lang.Object ref = field1046_; @@ -29888,6 +29986,7 @@ public java.lang.String getField1046() { * string field_1047 = 1047; * @return The field1047. */ + @java.lang.Override public java.lang.String getField1047() { java.lang.Object ref = field1047_; if (ref instanceof java.lang.String) { @@ -29904,6 +30003,7 @@ public java.lang.String getField1047() { * string field_1047 = 1047; * @return The bytes for field1047. */ + @java.lang.Override public com.google.protobuf.ByteString getField1047Bytes() { java.lang.Object ref = field1047_; @@ -29924,6 +30024,7 @@ public java.lang.String getField1047() { * string field_1048 = 1048; * @return The field1048. */ + @java.lang.Override public java.lang.String getField1048() { java.lang.Object ref = field1048_; if (ref instanceof java.lang.String) { @@ -29940,6 +30041,7 @@ public java.lang.String getField1048() { * string field_1048 = 1048; * @return The bytes for field1048. */ + @java.lang.Override public com.google.protobuf.ByteString getField1048Bytes() { java.lang.Object ref = field1048_; @@ -29960,6 +30062,7 @@ public java.lang.String getField1048() { * string field_1049 = 1049; * @return The field1049. */ + @java.lang.Override public java.lang.String getField1049() { java.lang.Object ref = field1049_; if (ref instanceof java.lang.String) { @@ -29976,6 +30079,7 @@ public java.lang.String getField1049() { * string field_1049 = 1049; * @return The bytes for field1049. */ + @java.lang.Override public com.google.protobuf.ByteString getField1049Bytes() { java.lang.Object ref = field1049_; @@ -29996,6 +30100,7 @@ public java.lang.String getField1049() { * string field_1050 = 1050; * @return The field1050. */ + @java.lang.Override public java.lang.String getField1050() { java.lang.Object ref = field1050_; if (ref instanceof java.lang.String) { @@ -30012,6 +30117,7 @@ public java.lang.String getField1050() { * string field_1050 = 1050; * @return The bytes for field1050. */ + @java.lang.Override public com.google.protobuf.ByteString getField1050Bytes() { java.lang.Object ref = field1050_; @@ -30032,6 +30138,7 @@ public java.lang.String getField1050() { * string field_1051 = 1051; * @return The field1051. */ + @java.lang.Override public java.lang.String getField1051() { java.lang.Object ref = field1051_; if (ref instanceof java.lang.String) { @@ -30048,6 +30155,7 @@ public java.lang.String getField1051() { * string field_1051 = 1051; * @return The bytes for field1051. */ + @java.lang.Override public com.google.protobuf.ByteString getField1051Bytes() { java.lang.Object ref = field1051_; @@ -30068,6 +30176,7 @@ public java.lang.String getField1051() { * string field_1052 = 1052; * @return The field1052. */ + @java.lang.Override public java.lang.String getField1052() { java.lang.Object ref = field1052_; if (ref instanceof java.lang.String) { @@ -30084,6 +30193,7 @@ public java.lang.String getField1052() { * string field_1052 = 1052; * @return The bytes for field1052. */ + @java.lang.Override public com.google.protobuf.ByteString getField1052Bytes() { java.lang.Object ref = field1052_; @@ -30104,6 +30214,7 @@ public java.lang.String getField1052() { * string field_1053 = 1053; * @return The field1053. */ + @java.lang.Override public java.lang.String getField1053() { java.lang.Object ref = field1053_; if (ref instanceof java.lang.String) { @@ -30120,6 +30231,7 @@ public java.lang.String getField1053() { * string field_1053 = 1053; * @return The bytes for field1053. */ + @java.lang.Override public com.google.protobuf.ByteString getField1053Bytes() { java.lang.Object ref = field1053_; @@ -30140,6 +30252,7 @@ public java.lang.String getField1053() { * string field_1054 = 1054; * @return The field1054. */ + @java.lang.Override public java.lang.String getField1054() { java.lang.Object ref = field1054_; if (ref instanceof java.lang.String) { @@ -30156,6 +30269,7 @@ public java.lang.String getField1054() { * string field_1054 = 1054; * @return The bytes for field1054. */ + @java.lang.Override public com.google.protobuf.ByteString getField1054Bytes() { java.lang.Object ref = field1054_; @@ -30176,6 +30290,7 @@ public java.lang.String getField1054() { * string field_1055 = 1055; * @return The field1055. */ + @java.lang.Override public java.lang.String getField1055() { java.lang.Object ref = field1055_; if (ref instanceof java.lang.String) { @@ -30192,6 +30307,7 @@ public java.lang.String getField1055() { * string field_1055 = 1055; * @return The bytes for field1055. */ + @java.lang.Override public com.google.protobuf.ByteString getField1055Bytes() { java.lang.Object ref = field1055_; @@ -30212,6 +30328,7 @@ public java.lang.String getField1055() { * string field_1056 = 1056; * @return The field1056. */ + @java.lang.Override public java.lang.String getField1056() { java.lang.Object ref = field1056_; if (ref instanceof java.lang.String) { @@ -30228,6 +30345,7 @@ public java.lang.String getField1056() { * string field_1056 = 1056; * @return The bytes for field1056. */ + @java.lang.Override public com.google.protobuf.ByteString getField1056Bytes() { java.lang.Object ref = field1056_; @@ -30248,6 +30366,7 @@ public java.lang.String getField1056() { * string field_1057 = 1057; * @return The field1057. */ + @java.lang.Override public java.lang.String getField1057() { java.lang.Object ref = field1057_; if (ref instanceof java.lang.String) { @@ -30264,6 +30383,7 @@ public java.lang.String getField1057() { * string field_1057 = 1057; * @return The bytes for field1057. */ + @java.lang.Override public com.google.protobuf.ByteString getField1057Bytes() { java.lang.Object ref = field1057_; @@ -30284,6 +30404,7 @@ public java.lang.String getField1057() { * string field_1058 = 1058; * @return The field1058. */ + @java.lang.Override public java.lang.String getField1058() { java.lang.Object ref = field1058_; if (ref instanceof java.lang.String) { @@ -30300,6 +30421,7 @@ public java.lang.String getField1058() { * string field_1058 = 1058; * @return The bytes for field1058. */ + @java.lang.Override public com.google.protobuf.ByteString getField1058Bytes() { java.lang.Object ref = field1058_; @@ -30320,6 +30442,7 @@ public java.lang.String getField1058() { * string field_1059 = 1059; * @return The field1059. */ + @java.lang.Override public java.lang.String getField1059() { java.lang.Object ref = field1059_; if (ref instanceof java.lang.String) { @@ -30336,6 +30459,7 @@ public java.lang.String getField1059() { * string field_1059 = 1059; * @return The bytes for field1059. */ + @java.lang.Override public com.google.protobuf.ByteString getField1059Bytes() { java.lang.Object ref = field1059_; @@ -30356,6 +30480,7 @@ public java.lang.String getField1059() { * string field_1060 = 1060; * @return The field1060. */ + @java.lang.Override public java.lang.String getField1060() { java.lang.Object ref = field1060_; if (ref instanceof java.lang.String) { @@ -30372,6 +30497,7 @@ public java.lang.String getField1060() { * string field_1060 = 1060; * @return The bytes for field1060. */ + @java.lang.Override public com.google.protobuf.ByteString getField1060Bytes() { java.lang.Object ref = field1060_; @@ -30392,6 +30518,7 @@ public java.lang.String getField1060() { * string field_1061 = 1061; * @return The field1061. */ + @java.lang.Override public java.lang.String getField1061() { java.lang.Object ref = field1061_; if (ref instanceof java.lang.String) { @@ -30408,6 +30535,7 @@ public java.lang.String getField1061() { * string field_1061 = 1061; * @return The bytes for field1061. */ + @java.lang.Override public com.google.protobuf.ByteString getField1061Bytes() { java.lang.Object ref = field1061_; @@ -30428,6 +30556,7 @@ public java.lang.String getField1061() { * string field_1062 = 1062; * @return The field1062. */ + @java.lang.Override public java.lang.String getField1062() { java.lang.Object ref = field1062_; if (ref instanceof java.lang.String) { @@ -30444,6 +30573,7 @@ public java.lang.String getField1062() { * string field_1062 = 1062; * @return The bytes for field1062. */ + @java.lang.Override public com.google.protobuf.ByteString getField1062Bytes() { java.lang.Object ref = field1062_; @@ -30464,6 +30594,7 @@ public java.lang.String getField1062() { * string field_1063 = 1063; * @return The field1063. */ + @java.lang.Override public java.lang.String getField1063() { java.lang.Object ref = field1063_; if (ref instanceof java.lang.String) { @@ -30480,6 +30611,7 @@ public java.lang.String getField1063() { * string field_1063 = 1063; * @return The bytes for field1063. */ + @java.lang.Override public com.google.protobuf.ByteString getField1063Bytes() { java.lang.Object ref = field1063_; @@ -30500,6 +30632,7 @@ public java.lang.String getField1063() { * string field_1064 = 1064; * @return The field1064. */ + @java.lang.Override public java.lang.String getField1064() { java.lang.Object ref = field1064_; if (ref instanceof java.lang.String) { @@ -30516,6 +30649,7 @@ public java.lang.String getField1064() { * string field_1064 = 1064; * @return The bytes for field1064. */ + @java.lang.Override public com.google.protobuf.ByteString getField1064Bytes() { java.lang.Object ref = field1064_; @@ -30536,6 +30670,7 @@ public java.lang.String getField1064() { * string field_1065 = 1065; * @return The field1065. */ + @java.lang.Override public java.lang.String getField1065() { java.lang.Object ref = field1065_; if (ref instanceof java.lang.String) { @@ -30552,6 +30687,7 @@ public java.lang.String getField1065() { * string field_1065 = 1065; * @return The bytes for field1065. */ + @java.lang.Override public com.google.protobuf.ByteString getField1065Bytes() { java.lang.Object ref = field1065_; @@ -30572,6 +30708,7 @@ public java.lang.String getField1065() { * string field_1066 = 1066; * @return The field1066. */ + @java.lang.Override public java.lang.String getField1066() { java.lang.Object ref = field1066_; if (ref instanceof java.lang.String) { @@ -30588,6 +30725,7 @@ public java.lang.String getField1066() { * string field_1066 = 1066; * @return The bytes for field1066. */ + @java.lang.Override public com.google.protobuf.ByteString getField1066Bytes() { java.lang.Object ref = field1066_; @@ -30608,6 +30746,7 @@ public java.lang.String getField1066() { * string field_1067 = 1067; * @return The field1067. */ + @java.lang.Override public java.lang.String getField1067() { java.lang.Object ref = field1067_; if (ref instanceof java.lang.String) { @@ -30624,6 +30763,7 @@ public java.lang.String getField1067() { * string field_1067 = 1067; * @return The bytes for field1067. */ + @java.lang.Override public com.google.protobuf.ByteString getField1067Bytes() { java.lang.Object ref = field1067_; @@ -30644,6 +30784,7 @@ public java.lang.String getField1067() { * string field_1068 = 1068; * @return The field1068. */ + @java.lang.Override public java.lang.String getField1068() { java.lang.Object ref = field1068_; if (ref instanceof java.lang.String) { @@ -30660,6 +30801,7 @@ public java.lang.String getField1068() { * string field_1068 = 1068; * @return The bytes for field1068. */ + @java.lang.Override public com.google.protobuf.ByteString getField1068Bytes() { java.lang.Object ref = field1068_; @@ -30680,6 +30822,7 @@ public java.lang.String getField1068() { * string field_1069 = 1069; * @return The field1069. */ + @java.lang.Override public java.lang.String getField1069() { java.lang.Object ref = field1069_; if (ref instanceof java.lang.String) { @@ -30696,6 +30839,7 @@ public java.lang.String getField1069() { * string field_1069 = 1069; * @return The bytes for field1069. */ + @java.lang.Override public com.google.protobuf.ByteString getField1069Bytes() { java.lang.Object ref = field1069_; @@ -30716,6 +30860,7 @@ public java.lang.String getField1069() { * string field_1070 = 1070; * @return The field1070. */ + @java.lang.Override public java.lang.String getField1070() { java.lang.Object ref = field1070_; if (ref instanceof java.lang.String) { @@ -30732,6 +30877,7 @@ public java.lang.String getField1070() { * string field_1070 = 1070; * @return The bytes for field1070. */ + @java.lang.Override public com.google.protobuf.ByteString getField1070Bytes() { java.lang.Object ref = field1070_; @@ -30752,6 +30898,7 @@ public java.lang.String getField1070() { * string field_1071 = 1071; * @return The field1071. */ + @java.lang.Override public java.lang.String getField1071() { java.lang.Object ref = field1071_; if (ref instanceof java.lang.String) { @@ -30768,6 +30915,7 @@ public java.lang.String getField1071() { * string field_1071 = 1071; * @return The bytes for field1071. */ + @java.lang.Override public com.google.protobuf.ByteString getField1071Bytes() { java.lang.Object ref = field1071_; @@ -30788,6 +30936,7 @@ public java.lang.String getField1071() { * string field_1072 = 1072; * @return The field1072. */ + @java.lang.Override public java.lang.String getField1072() { java.lang.Object ref = field1072_; if (ref instanceof java.lang.String) { @@ -30804,6 +30953,7 @@ public java.lang.String getField1072() { * string field_1072 = 1072; * @return The bytes for field1072. */ + @java.lang.Override public com.google.protobuf.ByteString getField1072Bytes() { java.lang.Object ref = field1072_; @@ -30824,6 +30974,7 @@ public java.lang.String getField1072() { * string field_1073 = 1073; * @return The field1073. */ + @java.lang.Override public java.lang.String getField1073() { java.lang.Object ref = field1073_; if (ref instanceof java.lang.String) { @@ -30840,6 +30991,7 @@ public java.lang.String getField1073() { * string field_1073 = 1073; * @return The bytes for field1073. */ + @java.lang.Override public com.google.protobuf.ByteString getField1073Bytes() { java.lang.Object ref = field1073_; @@ -30860,6 +31012,7 @@ public java.lang.String getField1073() { * string field_1074 = 1074; * @return The field1074. */ + @java.lang.Override public java.lang.String getField1074() { java.lang.Object ref = field1074_; if (ref instanceof java.lang.String) { @@ -30876,6 +31029,7 @@ public java.lang.String getField1074() { * string field_1074 = 1074; * @return The bytes for field1074. */ + @java.lang.Override public com.google.protobuf.ByteString getField1074Bytes() { java.lang.Object ref = field1074_; @@ -30896,6 +31050,7 @@ public java.lang.String getField1074() { * string field_1075 = 1075; * @return The field1075. */ + @java.lang.Override public java.lang.String getField1075() { java.lang.Object ref = field1075_; if (ref instanceof java.lang.String) { @@ -30912,6 +31067,7 @@ public java.lang.String getField1075() { * string field_1075 = 1075; * @return The bytes for field1075. */ + @java.lang.Override public com.google.protobuf.ByteString getField1075Bytes() { java.lang.Object ref = field1075_; @@ -30932,6 +31088,7 @@ public java.lang.String getField1075() { * string field_1076 = 1076; * @return The field1076. */ + @java.lang.Override public java.lang.String getField1076() { java.lang.Object ref = field1076_; if (ref instanceof java.lang.String) { @@ -30948,6 +31105,7 @@ public java.lang.String getField1076() { * string field_1076 = 1076; * @return The bytes for field1076. */ + @java.lang.Override public com.google.protobuf.ByteString getField1076Bytes() { java.lang.Object ref = field1076_; @@ -30968,6 +31126,7 @@ public java.lang.String getField1076() { * string field_1077 = 1077; * @return The field1077. */ + @java.lang.Override public java.lang.String getField1077() { java.lang.Object ref = field1077_; if (ref instanceof java.lang.String) { @@ -30984,6 +31143,7 @@ public java.lang.String getField1077() { * string field_1077 = 1077; * @return The bytes for field1077. */ + @java.lang.Override public com.google.protobuf.ByteString getField1077Bytes() { java.lang.Object ref = field1077_; @@ -31004,6 +31164,7 @@ public java.lang.String getField1077() { * string field_1078 = 1078; * @return The field1078. */ + @java.lang.Override public java.lang.String getField1078() { java.lang.Object ref = field1078_; if (ref instanceof java.lang.String) { @@ -31020,6 +31181,7 @@ public java.lang.String getField1078() { * string field_1078 = 1078; * @return The bytes for field1078. */ + @java.lang.Override public com.google.protobuf.ByteString getField1078Bytes() { java.lang.Object ref = field1078_; @@ -31040,6 +31202,7 @@ public java.lang.String getField1078() { * string field_1079 = 1079; * @return The field1079. */ + @java.lang.Override public java.lang.String getField1079() { java.lang.Object ref = field1079_; if (ref instanceof java.lang.String) { @@ -31056,6 +31219,7 @@ public java.lang.String getField1079() { * string field_1079 = 1079; * @return The bytes for field1079. */ + @java.lang.Override public com.google.protobuf.ByteString getField1079Bytes() { java.lang.Object ref = field1079_; @@ -31076,6 +31240,7 @@ public java.lang.String getField1079() { * string field_1080 = 1080; * @return The field1080. */ + @java.lang.Override public java.lang.String getField1080() { java.lang.Object ref = field1080_; if (ref instanceof java.lang.String) { @@ -31092,6 +31257,7 @@ public java.lang.String getField1080() { * string field_1080 = 1080; * @return The bytes for field1080. */ + @java.lang.Override public com.google.protobuf.ByteString getField1080Bytes() { java.lang.Object ref = field1080_; @@ -31112,6 +31278,7 @@ public java.lang.String getField1080() { * string field_1081 = 1081; * @return The field1081. */ + @java.lang.Override public java.lang.String getField1081() { java.lang.Object ref = field1081_; if (ref instanceof java.lang.String) { @@ -31128,6 +31295,7 @@ public java.lang.String getField1081() { * string field_1081 = 1081; * @return The bytes for field1081. */ + @java.lang.Override public com.google.protobuf.ByteString getField1081Bytes() { java.lang.Object ref = field1081_; @@ -31148,6 +31316,7 @@ public java.lang.String getField1081() { * string field_1082 = 1082; * @return The field1082. */ + @java.lang.Override public java.lang.String getField1082() { java.lang.Object ref = field1082_; if (ref instanceof java.lang.String) { @@ -31164,6 +31333,7 @@ public java.lang.String getField1082() { * string field_1082 = 1082; * @return The bytes for field1082. */ + @java.lang.Override public com.google.protobuf.ByteString getField1082Bytes() { java.lang.Object ref = field1082_; @@ -31184,6 +31354,7 @@ public java.lang.String getField1082() { * string field_1083 = 1083; * @return The field1083. */ + @java.lang.Override public java.lang.String getField1083() { java.lang.Object ref = field1083_; if (ref instanceof java.lang.String) { @@ -31200,6 +31371,7 @@ public java.lang.String getField1083() { * string field_1083 = 1083; * @return The bytes for field1083. */ + @java.lang.Override public com.google.protobuf.ByteString getField1083Bytes() { java.lang.Object ref = field1083_; @@ -31220,6 +31392,7 @@ public java.lang.String getField1083() { * string field_1084 = 1084; * @return The field1084. */ + @java.lang.Override public java.lang.String getField1084() { java.lang.Object ref = field1084_; if (ref instanceof java.lang.String) { @@ -31236,6 +31409,7 @@ public java.lang.String getField1084() { * string field_1084 = 1084; * @return The bytes for field1084. */ + @java.lang.Override public com.google.protobuf.ByteString getField1084Bytes() { java.lang.Object ref = field1084_; @@ -31256,6 +31430,7 @@ public java.lang.String getField1084() { * string field_1085 = 1085; * @return The field1085. */ + @java.lang.Override public java.lang.String getField1085() { java.lang.Object ref = field1085_; if (ref instanceof java.lang.String) { @@ -31272,6 +31447,7 @@ public java.lang.String getField1085() { * string field_1085 = 1085; * @return The bytes for field1085. */ + @java.lang.Override public com.google.protobuf.ByteString getField1085Bytes() { java.lang.Object ref = field1085_; @@ -31292,6 +31468,7 @@ public java.lang.String getField1085() { * string field_1086 = 1086; * @return The field1086. */ + @java.lang.Override public java.lang.String getField1086() { java.lang.Object ref = field1086_; if (ref instanceof java.lang.String) { @@ -31308,6 +31485,7 @@ public java.lang.String getField1086() { * string field_1086 = 1086; * @return The bytes for field1086. */ + @java.lang.Override public com.google.protobuf.ByteString getField1086Bytes() { java.lang.Object ref = field1086_; @@ -31328,6 +31506,7 @@ public java.lang.String getField1086() { * string field_1087 = 1087; * @return The field1087. */ + @java.lang.Override public java.lang.String getField1087() { java.lang.Object ref = field1087_; if (ref instanceof java.lang.String) { @@ -31344,6 +31523,7 @@ public java.lang.String getField1087() { * string field_1087 = 1087; * @return The bytes for field1087. */ + @java.lang.Override public com.google.protobuf.ByteString getField1087Bytes() { java.lang.Object ref = field1087_; @@ -31364,6 +31544,7 @@ public java.lang.String getField1087() { * string field_1088 = 1088; * @return The field1088. */ + @java.lang.Override public java.lang.String getField1088() { java.lang.Object ref = field1088_; if (ref instanceof java.lang.String) { @@ -31380,6 +31561,7 @@ public java.lang.String getField1088() { * string field_1088 = 1088; * @return The bytes for field1088. */ + @java.lang.Override public com.google.protobuf.ByteString getField1088Bytes() { java.lang.Object ref = field1088_; @@ -31400,6 +31582,7 @@ public java.lang.String getField1088() { * string field_1089 = 1089; * @return The field1089. */ + @java.lang.Override public java.lang.String getField1089() { java.lang.Object ref = field1089_; if (ref instanceof java.lang.String) { @@ -31416,6 +31599,7 @@ public java.lang.String getField1089() { * string field_1089 = 1089; * @return The bytes for field1089. */ + @java.lang.Override public com.google.protobuf.ByteString getField1089Bytes() { java.lang.Object ref = field1089_; @@ -31436,6 +31620,7 @@ public java.lang.String getField1089() { * string field_1090 = 1090; * @return The field1090. */ + @java.lang.Override public java.lang.String getField1090() { java.lang.Object ref = field1090_; if (ref instanceof java.lang.String) { @@ -31452,6 +31637,7 @@ public java.lang.String getField1090() { * string field_1090 = 1090; * @return The bytes for field1090. */ + @java.lang.Override public com.google.protobuf.ByteString getField1090Bytes() { java.lang.Object ref = field1090_; @@ -31472,6 +31658,7 @@ public java.lang.String getField1090() { * string field_1091 = 1091; * @return The field1091. */ + @java.lang.Override public java.lang.String getField1091() { java.lang.Object ref = field1091_; if (ref instanceof java.lang.String) { @@ -31488,6 +31675,7 @@ public java.lang.String getField1091() { * string field_1091 = 1091; * @return The bytes for field1091. */ + @java.lang.Override public com.google.protobuf.ByteString getField1091Bytes() { java.lang.Object ref = field1091_; @@ -31508,6 +31696,7 @@ public java.lang.String getField1091() { * string field_1092 = 1092; * @return The field1092. */ + @java.lang.Override public java.lang.String getField1092() { java.lang.Object ref = field1092_; if (ref instanceof java.lang.String) { @@ -31524,6 +31713,7 @@ public java.lang.String getField1092() { * string field_1092 = 1092; * @return The bytes for field1092. */ + @java.lang.Override public com.google.protobuf.ByteString getField1092Bytes() { java.lang.Object ref = field1092_; @@ -31544,6 +31734,7 @@ public java.lang.String getField1092() { * string field_1093 = 1093; * @return The field1093. */ + @java.lang.Override public java.lang.String getField1093() { java.lang.Object ref = field1093_; if (ref instanceof java.lang.String) { @@ -31560,6 +31751,7 @@ public java.lang.String getField1093() { * string field_1093 = 1093; * @return The bytes for field1093. */ + @java.lang.Override public com.google.protobuf.ByteString getField1093Bytes() { java.lang.Object ref = field1093_; @@ -31580,6 +31772,7 @@ public java.lang.String getField1093() { * string field_1094 = 1094; * @return The field1094. */ + @java.lang.Override public java.lang.String getField1094() { java.lang.Object ref = field1094_; if (ref instanceof java.lang.String) { @@ -31596,6 +31789,7 @@ public java.lang.String getField1094() { * string field_1094 = 1094; * @return The bytes for field1094. */ + @java.lang.Override public com.google.protobuf.ByteString getField1094Bytes() { java.lang.Object ref = field1094_; @@ -31616,6 +31810,7 @@ public java.lang.String getField1094() { * string field_1095 = 1095; * @return The field1095. */ + @java.lang.Override public java.lang.String getField1095() { java.lang.Object ref = field1095_; if (ref instanceof java.lang.String) { @@ -31632,6 +31827,7 @@ public java.lang.String getField1095() { * string field_1095 = 1095; * @return The bytes for field1095. */ + @java.lang.Override public com.google.protobuf.ByteString getField1095Bytes() { java.lang.Object ref = field1095_; @@ -31652,6 +31848,7 @@ public java.lang.String getField1095() { * string field_1096 = 1096; * @return The field1096. */ + @java.lang.Override public java.lang.String getField1096() { java.lang.Object ref = field1096_; if (ref instanceof java.lang.String) { @@ -31668,6 +31865,7 @@ public java.lang.String getField1096() { * string field_1096 = 1096; * @return The bytes for field1096. */ + @java.lang.Override public com.google.protobuf.ByteString getField1096Bytes() { java.lang.Object ref = field1096_; @@ -31688,6 +31886,7 @@ public java.lang.String getField1096() { * string field_1097 = 1097; * @return The field1097. */ + @java.lang.Override public java.lang.String getField1097() { java.lang.Object ref = field1097_; if (ref instanceof java.lang.String) { @@ -31704,6 +31903,7 @@ public java.lang.String getField1097() { * string field_1097 = 1097; * @return The bytes for field1097. */ + @java.lang.Override public com.google.protobuf.ByteString getField1097Bytes() { java.lang.Object ref = field1097_; @@ -31724,6 +31924,7 @@ public java.lang.String getField1097() { * string field_1098 = 1098; * @return The field1098. */ + @java.lang.Override public java.lang.String getField1098() { java.lang.Object ref = field1098_; if (ref instanceof java.lang.String) { @@ -31740,6 +31941,7 @@ public java.lang.String getField1098() { * string field_1098 = 1098; * @return The bytes for field1098. */ + @java.lang.Override public com.google.protobuf.ByteString getField1098Bytes() { java.lang.Object ref = field1098_; @@ -31760,6 +31962,7 @@ public java.lang.String getField1098() { * string field_1099 = 1099; * @return The field1099. */ + @java.lang.Override public java.lang.String getField1099() { java.lang.Object ref = field1099_; if (ref instanceof java.lang.String) { @@ -31776,6 +31979,7 @@ public java.lang.String getField1099() { * string field_1099 = 1099; * @return The bytes for field1099. */ + @java.lang.Override public com.google.protobuf.ByteString getField1099Bytes() { java.lang.Object ref = field1099_; @@ -31796,6 +32000,7 @@ public java.lang.String getField1099() { * string field_1100 = 1100; * @return The field1100. */ + @java.lang.Override public java.lang.String getField1100() { java.lang.Object ref = field1100_; if (ref instanceof java.lang.String) { @@ -31812,6 +32017,7 @@ public java.lang.String getField1100() { * string field_1100 = 1100; * @return The bytes for field1100. */ + @java.lang.Override public com.google.protobuf.ByteString getField1100Bytes() { java.lang.Object ref = field1100_; @@ -31832,6 +32038,7 @@ public java.lang.String getField1100() { * string field_1101 = 1101; * @return The field1101. */ + @java.lang.Override public java.lang.String getField1101() { java.lang.Object ref = field1101_; if (ref instanceof java.lang.String) { @@ -31848,6 +32055,7 @@ public java.lang.String getField1101() { * string field_1101 = 1101; * @return The bytes for field1101. */ + @java.lang.Override public com.google.protobuf.ByteString getField1101Bytes() { java.lang.Object ref = field1101_; @@ -31868,6 +32076,7 @@ public java.lang.String getField1101() { * string field_1102 = 1102; * @return The field1102. */ + @java.lang.Override public java.lang.String getField1102() { java.lang.Object ref = field1102_; if (ref instanceof java.lang.String) { @@ -31884,6 +32093,7 @@ public java.lang.String getField1102() { * string field_1102 = 1102; * @return The bytes for field1102. */ + @java.lang.Override public com.google.protobuf.ByteString getField1102Bytes() { java.lang.Object ref = field1102_; @@ -31904,6 +32114,7 @@ public java.lang.String getField1102() { * string field_1103 = 1103; * @return The field1103. */ + @java.lang.Override public java.lang.String getField1103() { java.lang.Object ref = field1103_; if (ref instanceof java.lang.String) { @@ -31920,6 +32131,7 @@ public java.lang.String getField1103() { * string field_1103 = 1103; * @return The bytes for field1103. */ + @java.lang.Override public com.google.protobuf.ByteString getField1103Bytes() { java.lang.Object ref = field1103_; @@ -31940,6 +32152,7 @@ public java.lang.String getField1103() { * string field_1104 = 1104; * @return The field1104. */ + @java.lang.Override public java.lang.String getField1104() { java.lang.Object ref = field1104_; if (ref instanceof java.lang.String) { @@ -31956,6 +32169,7 @@ public java.lang.String getField1104() { * string field_1104 = 1104; * @return The bytes for field1104. */ + @java.lang.Override public com.google.protobuf.ByteString getField1104Bytes() { java.lang.Object ref = field1104_; @@ -31976,6 +32190,7 @@ public java.lang.String getField1104() { * string field_1105 = 1105; * @return The field1105. */ + @java.lang.Override public java.lang.String getField1105() { java.lang.Object ref = field1105_; if (ref instanceof java.lang.String) { @@ -31992,6 +32207,7 @@ public java.lang.String getField1105() { * string field_1105 = 1105; * @return The bytes for field1105. */ + @java.lang.Override public com.google.protobuf.ByteString getField1105Bytes() { java.lang.Object ref = field1105_; @@ -32012,6 +32228,7 @@ public java.lang.String getField1105() { * string field_1106 = 1106; * @return The field1106. */ + @java.lang.Override public java.lang.String getField1106() { java.lang.Object ref = field1106_; if (ref instanceof java.lang.String) { @@ -32028,6 +32245,7 @@ public java.lang.String getField1106() { * string field_1106 = 1106; * @return The bytes for field1106. */ + @java.lang.Override public com.google.protobuf.ByteString getField1106Bytes() { java.lang.Object ref = field1106_; @@ -32048,6 +32266,7 @@ public java.lang.String getField1106() { * string field_1107 = 1107; * @return The field1107. */ + @java.lang.Override public java.lang.String getField1107() { java.lang.Object ref = field1107_; if (ref instanceof java.lang.String) { @@ -32064,6 +32283,7 @@ public java.lang.String getField1107() { * string field_1107 = 1107; * @return The bytes for field1107. */ + @java.lang.Override public com.google.protobuf.ByteString getField1107Bytes() { java.lang.Object ref = field1107_; @@ -32084,6 +32304,7 @@ public java.lang.String getField1107() { * string field_1108 = 1108; * @return The field1108. */ + @java.lang.Override public java.lang.String getField1108() { java.lang.Object ref = field1108_; if (ref instanceof java.lang.String) { @@ -32100,6 +32321,7 @@ public java.lang.String getField1108() { * string field_1108 = 1108; * @return The bytes for field1108. */ + @java.lang.Override public com.google.protobuf.ByteString getField1108Bytes() { java.lang.Object ref = field1108_; @@ -32120,6 +32342,7 @@ public java.lang.String getField1108() { * string field_1109 = 1109; * @return The field1109. */ + @java.lang.Override public java.lang.String getField1109() { java.lang.Object ref = field1109_; if (ref instanceof java.lang.String) { @@ -32136,6 +32359,7 @@ public java.lang.String getField1109() { * string field_1109 = 1109; * @return The bytes for field1109. */ + @java.lang.Override public com.google.protobuf.ByteString getField1109Bytes() { java.lang.Object ref = field1109_; @@ -32156,6 +32380,7 @@ public java.lang.String getField1109() { * string field_1110 = 1110; * @return The field1110. */ + @java.lang.Override public java.lang.String getField1110() { java.lang.Object ref = field1110_; if (ref instanceof java.lang.String) { @@ -32172,6 +32397,7 @@ public java.lang.String getField1110() { * string field_1110 = 1110; * @return The bytes for field1110. */ + @java.lang.Override public com.google.protobuf.ByteString getField1110Bytes() { java.lang.Object ref = field1110_; @@ -32192,6 +32418,7 @@ public java.lang.String getField1110() { * string field_1111 = 1111; * @return The field1111. */ + @java.lang.Override public java.lang.String getField1111() { java.lang.Object ref = field1111_; if (ref instanceof java.lang.String) { @@ -32208,6 +32435,7 @@ public java.lang.String getField1111() { * string field_1111 = 1111; * @return The bytes for field1111. */ + @java.lang.Override public com.google.protobuf.ByteString getField1111Bytes() { java.lang.Object ref = field1111_; @@ -32228,6 +32456,7 @@ public java.lang.String getField1111() { * string field_1112 = 1112; * @return The field1112. */ + @java.lang.Override public java.lang.String getField1112() { java.lang.Object ref = field1112_; if (ref instanceof java.lang.String) { @@ -32244,6 +32473,7 @@ public java.lang.String getField1112() { * string field_1112 = 1112; * @return The bytes for field1112. */ + @java.lang.Override public com.google.protobuf.ByteString getField1112Bytes() { java.lang.Object ref = field1112_; @@ -32264,6 +32494,7 @@ public java.lang.String getField1112() { * string field_1113 = 1113; * @return The field1113. */ + @java.lang.Override public java.lang.String getField1113() { java.lang.Object ref = field1113_; if (ref instanceof java.lang.String) { @@ -32280,6 +32511,7 @@ public java.lang.String getField1113() { * string field_1113 = 1113; * @return The bytes for field1113. */ + @java.lang.Override public com.google.protobuf.ByteString getField1113Bytes() { java.lang.Object ref = field1113_; @@ -32300,6 +32532,7 @@ public java.lang.String getField1113() { * string field_1114 = 1114; * @return The field1114. */ + @java.lang.Override public java.lang.String getField1114() { java.lang.Object ref = field1114_; if (ref instanceof java.lang.String) { @@ -32316,6 +32549,7 @@ public java.lang.String getField1114() { * string field_1114 = 1114; * @return The bytes for field1114. */ + @java.lang.Override public com.google.protobuf.ByteString getField1114Bytes() { java.lang.Object ref = field1114_; @@ -32336,6 +32570,7 @@ public java.lang.String getField1114() { * string field_1115 = 1115; * @return The field1115. */ + @java.lang.Override public java.lang.String getField1115() { java.lang.Object ref = field1115_; if (ref instanceof java.lang.String) { @@ -32352,6 +32587,7 @@ public java.lang.String getField1115() { * string field_1115 = 1115; * @return The bytes for field1115. */ + @java.lang.Override public com.google.protobuf.ByteString getField1115Bytes() { java.lang.Object ref = field1115_; @@ -32372,6 +32608,7 @@ public java.lang.String getField1115() { * string field_1116 = 1116; * @return The field1116. */ + @java.lang.Override public java.lang.String getField1116() { java.lang.Object ref = field1116_; if (ref instanceof java.lang.String) { @@ -32388,6 +32625,7 @@ public java.lang.String getField1116() { * string field_1116 = 1116; * @return The bytes for field1116. */ + @java.lang.Override public com.google.protobuf.ByteString getField1116Bytes() { java.lang.Object ref = field1116_; @@ -32408,6 +32646,7 @@ public java.lang.String getField1116() { * string field_1117 = 1117; * @return The field1117. */ + @java.lang.Override public java.lang.String getField1117() { java.lang.Object ref = field1117_; if (ref instanceof java.lang.String) { @@ -32424,6 +32663,7 @@ public java.lang.String getField1117() { * string field_1117 = 1117; * @return The bytes for field1117. */ + @java.lang.Override public com.google.protobuf.ByteString getField1117Bytes() { java.lang.Object ref = field1117_; @@ -32444,6 +32684,7 @@ public java.lang.String getField1117() { * string field_1118 = 1118; * @return The field1118. */ + @java.lang.Override public java.lang.String getField1118() { java.lang.Object ref = field1118_; if (ref instanceof java.lang.String) { @@ -32460,6 +32701,7 @@ public java.lang.String getField1118() { * string field_1118 = 1118; * @return The bytes for field1118. */ + @java.lang.Override public com.google.protobuf.ByteString getField1118Bytes() { java.lang.Object ref = field1118_; @@ -32480,6 +32722,7 @@ public java.lang.String getField1118() { * string field_1119 = 1119; * @return The field1119. */ + @java.lang.Override public java.lang.String getField1119() { java.lang.Object ref = field1119_; if (ref instanceof java.lang.String) { @@ -32496,6 +32739,7 @@ public java.lang.String getField1119() { * string field_1119 = 1119; * @return The bytes for field1119. */ + @java.lang.Override public com.google.protobuf.ByteString getField1119Bytes() { java.lang.Object ref = field1119_; @@ -32516,6 +32760,7 @@ public java.lang.String getField1119() { * string field_1120 = 1120; * @return The field1120. */ + @java.lang.Override public java.lang.String getField1120() { java.lang.Object ref = field1120_; if (ref instanceof java.lang.String) { @@ -32532,6 +32777,7 @@ public java.lang.String getField1120() { * string field_1120 = 1120; * @return The bytes for field1120. */ + @java.lang.Override public com.google.protobuf.ByteString getField1120Bytes() { java.lang.Object ref = field1120_; @@ -32552,6 +32798,7 @@ public java.lang.String getField1120() { * string field_1121 = 1121; * @return The field1121. */ + @java.lang.Override public java.lang.String getField1121() { java.lang.Object ref = field1121_; if (ref instanceof java.lang.String) { @@ -32568,6 +32815,7 @@ public java.lang.String getField1121() { * string field_1121 = 1121; * @return The bytes for field1121. */ + @java.lang.Override public com.google.protobuf.ByteString getField1121Bytes() { java.lang.Object ref = field1121_; @@ -32588,6 +32836,7 @@ public java.lang.String getField1121() { * string field_1122 = 1122; * @return The field1122. */ + @java.lang.Override public java.lang.String getField1122() { java.lang.Object ref = field1122_; if (ref instanceof java.lang.String) { @@ -32604,6 +32853,7 @@ public java.lang.String getField1122() { * string field_1122 = 1122; * @return The bytes for field1122. */ + @java.lang.Override public com.google.protobuf.ByteString getField1122Bytes() { java.lang.Object ref = field1122_; @@ -32624,6 +32874,7 @@ public java.lang.String getField1122() { * string field_1123 = 1123; * @return The field1123. */ + @java.lang.Override public java.lang.String getField1123() { java.lang.Object ref = field1123_; if (ref instanceof java.lang.String) { @@ -32640,6 +32891,7 @@ public java.lang.String getField1123() { * string field_1123 = 1123; * @return The bytes for field1123. */ + @java.lang.Override public com.google.protobuf.ByteString getField1123Bytes() { java.lang.Object ref = field1123_; @@ -32660,6 +32912,7 @@ public java.lang.String getField1123() { * string field_1124 = 1124; * @return The field1124. */ + @java.lang.Override public java.lang.String getField1124() { java.lang.Object ref = field1124_; if (ref instanceof java.lang.String) { @@ -32676,6 +32929,7 @@ public java.lang.String getField1124() { * string field_1124 = 1124; * @return The bytes for field1124. */ + @java.lang.Override public com.google.protobuf.ByteString getField1124Bytes() { java.lang.Object ref = field1124_; @@ -32696,6 +32950,7 @@ public java.lang.String getField1124() { * string field_1125 = 1125; * @return The field1125. */ + @java.lang.Override public java.lang.String getField1125() { java.lang.Object ref = field1125_; if (ref instanceof java.lang.String) { @@ -32712,6 +32967,7 @@ public java.lang.String getField1125() { * string field_1125 = 1125; * @return The bytes for field1125. */ + @java.lang.Override public com.google.protobuf.ByteString getField1125Bytes() { java.lang.Object ref = field1125_; @@ -32732,6 +32988,7 @@ public java.lang.String getField1125() { * string field_1126 = 1126; * @return The field1126. */ + @java.lang.Override public java.lang.String getField1126() { java.lang.Object ref = field1126_; if (ref instanceof java.lang.String) { @@ -32748,6 +33005,7 @@ public java.lang.String getField1126() { * string field_1126 = 1126; * @return The bytes for field1126. */ + @java.lang.Override public com.google.protobuf.ByteString getField1126Bytes() { java.lang.Object ref = field1126_; @@ -32768,6 +33026,7 @@ public java.lang.String getField1126() { * string field_1127 = 1127; * @return The field1127. */ + @java.lang.Override public java.lang.String getField1127() { java.lang.Object ref = field1127_; if (ref instanceof java.lang.String) { @@ -32784,6 +33043,7 @@ public java.lang.String getField1127() { * string field_1127 = 1127; * @return The bytes for field1127. */ + @java.lang.Override public com.google.protobuf.ByteString getField1127Bytes() { java.lang.Object ref = field1127_; @@ -32804,6 +33064,7 @@ public java.lang.String getField1127() { * string field_1128 = 1128; * @return The field1128. */ + @java.lang.Override public java.lang.String getField1128() { java.lang.Object ref = field1128_; if (ref instanceof java.lang.String) { @@ -32820,6 +33081,7 @@ public java.lang.String getField1128() { * string field_1128 = 1128; * @return The bytes for field1128. */ + @java.lang.Override public com.google.protobuf.ByteString getField1128Bytes() { java.lang.Object ref = field1128_; @@ -32840,6 +33102,7 @@ public java.lang.String getField1128() { * string field_1129 = 1129; * @return The field1129. */ + @java.lang.Override public java.lang.String getField1129() { java.lang.Object ref = field1129_; if (ref instanceof java.lang.String) { @@ -32856,6 +33119,7 @@ public java.lang.String getField1129() { * string field_1129 = 1129; * @return The bytes for field1129. */ + @java.lang.Override public com.google.protobuf.ByteString getField1129Bytes() { java.lang.Object ref = field1129_; @@ -32876,6 +33140,7 @@ public java.lang.String getField1129() { * string field_1130 = 1130; * @return The field1130. */ + @java.lang.Override public java.lang.String getField1130() { java.lang.Object ref = field1130_; if (ref instanceof java.lang.String) { @@ -32892,6 +33157,7 @@ public java.lang.String getField1130() { * string field_1130 = 1130; * @return The bytes for field1130. */ + @java.lang.Override public com.google.protobuf.ByteString getField1130Bytes() { java.lang.Object ref = field1130_; @@ -32912,6 +33178,7 @@ public java.lang.String getField1130() { * string field_1131 = 1131; * @return The field1131. */ + @java.lang.Override public java.lang.String getField1131() { java.lang.Object ref = field1131_; if (ref instanceof java.lang.String) { @@ -32928,6 +33195,7 @@ public java.lang.String getField1131() { * string field_1131 = 1131; * @return The bytes for field1131. */ + @java.lang.Override public com.google.protobuf.ByteString getField1131Bytes() { java.lang.Object ref = field1131_; @@ -32948,6 +33216,7 @@ public java.lang.String getField1131() { * string field_1132 = 1132; * @return The field1132. */ + @java.lang.Override public java.lang.String getField1132() { java.lang.Object ref = field1132_; if (ref instanceof java.lang.String) { @@ -32964,6 +33233,7 @@ public java.lang.String getField1132() { * string field_1132 = 1132; * @return The bytes for field1132. */ + @java.lang.Override public com.google.protobuf.ByteString getField1132Bytes() { java.lang.Object ref = field1132_; @@ -32984,6 +33254,7 @@ public java.lang.String getField1132() { * string field_1133 = 1133; * @return The field1133. */ + @java.lang.Override public java.lang.String getField1133() { java.lang.Object ref = field1133_; if (ref instanceof java.lang.String) { @@ -33000,6 +33271,7 @@ public java.lang.String getField1133() { * string field_1133 = 1133; * @return The bytes for field1133. */ + @java.lang.Override public com.google.protobuf.ByteString getField1133Bytes() { java.lang.Object ref = field1133_; @@ -33020,6 +33292,7 @@ public java.lang.String getField1133() { * string field_1134 = 1134; * @return The field1134. */ + @java.lang.Override public java.lang.String getField1134() { java.lang.Object ref = field1134_; if (ref instanceof java.lang.String) { @@ -33036,6 +33309,7 @@ public java.lang.String getField1134() { * string field_1134 = 1134; * @return The bytes for field1134. */ + @java.lang.Override public com.google.protobuf.ByteString getField1134Bytes() { java.lang.Object ref = field1134_; @@ -33056,6 +33330,7 @@ public java.lang.String getField1134() { * string field_1135 = 1135; * @return The field1135. */ + @java.lang.Override public java.lang.String getField1135() { java.lang.Object ref = field1135_; if (ref instanceof java.lang.String) { @@ -33072,6 +33347,7 @@ public java.lang.String getField1135() { * string field_1135 = 1135; * @return The bytes for field1135. */ + @java.lang.Override public com.google.protobuf.ByteString getField1135Bytes() { java.lang.Object ref = field1135_; @@ -33092,6 +33368,7 @@ public java.lang.String getField1135() { * string field_1136 = 1136; * @return The field1136. */ + @java.lang.Override public java.lang.String getField1136() { java.lang.Object ref = field1136_; if (ref instanceof java.lang.String) { @@ -33108,6 +33385,7 @@ public java.lang.String getField1136() { * string field_1136 = 1136; * @return The bytes for field1136. */ + @java.lang.Override public com.google.protobuf.ByteString getField1136Bytes() { java.lang.Object ref = field1136_; @@ -33128,6 +33406,7 @@ public java.lang.String getField1136() { * string field_1137 = 1137; * @return The field1137. */ + @java.lang.Override public java.lang.String getField1137() { java.lang.Object ref = field1137_; if (ref instanceof java.lang.String) { @@ -33144,6 +33423,7 @@ public java.lang.String getField1137() { * string field_1137 = 1137; * @return The bytes for field1137. */ + @java.lang.Override public com.google.protobuf.ByteString getField1137Bytes() { java.lang.Object ref = field1137_; @@ -33164,6 +33444,7 @@ public java.lang.String getField1137() { * string field_1138 = 1138; * @return The field1138. */ + @java.lang.Override public java.lang.String getField1138() { java.lang.Object ref = field1138_; if (ref instanceof java.lang.String) { @@ -33180,6 +33461,7 @@ public java.lang.String getField1138() { * string field_1138 = 1138; * @return The bytes for field1138. */ + @java.lang.Override public com.google.protobuf.ByteString getField1138Bytes() { java.lang.Object ref = field1138_; @@ -33200,6 +33482,7 @@ public java.lang.String getField1138() { * string field_1139 = 1139; * @return The field1139. */ + @java.lang.Override public java.lang.String getField1139() { java.lang.Object ref = field1139_; if (ref instanceof java.lang.String) { @@ -33216,6 +33499,7 @@ public java.lang.String getField1139() { * string field_1139 = 1139; * @return The bytes for field1139. */ + @java.lang.Override public com.google.protobuf.ByteString getField1139Bytes() { java.lang.Object ref = field1139_; @@ -33236,6 +33520,7 @@ public java.lang.String getField1139() { * string field_1140 = 1140; * @return The field1140. */ + @java.lang.Override public java.lang.String getField1140() { java.lang.Object ref = field1140_; if (ref instanceof java.lang.String) { @@ -33252,6 +33537,7 @@ public java.lang.String getField1140() { * string field_1140 = 1140; * @return The bytes for field1140. */ + @java.lang.Override public com.google.protobuf.ByteString getField1140Bytes() { java.lang.Object ref = field1140_; @@ -33272,6 +33558,7 @@ public java.lang.String getField1140() { * string field_1141 = 1141; * @return The field1141. */ + @java.lang.Override public java.lang.String getField1141() { java.lang.Object ref = field1141_; if (ref instanceof java.lang.String) { @@ -33288,6 +33575,7 @@ public java.lang.String getField1141() { * string field_1141 = 1141; * @return The bytes for field1141. */ + @java.lang.Override public com.google.protobuf.ByteString getField1141Bytes() { java.lang.Object ref = field1141_; @@ -33308,6 +33596,7 @@ public java.lang.String getField1141() { * string field_1142 = 1142; * @return The field1142. */ + @java.lang.Override public java.lang.String getField1142() { java.lang.Object ref = field1142_; if (ref instanceof java.lang.String) { @@ -33324,6 +33613,7 @@ public java.lang.String getField1142() { * string field_1142 = 1142; * @return The bytes for field1142. */ + @java.lang.Override public com.google.protobuf.ByteString getField1142Bytes() { java.lang.Object ref = field1142_; @@ -33344,6 +33634,7 @@ public java.lang.String getField1142() { * string field_1143 = 1143; * @return The field1143. */ + @java.lang.Override public java.lang.String getField1143() { java.lang.Object ref = field1143_; if (ref instanceof java.lang.String) { @@ -33360,6 +33651,7 @@ public java.lang.String getField1143() { * string field_1143 = 1143; * @return The bytes for field1143. */ + @java.lang.Override public com.google.protobuf.ByteString getField1143Bytes() { java.lang.Object ref = field1143_; @@ -33380,6 +33672,7 @@ public java.lang.String getField1143() { * string field_1144 = 1144; * @return The field1144. */ + @java.lang.Override public java.lang.String getField1144() { java.lang.Object ref = field1144_; if (ref instanceof java.lang.String) { @@ -33396,6 +33689,7 @@ public java.lang.String getField1144() { * string field_1144 = 1144; * @return The bytes for field1144. */ + @java.lang.Override public com.google.protobuf.ByteString getField1144Bytes() { java.lang.Object ref = field1144_; @@ -33416,6 +33710,7 @@ public java.lang.String getField1144() { * string field_1145 = 1145; * @return The field1145. */ + @java.lang.Override public java.lang.String getField1145() { java.lang.Object ref = field1145_; if (ref instanceof java.lang.String) { @@ -33432,6 +33727,7 @@ public java.lang.String getField1145() { * string field_1145 = 1145; * @return The bytes for field1145. */ + @java.lang.Override public com.google.protobuf.ByteString getField1145Bytes() { java.lang.Object ref = field1145_; @@ -33452,6 +33748,7 @@ public java.lang.String getField1145() { * string field_1146 = 1146; * @return The field1146. */ + @java.lang.Override public java.lang.String getField1146() { java.lang.Object ref = field1146_; if (ref instanceof java.lang.String) { @@ -33468,6 +33765,7 @@ public java.lang.String getField1146() { * string field_1146 = 1146; * @return The bytes for field1146. */ + @java.lang.Override public com.google.protobuf.ByteString getField1146Bytes() { java.lang.Object ref = field1146_; @@ -33488,6 +33786,7 @@ public java.lang.String getField1146() { * string field_1147 = 1147; * @return The field1147. */ + @java.lang.Override public java.lang.String getField1147() { java.lang.Object ref = field1147_; if (ref instanceof java.lang.String) { @@ -33504,6 +33803,7 @@ public java.lang.String getField1147() { * string field_1147 = 1147; * @return The bytes for field1147. */ + @java.lang.Override public com.google.protobuf.ByteString getField1147Bytes() { java.lang.Object ref = field1147_; @@ -33524,6 +33824,7 @@ public java.lang.String getField1147() { * string field_1148 = 1148; * @return The field1148. */ + @java.lang.Override public java.lang.String getField1148() { java.lang.Object ref = field1148_; if (ref instanceof java.lang.String) { @@ -33540,6 +33841,7 @@ public java.lang.String getField1148() { * string field_1148 = 1148; * @return The bytes for field1148. */ + @java.lang.Override public com.google.protobuf.ByteString getField1148Bytes() { java.lang.Object ref = field1148_; @@ -33560,6 +33862,7 @@ public java.lang.String getField1148() { * string field_1149 = 1149; * @return The field1149. */ + @java.lang.Override public java.lang.String getField1149() { java.lang.Object ref = field1149_; if (ref instanceof java.lang.String) { @@ -33576,6 +33879,7 @@ public java.lang.String getField1149() { * string field_1149 = 1149; * @return The bytes for field1149. */ + @java.lang.Override public com.google.protobuf.ByteString getField1149Bytes() { java.lang.Object ref = field1149_; @@ -33596,6 +33900,7 @@ public java.lang.String getField1149() { * string field_1150 = 1150; * @return The field1150. */ + @java.lang.Override public java.lang.String getField1150() { java.lang.Object ref = field1150_; if (ref instanceof java.lang.String) { @@ -33612,6 +33917,7 @@ public java.lang.String getField1150() { * string field_1150 = 1150; * @return The bytes for field1150. */ + @java.lang.Override public com.google.protobuf.ByteString getField1150Bytes() { java.lang.Object ref = field1150_; @@ -33632,6 +33938,7 @@ public java.lang.String getField1150() { * string field_1151 = 1151; * @return The field1151. */ + @java.lang.Override public java.lang.String getField1151() { java.lang.Object ref = field1151_; if (ref instanceof java.lang.String) { @@ -33648,6 +33955,7 @@ public java.lang.String getField1151() { * string field_1151 = 1151; * @return The bytes for field1151. */ + @java.lang.Override public com.google.protobuf.ByteString getField1151Bytes() { java.lang.Object ref = field1151_; @@ -33668,6 +33976,7 @@ public java.lang.String getField1151() { * string field_1152 = 1152; * @return The field1152. */ + @java.lang.Override public java.lang.String getField1152() { java.lang.Object ref = field1152_; if (ref instanceof java.lang.String) { @@ -33684,6 +33993,7 @@ public java.lang.String getField1152() { * string field_1152 = 1152; * @return The bytes for field1152. */ + @java.lang.Override public com.google.protobuf.ByteString getField1152Bytes() { java.lang.Object ref = field1152_; @@ -33704,6 +34014,7 @@ public java.lang.String getField1152() { * string field_1153 = 1153; * @return The field1153. */ + @java.lang.Override public java.lang.String getField1153() { java.lang.Object ref = field1153_; if (ref instanceof java.lang.String) { @@ -33720,6 +34031,7 @@ public java.lang.String getField1153() { * string field_1153 = 1153; * @return The bytes for field1153. */ + @java.lang.Override public com.google.protobuf.ByteString getField1153Bytes() { java.lang.Object ref = field1153_; @@ -33740,6 +34052,7 @@ public java.lang.String getField1153() { * string field_1154 = 1154; * @return The field1154. */ + @java.lang.Override public java.lang.String getField1154() { java.lang.Object ref = field1154_; if (ref instanceof java.lang.String) { @@ -33756,6 +34069,7 @@ public java.lang.String getField1154() { * string field_1154 = 1154; * @return The bytes for field1154. */ + @java.lang.Override public com.google.protobuf.ByteString getField1154Bytes() { java.lang.Object ref = field1154_; @@ -33776,6 +34090,7 @@ public java.lang.String getField1154() { * string field_1155 = 1155; * @return The field1155. */ + @java.lang.Override public java.lang.String getField1155() { java.lang.Object ref = field1155_; if (ref instanceof java.lang.String) { @@ -33792,6 +34107,7 @@ public java.lang.String getField1155() { * string field_1155 = 1155; * @return The bytes for field1155. */ + @java.lang.Override public com.google.protobuf.ByteString getField1155Bytes() { java.lang.Object ref = field1155_; @@ -33812,6 +34128,7 @@ public java.lang.String getField1155() { * string field_1156 = 1156; * @return The field1156. */ + @java.lang.Override public java.lang.String getField1156() { java.lang.Object ref = field1156_; if (ref instanceof java.lang.String) { @@ -33828,6 +34145,7 @@ public java.lang.String getField1156() { * string field_1156 = 1156; * @return The bytes for field1156. */ + @java.lang.Override public com.google.protobuf.ByteString getField1156Bytes() { java.lang.Object ref = field1156_; @@ -33848,6 +34166,7 @@ public java.lang.String getField1156() { * string field_1157 = 1157; * @return The field1157. */ + @java.lang.Override public java.lang.String getField1157() { java.lang.Object ref = field1157_; if (ref instanceof java.lang.String) { @@ -33864,6 +34183,7 @@ public java.lang.String getField1157() { * string field_1157 = 1157; * @return The bytes for field1157. */ + @java.lang.Override public com.google.protobuf.ByteString getField1157Bytes() { java.lang.Object ref = field1157_; @@ -33884,6 +34204,7 @@ public java.lang.String getField1157() { * string field_1158 = 1158; * @return The field1158. */ + @java.lang.Override public java.lang.String getField1158() { java.lang.Object ref = field1158_; if (ref instanceof java.lang.String) { @@ -33900,6 +34221,7 @@ public java.lang.String getField1158() { * string field_1158 = 1158; * @return The bytes for field1158. */ + @java.lang.Override public com.google.protobuf.ByteString getField1158Bytes() { java.lang.Object ref = field1158_; @@ -33920,6 +34242,7 @@ public java.lang.String getField1158() { * string field_1159 = 1159; * @return The field1159. */ + @java.lang.Override public java.lang.String getField1159() { java.lang.Object ref = field1159_; if (ref instanceof java.lang.String) { @@ -33936,6 +34259,7 @@ public java.lang.String getField1159() { * string field_1159 = 1159; * @return The bytes for field1159. */ + @java.lang.Override public com.google.protobuf.ByteString getField1159Bytes() { java.lang.Object ref = field1159_; @@ -33956,6 +34280,7 @@ public java.lang.String getField1159() { * string field_1160 = 1160; * @return The field1160. */ + @java.lang.Override public java.lang.String getField1160() { java.lang.Object ref = field1160_; if (ref instanceof java.lang.String) { @@ -33972,6 +34297,7 @@ public java.lang.String getField1160() { * string field_1160 = 1160; * @return The bytes for field1160. */ + @java.lang.Override public com.google.protobuf.ByteString getField1160Bytes() { java.lang.Object ref = field1160_; @@ -33992,6 +34318,7 @@ public java.lang.String getField1160() { * string field_1161 = 1161; * @return The field1161. */ + @java.lang.Override public java.lang.String getField1161() { java.lang.Object ref = field1161_; if (ref instanceof java.lang.String) { @@ -34008,6 +34335,7 @@ public java.lang.String getField1161() { * string field_1161 = 1161; * @return The bytes for field1161. */ + @java.lang.Override public com.google.protobuf.ByteString getField1161Bytes() { java.lang.Object ref = field1161_; @@ -34028,6 +34356,7 @@ public java.lang.String getField1161() { * string field_1162 = 1162; * @return The field1162. */ + @java.lang.Override public java.lang.String getField1162() { java.lang.Object ref = field1162_; if (ref instanceof java.lang.String) { @@ -34044,6 +34373,7 @@ public java.lang.String getField1162() { * string field_1162 = 1162; * @return The bytes for field1162. */ + @java.lang.Override public com.google.protobuf.ByteString getField1162Bytes() { java.lang.Object ref = field1162_; @@ -34064,6 +34394,7 @@ public java.lang.String getField1162() { * string field_1163 = 1163; * @return The field1163. */ + @java.lang.Override public java.lang.String getField1163() { java.lang.Object ref = field1163_; if (ref instanceof java.lang.String) { @@ -34080,6 +34411,7 @@ public java.lang.String getField1163() { * string field_1163 = 1163; * @return The bytes for field1163. */ + @java.lang.Override public com.google.protobuf.ByteString getField1163Bytes() { java.lang.Object ref = field1163_; @@ -34100,6 +34432,7 @@ public java.lang.String getField1163() { * string field_1164 = 1164; * @return The field1164. */ + @java.lang.Override public java.lang.String getField1164() { java.lang.Object ref = field1164_; if (ref instanceof java.lang.String) { @@ -34116,6 +34449,7 @@ public java.lang.String getField1164() { * string field_1164 = 1164; * @return The bytes for field1164. */ + @java.lang.Override public com.google.protobuf.ByteString getField1164Bytes() { java.lang.Object ref = field1164_; @@ -34136,6 +34470,7 @@ public java.lang.String getField1164() { * string field_1165 = 1165; * @return The field1165. */ + @java.lang.Override public java.lang.String getField1165() { java.lang.Object ref = field1165_; if (ref instanceof java.lang.String) { @@ -34152,6 +34487,7 @@ public java.lang.String getField1165() { * string field_1165 = 1165; * @return The bytes for field1165. */ + @java.lang.Override public com.google.protobuf.ByteString getField1165Bytes() { java.lang.Object ref = field1165_; @@ -34172,6 +34508,7 @@ public java.lang.String getField1165() { * string field_1166 = 1166; * @return The field1166. */ + @java.lang.Override public java.lang.String getField1166() { java.lang.Object ref = field1166_; if (ref instanceof java.lang.String) { @@ -34188,6 +34525,7 @@ public java.lang.String getField1166() { * string field_1166 = 1166; * @return The bytes for field1166. */ + @java.lang.Override public com.google.protobuf.ByteString getField1166Bytes() { java.lang.Object ref = field1166_; @@ -34208,6 +34546,7 @@ public java.lang.String getField1166() { * string field_1167 = 1167; * @return The field1167. */ + @java.lang.Override public java.lang.String getField1167() { java.lang.Object ref = field1167_; if (ref instanceof java.lang.String) { @@ -34224,6 +34563,7 @@ public java.lang.String getField1167() { * string field_1167 = 1167; * @return The bytes for field1167. */ + @java.lang.Override public com.google.protobuf.ByteString getField1167Bytes() { java.lang.Object ref = field1167_; @@ -34244,6 +34584,7 @@ public java.lang.String getField1167() { * string field_1168 = 1168; * @return The field1168. */ + @java.lang.Override public java.lang.String getField1168() { java.lang.Object ref = field1168_; if (ref instanceof java.lang.String) { @@ -34260,6 +34601,7 @@ public java.lang.String getField1168() { * string field_1168 = 1168; * @return The bytes for field1168. */ + @java.lang.Override public com.google.protobuf.ByteString getField1168Bytes() { java.lang.Object ref = field1168_; @@ -34280,6 +34622,7 @@ public java.lang.String getField1168() { * string field_1169 = 1169; * @return The field1169. */ + @java.lang.Override public java.lang.String getField1169() { java.lang.Object ref = field1169_; if (ref instanceof java.lang.String) { @@ -34296,6 +34639,7 @@ public java.lang.String getField1169() { * string field_1169 = 1169; * @return The bytes for field1169. */ + @java.lang.Override public com.google.protobuf.ByteString getField1169Bytes() { java.lang.Object ref = field1169_; @@ -34316,6 +34660,7 @@ public java.lang.String getField1169() { * string field_1170 = 1170; * @return The field1170. */ + @java.lang.Override public java.lang.String getField1170() { java.lang.Object ref = field1170_; if (ref instanceof java.lang.String) { @@ -34332,6 +34677,7 @@ public java.lang.String getField1170() { * string field_1170 = 1170; * @return The bytes for field1170. */ + @java.lang.Override public com.google.protobuf.ByteString getField1170Bytes() { java.lang.Object ref = field1170_; @@ -34352,6 +34698,7 @@ public java.lang.String getField1170() { * string field_1171 = 1171; * @return The field1171. */ + @java.lang.Override public java.lang.String getField1171() { java.lang.Object ref = field1171_; if (ref instanceof java.lang.String) { @@ -34368,6 +34715,7 @@ public java.lang.String getField1171() { * string field_1171 = 1171; * @return The bytes for field1171. */ + @java.lang.Override public com.google.protobuf.ByteString getField1171Bytes() { java.lang.Object ref = field1171_; @@ -34388,6 +34736,7 @@ public java.lang.String getField1171() { * string field_1172 = 1172; * @return The field1172. */ + @java.lang.Override public java.lang.String getField1172() { java.lang.Object ref = field1172_; if (ref instanceof java.lang.String) { @@ -34404,6 +34753,7 @@ public java.lang.String getField1172() { * string field_1172 = 1172; * @return The bytes for field1172. */ + @java.lang.Override public com.google.protobuf.ByteString getField1172Bytes() { java.lang.Object ref = field1172_; @@ -34424,6 +34774,7 @@ public java.lang.String getField1172() { * string field_1173 = 1173; * @return The field1173. */ + @java.lang.Override public java.lang.String getField1173() { java.lang.Object ref = field1173_; if (ref instanceof java.lang.String) { @@ -34440,6 +34791,7 @@ public java.lang.String getField1173() { * string field_1173 = 1173; * @return The bytes for field1173. */ + @java.lang.Override public com.google.protobuf.ByteString getField1173Bytes() { java.lang.Object ref = field1173_; @@ -34460,6 +34812,7 @@ public java.lang.String getField1173() { * string field_1174 = 1174; * @return The field1174. */ + @java.lang.Override public java.lang.String getField1174() { java.lang.Object ref = field1174_; if (ref instanceof java.lang.String) { @@ -34476,6 +34829,7 @@ public java.lang.String getField1174() { * string field_1174 = 1174; * @return The bytes for field1174. */ + @java.lang.Override public com.google.protobuf.ByteString getField1174Bytes() { java.lang.Object ref = field1174_; @@ -34496,6 +34850,7 @@ public java.lang.String getField1174() { * string field_1175 = 1175; * @return The field1175. */ + @java.lang.Override public java.lang.String getField1175() { java.lang.Object ref = field1175_; if (ref instanceof java.lang.String) { @@ -34512,6 +34867,7 @@ public java.lang.String getField1175() { * string field_1175 = 1175; * @return The bytes for field1175. */ + @java.lang.Override public com.google.protobuf.ByteString getField1175Bytes() { java.lang.Object ref = field1175_; @@ -34532,6 +34888,7 @@ public java.lang.String getField1175() { * string field_1176 = 1176; * @return The field1176. */ + @java.lang.Override public java.lang.String getField1176() { java.lang.Object ref = field1176_; if (ref instanceof java.lang.String) { @@ -34548,6 +34905,7 @@ public java.lang.String getField1176() { * string field_1176 = 1176; * @return The bytes for field1176. */ + @java.lang.Override public com.google.protobuf.ByteString getField1176Bytes() { java.lang.Object ref = field1176_; @@ -34568,6 +34926,7 @@ public java.lang.String getField1176() { * string field_1177 = 1177; * @return The field1177. */ + @java.lang.Override public java.lang.String getField1177() { java.lang.Object ref = field1177_; if (ref instanceof java.lang.String) { @@ -34584,6 +34943,7 @@ public java.lang.String getField1177() { * string field_1177 = 1177; * @return The bytes for field1177. */ + @java.lang.Override public com.google.protobuf.ByteString getField1177Bytes() { java.lang.Object ref = field1177_; @@ -34604,6 +34964,7 @@ public java.lang.String getField1177() { * string field_1178 = 1178; * @return The field1178. */ + @java.lang.Override public java.lang.String getField1178() { java.lang.Object ref = field1178_; if (ref instanceof java.lang.String) { @@ -34620,6 +34981,7 @@ public java.lang.String getField1178() { * string field_1178 = 1178; * @return The bytes for field1178. */ + @java.lang.Override public com.google.protobuf.ByteString getField1178Bytes() { java.lang.Object ref = field1178_; @@ -34640,6 +35002,7 @@ public java.lang.String getField1178() { * string field_1179 = 1179; * @return The field1179. */ + @java.lang.Override public java.lang.String getField1179() { java.lang.Object ref = field1179_; if (ref instanceof java.lang.String) { @@ -34656,6 +35019,7 @@ public java.lang.String getField1179() { * string field_1179 = 1179; * @return The bytes for field1179. */ + @java.lang.Override public com.google.protobuf.ByteString getField1179Bytes() { java.lang.Object ref = field1179_; @@ -34676,6 +35040,7 @@ public java.lang.String getField1179() { * string field_1180 = 1180; * @return The field1180. */ + @java.lang.Override public java.lang.String getField1180() { java.lang.Object ref = field1180_; if (ref instanceof java.lang.String) { @@ -34692,6 +35057,7 @@ public java.lang.String getField1180() { * string field_1180 = 1180; * @return The bytes for field1180. */ + @java.lang.Override public com.google.protobuf.ByteString getField1180Bytes() { java.lang.Object ref = field1180_; @@ -34712,6 +35078,7 @@ public java.lang.String getField1180() { * string field_1181 = 1181; * @return The field1181. */ + @java.lang.Override public java.lang.String getField1181() { java.lang.Object ref = field1181_; if (ref instanceof java.lang.String) { @@ -34728,6 +35095,7 @@ public java.lang.String getField1181() { * string field_1181 = 1181; * @return The bytes for field1181. */ + @java.lang.Override public com.google.protobuf.ByteString getField1181Bytes() { java.lang.Object ref = field1181_; @@ -34748,6 +35116,7 @@ public java.lang.String getField1181() { * string field_1182 = 1182; * @return The field1182. */ + @java.lang.Override public java.lang.String getField1182() { java.lang.Object ref = field1182_; if (ref instanceof java.lang.String) { @@ -34764,6 +35133,7 @@ public java.lang.String getField1182() { * string field_1182 = 1182; * @return The bytes for field1182. */ + @java.lang.Override public com.google.protobuf.ByteString getField1182Bytes() { java.lang.Object ref = field1182_; @@ -34784,6 +35154,7 @@ public java.lang.String getField1182() { * string field_1183 = 1183; * @return The field1183. */ + @java.lang.Override public java.lang.String getField1183() { java.lang.Object ref = field1183_; if (ref instanceof java.lang.String) { @@ -34800,6 +35171,7 @@ public java.lang.String getField1183() { * string field_1183 = 1183; * @return The bytes for field1183. */ + @java.lang.Override public com.google.protobuf.ByteString getField1183Bytes() { java.lang.Object ref = field1183_; @@ -34820,6 +35192,7 @@ public java.lang.String getField1183() { * string field_1184 = 1184; * @return The field1184. */ + @java.lang.Override public java.lang.String getField1184() { java.lang.Object ref = field1184_; if (ref instanceof java.lang.String) { @@ -34836,6 +35209,7 @@ public java.lang.String getField1184() { * string field_1184 = 1184; * @return The bytes for field1184. */ + @java.lang.Override public com.google.protobuf.ByteString getField1184Bytes() { java.lang.Object ref = field1184_; @@ -34856,6 +35230,7 @@ public java.lang.String getField1184() { * string field_1185 = 1185; * @return The field1185. */ + @java.lang.Override public java.lang.String getField1185() { java.lang.Object ref = field1185_; if (ref instanceof java.lang.String) { @@ -34872,6 +35247,7 @@ public java.lang.String getField1185() { * string field_1185 = 1185; * @return The bytes for field1185. */ + @java.lang.Override public com.google.protobuf.ByteString getField1185Bytes() { java.lang.Object ref = field1185_; @@ -34892,6 +35268,7 @@ public java.lang.String getField1185() { * string field_1186 = 1186; * @return The field1186. */ + @java.lang.Override public java.lang.String getField1186() { java.lang.Object ref = field1186_; if (ref instanceof java.lang.String) { @@ -34908,6 +35285,7 @@ public java.lang.String getField1186() { * string field_1186 = 1186; * @return The bytes for field1186. */ + @java.lang.Override public com.google.protobuf.ByteString getField1186Bytes() { java.lang.Object ref = field1186_; @@ -34928,6 +35306,7 @@ public java.lang.String getField1186() { * string field_1187 = 1187; * @return The field1187. */ + @java.lang.Override public java.lang.String getField1187() { java.lang.Object ref = field1187_; if (ref instanceof java.lang.String) { @@ -34944,6 +35323,7 @@ public java.lang.String getField1187() { * string field_1187 = 1187; * @return The bytes for field1187. */ + @java.lang.Override public com.google.protobuf.ByteString getField1187Bytes() { java.lang.Object ref = field1187_; @@ -34964,6 +35344,7 @@ public java.lang.String getField1187() { * string field_1188 = 1188; * @return The field1188. */ + @java.lang.Override public java.lang.String getField1188() { java.lang.Object ref = field1188_; if (ref instanceof java.lang.String) { @@ -34980,6 +35361,7 @@ public java.lang.String getField1188() { * string field_1188 = 1188; * @return The bytes for field1188. */ + @java.lang.Override public com.google.protobuf.ByteString getField1188Bytes() { java.lang.Object ref = field1188_; @@ -35000,6 +35382,7 @@ public java.lang.String getField1188() { * string field_1189 = 1189; * @return The field1189. */ + @java.lang.Override public java.lang.String getField1189() { java.lang.Object ref = field1189_; if (ref instanceof java.lang.String) { @@ -35016,6 +35399,7 @@ public java.lang.String getField1189() { * string field_1189 = 1189; * @return The bytes for field1189. */ + @java.lang.Override public com.google.protobuf.ByteString getField1189Bytes() { java.lang.Object ref = field1189_; @@ -35036,6 +35420,7 @@ public java.lang.String getField1189() { * string field_1190 = 1190; * @return The field1190. */ + @java.lang.Override public java.lang.String getField1190() { java.lang.Object ref = field1190_; if (ref instanceof java.lang.String) { @@ -35052,6 +35437,7 @@ public java.lang.String getField1190() { * string field_1190 = 1190; * @return The bytes for field1190. */ + @java.lang.Override public com.google.protobuf.ByteString getField1190Bytes() { java.lang.Object ref = field1190_; @@ -35072,6 +35458,7 @@ public java.lang.String getField1190() { * string field_1191 = 1191; * @return The field1191. */ + @java.lang.Override public java.lang.String getField1191() { java.lang.Object ref = field1191_; if (ref instanceof java.lang.String) { @@ -35088,6 +35475,7 @@ public java.lang.String getField1191() { * string field_1191 = 1191; * @return The bytes for field1191. */ + @java.lang.Override public com.google.protobuf.ByteString getField1191Bytes() { java.lang.Object ref = field1191_; @@ -35108,6 +35496,7 @@ public java.lang.String getField1191() { * string field_1192 = 1192; * @return The field1192. */ + @java.lang.Override public java.lang.String getField1192() { java.lang.Object ref = field1192_; if (ref instanceof java.lang.String) { @@ -35124,6 +35513,7 @@ public java.lang.String getField1192() { * string field_1192 = 1192; * @return The bytes for field1192. */ + @java.lang.Override public com.google.protobuf.ByteString getField1192Bytes() { java.lang.Object ref = field1192_; @@ -35144,6 +35534,7 @@ public java.lang.String getField1192() { * string field_1193 = 1193; * @return The field1193. */ + @java.lang.Override public java.lang.String getField1193() { java.lang.Object ref = field1193_; if (ref instanceof java.lang.String) { @@ -35160,6 +35551,7 @@ public java.lang.String getField1193() { * string field_1193 = 1193; * @return The bytes for field1193. */ + @java.lang.Override public com.google.protobuf.ByteString getField1193Bytes() { java.lang.Object ref = field1193_; @@ -35180,6 +35572,7 @@ public java.lang.String getField1193() { * string field_1194 = 1194; * @return The field1194. */ + @java.lang.Override public java.lang.String getField1194() { java.lang.Object ref = field1194_; if (ref instanceof java.lang.String) { @@ -35196,6 +35589,7 @@ public java.lang.String getField1194() { * string field_1194 = 1194; * @return The bytes for field1194. */ + @java.lang.Override public com.google.protobuf.ByteString getField1194Bytes() { java.lang.Object ref = field1194_; @@ -35216,6 +35610,7 @@ public java.lang.String getField1194() { * string field_1195 = 1195; * @return The field1195. */ + @java.lang.Override public java.lang.String getField1195() { java.lang.Object ref = field1195_; if (ref instanceof java.lang.String) { @@ -35232,6 +35627,7 @@ public java.lang.String getField1195() { * string field_1195 = 1195; * @return The bytes for field1195. */ + @java.lang.Override public com.google.protobuf.ByteString getField1195Bytes() { java.lang.Object ref = field1195_; @@ -35252,6 +35648,7 @@ public java.lang.String getField1195() { * string field_1196 = 1196; * @return The field1196. */ + @java.lang.Override public java.lang.String getField1196() { java.lang.Object ref = field1196_; if (ref instanceof java.lang.String) { @@ -35268,6 +35665,7 @@ public java.lang.String getField1196() { * string field_1196 = 1196; * @return The bytes for field1196. */ + @java.lang.Override public com.google.protobuf.ByteString getField1196Bytes() { java.lang.Object ref = field1196_; @@ -35288,6 +35686,7 @@ public java.lang.String getField1196() { * string field_1197 = 1197; * @return The field1197. */ + @java.lang.Override public java.lang.String getField1197() { java.lang.Object ref = field1197_; if (ref instanceof java.lang.String) { @@ -35304,6 +35703,7 @@ public java.lang.String getField1197() { * string field_1197 = 1197; * @return The bytes for field1197. */ + @java.lang.Override public com.google.protobuf.ByteString getField1197Bytes() { java.lang.Object ref = field1197_; @@ -35324,6 +35724,7 @@ public java.lang.String getField1197() { * string field_1198 = 1198; * @return The field1198. */ + @java.lang.Override public java.lang.String getField1198() { java.lang.Object ref = field1198_; if (ref instanceof java.lang.String) { @@ -35340,6 +35741,7 @@ public java.lang.String getField1198() { * string field_1198 = 1198; * @return The bytes for field1198. */ + @java.lang.Override public com.google.protobuf.ByteString getField1198Bytes() { java.lang.Object ref = field1198_; @@ -35360,6 +35762,7 @@ public java.lang.String getField1198() { * string field_1199 = 1199; * @return The field1199. */ + @java.lang.Override public java.lang.String getField1199() { java.lang.Object ref = field1199_; if (ref instanceof java.lang.String) { @@ -35376,6 +35779,7 @@ public java.lang.String getField1199() { * string field_1199 = 1199; * @return The bytes for field1199. */ + @java.lang.Override public com.google.protobuf.ByteString getField1199Bytes() { java.lang.Object ref = field1199_; @@ -35396,6 +35800,7 @@ public java.lang.String getField1199() { * string field_1200 = 1200; * @return The field1200. */ + @java.lang.Override public java.lang.String getField1200() { java.lang.Object ref = field1200_; if (ref instanceof java.lang.String) { @@ -35412,6 +35817,7 @@ public java.lang.String getField1200() { * string field_1200 = 1200; * @return The bytes for field1200. */ + @java.lang.Override public com.google.protobuf.ByteString getField1200Bytes() { java.lang.Object ref = field1200_; @@ -35432,6 +35838,7 @@ public java.lang.String getField1200() { * string field_1201 = 1201; * @return The field1201. */ + @java.lang.Override public java.lang.String getField1201() { java.lang.Object ref = field1201_; if (ref instanceof java.lang.String) { @@ -35448,6 +35855,7 @@ public java.lang.String getField1201() { * string field_1201 = 1201; * @return The bytes for field1201. */ + @java.lang.Override public com.google.protobuf.ByteString getField1201Bytes() { java.lang.Object ref = field1201_; @@ -35468,6 +35876,7 @@ public java.lang.String getField1201() { * string field_1202 = 1202; * @return The field1202. */ + @java.lang.Override public java.lang.String getField1202() { java.lang.Object ref = field1202_; if (ref instanceof java.lang.String) { @@ -35484,6 +35893,7 @@ public java.lang.String getField1202() { * string field_1202 = 1202; * @return The bytes for field1202. */ + @java.lang.Override public com.google.protobuf.ByteString getField1202Bytes() { java.lang.Object ref = field1202_; @@ -35504,6 +35914,7 @@ public java.lang.String getField1202() { * string field_1203 = 1203; * @return The field1203. */ + @java.lang.Override public java.lang.String getField1203() { java.lang.Object ref = field1203_; if (ref instanceof java.lang.String) { @@ -35520,6 +35931,7 @@ public java.lang.String getField1203() { * string field_1203 = 1203; * @return The bytes for field1203. */ + @java.lang.Override public com.google.protobuf.ByteString getField1203Bytes() { java.lang.Object ref = field1203_; @@ -35540,6 +35952,7 @@ public java.lang.String getField1203() { * string field_1204 = 1204; * @return The field1204. */ + @java.lang.Override public java.lang.String getField1204() { java.lang.Object ref = field1204_; if (ref instanceof java.lang.String) { @@ -35556,6 +35969,7 @@ public java.lang.String getField1204() { * string field_1204 = 1204; * @return The bytes for field1204. */ + @java.lang.Override public com.google.protobuf.ByteString getField1204Bytes() { java.lang.Object ref = field1204_; @@ -35576,6 +35990,7 @@ public java.lang.String getField1204() { * string field_1205 = 1205; * @return The field1205. */ + @java.lang.Override public java.lang.String getField1205() { java.lang.Object ref = field1205_; if (ref instanceof java.lang.String) { @@ -35592,6 +36007,7 @@ public java.lang.String getField1205() { * string field_1205 = 1205; * @return The bytes for field1205. */ + @java.lang.Override public com.google.protobuf.ByteString getField1205Bytes() { java.lang.Object ref = field1205_; @@ -35612,6 +36028,7 @@ public java.lang.String getField1205() { * string field_1206 = 1206; * @return The field1206. */ + @java.lang.Override public java.lang.String getField1206() { java.lang.Object ref = field1206_; if (ref instanceof java.lang.String) { @@ -35628,6 +36045,7 @@ public java.lang.String getField1206() { * string field_1206 = 1206; * @return The bytes for field1206. */ + @java.lang.Override public com.google.protobuf.ByteString getField1206Bytes() { java.lang.Object ref = field1206_; @@ -35648,6 +36066,7 @@ public java.lang.String getField1206() { * string field_1207 = 1207; * @return The field1207. */ + @java.lang.Override public java.lang.String getField1207() { java.lang.Object ref = field1207_; if (ref instanceof java.lang.String) { @@ -35664,6 +36083,7 @@ public java.lang.String getField1207() { * string field_1207 = 1207; * @return The bytes for field1207. */ + @java.lang.Override public com.google.protobuf.ByteString getField1207Bytes() { java.lang.Object ref = field1207_; @@ -35684,6 +36104,7 @@ public java.lang.String getField1207() { * string field_1208 = 1208; * @return The field1208. */ + @java.lang.Override public java.lang.String getField1208() { java.lang.Object ref = field1208_; if (ref instanceof java.lang.String) { @@ -35700,6 +36121,7 @@ public java.lang.String getField1208() { * string field_1208 = 1208; * @return The bytes for field1208. */ + @java.lang.Override public com.google.protobuf.ByteString getField1208Bytes() { java.lang.Object ref = field1208_; @@ -35720,6 +36142,7 @@ public java.lang.String getField1208() { * string field_1209 = 1209; * @return The field1209. */ + @java.lang.Override public java.lang.String getField1209() { java.lang.Object ref = field1209_; if (ref instanceof java.lang.String) { @@ -35736,6 +36159,7 @@ public java.lang.String getField1209() { * string field_1209 = 1209; * @return The bytes for field1209. */ + @java.lang.Override public com.google.protobuf.ByteString getField1209Bytes() { java.lang.Object ref = field1209_; @@ -35756,6 +36180,7 @@ public java.lang.String getField1209() { * string field_1210 = 1210; * @return The field1210. */ + @java.lang.Override public java.lang.String getField1210() { java.lang.Object ref = field1210_; if (ref instanceof java.lang.String) { @@ -35772,6 +36197,7 @@ public java.lang.String getField1210() { * string field_1210 = 1210; * @return The bytes for field1210. */ + @java.lang.Override public com.google.protobuf.ByteString getField1210Bytes() { java.lang.Object ref = field1210_; @@ -35792,6 +36218,7 @@ public java.lang.String getField1210() { * string field_1211 = 1211; * @return The field1211. */ + @java.lang.Override public java.lang.String getField1211() { java.lang.Object ref = field1211_; if (ref instanceof java.lang.String) { @@ -35808,6 +36235,7 @@ public java.lang.String getField1211() { * string field_1211 = 1211; * @return The bytes for field1211. */ + @java.lang.Override public com.google.protobuf.ByteString getField1211Bytes() { java.lang.Object ref = field1211_; @@ -35828,6 +36256,7 @@ public java.lang.String getField1211() { * string field_1212 = 1212; * @return The field1212. */ + @java.lang.Override public java.lang.String getField1212() { java.lang.Object ref = field1212_; if (ref instanceof java.lang.String) { @@ -35844,6 +36273,7 @@ public java.lang.String getField1212() { * string field_1212 = 1212; * @return The bytes for field1212. */ + @java.lang.Override public com.google.protobuf.ByteString getField1212Bytes() { java.lang.Object ref = field1212_; @@ -35864,6 +36294,7 @@ public java.lang.String getField1212() { * string field_1213 = 1213; * @return The field1213. */ + @java.lang.Override public java.lang.String getField1213() { java.lang.Object ref = field1213_; if (ref instanceof java.lang.String) { @@ -35880,6 +36311,7 @@ public java.lang.String getField1213() { * string field_1213 = 1213; * @return The bytes for field1213. */ + @java.lang.Override public com.google.protobuf.ByteString getField1213Bytes() { java.lang.Object ref = field1213_; @@ -35900,6 +36332,7 @@ public java.lang.String getField1213() { * string field_1214 = 1214; * @return The field1214. */ + @java.lang.Override public java.lang.String getField1214() { java.lang.Object ref = field1214_; if (ref instanceof java.lang.String) { @@ -35916,6 +36349,7 @@ public java.lang.String getField1214() { * string field_1214 = 1214; * @return The bytes for field1214. */ + @java.lang.Override public com.google.protobuf.ByteString getField1214Bytes() { java.lang.Object ref = field1214_; @@ -35936,6 +36370,7 @@ public java.lang.String getField1214() { * string field_1215 = 1215; * @return The field1215. */ + @java.lang.Override public java.lang.String getField1215() { java.lang.Object ref = field1215_; if (ref instanceof java.lang.String) { @@ -35952,6 +36387,7 @@ public java.lang.String getField1215() { * string field_1215 = 1215; * @return The bytes for field1215. */ + @java.lang.Override public com.google.protobuf.ByteString getField1215Bytes() { java.lang.Object ref = field1215_; @@ -35972,6 +36408,7 @@ public java.lang.String getField1215() { * string field_1216 = 1216; * @return The field1216. */ + @java.lang.Override public java.lang.String getField1216() { java.lang.Object ref = field1216_; if (ref instanceof java.lang.String) { @@ -35988,6 +36425,7 @@ public java.lang.String getField1216() { * string field_1216 = 1216; * @return The bytes for field1216. */ + @java.lang.Override public com.google.protobuf.ByteString getField1216Bytes() { java.lang.Object ref = field1216_; @@ -36008,6 +36446,7 @@ public java.lang.String getField1216() { * string field_1217 = 1217; * @return The field1217. */ + @java.lang.Override public java.lang.String getField1217() { java.lang.Object ref = field1217_; if (ref instanceof java.lang.String) { @@ -36024,6 +36463,7 @@ public java.lang.String getField1217() { * string field_1217 = 1217; * @return The bytes for field1217. */ + @java.lang.Override public com.google.protobuf.ByteString getField1217Bytes() { java.lang.Object ref = field1217_; @@ -36044,6 +36484,7 @@ public java.lang.String getField1217() { * string field_1218 = 1218; * @return The field1218. */ + @java.lang.Override public java.lang.String getField1218() { java.lang.Object ref = field1218_; if (ref instanceof java.lang.String) { @@ -36060,6 +36501,7 @@ public java.lang.String getField1218() { * string field_1218 = 1218; * @return The bytes for field1218. */ + @java.lang.Override public com.google.protobuf.ByteString getField1218Bytes() { java.lang.Object ref = field1218_; @@ -36080,6 +36522,7 @@ public java.lang.String getField1218() { * string field_1219 = 1219; * @return The field1219. */ + @java.lang.Override public java.lang.String getField1219() { java.lang.Object ref = field1219_; if (ref instanceof java.lang.String) { @@ -36096,6 +36539,7 @@ public java.lang.String getField1219() { * string field_1219 = 1219; * @return The bytes for field1219. */ + @java.lang.Override public com.google.protobuf.ByteString getField1219Bytes() { java.lang.Object ref = field1219_; @@ -36116,6 +36560,7 @@ public java.lang.String getField1219() { * string field_1220 = 1220; * @return The field1220. */ + @java.lang.Override public java.lang.String getField1220() { java.lang.Object ref = field1220_; if (ref instanceof java.lang.String) { @@ -36132,6 +36577,7 @@ public java.lang.String getField1220() { * string field_1220 = 1220; * @return The bytes for field1220. */ + @java.lang.Override public com.google.protobuf.ByteString getField1220Bytes() { java.lang.Object ref = field1220_; @@ -36152,6 +36598,7 @@ public java.lang.String getField1220() { * string field_1221 = 1221; * @return The field1221. */ + @java.lang.Override public java.lang.String getField1221() { java.lang.Object ref = field1221_; if (ref instanceof java.lang.String) { @@ -36168,6 +36615,7 @@ public java.lang.String getField1221() { * string field_1221 = 1221; * @return The bytes for field1221. */ + @java.lang.Override public com.google.protobuf.ByteString getField1221Bytes() { java.lang.Object ref = field1221_; @@ -36188,6 +36636,7 @@ public java.lang.String getField1221() { * string field_1222 = 1222; * @return The field1222. */ + @java.lang.Override public java.lang.String getField1222() { java.lang.Object ref = field1222_; if (ref instanceof java.lang.String) { @@ -36204,6 +36653,7 @@ public java.lang.String getField1222() { * string field_1222 = 1222; * @return The bytes for field1222. */ + @java.lang.Override public com.google.protobuf.ByteString getField1222Bytes() { java.lang.Object ref = field1222_; @@ -36224,6 +36674,7 @@ public java.lang.String getField1222() { * string field_1223 = 1223; * @return The field1223. */ + @java.lang.Override public java.lang.String getField1223() { java.lang.Object ref = field1223_; if (ref instanceof java.lang.String) { @@ -36240,6 +36691,7 @@ public java.lang.String getField1223() { * string field_1223 = 1223; * @return The bytes for field1223. */ + @java.lang.Override public com.google.protobuf.ByteString getField1223Bytes() { java.lang.Object ref = field1223_; @@ -36260,6 +36712,7 @@ public java.lang.String getField1223() { * string field_1224 = 1224; * @return The field1224. */ + @java.lang.Override public java.lang.String getField1224() { java.lang.Object ref = field1224_; if (ref instanceof java.lang.String) { @@ -36276,6 +36729,7 @@ public java.lang.String getField1224() { * string field_1224 = 1224; * @return The bytes for field1224. */ + @java.lang.Override public com.google.protobuf.ByteString getField1224Bytes() { java.lang.Object ref = field1224_; @@ -36296,6 +36750,7 @@ public java.lang.String getField1224() { * string field_1225 = 1225; * @return The field1225. */ + @java.lang.Override public java.lang.String getField1225() { java.lang.Object ref = field1225_; if (ref instanceof java.lang.String) { @@ -36312,6 +36767,7 @@ public java.lang.String getField1225() { * string field_1225 = 1225; * @return The bytes for field1225. */ + @java.lang.Override public com.google.protobuf.ByteString getField1225Bytes() { java.lang.Object ref = field1225_; @@ -36332,6 +36788,7 @@ public java.lang.String getField1225() { * string field_1226 = 1226; * @return The field1226. */ + @java.lang.Override public java.lang.String getField1226() { java.lang.Object ref = field1226_; if (ref instanceof java.lang.String) { @@ -36348,6 +36805,7 @@ public java.lang.String getField1226() { * string field_1226 = 1226; * @return The bytes for field1226. */ + @java.lang.Override public com.google.protobuf.ByteString getField1226Bytes() { java.lang.Object ref = field1226_; @@ -36368,6 +36826,7 @@ public java.lang.String getField1226() { * string field_1227 = 1227; * @return The field1227. */ + @java.lang.Override public java.lang.String getField1227() { java.lang.Object ref = field1227_; if (ref instanceof java.lang.String) { @@ -36384,6 +36843,7 @@ public java.lang.String getField1227() { * string field_1227 = 1227; * @return The bytes for field1227. */ + @java.lang.Override public com.google.protobuf.ByteString getField1227Bytes() { java.lang.Object ref = field1227_; @@ -36404,6 +36864,7 @@ public java.lang.String getField1227() { * string field_1228 = 1228; * @return The field1228. */ + @java.lang.Override public java.lang.String getField1228() { java.lang.Object ref = field1228_; if (ref instanceof java.lang.String) { @@ -36420,6 +36881,7 @@ public java.lang.String getField1228() { * string field_1228 = 1228; * @return The bytes for field1228. */ + @java.lang.Override public com.google.protobuf.ByteString getField1228Bytes() { java.lang.Object ref = field1228_; @@ -36440,6 +36902,7 @@ public java.lang.String getField1228() { * string field_1229 = 1229; * @return The field1229. */ + @java.lang.Override public java.lang.String getField1229() { java.lang.Object ref = field1229_; if (ref instanceof java.lang.String) { @@ -36456,6 +36919,7 @@ public java.lang.String getField1229() { * string field_1229 = 1229; * @return The bytes for field1229. */ + @java.lang.Override public com.google.protobuf.ByteString getField1229Bytes() { java.lang.Object ref = field1229_; @@ -36476,6 +36940,7 @@ public java.lang.String getField1229() { * string field_1230 = 1230; * @return The field1230. */ + @java.lang.Override public java.lang.String getField1230() { java.lang.Object ref = field1230_; if (ref instanceof java.lang.String) { @@ -36492,6 +36957,7 @@ public java.lang.String getField1230() { * string field_1230 = 1230; * @return The bytes for field1230. */ + @java.lang.Override public com.google.protobuf.ByteString getField1230Bytes() { java.lang.Object ref = field1230_; @@ -36512,6 +36978,7 @@ public java.lang.String getField1230() { * string field_1231 = 1231; * @return The field1231. */ + @java.lang.Override public java.lang.String getField1231() { java.lang.Object ref = field1231_; if (ref instanceof java.lang.String) { @@ -36528,6 +36995,7 @@ public java.lang.String getField1231() { * string field_1231 = 1231; * @return The bytes for field1231. */ + @java.lang.Override public com.google.protobuf.ByteString getField1231Bytes() { java.lang.Object ref = field1231_; @@ -36548,6 +37016,7 @@ public java.lang.String getField1231() { * string field_1232 = 1232; * @return The field1232. */ + @java.lang.Override public java.lang.String getField1232() { java.lang.Object ref = field1232_; if (ref instanceof java.lang.String) { @@ -36564,6 +37033,7 @@ public java.lang.String getField1232() { * string field_1232 = 1232; * @return The bytes for field1232. */ + @java.lang.Override public com.google.protobuf.ByteString getField1232Bytes() { java.lang.Object ref = field1232_; @@ -36584,6 +37054,7 @@ public java.lang.String getField1232() { * string field_1233 = 1233; * @return The field1233. */ + @java.lang.Override public java.lang.String getField1233() { java.lang.Object ref = field1233_; if (ref instanceof java.lang.String) { @@ -36600,6 +37071,7 @@ public java.lang.String getField1233() { * string field_1233 = 1233; * @return The bytes for field1233. */ + @java.lang.Override public com.google.protobuf.ByteString getField1233Bytes() { java.lang.Object ref = field1233_; @@ -36620,6 +37092,7 @@ public java.lang.String getField1233() { * string field_1234 = 1234; * @return The field1234. */ + @java.lang.Override public java.lang.String getField1234() { java.lang.Object ref = field1234_; if (ref instanceof java.lang.String) { @@ -36636,6 +37109,7 @@ public java.lang.String getField1234() { * string field_1234 = 1234; * @return The bytes for field1234. */ + @java.lang.Override public com.google.protobuf.ByteString getField1234Bytes() { java.lang.Object ref = field1234_; @@ -36656,6 +37130,7 @@ public java.lang.String getField1234() { * string field_1235 = 1235; * @return The field1235. */ + @java.lang.Override public java.lang.String getField1235() { java.lang.Object ref = field1235_; if (ref instanceof java.lang.String) { @@ -36672,6 +37147,7 @@ public java.lang.String getField1235() { * string field_1235 = 1235; * @return The bytes for field1235. */ + @java.lang.Override public com.google.protobuf.ByteString getField1235Bytes() { java.lang.Object ref = field1235_; @@ -36692,6 +37168,7 @@ public java.lang.String getField1235() { * string field_1236 = 1236; * @return The field1236. */ + @java.lang.Override public java.lang.String getField1236() { java.lang.Object ref = field1236_; if (ref instanceof java.lang.String) { @@ -36708,6 +37185,7 @@ public java.lang.String getField1236() { * string field_1236 = 1236; * @return The bytes for field1236. */ + @java.lang.Override public com.google.protobuf.ByteString getField1236Bytes() { java.lang.Object ref = field1236_; @@ -36728,6 +37206,7 @@ public java.lang.String getField1236() { * string field_1237 = 1237; * @return The field1237. */ + @java.lang.Override public java.lang.String getField1237() { java.lang.Object ref = field1237_; if (ref instanceof java.lang.String) { @@ -36744,6 +37223,7 @@ public java.lang.String getField1237() { * string field_1237 = 1237; * @return The bytes for field1237. */ + @java.lang.Override public com.google.protobuf.ByteString getField1237Bytes() { java.lang.Object ref = field1237_; @@ -36764,6 +37244,7 @@ public java.lang.String getField1237() { * string field_1238 = 1238; * @return The field1238. */ + @java.lang.Override public java.lang.String getField1238() { java.lang.Object ref = field1238_; if (ref instanceof java.lang.String) { @@ -36780,6 +37261,7 @@ public java.lang.String getField1238() { * string field_1238 = 1238; * @return The bytes for field1238. */ + @java.lang.Override public com.google.protobuf.ByteString getField1238Bytes() { java.lang.Object ref = field1238_; @@ -36800,6 +37282,7 @@ public java.lang.String getField1238() { * string field_1239 = 1239; * @return The field1239. */ + @java.lang.Override public java.lang.String getField1239() { java.lang.Object ref = field1239_; if (ref instanceof java.lang.String) { @@ -36816,6 +37299,7 @@ public java.lang.String getField1239() { * string field_1239 = 1239; * @return The bytes for field1239. */ + @java.lang.Override public com.google.protobuf.ByteString getField1239Bytes() { java.lang.Object ref = field1239_; @@ -36836,6 +37320,7 @@ public java.lang.String getField1239() { * string field_1240 = 1240; * @return The field1240. */ + @java.lang.Override public java.lang.String getField1240() { java.lang.Object ref = field1240_; if (ref instanceof java.lang.String) { @@ -36852,6 +37337,7 @@ public java.lang.String getField1240() { * string field_1240 = 1240; * @return The bytes for field1240. */ + @java.lang.Override public com.google.protobuf.ByteString getField1240Bytes() { java.lang.Object ref = field1240_; @@ -36872,6 +37358,7 @@ public java.lang.String getField1240() { * string field_1241 = 1241; * @return The field1241. */ + @java.lang.Override public java.lang.String getField1241() { java.lang.Object ref = field1241_; if (ref instanceof java.lang.String) { @@ -36888,6 +37375,7 @@ public java.lang.String getField1241() { * string field_1241 = 1241; * @return The bytes for field1241. */ + @java.lang.Override public com.google.protobuf.ByteString getField1241Bytes() { java.lang.Object ref = field1241_; @@ -36908,6 +37396,7 @@ public java.lang.String getField1241() { * string field_1242 = 1242; * @return The field1242. */ + @java.lang.Override public java.lang.String getField1242() { java.lang.Object ref = field1242_; if (ref instanceof java.lang.String) { @@ -36924,6 +37413,7 @@ public java.lang.String getField1242() { * string field_1242 = 1242; * @return The bytes for field1242. */ + @java.lang.Override public com.google.protobuf.ByteString getField1242Bytes() { java.lang.Object ref = field1242_; @@ -36944,6 +37434,7 @@ public java.lang.String getField1242() { * string field_1243 = 1243; * @return The field1243. */ + @java.lang.Override public java.lang.String getField1243() { java.lang.Object ref = field1243_; if (ref instanceof java.lang.String) { @@ -36960,6 +37451,7 @@ public java.lang.String getField1243() { * string field_1243 = 1243; * @return The bytes for field1243. */ + @java.lang.Override public com.google.protobuf.ByteString getField1243Bytes() { java.lang.Object ref = field1243_; @@ -36980,6 +37472,7 @@ public java.lang.String getField1243() { * string field_1244 = 1244; * @return The field1244. */ + @java.lang.Override public java.lang.String getField1244() { java.lang.Object ref = field1244_; if (ref instanceof java.lang.String) { @@ -36996,6 +37489,7 @@ public java.lang.String getField1244() { * string field_1244 = 1244; * @return The bytes for field1244. */ + @java.lang.Override public com.google.protobuf.ByteString getField1244Bytes() { java.lang.Object ref = field1244_; @@ -37016,6 +37510,7 @@ public java.lang.String getField1244() { * string field_1245 = 1245; * @return The field1245. */ + @java.lang.Override public java.lang.String getField1245() { java.lang.Object ref = field1245_; if (ref instanceof java.lang.String) { @@ -37032,6 +37527,7 @@ public java.lang.String getField1245() { * string field_1245 = 1245; * @return The bytes for field1245. */ + @java.lang.Override public com.google.protobuf.ByteString getField1245Bytes() { java.lang.Object ref = field1245_; @@ -37052,6 +37548,7 @@ public java.lang.String getField1245() { * string field_1246 = 1246; * @return The field1246. */ + @java.lang.Override public java.lang.String getField1246() { java.lang.Object ref = field1246_; if (ref instanceof java.lang.String) { @@ -37068,6 +37565,7 @@ public java.lang.String getField1246() { * string field_1246 = 1246; * @return The bytes for field1246. */ + @java.lang.Override public com.google.protobuf.ByteString getField1246Bytes() { java.lang.Object ref = field1246_; @@ -37088,6 +37586,7 @@ public java.lang.String getField1246() { * string field_1247 = 1247; * @return The field1247. */ + @java.lang.Override public java.lang.String getField1247() { java.lang.Object ref = field1247_; if (ref instanceof java.lang.String) { @@ -37104,6 +37603,7 @@ public java.lang.String getField1247() { * string field_1247 = 1247; * @return The bytes for field1247. */ + @java.lang.Override public com.google.protobuf.ByteString getField1247Bytes() { java.lang.Object ref = field1247_; @@ -37124,6 +37624,7 @@ public java.lang.String getField1247() { * string field_1248 = 1248; * @return The field1248. */ + @java.lang.Override public java.lang.String getField1248() { java.lang.Object ref = field1248_; if (ref instanceof java.lang.String) { @@ -37140,6 +37641,7 @@ public java.lang.String getField1248() { * string field_1248 = 1248; * @return The bytes for field1248. */ + @java.lang.Override public com.google.protobuf.ByteString getField1248Bytes() { java.lang.Object ref = field1248_; @@ -37160,6 +37662,7 @@ public java.lang.String getField1248() { * string field_1249 = 1249; * @return The field1249. */ + @java.lang.Override public java.lang.String getField1249() { java.lang.Object ref = field1249_; if (ref instanceof java.lang.String) { @@ -37176,6 +37679,7 @@ public java.lang.String getField1249() { * string field_1249 = 1249; * @return The bytes for field1249. */ + @java.lang.Override public com.google.protobuf.ByteString getField1249Bytes() { java.lang.Object ref = field1249_; @@ -37196,6 +37700,7 @@ public java.lang.String getField1249() { * string field_1250 = 1250; * @return The field1250. */ + @java.lang.Override public java.lang.String getField1250() { java.lang.Object ref = field1250_; if (ref instanceof java.lang.String) { @@ -37212,6 +37717,7 @@ public java.lang.String getField1250() { * string field_1250 = 1250; * @return The bytes for field1250. */ + @java.lang.Override public com.google.protobuf.ByteString getField1250Bytes() { java.lang.Object ref = field1250_; @@ -37232,6 +37738,7 @@ public java.lang.String getField1250() { * string field_1251 = 1251; * @return The field1251. */ + @java.lang.Override public java.lang.String getField1251() { java.lang.Object ref = field1251_; if (ref instanceof java.lang.String) { @@ -37248,6 +37755,7 @@ public java.lang.String getField1251() { * string field_1251 = 1251; * @return The bytes for field1251. */ + @java.lang.Override public com.google.protobuf.ByteString getField1251Bytes() { java.lang.Object ref = field1251_; @@ -37268,6 +37776,7 @@ public java.lang.String getField1251() { * string field_1252 = 1252; * @return The field1252. */ + @java.lang.Override public java.lang.String getField1252() { java.lang.Object ref = field1252_; if (ref instanceof java.lang.String) { @@ -37284,6 +37793,7 @@ public java.lang.String getField1252() { * string field_1252 = 1252; * @return The bytes for field1252. */ + @java.lang.Override public com.google.protobuf.ByteString getField1252Bytes() { java.lang.Object ref = field1252_; @@ -37304,6 +37814,7 @@ public java.lang.String getField1252() { * string field_1253 = 1253; * @return The field1253. */ + @java.lang.Override public java.lang.String getField1253() { java.lang.Object ref = field1253_; if (ref instanceof java.lang.String) { @@ -37320,6 +37831,7 @@ public java.lang.String getField1253() { * string field_1253 = 1253; * @return The bytes for field1253. */ + @java.lang.Override public com.google.protobuf.ByteString getField1253Bytes() { java.lang.Object ref = field1253_; @@ -37340,6 +37852,7 @@ public java.lang.String getField1253() { * string field_1254 = 1254; * @return The field1254. */ + @java.lang.Override public java.lang.String getField1254() { java.lang.Object ref = field1254_; if (ref instanceof java.lang.String) { @@ -37356,6 +37869,7 @@ public java.lang.String getField1254() { * string field_1254 = 1254; * @return The bytes for field1254. */ + @java.lang.Override public com.google.protobuf.ByteString getField1254Bytes() { java.lang.Object ref = field1254_; @@ -37376,6 +37890,7 @@ public java.lang.String getField1254() { * string field_1255 = 1255; * @return The field1255. */ + @java.lang.Override public java.lang.String getField1255() { java.lang.Object ref = field1255_; if (ref instanceof java.lang.String) { @@ -37392,6 +37907,7 @@ public java.lang.String getField1255() { * string field_1255 = 1255; * @return The bytes for field1255. */ + @java.lang.Override public com.google.protobuf.ByteString getField1255Bytes() { java.lang.Object ref = field1255_; @@ -37412,6 +37928,7 @@ public java.lang.String getField1255() { * string field_1256 = 1256; * @return The field1256. */ + @java.lang.Override public java.lang.String getField1256() { java.lang.Object ref = field1256_; if (ref instanceof java.lang.String) { @@ -37428,6 +37945,7 @@ public java.lang.String getField1256() { * string field_1256 = 1256; * @return The bytes for field1256. */ + @java.lang.Override public com.google.protobuf.ByteString getField1256Bytes() { java.lang.Object ref = field1256_; @@ -37448,6 +37966,7 @@ public java.lang.String getField1256() { * string field_1257 = 1257; * @return The field1257. */ + @java.lang.Override public java.lang.String getField1257() { java.lang.Object ref = field1257_; if (ref instanceof java.lang.String) { @@ -37464,6 +37983,7 @@ public java.lang.String getField1257() { * string field_1257 = 1257; * @return The bytes for field1257. */ + @java.lang.Override public com.google.protobuf.ByteString getField1257Bytes() { java.lang.Object ref = field1257_; @@ -37484,6 +38004,7 @@ public java.lang.String getField1257() { * string field_1258 = 1258; * @return The field1258. */ + @java.lang.Override public java.lang.String getField1258() { java.lang.Object ref = field1258_; if (ref instanceof java.lang.String) { @@ -37500,6 +38021,7 @@ public java.lang.String getField1258() { * string field_1258 = 1258; * @return The bytes for field1258. */ + @java.lang.Override public com.google.protobuf.ByteString getField1258Bytes() { java.lang.Object ref = field1258_; @@ -37520,6 +38042,7 @@ public java.lang.String getField1258() { * string field_1259 = 1259; * @return The field1259. */ + @java.lang.Override public java.lang.String getField1259() { java.lang.Object ref = field1259_; if (ref instanceof java.lang.String) { @@ -37536,6 +38059,7 @@ public java.lang.String getField1259() { * string field_1259 = 1259; * @return The bytes for field1259. */ + @java.lang.Override public com.google.protobuf.ByteString getField1259Bytes() { java.lang.Object ref = field1259_; @@ -37556,6 +38080,7 @@ public java.lang.String getField1259() { * string field_1260 = 1260; * @return The field1260. */ + @java.lang.Override public java.lang.String getField1260() { java.lang.Object ref = field1260_; if (ref instanceof java.lang.String) { @@ -37572,6 +38097,7 @@ public java.lang.String getField1260() { * string field_1260 = 1260; * @return The bytes for field1260. */ + @java.lang.Override public com.google.protobuf.ByteString getField1260Bytes() { java.lang.Object ref = field1260_; @@ -37592,6 +38118,7 @@ public java.lang.String getField1260() { * string field_1261 = 1261; * @return The field1261. */ + @java.lang.Override public java.lang.String getField1261() { java.lang.Object ref = field1261_; if (ref instanceof java.lang.String) { @@ -37608,6 +38135,7 @@ public java.lang.String getField1261() { * string field_1261 = 1261; * @return The bytes for field1261. */ + @java.lang.Override public com.google.protobuf.ByteString getField1261Bytes() { java.lang.Object ref = field1261_; @@ -37628,6 +38156,7 @@ public java.lang.String getField1261() { * string field_1262 = 1262; * @return The field1262. */ + @java.lang.Override public java.lang.String getField1262() { java.lang.Object ref = field1262_; if (ref instanceof java.lang.String) { @@ -37644,6 +38173,7 @@ public java.lang.String getField1262() { * string field_1262 = 1262; * @return The bytes for field1262. */ + @java.lang.Override public com.google.protobuf.ByteString getField1262Bytes() { java.lang.Object ref = field1262_; @@ -37664,6 +38194,7 @@ public java.lang.String getField1262() { * string field_1263 = 1263; * @return The field1263. */ + @java.lang.Override public java.lang.String getField1263() { java.lang.Object ref = field1263_; if (ref instanceof java.lang.String) { @@ -37680,6 +38211,7 @@ public java.lang.String getField1263() { * string field_1263 = 1263; * @return The bytes for field1263. */ + @java.lang.Override public com.google.protobuf.ByteString getField1263Bytes() { java.lang.Object ref = field1263_; @@ -37700,6 +38232,7 @@ public java.lang.String getField1263() { * string field_1264 = 1264; * @return The field1264. */ + @java.lang.Override public java.lang.String getField1264() { java.lang.Object ref = field1264_; if (ref instanceof java.lang.String) { @@ -37716,6 +38249,7 @@ public java.lang.String getField1264() { * string field_1264 = 1264; * @return The bytes for field1264. */ + @java.lang.Override public com.google.protobuf.ByteString getField1264Bytes() { java.lang.Object ref = field1264_; @@ -37736,6 +38270,7 @@ public java.lang.String getField1264() { * string field_1265 = 1265; * @return The field1265. */ + @java.lang.Override public java.lang.String getField1265() { java.lang.Object ref = field1265_; if (ref instanceof java.lang.String) { @@ -37752,6 +38287,7 @@ public java.lang.String getField1265() { * string field_1265 = 1265; * @return The bytes for field1265. */ + @java.lang.Override public com.google.protobuf.ByteString getField1265Bytes() { java.lang.Object ref = field1265_; @@ -37772,6 +38308,7 @@ public java.lang.String getField1265() { * string field_1266 = 1266; * @return The field1266. */ + @java.lang.Override public java.lang.String getField1266() { java.lang.Object ref = field1266_; if (ref instanceof java.lang.String) { @@ -37788,6 +38325,7 @@ public java.lang.String getField1266() { * string field_1266 = 1266; * @return The bytes for field1266. */ + @java.lang.Override public com.google.protobuf.ByteString getField1266Bytes() { java.lang.Object ref = field1266_; @@ -37808,6 +38346,7 @@ public java.lang.String getField1266() { * string field_1267 = 1267; * @return The field1267. */ + @java.lang.Override public java.lang.String getField1267() { java.lang.Object ref = field1267_; if (ref instanceof java.lang.String) { @@ -37824,6 +38363,7 @@ public java.lang.String getField1267() { * string field_1267 = 1267; * @return The bytes for field1267. */ + @java.lang.Override public com.google.protobuf.ByteString getField1267Bytes() { java.lang.Object ref = field1267_; @@ -37844,6 +38384,7 @@ public java.lang.String getField1267() { * string field_1268 = 1268; * @return The field1268. */ + @java.lang.Override public java.lang.String getField1268() { java.lang.Object ref = field1268_; if (ref instanceof java.lang.String) { @@ -37860,6 +38401,7 @@ public java.lang.String getField1268() { * string field_1268 = 1268; * @return The bytes for field1268. */ + @java.lang.Override public com.google.protobuf.ByteString getField1268Bytes() { java.lang.Object ref = field1268_; @@ -37880,6 +38422,7 @@ public java.lang.String getField1268() { * string field_1269 = 1269; * @return The field1269. */ + @java.lang.Override public java.lang.String getField1269() { java.lang.Object ref = field1269_; if (ref instanceof java.lang.String) { @@ -37896,6 +38439,7 @@ public java.lang.String getField1269() { * string field_1269 = 1269; * @return The bytes for field1269. */ + @java.lang.Override public com.google.protobuf.ByteString getField1269Bytes() { java.lang.Object ref = field1269_; @@ -37916,6 +38460,7 @@ public java.lang.String getField1269() { * string field_1270 = 1270; * @return The field1270. */ + @java.lang.Override public java.lang.String getField1270() { java.lang.Object ref = field1270_; if (ref instanceof java.lang.String) { @@ -37932,6 +38477,7 @@ public java.lang.String getField1270() { * string field_1270 = 1270; * @return The bytes for field1270. */ + @java.lang.Override public com.google.protobuf.ByteString getField1270Bytes() { java.lang.Object ref = field1270_; @@ -37952,6 +38498,7 @@ public java.lang.String getField1270() { * string field_1271 = 1271; * @return The field1271. */ + @java.lang.Override public java.lang.String getField1271() { java.lang.Object ref = field1271_; if (ref instanceof java.lang.String) { @@ -37968,6 +38515,7 @@ public java.lang.String getField1271() { * string field_1271 = 1271; * @return The bytes for field1271. */ + @java.lang.Override public com.google.protobuf.ByteString getField1271Bytes() { java.lang.Object ref = field1271_; @@ -37988,6 +38536,7 @@ public java.lang.String getField1271() { * string field_1272 = 1272; * @return The field1272. */ + @java.lang.Override public java.lang.String getField1272() { java.lang.Object ref = field1272_; if (ref instanceof java.lang.String) { @@ -38004,6 +38553,7 @@ public java.lang.String getField1272() { * string field_1272 = 1272; * @return The bytes for field1272. */ + @java.lang.Override public com.google.protobuf.ByteString getField1272Bytes() { java.lang.Object ref = field1272_; @@ -38024,6 +38574,7 @@ public java.lang.String getField1272() { * string field_1273 = 1273; * @return The field1273. */ + @java.lang.Override public java.lang.String getField1273() { java.lang.Object ref = field1273_; if (ref instanceof java.lang.String) { @@ -38040,6 +38591,7 @@ public java.lang.String getField1273() { * string field_1273 = 1273; * @return The bytes for field1273. */ + @java.lang.Override public com.google.protobuf.ByteString getField1273Bytes() { java.lang.Object ref = field1273_; @@ -38060,6 +38612,7 @@ public java.lang.String getField1273() { * string field_1274 = 1274; * @return The field1274. */ + @java.lang.Override public java.lang.String getField1274() { java.lang.Object ref = field1274_; if (ref instanceof java.lang.String) { @@ -38076,6 +38629,7 @@ public java.lang.String getField1274() { * string field_1274 = 1274; * @return The bytes for field1274. */ + @java.lang.Override public com.google.protobuf.ByteString getField1274Bytes() { java.lang.Object ref = field1274_; @@ -38096,6 +38650,7 @@ public java.lang.String getField1274() { * string field_1275 = 1275; * @return The field1275. */ + @java.lang.Override public java.lang.String getField1275() { java.lang.Object ref = field1275_; if (ref instanceof java.lang.String) { @@ -38112,6 +38667,7 @@ public java.lang.String getField1275() { * string field_1275 = 1275; * @return The bytes for field1275. */ + @java.lang.Override public com.google.protobuf.ByteString getField1275Bytes() { java.lang.Object ref = field1275_; @@ -38132,6 +38688,7 @@ public java.lang.String getField1275() { * string field_1276 = 1276; * @return The field1276. */ + @java.lang.Override public java.lang.String getField1276() { java.lang.Object ref = field1276_; if (ref instanceof java.lang.String) { @@ -38148,6 +38705,7 @@ public java.lang.String getField1276() { * string field_1276 = 1276; * @return The bytes for field1276. */ + @java.lang.Override public com.google.protobuf.ByteString getField1276Bytes() { java.lang.Object ref = field1276_; @@ -38168,6 +38726,7 @@ public java.lang.String getField1276() { * string field_1277 = 1277; * @return The field1277. */ + @java.lang.Override public java.lang.String getField1277() { java.lang.Object ref = field1277_; if (ref instanceof java.lang.String) { @@ -38184,6 +38743,7 @@ public java.lang.String getField1277() { * string field_1277 = 1277; * @return The bytes for field1277. */ + @java.lang.Override public com.google.protobuf.ByteString getField1277Bytes() { java.lang.Object ref = field1277_; @@ -38204,6 +38764,7 @@ public java.lang.String getField1277() { * string field_1278 = 1278; * @return The field1278. */ + @java.lang.Override public java.lang.String getField1278() { java.lang.Object ref = field1278_; if (ref instanceof java.lang.String) { @@ -38220,6 +38781,7 @@ public java.lang.String getField1278() { * string field_1278 = 1278; * @return The bytes for field1278. */ + @java.lang.Override public com.google.protobuf.ByteString getField1278Bytes() { java.lang.Object ref = field1278_; @@ -38240,6 +38802,7 @@ public java.lang.String getField1278() { * string field_1279 = 1279; * @return The field1279. */ + @java.lang.Override public java.lang.String getField1279() { java.lang.Object ref = field1279_; if (ref instanceof java.lang.String) { @@ -38256,6 +38819,7 @@ public java.lang.String getField1279() { * string field_1279 = 1279; * @return The bytes for field1279. */ + @java.lang.Override public com.google.protobuf.ByteString getField1279Bytes() { java.lang.Object ref = field1279_; @@ -38276,6 +38840,7 @@ public java.lang.String getField1279() { * string field_1280 = 1280; * @return The field1280. */ + @java.lang.Override public java.lang.String getField1280() { java.lang.Object ref = field1280_; if (ref instanceof java.lang.String) { @@ -38292,6 +38857,7 @@ public java.lang.String getField1280() { * string field_1280 = 1280; * @return The bytes for field1280. */ + @java.lang.Override public com.google.protobuf.ByteString getField1280Bytes() { java.lang.Object ref = field1280_; @@ -38312,6 +38878,7 @@ public java.lang.String getField1280() { * string field_1281 = 1281; * @return The field1281. */ + @java.lang.Override public java.lang.String getField1281() { java.lang.Object ref = field1281_; if (ref instanceof java.lang.String) { @@ -38328,6 +38895,7 @@ public java.lang.String getField1281() { * string field_1281 = 1281; * @return The bytes for field1281. */ + @java.lang.Override public com.google.protobuf.ByteString getField1281Bytes() { java.lang.Object ref = field1281_; @@ -38348,6 +38916,7 @@ public java.lang.String getField1281() { * string field_1282 = 1282; * @return The field1282. */ + @java.lang.Override public java.lang.String getField1282() { java.lang.Object ref = field1282_; if (ref instanceof java.lang.String) { @@ -38364,6 +38933,7 @@ public java.lang.String getField1282() { * string field_1282 = 1282; * @return The bytes for field1282. */ + @java.lang.Override public com.google.protobuf.ByteString getField1282Bytes() { java.lang.Object ref = field1282_; @@ -38384,6 +38954,7 @@ public java.lang.String getField1282() { * string field_1283 = 1283; * @return The field1283. */ + @java.lang.Override public java.lang.String getField1283() { java.lang.Object ref = field1283_; if (ref instanceof java.lang.String) { @@ -38400,6 +38971,7 @@ public java.lang.String getField1283() { * string field_1283 = 1283; * @return The bytes for field1283. */ + @java.lang.Override public com.google.protobuf.ByteString getField1283Bytes() { java.lang.Object ref = field1283_; @@ -38420,6 +38992,7 @@ public java.lang.String getField1283() { * string field_1284 = 1284; * @return The field1284. */ + @java.lang.Override public java.lang.String getField1284() { java.lang.Object ref = field1284_; if (ref instanceof java.lang.String) { @@ -38436,6 +39009,7 @@ public java.lang.String getField1284() { * string field_1284 = 1284; * @return The bytes for field1284. */ + @java.lang.Override public com.google.protobuf.ByteString getField1284Bytes() { java.lang.Object ref = field1284_; @@ -38456,6 +39030,7 @@ public java.lang.String getField1284() { * string field_1285 = 1285; * @return The field1285. */ + @java.lang.Override public java.lang.String getField1285() { java.lang.Object ref = field1285_; if (ref instanceof java.lang.String) { @@ -38472,6 +39047,7 @@ public java.lang.String getField1285() { * string field_1285 = 1285; * @return The bytes for field1285. */ + @java.lang.Override public com.google.protobuf.ByteString getField1285Bytes() { java.lang.Object ref = field1285_; @@ -38492,6 +39068,7 @@ public java.lang.String getField1285() { * string field_1286 = 1286; * @return The field1286. */ + @java.lang.Override public java.lang.String getField1286() { java.lang.Object ref = field1286_; if (ref instanceof java.lang.String) { @@ -38508,6 +39085,7 @@ public java.lang.String getField1286() { * string field_1286 = 1286; * @return The bytes for field1286. */ + @java.lang.Override public com.google.protobuf.ByteString getField1286Bytes() { java.lang.Object ref = field1286_; @@ -38528,6 +39106,7 @@ public java.lang.String getField1286() { * string field_1287 = 1287; * @return The field1287. */ + @java.lang.Override public java.lang.String getField1287() { java.lang.Object ref = field1287_; if (ref instanceof java.lang.String) { @@ -38544,6 +39123,7 @@ public java.lang.String getField1287() { * string field_1287 = 1287; * @return The bytes for field1287. */ + @java.lang.Override public com.google.protobuf.ByteString getField1287Bytes() { java.lang.Object ref = field1287_; @@ -38564,6 +39144,7 @@ public java.lang.String getField1287() { * string field_1288 = 1288; * @return The field1288. */ + @java.lang.Override public java.lang.String getField1288() { java.lang.Object ref = field1288_; if (ref instanceof java.lang.String) { @@ -38580,6 +39161,7 @@ public java.lang.String getField1288() { * string field_1288 = 1288; * @return The bytes for field1288. */ + @java.lang.Override public com.google.protobuf.ByteString getField1288Bytes() { java.lang.Object ref = field1288_; @@ -38600,6 +39182,7 @@ public java.lang.String getField1288() { * string field_1289 = 1289; * @return The field1289. */ + @java.lang.Override public java.lang.String getField1289() { java.lang.Object ref = field1289_; if (ref instanceof java.lang.String) { @@ -38616,6 +39199,7 @@ public java.lang.String getField1289() { * string field_1289 = 1289; * @return The bytes for field1289. */ + @java.lang.Override public com.google.protobuf.ByteString getField1289Bytes() { java.lang.Object ref = field1289_; @@ -38636,6 +39220,7 @@ public java.lang.String getField1289() { * string field_1290 = 1290; * @return The field1290. */ + @java.lang.Override public java.lang.String getField1290() { java.lang.Object ref = field1290_; if (ref instanceof java.lang.String) { @@ -38652,6 +39237,7 @@ public java.lang.String getField1290() { * string field_1290 = 1290; * @return The bytes for field1290. */ + @java.lang.Override public com.google.protobuf.ByteString getField1290Bytes() { java.lang.Object ref = field1290_; @@ -38672,6 +39258,7 @@ public java.lang.String getField1290() { * string field_1291 = 1291; * @return The field1291. */ + @java.lang.Override public java.lang.String getField1291() { java.lang.Object ref = field1291_; if (ref instanceof java.lang.String) { @@ -38688,6 +39275,7 @@ public java.lang.String getField1291() { * string field_1291 = 1291; * @return The bytes for field1291. */ + @java.lang.Override public com.google.protobuf.ByteString getField1291Bytes() { java.lang.Object ref = field1291_; @@ -38708,6 +39296,7 @@ public java.lang.String getField1291() { * string field_1292 = 1292; * @return The field1292. */ + @java.lang.Override public java.lang.String getField1292() { java.lang.Object ref = field1292_; if (ref instanceof java.lang.String) { @@ -38724,6 +39313,7 @@ public java.lang.String getField1292() { * string field_1292 = 1292; * @return The bytes for field1292. */ + @java.lang.Override public com.google.protobuf.ByteString getField1292Bytes() { java.lang.Object ref = field1292_; @@ -38744,6 +39334,7 @@ public java.lang.String getField1292() { * string field_1293 = 1293; * @return The field1293. */ + @java.lang.Override public java.lang.String getField1293() { java.lang.Object ref = field1293_; if (ref instanceof java.lang.String) { @@ -38760,6 +39351,7 @@ public java.lang.String getField1293() { * string field_1293 = 1293; * @return The bytes for field1293. */ + @java.lang.Override public com.google.protobuf.ByteString getField1293Bytes() { java.lang.Object ref = field1293_; @@ -38780,6 +39372,7 @@ public java.lang.String getField1293() { * string field_1294 = 1294; * @return The field1294. */ + @java.lang.Override public java.lang.String getField1294() { java.lang.Object ref = field1294_; if (ref instanceof java.lang.String) { @@ -38796,6 +39389,7 @@ public java.lang.String getField1294() { * string field_1294 = 1294; * @return The bytes for field1294. */ + @java.lang.Override public com.google.protobuf.ByteString getField1294Bytes() { java.lang.Object ref = field1294_; @@ -38816,6 +39410,7 @@ public java.lang.String getField1294() { * string field_1295 = 1295; * @return The field1295. */ + @java.lang.Override public java.lang.String getField1295() { java.lang.Object ref = field1295_; if (ref instanceof java.lang.String) { @@ -38832,6 +39427,7 @@ public java.lang.String getField1295() { * string field_1295 = 1295; * @return The bytes for field1295. */ + @java.lang.Override public com.google.protobuf.ByteString getField1295Bytes() { java.lang.Object ref = field1295_; @@ -38852,6 +39448,7 @@ public java.lang.String getField1295() { * string field_1296 = 1296; * @return The field1296. */ + @java.lang.Override public java.lang.String getField1296() { java.lang.Object ref = field1296_; if (ref instanceof java.lang.String) { @@ -38868,6 +39465,7 @@ public java.lang.String getField1296() { * string field_1296 = 1296; * @return The bytes for field1296. */ + @java.lang.Override public com.google.protobuf.ByteString getField1296Bytes() { java.lang.Object ref = field1296_; @@ -38888,6 +39486,7 @@ public java.lang.String getField1296() { * string field_1297 = 1297; * @return The field1297. */ + @java.lang.Override public java.lang.String getField1297() { java.lang.Object ref = field1297_; if (ref instanceof java.lang.String) { @@ -38904,6 +39503,7 @@ public java.lang.String getField1297() { * string field_1297 = 1297; * @return The bytes for field1297. */ + @java.lang.Override public com.google.protobuf.ByteString getField1297Bytes() { java.lang.Object ref = field1297_; @@ -38924,6 +39524,7 @@ public java.lang.String getField1297() { * string field_1298 = 1298; * @return The field1298. */ + @java.lang.Override public java.lang.String getField1298() { java.lang.Object ref = field1298_; if (ref instanceof java.lang.String) { @@ -38940,6 +39541,7 @@ public java.lang.String getField1298() { * string field_1298 = 1298; * @return The bytes for field1298. */ + @java.lang.Override public com.google.protobuf.ByteString getField1298Bytes() { java.lang.Object ref = field1298_; @@ -38960,6 +39562,7 @@ public java.lang.String getField1298() { * string field_1299 = 1299; * @return The field1299. */ + @java.lang.Override public java.lang.String getField1299() { java.lang.Object ref = field1299_; if (ref instanceof java.lang.String) { @@ -38976,6 +39579,7 @@ public java.lang.String getField1299() { * string field_1299 = 1299; * @return The bytes for field1299. */ + @java.lang.Override public com.google.protobuf.ByteString getField1299Bytes() { java.lang.Object ref = field1299_; @@ -38996,6 +39600,7 @@ public java.lang.String getField1299() { * string field_1300 = 1300; * @return The field1300. */ + @java.lang.Override public java.lang.String getField1300() { java.lang.Object ref = field1300_; if (ref instanceof java.lang.String) { @@ -39012,6 +39617,7 @@ public java.lang.String getField1300() { * string field_1300 = 1300; * @return The bytes for field1300. */ + @java.lang.Override public com.google.protobuf.ByteString getField1300Bytes() { java.lang.Object ref = field1300_; @@ -39032,6 +39638,7 @@ public java.lang.String getField1300() { * string field_1301 = 1301; * @return The field1301. */ + @java.lang.Override public java.lang.String getField1301() { java.lang.Object ref = field1301_; if (ref instanceof java.lang.String) { @@ -39048,6 +39655,7 @@ public java.lang.String getField1301() { * string field_1301 = 1301; * @return The bytes for field1301. */ + @java.lang.Override public com.google.protobuf.ByteString getField1301Bytes() { java.lang.Object ref = field1301_; @@ -39068,6 +39676,7 @@ public java.lang.String getField1301() { * string field_1302 = 1302; * @return The field1302. */ + @java.lang.Override public java.lang.String getField1302() { java.lang.Object ref = field1302_; if (ref instanceof java.lang.String) { @@ -39084,6 +39693,7 @@ public java.lang.String getField1302() { * string field_1302 = 1302; * @return The bytes for field1302. */ + @java.lang.Override public com.google.protobuf.ByteString getField1302Bytes() { java.lang.Object ref = field1302_; @@ -39104,6 +39714,7 @@ public java.lang.String getField1302() { * string field_1303 = 1303; * @return The field1303. */ + @java.lang.Override public java.lang.String getField1303() { java.lang.Object ref = field1303_; if (ref instanceof java.lang.String) { @@ -39120,6 +39731,7 @@ public java.lang.String getField1303() { * string field_1303 = 1303; * @return The bytes for field1303. */ + @java.lang.Override public com.google.protobuf.ByteString getField1303Bytes() { java.lang.Object ref = field1303_; @@ -39140,6 +39752,7 @@ public java.lang.String getField1303() { * string field_1304 = 1304; * @return The field1304. */ + @java.lang.Override public java.lang.String getField1304() { java.lang.Object ref = field1304_; if (ref instanceof java.lang.String) { @@ -39156,6 +39769,7 @@ public java.lang.String getField1304() { * string field_1304 = 1304; * @return The bytes for field1304. */ + @java.lang.Override public com.google.protobuf.ByteString getField1304Bytes() { java.lang.Object ref = field1304_; @@ -39176,6 +39790,7 @@ public java.lang.String getField1304() { * string field_1305 = 1305; * @return The field1305. */ + @java.lang.Override public java.lang.String getField1305() { java.lang.Object ref = field1305_; if (ref instanceof java.lang.String) { @@ -39192,6 +39807,7 @@ public java.lang.String getField1305() { * string field_1305 = 1305; * @return The bytes for field1305. */ + @java.lang.Override public com.google.protobuf.ByteString getField1305Bytes() { java.lang.Object ref = field1305_; @@ -39212,6 +39828,7 @@ public java.lang.String getField1305() { * string field_1306 = 1306; * @return The field1306. */ + @java.lang.Override public java.lang.String getField1306() { java.lang.Object ref = field1306_; if (ref instanceof java.lang.String) { @@ -39228,6 +39845,7 @@ public java.lang.String getField1306() { * string field_1306 = 1306; * @return The bytes for field1306. */ + @java.lang.Override public com.google.protobuf.ByteString getField1306Bytes() { java.lang.Object ref = field1306_; @@ -39248,6 +39866,7 @@ public java.lang.String getField1306() { * string field_1307 = 1307; * @return The field1307. */ + @java.lang.Override public java.lang.String getField1307() { java.lang.Object ref = field1307_; if (ref instanceof java.lang.String) { @@ -39264,6 +39883,7 @@ public java.lang.String getField1307() { * string field_1307 = 1307; * @return The bytes for field1307. */ + @java.lang.Override public com.google.protobuf.ByteString getField1307Bytes() { java.lang.Object ref = field1307_; @@ -39284,6 +39904,7 @@ public java.lang.String getField1307() { * string field_1308 = 1308; * @return The field1308. */ + @java.lang.Override public java.lang.String getField1308() { java.lang.Object ref = field1308_; if (ref instanceof java.lang.String) { @@ -39300,6 +39921,7 @@ public java.lang.String getField1308() { * string field_1308 = 1308; * @return The bytes for field1308. */ + @java.lang.Override public com.google.protobuf.ByteString getField1308Bytes() { java.lang.Object ref = field1308_; @@ -39320,6 +39942,7 @@ public java.lang.String getField1308() { * string field_1309 = 1309; * @return The field1309. */ + @java.lang.Override public java.lang.String getField1309() { java.lang.Object ref = field1309_; if (ref instanceof java.lang.String) { @@ -39336,6 +39959,7 @@ public java.lang.String getField1309() { * string field_1309 = 1309; * @return The bytes for field1309. */ + @java.lang.Override public com.google.protobuf.ByteString getField1309Bytes() { java.lang.Object ref = field1309_; @@ -39356,6 +39980,7 @@ public java.lang.String getField1309() { * string field_1310 = 1310; * @return The field1310. */ + @java.lang.Override public java.lang.String getField1310() { java.lang.Object ref = field1310_; if (ref instanceof java.lang.String) { @@ -39372,6 +39997,7 @@ public java.lang.String getField1310() { * string field_1310 = 1310; * @return The bytes for field1310. */ + @java.lang.Override public com.google.protobuf.ByteString getField1310Bytes() { java.lang.Object ref = field1310_; @@ -39392,6 +40018,7 @@ public java.lang.String getField1310() { * string field_1311 = 1311; * @return The field1311. */ + @java.lang.Override public java.lang.String getField1311() { java.lang.Object ref = field1311_; if (ref instanceof java.lang.String) { @@ -39408,6 +40035,7 @@ public java.lang.String getField1311() { * string field_1311 = 1311; * @return The bytes for field1311. */ + @java.lang.Override public com.google.protobuf.ByteString getField1311Bytes() { java.lang.Object ref = field1311_; @@ -39428,6 +40056,7 @@ public java.lang.String getField1311() { * string field_1312 = 1312; * @return The field1312. */ + @java.lang.Override public java.lang.String getField1312() { java.lang.Object ref = field1312_; if (ref instanceof java.lang.String) { @@ -39444,6 +40073,7 @@ public java.lang.String getField1312() { * string field_1312 = 1312; * @return The bytes for field1312. */ + @java.lang.Override public com.google.protobuf.ByteString getField1312Bytes() { java.lang.Object ref = field1312_; @@ -39464,6 +40094,7 @@ public java.lang.String getField1312() { * string field_1313 = 1313; * @return The field1313. */ + @java.lang.Override public java.lang.String getField1313() { java.lang.Object ref = field1313_; if (ref instanceof java.lang.String) { @@ -39480,6 +40111,7 @@ public java.lang.String getField1313() { * string field_1313 = 1313; * @return The bytes for field1313. */ + @java.lang.Override public com.google.protobuf.ByteString getField1313Bytes() { java.lang.Object ref = field1313_; @@ -39500,6 +40132,7 @@ public java.lang.String getField1313() { * string field_1314 = 1314; * @return The field1314. */ + @java.lang.Override public java.lang.String getField1314() { java.lang.Object ref = field1314_; if (ref instanceof java.lang.String) { @@ -39516,6 +40149,7 @@ public java.lang.String getField1314() { * string field_1314 = 1314; * @return The bytes for field1314. */ + @java.lang.Override public com.google.protobuf.ByteString getField1314Bytes() { java.lang.Object ref = field1314_; @@ -39536,6 +40170,7 @@ public java.lang.String getField1314() { * string field_1315 = 1315; * @return The field1315. */ + @java.lang.Override public java.lang.String getField1315() { java.lang.Object ref = field1315_; if (ref instanceof java.lang.String) { @@ -39552,6 +40187,7 @@ public java.lang.String getField1315() { * string field_1315 = 1315; * @return The bytes for field1315. */ + @java.lang.Override public com.google.protobuf.ByteString getField1315Bytes() { java.lang.Object ref = field1315_; @@ -39572,6 +40208,7 @@ public java.lang.String getField1315() { * string field_1316 = 1316; * @return The field1316. */ + @java.lang.Override public java.lang.String getField1316() { java.lang.Object ref = field1316_; if (ref instanceof java.lang.String) { @@ -39588,6 +40225,7 @@ public java.lang.String getField1316() { * string field_1316 = 1316; * @return The bytes for field1316. */ + @java.lang.Override public com.google.protobuf.ByteString getField1316Bytes() { java.lang.Object ref = field1316_; @@ -39608,6 +40246,7 @@ public java.lang.String getField1316() { * string field_1317 = 1317; * @return The field1317. */ + @java.lang.Override public java.lang.String getField1317() { java.lang.Object ref = field1317_; if (ref instanceof java.lang.String) { @@ -39624,6 +40263,7 @@ public java.lang.String getField1317() { * string field_1317 = 1317; * @return The bytes for field1317. */ + @java.lang.Override public com.google.protobuf.ByteString getField1317Bytes() { java.lang.Object ref = field1317_; @@ -39644,6 +40284,7 @@ public java.lang.String getField1317() { * string field_1318 = 1318; * @return The field1318. */ + @java.lang.Override public java.lang.String getField1318() { java.lang.Object ref = field1318_; if (ref instanceof java.lang.String) { @@ -39660,6 +40301,7 @@ public java.lang.String getField1318() { * string field_1318 = 1318; * @return The bytes for field1318. */ + @java.lang.Override public com.google.protobuf.ByteString getField1318Bytes() { java.lang.Object ref = field1318_; @@ -39680,6 +40322,7 @@ public java.lang.String getField1318() { * string field_1319 = 1319; * @return The field1319. */ + @java.lang.Override public java.lang.String getField1319() { java.lang.Object ref = field1319_; if (ref instanceof java.lang.String) { @@ -39696,6 +40339,7 @@ public java.lang.String getField1319() { * string field_1319 = 1319; * @return The bytes for field1319. */ + @java.lang.Override public com.google.protobuf.ByteString getField1319Bytes() { java.lang.Object ref = field1319_; @@ -39716,6 +40360,7 @@ public java.lang.String getField1319() { * string field_1320 = 1320; * @return The field1320. */ + @java.lang.Override public java.lang.String getField1320() { java.lang.Object ref = field1320_; if (ref instanceof java.lang.String) { @@ -39732,6 +40377,7 @@ public java.lang.String getField1320() { * string field_1320 = 1320; * @return The bytes for field1320. */ + @java.lang.Override public com.google.protobuf.ByteString getField1320Bytes() { java.lang.Object ref = field1320_; @@ -39752,6 +40398,7 @@ public java.lang.String getField1320() { * string field_1321 = 1321; * @return The field1321. */ + @java.lang.Override public java.lang.String getField1321() { java.lang.Object ref = field1321_; if (ref instanceof java.lang.String) { @@ -39768,6 +40415,7 @@ public java.lang.String getField1321() { * string field_1321 = 1321; * @return The bytes for field1321. */ + @java.lang.Override public com.google.protobuf.ByteString getField1321Bytes() { java.lang.Object ref = field1321_; @@ -39788,6 +40436,7 @@ public java.lang.String getField1321() { * string field_1322 = 1322; * @return The field1322. */ + @java.lang.Override public java.lang.String getField1322() { java.lang.Object ref = field1322_; if (ref instanceof java.lang.String) { @@ -39804,6 +40453,7 @@ public java.lang.String getField1322() { * string field_1322 = 1322; * @return The bytes for field1322. */ + @java.lang.Override public com.google.protobuf.ByteString getField1322Bytes() { java.lang.Object ref = field1322_; @@ -39824,6 +40474,7 @@ public java.lang.String getField1322() { * string field_1323 = 1323; * @return The field1323. */ + @java.lang.Override public java.lang.String getField1323() { java.lang.Object ref = field1323_; if (ref instanceof java.lang.String) { @@ -39840,6 +40491,7 @@ public java.lang.String getField1323() { * string field_1323 = 1323; * @return The bytes for field1323. */ + @java.lang.Override public com.google.protobuf.ByteString getField1323Bytes() { java.lang.Object ref = field1323_; @@ -39860,6 +40512,7 @@ public java.lang.String getField1323() { * string field_1324 = 1324; * @return The field1324. */ + @java.lang.Override public java.lang.String getField1324() { java.lang.Object ref = field1324_; if (ref instanceof java.lang.String) { @@ -39876,6 +40529,7 @@ public java.lang.String getField1324() { * string field_1324 = 1324; * @return The bytes for field1324. */ + @java.lang.Override public com.google.protobuf.ByteString getField1324Bytes() { java.lang.Object ref = field1324_; @@ -39896,6 +40550,7 @@ public java.lang.String getField1324() { * string field_1325 = 1325; * @return The field1325. */ + @java.lang.Override public java.lang.String getField1325() { java.lang.Object ref = field1325_; if (ref instanceof java.lang.String) { @@ -39912,6 +40567,7 @@ public java.lang.String getField1325() { * string field_1325 = 1325; * @return The bytes for field1325. */ + @java.lang.Override public com.google.protobuf.ByteString getField1325Bytes() { java.lang.Object ref = field1325_; @@ -39932,6 +40588,7 @@ public java.lang.String getField1325() { * string field_1326 = 1326; * @return The field1326. */ + @java.lang.Override public java.lang.String getField1326() { java.lang.Object ref = field1326_; if (ref instanceof java.lang.String) { @@ -39948,6 +40605,7 @@ public java.lang.String getField1326() { * string field_1326 = 1326; * @return The bytes for field1326. */ + @java.lang.Override public com.google.protobuf.ByteString getField1326Bytes() { java.lang.Object ref = field1326_; @@ -39968,6 +40626,7 @@ public java.lang.String getField1326() { * string field_1327 = 1327; * @return The field1327. */ + @java.lang.Override public java.lang.String getField1327() { java.lang.Object ref = field1327_; if (ref instanceof java.lang.String) { @@ -39984,6 +40643,7 @@ public java.lang.String getField1327() { * string field_1327 = 1327; * @return The bytes for field1327. */ + @java.lang.Override public com.google.protobuf.ByteString getField1327Bytes() { java.lang.Object ref = field1327_; @@ -40004,6 +40664,7 @@ public java.lang.String getField1327() { * string field_1328 = 1328; * @return The field1328. */ + @java.lang.Override public java.lang.String getField1328() { java.lang.Object ref = field1328_; if (ref instanceof java.lang.String) { @@ -40020,6 +40681,7 @@ public java.lang.String getField1328() { * string field_1328 = 1328; * @return The bytes for field1328. */ + @java.lang.Override public com.google.protobuf.ByteString getField1328Bytes() { java.lang.Object ref = field1328_; @@ -40040,6 +40702,7 @@ public java.lang.String getField1328() { * string field_1329 = 1329; * @return The field1329. */ + @java.lang.Override public java.lang.String getField1329() { java.lang.Object ref = field1329_; if (ref instanceof java.lang.String) { @@ -40056,6 +40719,7 @@ public java.lang.String getField1329() { * string field_1329 = 1329; * @return The bytes for field1329. */ + @java.lang.Override public com.google.protobuf.ByteString getField1329Bytes() { java.lang.Object ref = field1329_; @@ -40076,6 +40740,7 @@ public java.lang.String getField1329() { * string field_1330 = 1330; * @return The field1330. */ + @java.lang.Override public java.lang.String getField1330() { java.lang.Object ref = field1330_; if (ref instanceof java.lang.String) { @@ -40092,6 +40757,7 @@ public java.lang.String getField1330() { * string field_1330 = 1330; * @return The bytes for field1330. */ + @java.lang.Override public com.google.protobuf.ByteString getField1330Bytes() { java.lang.Object ref = field1330_; @@ -40112,6 +40778,7 @@ public java.lang.String getField1330() { * string field_1331 = 1331; * @return The field1331. */ + @java.lang.Override public java.lang.String getField1331() { java.lang.Object ref = field1331_; if (ref instanceof java.lang.String) { @@ -40128,6 +40795,7 @@ public java.lang.String getField1331() { * string field_1331 = 1331; * @return The bytes for field1331. */ + @java.lang.Override public com.google.protobuf.ByteString getField1331Bytes() { java.lang.Object ref = field1331_; @@ -40148,6 +40816,7 @@ public java.lang.String getField1331() { * string field_1332 = 1332; * @return The field1332. */ + @java.lang.Override public java.lang.String getField1332() { java.lang.Object ref = field1332_; if (ref instanceof java.lang.String) { @@ -40164,6 +40833,7 @@ public java.lang.String getField1332() { * string field_1332 = 1332; * @return The bytes for field1332. */ + @java.lang.Override public com.google.protobuf.ByteString getField1332Bytes() { java.lang.Object ref = field1332_; @@ -40184,6 +40854,7 @@ public java.lang.String getField1332() { * string field_1333 = 1333; * @return The field1333. */ + @java.lang.Override public java.lang.String getField1333() { java.lang.Object ref = field1333_; if (ref instanceof java.lang.String) { @@ -40200,6 +40871,7 @@ public java.lang.String getField1333() { * string field_1333 = 1333; * @return The bytes for field1333. */ + @java.lang.Override public com.google.protobuf.ByteString getField1333Bytes() { java.lang.Object ref = field1333_; @@ -40220,6 +40892,7 @@ public java.lang.String getField1333() { * string field_1334 = 1334; * @return The field1334. */ + @java.lang.Override public java.lang.String getField1334() { java.lang.Object ref = field1334_; if (ref instanceof java.lang.String) { @@ -40236,6 +40909,7 @@ public java.lang.String getField1334() { * string field_1334 = 1334; * @return The bytes for field1334. */ + @java.lang.Override public com.google.protobuf.ByteString getField1334Bytes() { java.lang.Object ref = field1334_; @@ -40256,6 +40930,7 @@ public java.lang.String getField1334() { * string field_1335 = 1335; * @return The field1335. */ + @java.lang.Override public java.lang.String getField1335() { java.lang.Object ref = field1335_; if (ref instanceof java.lang.String) { @@ -40272,6 +40947,7 @@ public java.lang.String getField1335() { * string field_1335 = 1335; * @return The bytes for field1335. */ + @java.lang.Override public com.google.protobuf.ByteString getField1335Bytes() { java.lang.Object ref = field1335_; @@ -40292,6 +40968,7 @@ public java.lang.String getField1335() { * string field_1336 = 1336; * @return The field1336. */ + @java.lang.Override public java.lang.String getField1336() { java.lang.Object ref = field1336_; if (ref instanceof java.lang.String) { @@ -40308,6 +40985,7 @@ public java.lang.String getField1336() { * string field_1336 = 1336; * @return The bytes for field1336. */ + @java.lang.Override public com.google.protobuf.ByteString getField1336Bytes() { java.lang.Object ref = field1336_; @@ -40328,6 +41006,7 @@ public java.lang.String getField1336() { * string field_1337 = 1337; * @return The field1337. */ + @java.lang.Override public java.lang.String getField1337() { java.lang.Object ref = field1337_; if (ref instanceof java.lang.String) { @@ -40344,6 +41023,7 @@ public java.lang.String getField1337() { * string field_1337 = 1337; * @return The bytes for field1337. */ + @java.lang.Override public com.google.protobuf.ByteString getField1337Bytes() { java.lang.Object ref = field1337_; @@ -40364,6 +41044,7 @@ public java.lang.String getField1337() { * string field_1338 = 1338; * @return The field1338. */ + @java.lang.Override public java.lang.String getField1338() { java.lang.Object ref = field1338_; if (ref instanceof java.lang.String) { @@ -40380,6 +41061,7 @@ public java.lang.String getField1338() { * string field_1338 = 1338; * @return The bytes for field1338. */ + @java.lang.Override public com.google.protobuf.ByteString getField1338Bytes() { java.lang.Object ref = field1338_; @@ -40400,6 +41082,7 @@ public java.lang.String getField1338() { * string field_1339 = 1339; * @return The field1339. */ + @java.lang.Override public java.lang.String getField1339() { java.lang.Object ref = field1339_; if (ref instanceof java.lang.String) { @@ -40416,6 +41099,7 @@ public java.lang.String getField1339() { * string field_1339 = 1339; * @return The bytes for field1339. */ + @java.lang.Override public com.google.protobuf.ByteString getField1339Bytes() { java.lang.Object ref = field1339_; @@ -40436,6 +41120,7 @@ public java.lang.String getField1339() { * string field_1340 = 1340; * @return The field1340. */ + @java.lang.Override public java.lang.String getField1340() { java.lang.Object ref = field1340_; if (ref instanceof java.lang.String) { @@ -40452,6 +41137,7 @@ public java.lang.String getField1340() { * string field_1340 = 1340; * @return The bytes for field1340. */ + @java.lang.Override public com.google.protobuf.ByteString getField1340Bytes() { java.lang.Object ref = field1340_; @@ -40472,6 +41158,7 @@ public java.lang.String getField1340() { * string field_1341 = 1341; * @return The field1341. */ + @java.lang.Override public java.lang.String getField1341() { java.lang.Object ref = field1341_; if (ref instanceof java.lang.String) { @@ -40488,6 +41175,7 @@ public java.lang.String getField1341() { * string field_1341 = 1341; * @return The bytes for field1341. */ + @java.lang.Override public com.google.protobuf.ByteString getField1341Bytes() { java.lang.Object ref = field1341_; @@ -40508,6 +41196,7 @@ public java.lang.String getField1341() { * string field_1342 = 1342; * @return The field1342. */ + @java.lang.Override public java.lang.String getField1342() { java.lang.Object ref = field1342_; if (ref instanceof java.lang.String) { @@ -40524,6 +41213,7 @@ public java.lang.String getField1342() { * string field_1342 = 1342; * @return The bytes for field1342. */ + @java.lang.Override public com.google.protobuf.ByteString getField1342Bytes() { java.lang.Object ref = field1342_; @@ -40544,6 +41234,7 @@ public java.lang.String getField1342() { * string field_1343 = 1343; * @return The field1343. */ + @java.lang.Override public java.lang.String getField1343() { java.lang.Object ref = field1343_; if (ref instanceof java.lang.String) { @@ -40560,6 +41251,7 @@ public java.lang.String getField1343() { * string field_1343 = 1343; * @return The bytes for field1343. */ + @java.lang.Override public com.google.protobuf.ByteString getField1343Bytes() { java.lang.Object ref = field1343_; @@ -40580,6 +41272,7 @@ public java.lang.String getField1343() { * string field_1344 = 1344; * @return The field1344. */ + @java.lang.Override public java.lang.String getField1344() { java.lang.Object ref = field1344_; if (ref instanceof java.lang.String) { @@ -40596,6 +41289,7 @@ public java.lang.String getField1344() { * string field_1344 = 1344; * @return The bytes for field1344. */ + @java.lang.Override public com.google.protobuf.ByteString getField1344Bytes() { java.lang.Object ref = field1344_; @@ -40616,6 +41310,7 @@ public java.lang.String getField1344() { * string field_1345 = 1345; * @return The field1345. */ + @java.lang.Override public java.lang.String getField1345() { java.lang.Object ref = field1345_; if (ref instanceof java.lang.String) { @@ -40632,6 +41327,7 @@ public java.lang.String getField1345() { * string field_1345 = 1345; * @return The bytes for field1345. */ + @java.lang.Override public com.google.protobuf.ByteString getField1345Bytes() { java.lang.Object ref = field1345_; @@ -40652,6 +41348,7 @@ public java.lang.String getField1345() { * string field_1346 = 1346; * @return The field1346. */ + @java.lang.Override public java.lang.String getField1346() { java.lang.Object ref = field1346_; if (ref instanceof java.lang.String) { @@ -40668,6 +41365,7 @@ public java.lang.String getField1346() { * string field_1346 = 1346; * @return The bytes for field1346. */ + @java.lang.Override public com.google.protobuf.ByteString getField1346Bytes() { java.lang.Object ref = field1346_; @@ -40688,6 +41386,7 @@ public java.lang.String getField1346() { * string field_1347 = 1347; * @return The field1347. */ + @java.lang.Override public java.lang.String getField1347() { java.lang.Object ref = field1347_; if (ref instanceof java.lang.String) { @@ -40704,6 +41403,7 @@ public java.lang.String getField1347() { * string field_1347 = 1347; * @return The bytes for field1347. */ + @java.lang.Override public com.google.protobuf.ByteString getField1347Bytes() { java.lang.Object ref = field1347_; @@ -40724,6 +41424,7 @@ public java.lang.String getField1347() { * string field_1348 = 1348; * @return The field1348. */ + @java.lang.Override public java.lang.String getField1348() { java.lang.Object ref = field1348_; if (ref instanceof java.lang.String) { @@ -40740,6 +41441,7 @@ public java.lang.String getField1348() { * string field_1348 = 1348; * @return The bytes for field1348. */ + @java.lang.Override public com.google.protobuf.ByteString getField1348Bytes() { java.lang.Object ref = field1348_; @@ -40760,6 +41462,7 @@ public java.lang.String getField1348() { * string field_1349 = 1349; * @return The field1349. */ + @java.lang.Override public java.lang.String getField1349() { java.lang.Object ref = field1349_; if (ref instanceof java.lang.String) { @@ -40776,6 +41479,7 @@ public java.lang.String getField1349() { * string field_1349 = 1349; * @return The bytes for field1349. */ + @java.lang.Override public com.google.protobuf.ByteString getField1349Bytes() { java.lang.Object ref = field1349_; @@ -40796,6 +41500,7 @@ public java.lang.String getField1349() { * string field_1350 = 1350; * @return The field1350. */ + @java.lang.Override public java.lang.String getField1350() { java.lang.Object ref = field1350_; if (ref instanceof java.lang.String) { @@ -40812,6 +41517,7 @@ public java.lang.String getField1350() { * string field_1350 = 1350; * @return The bytes for field1350. */ + @java.lang.Override public com.google.protobuf.ByteString getField1350Bytes() { java.lang.Object ref = field1350_; @@ -40832,6 +41538,7 @@ public java.lang.String getField1350() { * string field_1351 = 1351; * @return The field1351. */ + @java.lang.Override public java.lang.String getField1351() { java.lang.Object ref = field1351_; if (ref instanceof java.lang.String) { @@ -40848,6 +41555,7 @@ public java.lang.String getField1351() { * string field_1351 = 1351; * @return The bytes for field1351. */ + @java.lang.Override public com.google.protobuf.ByteString getField1351Bytes() { java.lang.Object ref = field1351_; @@ -40868,6 +41576,7 @@ public java.lang.String getField1351() { * string field_1352 = 1352; * @return The field1352. */ + @java.lang.Override public java.lang.String getField1352() { java.lang.Object ref = field1352_; if (ref instanceof java.lang.String) { @@ -40884,6 +41593,7 @@ public java.lang.String getField1352() { * string field_1352 = 1352; * @return The bytes for field1352. */ + @java.lang.Override public com.google.protobuf.ByteString getField1352Bytes() { java.lang.Object ref = field1352_; @@ -40904,6 +41614,7 @@ public java.lang.String getField1352() { * string field_1353 = 1353; * @return The field1353. */ + @java.lang.Override public java.lang.String getField1353() { java.lang.Object ref = field1353_; if (ref instanceof java.lang.String) { @@ -40920,6 +41631,7 @@ public java.lang.String getField1353() { * string field_1353 = 1353; * @return The bytes for field1353. */ + @java.lang.Override public com.google.protobuf.ByteString getField1353Bytes() { java.lang.Object ref = field1353_; @@ -40940,6 +41652,7 @@ public java.lang.String getField1353() { * string field_1354 = 1354; * @return The field1354. */ + @java.lang.Override public java.lang.String getField1354() { java.lang.Object ref = field1354_; if (ref instanceof java.lang.String) { @@ -40956,6 +41669,7 @@ public java.lang.String getField1354() { * string field_1354 = 1354; * @return The bytes for field1354. */ + @java.lang.Override public com.google.protobuf.ByteString getField1354Bytes() { java.lang.Object ref = field1354_; @@ -40976,6 +41690,7 @@ public java.lang.String getField1354() { * string field_1355 = 1355; * @return The field1355. */ + @java.lang.Override public java.lang.String getField1355() { java.lang.Object ref = field1355_; if (ref instanceof java.lang.String) { @@ -40992,6 +41707,7 @@ public java.lang.String getField1355() { * string field_1355 = 1355; * @return The bytes for field1355. */ + @java.lang.Override public com.google.protobuf.ByteString getField1355Bytes() { java.lang.Object ref = field1355_; @@ -41012,6 +41728,7 @@ public java.lang.String getField1355() { * string field_1356 = 1356; * @return The field1356. */ + @java.lang.Override public java.lang.String getField1356() { java.lang.Object ref = field1356_; if (ref instanceof java.lang.String) { @@ -41028,6 +41745,7 @@ public java.lang.String getField1356() { * string field_1356 = 1356; * @return The bytes for field1356. */ + @java.lang.Override public com.google.protobuf.ByteString getField1356Bytes() { java.lang.Object ref = field1356_; @@ -41048,6 +41766,7 @@ public java.lang.String getField1356() { * string field_1357 = 1357; * @return The field1357. */ + @java.lang.Override public java.lang.String getField1357() { java.lang.Object ref = field1357_; if (ref instanceof java.lang.String) { @@ -41064,6 +41783,7 @@ public java.lang.String getField1357() { * string field_1357 = 1357; * @return The bytes for field1357. */ + @java.lang.Override public com.google.protobuf.ByteString getField1357Bytes() { java.lang.Object ref = field1357_; @@ -41084,6 +41804,7 @@ public java.lang.String getField1357() { * string field_1358 = 1358; * @return The field1358. */ + @java.lang.Override public java.lang.String getField1358() { java.lang.Object ref = field1358_; if (ref instanceof java.lang.String) { @@ -41100,6 +41821,7 @@ public java.lang.String getField1358() { * string field_1358 = 1358; * @return The bytes for field1358. */ + @java.lang.Override public com.google.protobuf.ByteString getField1358Bytes() { java.lang.Object ref = field1358_; @@ -41120,6 +41842,7 @@ public java.lang.String getField1358() { * string field_1359 = 1359; * @return The field1359. */ + @java.lang.Override public java.lang.String getField1359() { java.lang.Object ref = field1359_; if (ref instanceof java.lang.String) { @@ -41136,6 +41859,7 @@ public java.lang.String getField1359() { * string field_1359 = 1359; * @return The bytes for field1359. */ + @java.lang.Override public com.google.protobuf.ByteString getField1359Bytes() { java.lang.Object ref = field1359_; @@ -41156,6 +41880,7 @@ public java.lang.String getField1359() { * string field_1360 = 1360; * @return The field1360. */ + @java.lang.Override public java.lang.String getField1360() { java.lang.Object ref = field1360_; if (ref instanceof java.lang.String) { @@ -41172,6 +41897,7 @@ public java.lang.String getField1360() { * string field_1360 = 1360; * @return The bytes for field1360. */ + @java.lang.Override public com.google.protobuf.ByteString getField1360Bytes() { java.lang.Object ref = field1360_; @@ -41192,6 +41918,7 @@ public java.lang.String getField1360() { * string field_1361 = 1361; * @return The field1361. */ + @java.lang.Override public java.lang.String getField1361() { java.lang.Object ref = field1361_; if (ref instanceof java.lang.String) { @@ -41208,6 +41935,7 @@ public java.lang.String getField1361() { * string field_1361 = 1361; * @return The bytes for field1361. */ + @java.lang.Override public com.google.protobuf.ByteString getField1361Bytes() { java.lang.Object ref = field1361_; @@ -41228,6 +41956,7 @@ public java.lang.String getField1361() { * string field_1362 = 1362; * @return The field1362. */ + @java.lang.Override public java.lang.String getField1362() { java.lang.Object ref = field1362_; if (ref instanceof java.lang.String) { @@ -41244,6 +41973,7 @@ public java.lang.String getField1362() { * string field_1362 = 1362; * @return The bytes for field1362. */ + @java.lang.Override public com.google.protobuf.ByteString getField1362Bytes() { java.lang.Object ref = field1362_; @@ -41264,6 +41994,7 @@ public java.lang.String getField1362() { * string field_1363 = 1363; * @return The field1363. */ + @java.lang.Override public java.lang.String getField1363() { java.lang.Object ref = field1363_; if (ref instanceof java.lang.String) { @@ -41280,6 +42011,7 @@ public java.lang.String getField1363() { * string field_1363 = 1363; * @return The bytes for field1363. */ + @java.lang.Override public com.google.protobuf.ByteString getField1363Bytes() { java.lang.Object ref = field1363_; @@ -41300,6 +42032,7 @@ public java.lang.String getField1363() { * string field_1364 = 1364; * @return The field1364. */ + @java.lang.Override public java.lang.String getField1364() { java.lang.Object ref = field1364_; if (ref instanceof java.lang.String) { @@ -41316,6 +42049,7 @@ public java.lang.String getField1364() { * string field_1364 = 1364; * @return The bytes for field1364. */ + @java.lang.Override public com.google.protobuf.ByteString getField1364Bytes() { java.lang.Object ref = field1364_; @@ -41336,6 +42070,7 @@ public java.lang.String getField1364() { * string field_1365 = 1365; * @return The field1365. */ + @java.lang.Override public java.lang.String getField1365() { java.lang.Object ref = field1365_; if (ref instanceof java.lang.String) { @@ -41352,6 +42087,7 @@ public java.lang.String getField1365() { * string field_1365 = 1365; * @return The bytes for field1365. */ + @java.lang.Override public com.google.protobuf.ByteString getField1365Bytes() { java.lang.Object ref = field1365_; @@ -41372,6 +42108,7 @@ public java.lang.String getField1365() { * string field_1366 = 1366; * @return The field1366. */ + @java.lang.Override public java.lang.String getField1366() { java.lang.Object ref = field1366_; if (ref instanceof java.lang.String) { @@ -41388,6 +42125,7 @@ public java.lang.String getField1366() { * string field_1366 = 1366; * @return The bytes for field1366. */ + @java.lang.Override public com.google.protobuf.ByteString getField1366Bytes() { java.lang.Object ref = field1366_; @@ -41408,6 +42146,7 @@ public java.lang.String getField1366() { * string field_1367 = 1367; * @return The field1367. */ + @java.lang.Override public java.lang.String getField1367() { java.lang.Object ref = field1367_; if (ref instanceof java.lang.String) { @@ -41424,6 +42163,7 @@ public java.lang.String getField1367() { * string field_1367 = 1367; * @return The bytes for field1367. */ + @java.lang.Override public com.google.protobuf.ByteString getField1367Bytes() { java.lang.Object ref = field1367_; @@ -41444,6 +42184,7 @@ public java.lang.String getField1367() { * string field_1368 = 1368; * @return The field1368. */ + @java.lang.Override public java.lang.String getField1368() { java.lang.Object ref = field1368_; if (ref instanceof java.lang.String) { @@ -41460,6 +42201,7 @@ public java.lang.String getField1368() { * string field_1368 = 1368; * @return The bytes for field1368. */ + @java.lang.Override public com.google.protobuf.ByteString getField1368Bytes() { java.lang.Object ref = field1368_; @@ -41480,6 +42222,7 @@ public java.lang.String getField1368() { * string field_1369 = 1369; * @return The field1369. */ + @java.lang.Override public java.lang.String getField1369() { java.lang.Object ref = field1369_; if (ref instanceof java.lang.String) { @@ -41496,6 +42239,7 @@ public java.lang.String getField1369() { * string field_1369 = 1369; * @return The bytes for field1369. */ + @java.lang.Override public com.google.protobuf.ByteString getField1369Bytes() { java.lang.Object ref = field1369_; @@ -41516,6 +42260,7 @@ public java.lang.String getField1369() { * string field_1370 = 1370; * @return The field1370. */ + @java.lang.Override public java.lang.String getField1370() { java.lang.Object ref = field1370_; if (ref instanceof java.lang.String) { @@ -41532,6 +42277,7 @@ public java.lang.String getField1370() { * string field_1370 = 1370; * @return The bytes for field1370. */ + @java.lang.Override public com.google.protobuf.ByteString getField1370Bytes() { java.lang.Object ref = field1370_; @@ -41552,6 +42298,7 @@ public java.lang.String getField1370() { * string field_1371 = 1371; * @return The field1371. */ + @java.lang.Override public java.lang.String getField1371() { java.lang.Object ref = field1371_; if (ref instanceof java.lang.String) { @@ -41568,6 +42315,7 @@ public java.lang.String getField1371() { * string field_1371 = 1371; * @return The bytes for field1371. */ + @java.lang.Override public com.google.protobuf.ByteString getField1371Bytes() { java.lang.Object ref = field1371_; @@ -41588,6 +42336,7 @@ public java.lang.String getField1371() { * string field_1372 = 1372; * @return The field1372. */ + @java.lang.Override public java.lang.String getField1372() { java.lang.Object ref = field1372_; if (ref instanceof java.lang.String) { @@ -41604,6 +42353,7 @@ public java.lang.String getField1372() { * string field_1372 = 1372; * @return The bytes for field1372. */ + @java.lang.Override public com.google.protobuf.ByteString getField1372Bytes() { java.lang.Object ref = field1372_; @@ -41624,6 +42374,7 @@ public java.lang.String getField1372() { * string field_1373 = 1373; * @return The field1373. */ + @java.lang.Override public java.lang.String getField1373() { java.lang.Object ref = field1373_; if (ref instanceof java.lang.String) { @@ -41640,6 +42391,7 @@ public java.lang.String getField1373() { * string field_1373 = 1373; * @return The bytes for field1373. */ + @java.lang.Override public com.google.protobuf.ByteString getField1373Bytes() { java.lang.Object ref = field1373_; @@ -41660,6 +42412,7 @@ public java.lang.String getField1373() { * string field_1374 = 1374; * @return The field1374. */ + @java.lang.Override public java.lang.String getField1374() { java.lang.Object ref = field1374_; if (ref instanceof java.lang.String) { @@ -41676,6 +42429,7 @@ public java.lang.String getField1374() { * string field_1374 = 1374; * @return The bytes for field1374. */ + @java.lang.Override public com.google.protobuf.ByteString getField1374Bytes() { java.lang.Object ref = field1374_; @@ -41696,6 +42450,7 @@ public java.lang.String getField1374() { * string field_1375 = 1375; * @return The field1375. */ + @java.lang.Override public java.lang.String getField1375() { java.lang.Object ref = field1375_; if (ref instanceof java.lang.String) { @@ -41712,6 +42467,7 @@ public java.lang.String getField1375() { * string field_1375 = 1375; * @return The bytes for field1375. */ + @java.lang.Override public com.google.protobuf.ByteString getField1375Bytes() { java.lang.Object ref = field1375_; @@ -41732,6 +42488,7 @@ public java.lang.String getField1375() { * string field_1376 = 1376; * @return The field1376. */ + @java.lang.Override public java.lang.String getField1376() { java.lang.Object ref = field1376_; if (ref instanceof java.lang.String) { @@ -41748,6 +42505,7 @@ public java.lang.String getField1376() { * string field_1376 = 1376; * @return The bytes for field1376. */ + @java.lang.Override public com.google.protobuf.ByteString getField1376Bytes() { java.lang.Object ref = field1376_; @@ -41768,6 +42526,7 @@ public java.lang.String getField1376() { * string field_1377 = 1377; * @return The field1377. */ + @java.lang.Override public java.lang.String getField1377() { java.lang.Object ref = field1377_; if (ref instanceof java.lang.String) { @@ -41784,6 +42543,7 @@ public java.lang.String getField1377() { * string field_1377 = 1377; * @return The bytes for field1377. */ + @java.lang.Override public com.google.protobuf.ByteString getField1377Bytes() { java.lang.Object ref = field1377_; @@ -41804,6 +42564,7 @@ public java.lang.String getField1377() { * string field_1378 = 1378; * @return The field1378. */ + @java.lang.Override public java.lang.String getField1378() { java.lang.Object ref = field1378_; if (ref instanceof java.lang.String) { @@ -41820,6 +42581,7 @@ public java.lang.String getField1378() { * string field_1378 = 1378; * @return The bytes for field1378. */ + @java.lang.Override public com.google.protobuf.ByteString getField1378Bytes() { java.lang.Object ref = field1378_; @@ -41840,6 +42602,7 @@ public java.lang.String getField1378() { * string field_1379 = 1379; * @return The field1379. */ + @java.lang.Override public java.lang.String getField1379() { java.lang.Object ref = field1379_; if (ref instanceof java.lang.String) { @@ -41856,6 +42619,7 @@ public java.lang.String getField1379() { * string field_1379 = 1379; * @return The bytes for field1379. */ + @java.lang.Override public com.google.protobuf.ByteString getField1379Bytes() { java.lang.Object ref = field1379_; @@ -41876,6 +42640,7 @@ public java.lang.String getField1379() { * string field_1380 = 1380; * @return The field1380. */ + @java.lang.Override public java.lang.String getField1380() { java.lang.Object ref = field1380_; if (ref instanceof java.lang.String) { @@ -41892,6 +42657,7 @@ public java.lang.String getField1380() { * string field_1380 = 1380; * @return The bytes for field1380. */ + @java.lang.Override public com.google.protobuf.ByteString getField1380Bytes() { java.lang.Object ref = field1380_; @@ -41912,6 +42678,7 @@ public java.lang.String getField1380() { * string field_1381 = 1381; * @return The field1381. */ + @java.lang.Override public java.lang.String getField1381() { java.lang.Object ref = field1381_; if (ref instanceof java.lang.String) { @@ -41928,6 +42695,7 @@ public java.lang.String getField1381() { * string field_1381 = 1381; * @return The bytes for field1381. */ + @java.lang.Override public com.google.protobuf.ByteString getField1381Bytes() { java.lang.Object ref = field1381_; @@ -41948,6 +42716,7 @@ public java.lang.String getField1381() { * string field_1382 = 1382; * @return The field1382. */ + @java.lang.Override public java.lang.String getField1382() { java.lang.Object ref = field1382_; if (ref instanceof java.lang.String) { @@ -41964,6 +42733,7 @@ public java.lang.String getField1382() { * string field_1382 = 1382; * @return The bytes for field1382. */ + @java.lang.Override public com.google.protobuf.ByteString getField1382Bytes() { java.lang.Object ref = field1382_; @@ -41984,6 +42754,7 @@ public java.lang.String getField1382() { * string field_1383 = 1383; * @return The field1383. */ + @java.lang.Override public java.lang.String getField1383() { java.lang.Object ref = field1383_; if (ref instanceof java.lang.String) { @@ -42000,6 +42771,7 @@ public java.lang.String getField1383() { * string field_1383 = 1383; * @return The bytes for field1383. */ + @java.lang.Override public com.google.protobuf.ByteString getField1383Bytes() { java.lang.Object ref = field1383_; @@ -42020,6 +42792,7 @@ public java.lang.String getField1383() { * string field_1384 = 1384; * @return The field1384. */ + @java.lang.Override public java.lang.String getField1384() { java.lang.Object ref = field1384_; if (ref instanceof java.lang.String) { @@ -42036,6 +42809,7 @@ public java.lang.String getField1384() { * string field_1384 = 1384; * @return The bytes for field1384. */ + @java.lang.Override public com.google.protobuf.ByteString getField1384Bytes() { java.lang.Object ref = field1384_; @@ -42056,6 +42830,7 @@ public java.lang.String getField1384() { * string field_1385 = 1385; * @return The field1385. */ + @java.lang.Override public java.lang.String getField1385() { java.lang.Object ref = field1385_; if (ref instanceof java.lang.String) { @@ -42072,6 +42847,7 @@ public java.lang.String getField1385() { * string field_1385 = 1385; * @return The bytes for field1385. */ + @java.lang.Override public com.google.protobuf.ByteString getField1385Bytes() { java.lang.Object ref = field1385_; @@ -42092,6 +42868,7 @@ public java.lang.String getField1385() { * string field_1386 = 1386; * @return The field1386. */ + @java.lang.Override public java.lang.String getField1386() { java.lang.Object ref = field1386_; if (ref instanceof java.lang.String) { @@ -42108,6 +42885,7 @@ public java.lang.String getField1386() { * string field_1386 = 1386; * @return The bytes for field1386. */ + @java.lang.Override public com.google.protobuf.ByteString getField1386Bytes() { java.lang.Object ref = field1386_; @@ -42128,6 +42906,7 @@ public java.lang.String getField1386() { * string field_1387 = 1387; * @return The field1387. */ + @java.lang.Override public java.lang.String getField1387() { java.lang.Object ref = field1387_; if (ref instanceof java.lang.String) { @@ -42144,6 +42923,7 @@ public java.lang.String getField1387() { * string field_1387 = 1387; * @return The bytes for field1387. */ + @java.lang.Override public com.google.protobuf.ByteString getField1387Bytes() { java.lang.Object ref = field1387_; @@ -42164,6 +42944,7 @@ public java.lang.String getField1387() { * string field_1388 = 1388; * @return The field1388. */ + @java.lang.Override public java.lang.String getField1388() { java.lang.Object ref = field1388_; if (ref instanceof java.lang.String) { @@ -42180,6 +42961,7 @@ public java.lang.String getField1388() { * string field_1388 = 1388; * @return The bytes for field1388. */ + @java.lang.Override public com.google.protobuf.ByteString getField1388Bytes() { java.lang.Object ref = field1388_; @@ -42200,6 +42982,7 @@ public java.lang.String getField1388() { * string field_1389 = 1389; * @return The field1389. */ + @java.lang.Override public java.lang.String getField1389() { java.lang.Object ref = field1389_; if (ref instanceof java.lang.String) { @@ -42216,6 +42999,7 @@ public java.lang.String getField1389() { * string field_1389 = 1389; * @return The bytes for field1389. */ + @java.lang.Override public com.google.protobuf.ByteString getField1389Bytes() { java.lang.Object ref = field1389_; @@ -42236,6 +43020,7 @@ public java.lang.String getField1389() { * string field_1390 = 1390; * @return The field1390. */ + @java.lang.Override public java.lang.String getField1390() { java.lang.Object ref = field1390_; if (ref instanceof java.lang.String) { @@ -42252,6 +43037,7 @@ public java.lang.String getField1390() { * string field_1390 = 1390; * @return The bytes for field1390. */ + @java.lang.Override public com.google.protobuf.ByteString getField1390Bytes() { java.lang.Object ref = field1390_; @@ -42272,6 +43058,7 @@ public java.lang.String getField1390() { * string field_1391 = 1391; * @return The field1391. */ + @java.lang.Override public java.lang.String getField1391() { java.lang.Object ref = field1391_; if (ref instanceof java.lang.String) { @@ -42288,6 +43075,7 @@ public java.lang.String getField1391() { * string field_1391 = 1391; * @return The bytes for field1391. */ + @java.lang.Override public com.google.protobuf.ByteString getField1391Bytes() { java.lang.Object ref = field1391_; @@ -42308,6 +43096,7 @@ public java.lang.String getField1391() { * string field_1392 = 1392; * @return The field1392. */ + @java.lang.Override public java.lang.String getField1392() { java.lang.Object ref = field1392_; if (ref instanceof java.lang.String) { @@ -42324,6 +43113,7 @@ public java.lang.String getField1392() { * string field_1392 = 1392; * @return The bytes for field1392. */ + @java.lang.Override public com.google.protobuf.ByteString getField1392Bytes() { java.lang.Object ref = field1392_; @@ -42344,6 +43134,7 @@ public java.lang.String getField1392() { * string field_1393 = 1393; * @return The field1393. */ + @java.lang.Override public java.lang.String getField1393() { java.lang.Object ref = field1393_; if (ref instanceof java.lang.String) { @@ -42360,6 +43151,7 @@ public java.lang.String getField1393() { * string field_1393 = 1393; * @return The bytes for field1393. */ + @java.lang.Override public com.google.protobuf.ByteString getField1393Bytes() { java.lang.Object ref = field1393_; @@ -42380,6 +43172,7 @@ public java.lang.String getField1393() { * string field_1394 = 1394; * @return The field1394. */ + @java.lang.Override public java.lang.String getField1394() { java.lang.Object ref = field1394_; if (ref instanceof java.lang.String) { @@ -42396,6 +43189,7 @@ public java.lang.String getField1394() { * string field_1394 = 1394; * @return The bytes for field1394. */ + @java.lang.Override public com.google.protobuf.ByteString getField1394Bytes() { java.lang.Object ref = field1394_; @@ -42416,6 +43210,7 @@ public java.lang.String getField1394() { * string field_1395 = 1395; * @return The field1395. */ + @java.lang.Override public java.lang.String getField1395() { java.lang.Object ref = field1395_; if (ref instanceof java.lang.String) { @@ -42432,6 +43227,7 @@ public java.lang.String getField1395() { * string field_1395 = 1395; * @return The bytes for field1395. */ + @java.lang.Override public com.google.protobuf.ByteString getField1395Bytes() { java.lang.Object ref = field1395_; @@ -42452,6 +43248,7 @@ public java.lang.String getField1395() { * string field_1396 = 1396; * @return The field1396. */ + @java.lang.Override public java.lang.String getField1396() { java.lang.Object ref = field1396_; if (ref instanceof java.lang.String) { @@ -42468,6 +43265,7 @@ public java.lang.String getField1396() { * string field_1396 = 1396; * @return The bytes for field1396. */ + @java.lang.Override public com.google.protobuf.ByteString getField1396Bytes() { java.lang.Object ref = field1396_; @@ -42488,6 +43286,7 @@ public java.lang.String getField1396() { * string field_1397 = 1397; * @return The field1397. */ + @java.lang.Override public java.lang.String getField1397() { java.lang.Object ref = field1397_; if (ref instanceof java.lang.String) { @@ -42504,6 +43303,7 @@ public java.lang.String getField1397() { * string field_1397 = 1397; * @return The bytes for field1397. */ + @java.lang.Override public com.google.protobuf.ByteString getField1397Bytes() { java.lang.Object ref = field1397_; @@ -42524,6 +43324,7 @@ public java.lang.String getField1397() { * string field_1398 = 1398; * @return The field1398. */ + @java.lang.Override public java.lang.String getField1398() { java.lang.Object ref = field1398_; if (ref instanceof java.lang.String) { @@ -42540,6 +43341,7 @@ public java.lang.String getField1398() { * string field_1398 = 1398; * @return The bytes for field1398. */ + @java.lang.Override public com.google.protobuf.ByteString getField1398Bytes() { java.lang.Object ref = field1398_; @@ -42560,6 +43362,7 @@ public java.lang.String getField1398() { * string field_1399 = 1399; * @return The field1399. */ + @java.lang.Override public java.lang.String getField1399() { java.lang.Object ref = field1399_; if (ref instanceof java.lang.String) { @@ -42576,6 +43379,7 @@ public java.lang.String getField1399() { * string field_1399 = 1399; * @return The bytes for field1399. */ + @java.lang.Override public com.google.protobuf.ByteString getField1399Bytes() { java.lang.Object ref = field1399_; @@ -42596,6 +43400,7 @@ public java.lang.String getField1399() { * string field_1400 = 1400; * @return The field1400. */ + @java.lang.Override public java.lang.String getField1400() { java.lang.Object ref = field1400_; if (ref instanceof java.lang.String) { @@ -42612,6 +43417,7 @@ public java.lang.String getField1400() { * string field_1400 = 1400; * @return The bytes for field1400. */ + @java.lang.Override public com.google.protobuf.ByteString getField1400Bytes() { java.lang.Object ref = field1400_; @@ -42632,6 +43438,7 @@ public java.lang.String getField1400() { * string field_1401 = 1401; * @return The field1401. */ + @java.lang.Override public java.lang.String getField1401() { java.lang.Object ref = field1401_; if (ref instanceof java.lang.String) { @@ -42648,6 +43455,7 @@ public java.lang.String getField1401() { * string field_1401 = 1401; * @return The bytes for field1401. */ + @java.lang.Override public com.google.protobuf.ByteString getField1401Bytes() { java.lang.Object ref = field1401_; @@ -42668,6 +43476,7 @@ public java.lang.String getField1401() { * string field_1402 = 1402; * @return The field1402. */ + @java.lang.Override public java.lang.String getField1402() { java.lang.Object ref = field1402_; if (ref instanceof java.lang.String) { @@ -42684,6 +43493,7 @@ public java.lang.String getField1402() { * string field_1402 = 1402; * @return The bytes for field1402. */ + @java.lang.Override public com.google.protobuf.ByteString getField1402Bytes() { java.lang.Object ref = field1402_; @@ -42704,6 +43514,7 @@ public java.lang.String getField1402() { * string field_1403 = 1403; * @return The field1403. */ + @java.lang.Override public java.lang.String getField1403() { java.lang.Object ref = field1403_; if (ref instanceof java.lang.String) { @@ -42720,6 +43531,7 @@ public java.lang.String getField1403() { * string field_1403 = 1403; * @return The bytes for field1403. */ + @java.lang.Override public com.google.protobuf.ByteString getField1403Bytes() { java.lang.Object ref = field1403_; @@ -42740,6 +43552,7 @@ public java.lang.String getField1403() { * string field_1404 = 1404; * @return The field1404. */ + @java.lang.Override public java.lang.String getField1404() { java.lang.Object ref = field1404_; if (ref instanceof java.lang.String) { @@ -42756,6 +43569,7 @@ public java.lang.String getField1404() { * string field_1404 = 1404; * @return The bytes for field1404. */ + @java.lang.Override public com.google.protobuf.ByteString getField1404Bytes() { java.lang.Object ref = field1404_; @@ -42776,6 +43590,7 @@ public java.lang.String getField1404() { * string field_1405 = 1405; * @return The field1405. */ + @java.lang.Override public java.lang.String getField1405() { java.lang.Object ref = field1405_; if (ref instanceof java.lang.String) { @@ -42792,6 +43607,7 @@ public java.lang.String getField1405() { * string field_1405 = 1405; * @return The bytes for field1405. */ + @java.lang.Override public com.google.protobuf.ByteString getField1405Bytes() { java.lang.Object ref = field1405_; @@ -42812,6 +43628,7 @@ public java.lang.String getField1405() { * string field_1406 = 1406; * @return The field1406. */ + @java.lang.Override public java.lang.String getField1406() { java.lang.Object ref = field1406_; if (ref instanceof java.lang.String) { @@ -42828,6 +43645,7 @@ public java.lang.String getField1406() { * string field_1406 = 1406; * @return The bytes for field1406. */ + @java.lang.Override public com.google.protobuf.ByteString getField1406Bytes() { java.lang.Object ref = field1406_; @@ -42848,6 +43666,7 @@ public java.lang.String getField1406() { * string field_1407 = 1407; * @return The field1407. */ + @java.lang.Override public java.lang.String getField1407() { java.lang.Object ref = field1407_; if (ref instanceof java.lang.String) { @@ -42864,6 +43683,7 @@ public java.lang.String getField1407() { * string field_1407 = 1407; * @return The bytes for field1407. */ + @java.lang.Override public com.google.protobuf.ByteString getField1407Bytes() { java.lang.Object ref = field1407_; @@ -42884,6 +43704,7 @@ public java.lang.String getField1407() { * string field_1408 = 1408; * @return The field1408. */ + @java.lang.Override public java.lang.String getField1408() { java.lang.Object ref = field1408_; if (ref instanceof java.lang.String) { @@ -42900,6 +43721,7 @@ public java.lang.String getField1408() { * string field_1408 = 1408; * @return The bytes for field1408. */ + @java.lang.Override public com.google.protobuf.ByteString getField1408Bytes() { java.lang.Object ref = field1408_; @@ -42920,6 +43742,7 @@ public java.lang.String getField1408() { * string field_1409 = 1409; * @return The field1409. */ + @java.lang.Override public java.lang.String getField1409() { java.lang.Object ref = field1409_; if (ref instanceof java.lang.String) { @@ -42936,6 +43759,7 @@ public java.lang.String getField1409() { * string field_1409 = 1409; * @return The bytes for field1409. */ + @java.lang.Override public com.google.protobuf.ByteString getField1409Bytes() { java.lang.Object ref = field1409_; @@ -42956,6 +43780,7 @@ public java.lang.String getField1409() { * string field_1410 = 1410; * @return The field1410. */ + @java.lang.Override public java.lang.String getField1410() { java.lang.Object ref = field1410_; if (ref instanceof java.lang.String) { @@ -42972,6 +43797,7 @@ public java.lang.String getField1410() { * string field_1410 = 1410; * @return The bytes for field1410. */ + @java.lang.Override public com.google.protobuf.ByteString getField1410Bytes() { java.lang.Object ref = field1410_; @@ -42992,6 +43818,7 @@ public java.lang.String getField1410() { * string field_1411 = 1411; * @return The field1411. */ + @java.lang.Override public java.lang.String getField1411() { java.lang.Object ref = field1411_; if (ref instanceof java.lang.String) { @@ -43008,6 +43835,7 @@ public java.lang.String getField1411() { * string field_1411 = 1411; * @return The bytes for field1411. */ + @java.lang.Override public com.google.protobuf.ByteString getField1411Bytes() { java.lang.Object ref = field1411_; @@ -43028,6 +43856,7 @@ public java.lang.String getField1411() { * string field_1412 = 1412; * @return The field1412. */ + @java.lang.Override public java.lang.String getField1412() { java.lang.Object ref = field1412_; if (ref instanceof java.lang.String) { @@ -43044,6 +43873,7 @@ public java.lang.String getField1412() { * string field_1412 = 1412; * @return The bytes for field1412. */ + @java.lang.Override public com.google.protobuf.ByteString getField1412Bytes() { java.lang.Object ref = field1412_; @@ -43064,6 +43894,7 @@ public java.lang.String getField1412() { * string field_1413 = 1413; * @return The field1413. */ + @java.lang.Override public java.lang.String getField1413() { java.lang.Object ref = field1413_; if (ref instanceof java.lang.String) { @@ -43080,6 +43911,7 @@ public java.lang.String getField1413() { * string field_1413 = 1413; * @return The bytes for field1413. */ + @java.lang.Override public com.google.protobuf.ByteString getField1413Bytes() { java.lang.Object ref = field1413_; @@ -43100,6 +43932,7 @@ public java.lang.String getField1413() { * string field_1414 = 1414; * @return The field1414. */ + @java.lang.Override public java.lang.String getField1414() { java.lang.Object ref = field1414_; if (ref instanceof java.lang.String) { @@ -43116,6 +43949,7 @@ public java.lang.String getField1414() { * string field_1414 = 1414; * @return The bytes for field1414. */ + @java.lang.Override public com.google.protobuf.ByteString getField1414Bytes() { java.lang.Object ref = field1414_; @@ -43136,6 +43970,7 @@ public java.lang.String getField1414() { * string field_1415 = 1415; * @return The field1415. */ + @java.lang.Override public java.lang.String getField1415() { java.lang.Object ref = field1415_; if (ref instanceof java.lang.String) { @@ -43152,6 +43987,7 @@ public java.lang.String getField1415() { * string field_1415 = 1415; * @return The bytes for field1415. */ + @java.lang.Override public com.google.protobuf.ByteString getField1415Bytes() { java.lang.Object ref = field1415_; @@ -43172,6 +44008,7 @@ public java.lang.String getField1415() { * string field_1416 = 1416; * @return The field1416. */ + @java.lang.Override public java.lang.String getField1416() { java.lang.Object ref = field1416_; if (ref instanceof java.lang.String) { @@ -43188,6 +44025,7 @@ public java.lang.String getField1416() { * string field_1416 = 1416; * @return The bytes for field1416. */ + @java.lang.Override public com.google.protobuf.ByteString getField1416Bytes() { java.lang.Object ref = field1416_; @@ -43208,6 +44046,7 @@ public java.lang.String getField1416() { * string field_1417 = 1417; * @return The field1417. */ + @java.lang.Override public java.lang.String getField1417() { java.lang.Object ref = field1417_; if (ref instanceof java.lang.String) { @@ -43224,6 +44063,7 @@ public java.lang.String getField1417() { * string field_1417 = 1417; * @return The bytes for field1417. */ + @java.lang.Override public com.google.protobuf.ByteString getField1417Bytes() { java.lang.Object ref = field1417_; @@ -43244,6 +44084,7 @@ public java.lang.String getField1417() { * string field_1418 = 1418; * @return The field1418. */ + @java.lang.Override public java.lang.String getField1418() { java.lang.Object ref = field1418_; if (ref instanceof java.lang.String) { @@ -43260,6 +44101,7 @@ public java.lang.String getField1418() { * string field_1418 = 1418; * @return The bytes for field1418. */ + @java.lang.Override public com.google.protobuf.ByteString getField1418Bytes() { java.lang.Object ref = field1418_; @@ -43280,6 +44122,7 @@ public java.lang.String getField1418() { * string field_1419 = 1419; * @return The field1419. */ + @java.lang.Override public java.lang.String getField1419() { java.lang.Object ref = field1419_; if (ref instanceof java.lang.String) { @@ -43296,6 +44139,7 @@ public java.lang.String getField1419() { * string field_1419 = 1419; * @return The bytes for field1419. */ + @java.lang.Override public com.google.protobuf.ByteString getField1419Bytes() { java.lang.Object ref = field1419_; @@ -43316,6 +44160,7 @@ public java.lang.String getField1419() { * string field_1420 = 1420; * @return The field1420. */ + @java.lang.Override public java.lang.String getField1420() { java.lang.Object ref = field1420_; if (ref instanceof java.lang.String) { @@ -43332,6 +44177,7 @@ public java.lang.String getField1420() { * string field_1420 = 1420; * @return The bytes for field1420. */ + @java.lang.Override public com.google.protobuf.ByteString getField1420Bytes() { java.lang.Object ref = field1420_; @@ -43352,6 +44198,7 @@ public java.lang.String getField1420() { * string field_1421 = 1421; * @return The field1421. */ + @java.lang.Override public java.lang.String getField1421() { java.lang.Object ref = field1421_; if (ref instanceof java.lang.String) { @@ -43368,6 +44215,7 @@ public java.lang.String getField1421() { * string field_1421 = 1421; * @return The bytes for field1421. */ + @java.lang.Override public com.google.protobuf.ByteString getField1421Bytes() { java.lang.Object ref = field1421_; @@ -43388,6 +44236,7 @@ public java.lang.String getField1421() { * string field_1422 = 1422; * @return The field1422. */ + @java.lang.Override public java.lang.String getField1422() { java.lang.Object ref = field1422_; if (ref instanceof java.lang.String) { @@ -43404,6 +44253,7 @@ public java.lang.String getField1422() { * string field_1422 = 1422; * @return The bytes for field1422. */ + @java.lang.Override public com.google.protobuf.ByteString getField1422Bytes() { java.lang.Object ref = field1422_; @@ -43424,6 +44274,7 @@ public java.lang.String getField1422() { * string field_1423 = 1423; * @return The field1423. */ + @java.lang.Override public java.lang.String getField1423() { java.lang.Object ref = field1423_; if (ref instanceof java.lang.String) { @@ -43440,6 +44291,7 @@ public java.lang.String getField1423() { * string field_1423 = 1423; * @return The bytes for field1423. */ + @java.lang.Override public com.google.protobuf.ByteString getField1423Bytes() { java.lang.Object ref = field1423_; @@ -43460,6 +44312,7 @@ public java.lang.String getField1423() { * string field_1424 = 1424; * @return The field1424. */ + @java.lang.Override public java.lang.String getField1424() { java.lang.Object ref = field1424_; if (ref instanceof java.lang.String) { @@ -43476,6 +44329,7 @@ public java.lang.String getField1424() { * string field_1424 = 1424; * @return The bytes for field1424. */ + @java.lang.Override public com.google.protobuf.ByteString getField1424Bytes() { java.lang.Object ref = field1424_; @@ -43496,6 +44350,7 @@ public java.lang.String getField1424() { * string field_1425 = 1425; * @return The field1425. */ + @java.lang.Override public java.lang.String getField1425() { java.lang.Object ref = field1425_; if (ref instanceof java.lang.String) { @@ -43512,6 +44367,7 @@ public java.lang.String getField1425() { * string field_1425 = 1425; * @return The bytes for field1425. */ + @java.lang.Override public com.google.protobuf.ByteString getField1425Bytes() { java.lang.Object ref = field1425_; @@ -43532,6 +44388,7 @@ public java.lang.String getField1425() { * string field_1426 = 1426; * @return The field1426. */ + @java.lang.Override public java.lang.String getField1426() { java.lang.Object ref = field1426_; if (ref instanceof java.lang.String) { @@ -43548,6 +44405,7 @@ public java.lang.String getField1426() { * string field_1426 = 1426; * @return The bytes for field1426. */ + @java.lang.Override public com.google.protobuf.ByteString getField1426Bytes() { java.lang.Object ref = field1426_; @@ -43568,6 +44426,7 @@ public java.lang.String getField1426() { * string field_1427 = 1427; * @return The field1427. */ + @java.lang.Override public java.lang.String getField1427() { java.lang.Object ref = field1427_; if (ref instanceof java.lang.String) { @@ -43584,6 +44443,7 @@ public java.lang.String getField1427() { * string field_1427 = 1427; * @return The bytes for field1427. */ + @java.lang.Override public com.google.protobuf.ByteString getField1427Bytes() { java.lang.Object ref = field1427_; @@ -43604,6 +44464,7 @@ public java.lang.String getField1427() { * string field_1428 = 1428; * @return The field1428. */ + @java.lang.Override public java.lang.String getField1428() { java.lang.Object ref = field1428_; if (ref instanceof java.lang.String) { @@ -43620,6 +44481,7 @@ public java.lang.String getField1428() { * string field_1428 = 1428; * @return The bytes for field1428. */ + @java.lang.Override public com.google.protobuf.ByteString getField1428Bytes() { java.lang.Object ref = field1428_; @@ -43640,6 +44502,7 @@ public java.lang.String getField1428() { * string field_1429 = 1429; * @return The field1429. */ + @java.lang.Override public java.lang.String getField1429() { java.lang.Object ref = field1429_; if (ref instanceof java.lang.String) { @@ -43656,6 +44519,7 @@ public java.lang.String getField1429() { * string field_1429 = 1429; * @return The bytes for field1429. */ + @java.lang.Override public com.google.protobuf.ByteString getField1429Bytes() { java.lang.Object ref = field1429_; @@ -43676,6 +44540,7 @@ public java.lang.String getField1429() { * string field_1430 = 1430; * @return The field1430. */ + @java.lang.Override public java.lang.String getField1430() { java.lang.Object ref = field1430_; if (ref instanceof java.lang.String) { @@ -43692,6 +44557,7 @@ public java.lang.String getField1430() { * string field_1430 = 1430; * @return The bytes for field1430. */ + @java.lang.Override public com.google.protobuf.ByteString getField1430Bytes() { java.lang.Object ref = field1430_; @@ -43712,6 +44578,7 @@ public java.lang.String getField1430() { * string field_1431 = 1431; * @return The field1431. */ + @java.lang.Override public java.lang.String getField1431() { java.lang.Object ref = field1431_; if (ref instanceof java.lang.String) { @@ -43728,6 +44595,7 @@ public java.lang.String getField1431() { * string field_1431 = 1431; * @return The bytes for field1431. */ + @java.lang.Override public com.google.protobuf.ByteString getField1431Bytes() { java.lang.Object ref = field1431_; @@ -43748,6 +44616,7 @@ public java.lang.String getField1431() { * string field_1432 = 1432; * @return The field1432. */ + @java.lang.Override public java.lang.String getField1432() { java.lang.Object ref = field1432_; if (ref instanceof java.lang.String) { @@ -43764,6 +44633,7 @@ public java.lang.String getField1432() { * string field_1432 = 1432; * @return The bytes for field1432. */ + @java.lang.Override public com.google.protobuf.ByteString getField1432Bytes() { java.lang.Object ref = field1432_; @@ -43784,6 +44654,7 @@ public java.lang.String getField1432() { * string field_1433 = 1433; * @return The field1433. */ + @java.lang.Override public java.lang.String getField1433() { java.lang.Object ref = field1433_; if (ref instanceof java.lang.String) { @@ -43800,6 +44671,7 @@ public java.lang.String getField1433() { * string field_1433 = 1433; * @return The bytes for field1433. */ + @java.lang.Override public com.google.protobuf.ByteString getField1433Bytes() { java.lang.Object ref = field1433_; @@ -43820,6 +44692,7 @@ public java.lang.String getField1433() { * string field_1434 = 1434; * @return The field1434. */ + @java.lang.Override public java.lang.String getField1434() { java.lang.Object ref = field1434_; if (ref instanceof java.lang.String) { @@ -43836,6 +44709,7 @@ public java.lang.String getField1434() { * string field_1434 = 1434; * @return The bytes for field1434. */ + @java.lang.Override public com.google.protobuf.ByteString getField1434Bytes() { java.lang.Object ref = field1434_; @@ -43856,6 +44730,7 @@ public java.lang.String getField1434() { * string field_1435 = 1435; * @return The field1435. */ + @java.lang.Override public java.lang.String getField1435() { java.lang.Object ref = field1435_; if (ref instanceof java.lang.String) { @@ -43872,6 +44747,7 @@ public java.lang.String getField1435() { * string field_1435 = 1435; * @return The bytes for field1435. */ + @java.lang.Override public com.google.protobuf.ByteString getField1435Bytes() { java.lang.Object ref = field1435_; @@ -43892,6 +44768,7 @@ public java.lang.String getField1435() { * string field_1436 = 1436; * @return The field1436. */ + @java.lang.Override public java.lang.String getField1436() { java.lang.Object ref = field1436_; if (ref instanceof java.lang.String) { @@ -43908,6 +44785,7 @@ public java.lang.String getField1436() { * string field_1436 = 1436; * @return The bytes for field1436. */ + @java.lang.Override public com.google.protobuf.ByteString getField1436Bytes() { java.lang.Object ref = field1436_; @@ -43928,6 +44806,7 @@ public java.lang.String getField1436() { * string field_1437 = 1437; * @return The field1437. */ + @java.lang.Override public java.lang.String getField1437() { java.lang.Object ref = field1437_; if (ref instanceof java.lang.String) { @@ -43944,6 +44823,7 @@ public java.lang.String getField1437() { * string field_1437 = 1437; * @return The bytes for field1437. */ + @java.lang.Override public com.google.protobuf.ByteString getField1437Bytes() { java.lang.Object ref = field1437_; @@ -43964,6 +44844,7 @@ public java.lang.String getField1437() { * string field_1438 = 1438; * @return The field1438. */ + @java.lang.Override public java.lang.String getField1438() { java.lang.Object ref = field1438_; if (ref instanceof java.lang.String) { @@ -43980,6 +44861,7 @@ public java.lang.String getField1438() { * string field_1438 = 1438; * @return The bytes for field1438. */ + @java.lang.Override public com.google.protobuf.ByteString getField1438Bytes() { java.lang.Object ref = field1438_; @@ -44000,6 +44882,7 @@ public java.lang.String getField1438() { * string field_1439 = 1439; * @return The field1439. */ + @java.lang.Override public java.lang.String getField1439() { java.lang.Object ref = field1439_; if (ref instanceof java.lang.String) { @@ -44016,6 +44899,7 @@ public java.lang.String getField1439() { * string field_1439 = 1439; * @return The bytes for field1439. */ + @java.lang.Override public com.google.protobuf.ByteString getField1439Bytes() { java.lang.Object ref = field1439_; @@ -44036,6 +44920,7 @@ public java.lang.String getField1439() { * string field_1440 = 1440; * @return The field1440. */ + @java.lang.Override public java.lang.String getField1440() { java.lang.Object ref = field1440_; if (ref instanceof java.lang.String) { @@ -44052,6 +44937,7 @@ public java.lang.String getField1440() { * string field_1440 = 1440; * @return The bytes for field1440. */ + @java.lang.Override public com.google.protobuf.ByteString getField1440Bytes() { java.lang.Object ref = field1440_; @@ -44072,6 +44958,7 @@ public java.lang.String getField1440() { * string field_1441 = 1441; * @return The field1441. */ + @java.lang.Override public java.lang.String getField1441() { java.lang.Object ref = field1441_; if (ref instanceof java.lang.String) { @@ -44088,6 +44975,7 @@ public java.lang.String getField1441() { * string field_1441 = 1441; * @return The bytes for field1441. */ + @java.lang.Override public com.google.protobuf.ByteString getField1441Bytes() { java.lang.Object ref = field1441_; @@ -44108,6 +44996,7 @@ public java.lang.String getField1441() { * string field_1442 = 1442; * @return The field1442. */ + @java.lang.Override public java.lang.String getField1442() { java.lang.Object ref = field1442_; if (ref instanceof java.lang.String) { @@ -44124,6 +45013,7 @@ public java.lang.String getField1442() { * string field_1442 = 1442; * @return The bytes for field1442. */ + @java.lang.Override public com.google.protobuf.ByteString getField1442Bytes() { java.lang.Object ref = field1442_; @@ -44144,6 +45034,7 @@ public java.lang.String getField1442() { * string field_1443 = 1443; * @return The field1443. */ + @java.lang.Override public java.lang.String getField1443() { java.lang.Object ref = field1443_; if (ref instanceof java.lang.String) { @@ -44160,6 +45051,7 @@ public java.lang.String getField1443() { * string field_1443 = 1443; * @return The bytes for field1443. */ + @java.lang.Override public com.google.protobuf.ByteString getField1443Bytes() { java.lang.Object ref = field1443_; @@ -44180,6 +45072,7 @@ public java.lang.String getField1443() { * string field_1444 = 1444; * @return The field1444. */ + @java.lang.Override public java.lang.String getField1444() { java.lang.Object ref = field1444_; if (ref instanceof java.lang.String) { @@ -44196,6 +45089,7 @@ public java.lang.String getField1444() { * string field_1444 = 1444; * @return The bytes for field1444. */ + @java.lang.Override public com.google.protobuf.ByteString getField1444Bytes() { java.lang.Object ref = field1444_; @@ -44216,6 +45110,7 @@ public java.lang.String getField1444() { * string field_1445 = 1445; * @return The field1445. */ + @java.lang.Override public java.lang.String getField1445() { java.lang.Object ref = field1445_; if (ref instanceof java.lang.String) { @@ -44232,6 +45127,7 @@ public java.lang.String getField1445() { * string field_1445 = 1445; * @return The bytes for field1445. */ + @java.lang.Override public com.google.protobuf.ByteString getField1445Bytes() { java.lang.Object ref = field1445_; @@ -44252,6 +45148,7 @@ public java.lang.String getField1445() { * string field_1446 = 1446; * @return The field1446. */ + @java.lang.Override public java.lang.String getField1446() { java.lang.Object ref = field1446_; if (ref instanceof java.lang.String) { @@ -44268,6 +45165,7 @@ public java.lang.String getField1446() { * string field_1446 = 1446; * @return The bytes for field1446. */ + @java.lang.Override public com.google.protobuf.ByteString getField1446Bytes() { java.lang.Object ref = field1446_; @@ -44288,6 +45186,7 @@ public java.lang.String getField1446() { * string field_1447 = 1447; * @return The field1447. */ + @java.lang.Override public java.lang.String getField1447() { java.lang.Object ref = field1447_; if (ref instanceof java.lang.String) { @@ -44304,6 +45203,7 @@ public java.lang.String getField1447() { * string field_1447 = 1447; * @return The bytes for field1447. */ + @java.lang.Override public com.google.protobuf.ByteString getField1447Bytes() { java.lang.Object ref = field1447_; @@ -44324,6 +45224,7 @@ public java.lang.String getField1447() { * string field_1448 = 1448; * @return The field1448. */ + @java.lang.Override public java.lang.String getField1448() { java.lang.Object ref = field1448_; if (ref instanceof java.lang.String) { @@ -44340,6 +45241,7 @@ public java.lang.String getField1448() { * string field_1448 = 1448; * @return The bytes for field1448. */ + @java.lang.Override public com.google.protobuf.ByteString getField1448Bytes() { java.lang.Object ref = field1448_; @@ -44360,6 +45262,7 @@ public java.lang.String getField1448() { * string field_1449 = 1449; * @return The field1449. */ + @java.lang.Override public java.lang.String getField1449() { java.lang.Object ref = field1449_; if (ref instanceof java.lang.String) { @@ -44376,6 +45279,7 @@ public java.lang.String getField1449() { * string field_1449 = 1449; * @return The bytes for field1449. */ + @java.lang.Override public com.google.protobuf.ByteString getField1449Bytes() { java.lang.Object ref = field1449_; @@ -44396,6 +45300,7 @@ public java.lang.String getField1449() { * string field_1450 = 1450; * @return The field1450. */ + @java.lang.Override public java.lang.String getField1450() { java.lang.Object ref = field1450_; if (ref instanceof java.lang.String) { @@ -44412,6 +45317,7 @@ public java.lang.String getField1450() { * string field_1450 = 1450; * @return The bytes for field1450. */ + @java.lang.Override public com.google.protobuf.ByteString getField1450Bytes() { java.lang.Object ref = field1450_; @@ -44432,6 +45338,7 @@ public java.lang.String getField1450() { * string field_1451 = 1451; * @return The field1451. */ + @java.lang.Override public java.lang.String getField1451() { java.lang.Object ref = field1451_; if (ref instanceof java.lang.String) { @@ -44448,6 +45355,7 @@ public java.lang.String getField1451() { * string field_1451 = 1451; * @return The bytes for field1451. */ + @java.lang.Override public com.google.protobuf.ByteString getField1451Bytes() { java.lang.Object ref = field1451_; @@ -44468,6 +45376,7 @@ public java.lang.String getField1451() { * string field_1452 = 1452; * @return The field1452. */ + @java.lang.Override public java.lang.String getField1452() { java.lang.Object ref = field1452_; if (ref instanceof java.lang.String) { @@ -44484,6 +45393,7 @@ public java.lang.String getField1452() { * string field_1452 = 1452; * @return The bytes for field1452. */ + @java.lang.Override public com.google.protobuf.ByteString getField1452Bytes() { java.lang.Object ref = field1452_; @@ -44504,6 +45414,7 @@ public java.lang.String getField1452() { * string field_1453 = 1453; * @return The field1453. */ + @java.lang.Override public java.lang.String getField1453() { java.lang.Object ref = field1453_; if (ref instanceof java.lang.String) { @@ -44520,6 +45431,7 @@ public java.lang.String getField1453() { * string field_1453 = 1453; * @return The bytes for field1453. */ + @java.lang.Override public com.google.protobuf.ByteString getField1453Bytes() { java.lang.Object ref = field1453_; @@ -44540,6 +45452,7 @@ public java.lang.String getField1453() { * string field_1454 = 1454; * @return The field1454. */ + @java.lang.Override public java.lang.String getField1454() { java.lang.Object ref = field1454_; if (ref instanceof java.lang.String) { @@ -44556,6 +45469,7 @@ public java.lang.String getField1454() { * string field_1454 = 1454; * @return The bytes for field1454. */ + @java.lang.Override public com.google.protobuf.ByteString getField1454Bytes() { java.lang.Object ref = field1454_; @@ -44576,6 +45490,7 @@ public java.lang.String getField1454() { * string field_1455 = 1455; * @return The field1455. */ + @java.lang.Override public java.lang.String getField1455() { java.lang.Object ref = field1455_; if (ref instanceof java.lang.String) { @@ -44592,6 +45507,7 @@ public java.lang.String getField1455() { * string field_1455 = 1455; * @return The bytes for field1455. */ + @java.lang.Override public com.google.protobuf.ByteString getField1455Bytes() { java.lang.Object ref = field1455_; @@ -44612,6 +45528,7 @@ public java.lang.String getField1455() { * string field_1456 = 1456; * @return The field1456. */ + @java.lang.Override public java.lang.String getField1456() { java.lang.Object ref = field1456_; if (ref instanceof java.lang.String) { @@ -44628,6 +45545,7 @@ public java.lang.String getField1456() { * string field_1456 = 1456; * @return The bytes for field1456. */ + @java.lang.Override public com.google.protobuf.ByteString getField1456Bytes() { java.lang.Object ref = field1456_; @@ -44648,6 +45566,7 @@ public java.lang.String getField1456() { * string field_1457 = 1457; * @return The field1457. */ + @java.lang.Override public java.lang.String getField1457() { java.lang.Object ref = field1457_; if (ref instanceof java.lang.String) { @@ -44664,6 +45583,7 @@ public java.lang.String getField1457() { * string field_1457 = 1457; * @return The bytes for field1457. */ + @java.lang.Override public com.google.protobuf.ByteString getField1457Bytes() { java.lang.Object ref = field1457_; @@ -44684,6 +45604,7 @@ public java.lang.String getField1457() { * string field_1458 = 1458; * @return The field1458. */ + @java.lang.Override public java.lang.String getField1458() { java.lang.Object ref = field1458_; if (ref instanceof java.lang.String) { @@ -44700,6 +45621,7 @@ public java.lang.String getField1458() { * string field_1458 = 1458; * @return The bytes for field1458. */ + @java.lang.Override public com.google.protobuf.ByteString getField1458Bytes() { java.lang.Object ref = field1458_; @@ -44720,6 +45642,7 @@ public java.lang.String getField1458() { * string field_1459 = 1459; * @return The field1459. */ + @java.lang.Override public java.lang.String getField1459() { java.lang.Object ref = field1459_; if (ref instanceof java.lang.String) { @@ -44736,6 +45659,7 @@ public java.lang.String getField1459() { * string field_1459 = 1459; * @return The bytes for field1459. */ + @java.lang.Override public com.google.protobuf.ByteString getField1459Bytes() { java.lang.Object ref = field1459_; @@ -44756,6 +45680,7 @@ public java.lang.String getField1459() { * string field_1460 = 1460; * @return The field1460. */ + @java.lang.Override public java.lang.String getField1460() { java.lang.Object ref = field1460_; if (ref instanceof java.lang.String) { @@ -44772,6 +45697,7 @@ public java.lang.String getField1460() { * string field_1460 = 1460; * @return The bytes for field1460. */ + @java.lang.Override public com.google.protobuf.ByteString getField1460Bytes() { java.lang.Object ref = field1460_; @@ -44792,6 +45718,7 @@ public java.lang.String getField1460() { * string field_1461 = 1461; * @return The field1461. */ + @java.lang.Override public java.lang.String getField1461() { java.lang.Object ref = field1461_; if (ref instanceof java.lang.String) { @@ -44808,6 +45735,7 @@ public java.lang.String getField1461() { * string field_1461 = 1461; * @return The bytes for field1461. */ + @java.lang.Override public com.google.protobuf.ByteString getField1461Bytes() { java.lang.Object ref = field1461_; @@ -44828,6 +45756,7 @@ public java.lang.String getField1461() { * string field_1462 = 1462; * @return The field1462. */ + @java.lang.Override public java.lang.String getField1462() { java.lang.Object ref = field1462_; if (ref instanceof java.lang.String) { @@ -44844,6 +45773,7 @@ public java.lang.String getField1462() { * string field_1462 = 1462; * @return The bytes for field1462. */ + @java.lang.Override public com.google.protobuf.ByteString getField1462Bytes() { java.lang.Object ref = field1462_; @@ -44864,6 +45794,7 @@ public java.lang.String getField1462() { * string field_1463 = 1463; * @return The field1463. */ + @java.lang.Override public java.lang.String getField1463() { java.lang.Object ref = field1463_; if (ref instanceof java.lang.String) { @@ -44880,6 +45811,7 @@ public java.lang.String getField1463() { * string field_1463 = 1463; * @return The bytes for field1463. */ + @java.lang.Override public com.google.protobuf.ByteString getField1463Bytes() { java.lang.Object ref = field1463_; @@ -44900,6 +45832,7 @@ public java.lang.String getField1463() { * string field_1464 = 1464; * @return The field1464. */ + @java.lang.Override public java.lang.String getField1464() { java.lang.Object ref = field1464_; if (ref instanceof java.lang.String) { @@ -44916,6 +45849,7 @@ public java.lang.String getField1464() { * string field_1464 = 1464; * @return The bytes for field1464. */ + @java.lang.Override public com.google.protobuf.ByteString getField1464Bytes() { java.lang.Object ref = field1464_; @@ -44936,6 +45870,7 @@ public java.lang.String getField1464() { * string field_1465 = 1465; * @return The field1465. */ + @java.lang.Override public java.lang.String getField1465() { java.lang.Object ref = field1465_; if (ref instanceof java.lang.String) { @@ -44952,6 +45887,7 @@ public java.lang.String getField1465() { * string field_1465 = 1465; * @return The bytes for field1465. */ + @java.lang.Override public com.google.protobuf.ByteString getField1465Bytes() { java.lang.Object ref = field1465_; @@ -44972,6 +45908,7 @@ public java.lang.String getField1465() { * string field_1466 = 1466; * @return The field1466. */ + @java.lang.Override public java.lang.String getField1466() { java.lang.Object ref = field1466_; if (ref instanceof java.lang.String) { @@ -44988,6 +45925,7 @@ public java.lang.String getField1466() { * string field_1466 = 1466; * @return The bytes for field1466. */ + @java.lang.Override public com.google.protobuf.ByteString getField1466Bytes() { java.lang.Object ref = field1466_; @@ -45008,6 +45946,7 @@ public java.lang.String getField1466() { * string field_1467 = 1467; * @return The field1467. */ + @java.lang.Override public java.lang.String getField1467() { java.lang.Object ref = field1467_; if (ref instanceof java.lang.String) { @@ -45024,6 +45963,7 @@ public java.lang.String getField1467() { * string field_1467 = 1467; * @return The bytes for field1467. */ + @java.lang.Override public com.google.protobuf.ByteString getField1467Bytes() { java.lang.Object ref = field1467_; @@ -45044,6 +45984,7 @@ public java.lang.String getField1467() { * string field_1468 = 1468; * @return The field1468. */ + @java.lang.Override public java.lang.String getField1468() { java.lang.Object ref = field1468_; if (ref instanceof java.lang.String) { @@ -45060,6 +46001,7 @@ public java.lang.String getField1468() { * string field_1468 = 1468; * @return The bytes for field1468. */ + @java.lang.Override public com.google.protobuf.ByteString getField1468Bytes() { java.lang.Object ref = field1468_; @@ -45080,6 +46022,7 @@ public java.lang.String getField1468() { * string field_1469 = 1469; * @return The field1469. */ + @java.lang.Override public java.lang.String getField1469() { java.lang.Object ref = field1469_; if (ref instanceof java.lang.String) { @@ -45096,6 +46039,7 @@ public java.lang.String getField1469() { * string field_1469 = 1469; * @return The bytes for field1469. */ + @java.lang.Override public com.google.protobuf.ByteString getField1469Bytes() { java.lang.Object ref = field1469_; @@ -45116,6 +46060,7 @@ public java.lang.String getField1469() { * string field_1470 = 1470; * @return The field1470. */ + @java.lang.Override public java.lang.String getField1470() { java.lang.Object ref = field1470_; if (ref instanceof java.lang.String) { @@ -45132,6 +46077,7 @@ public java.lang.String getField1470() { * string field_1470 = 1470; * @return The bytes for field1470. */ + @java.lang.Override public com.google.protobuf.ByteString getField1470Bytes() { java.lang.Object ref = field1470_; @@ -45152,6 +46098,7 @@ public java.lang.String getField1470() { * string field_1471 = 1471; * @return The field1471. */ + @java.lang.Override public java.lang.String getField1471() { java.lang.Object ref = field1471_; if (ref instanceof java.lang.String) { @@ -45168,6 +46115,7 @@ public java.lang.String getField1471() { * string field_1471 = 1471; * @return The bytes for field1471. */ + @java.lang.Override public com.google.protobuf.ByteString getField1471Bytes() { java.lang.Object ref = field1471_; @@ -45188,6 +46136,7 @@ public java.lang.String getField1471() { * string field_1472 = 1472; * @return The field1472. */ + @java.lang.Override public java.lang.String getField1472() { java.lang.Object ref = field1472_; if (ref instanceof java.lang.String) { @@ -45204,6 +46153,7 @@ public java.lang.String getField1472() { * string field_1472 = 1472; * @return The bytes for field1472. */ + @java.lang.Override public com.google.protobuf.ByteString getField1472Bytes() { java.lang.Object ref = field1472_; @@ -45224,6 +46174,7 @@ public java.lang.String getField1472() { * string field_1473 = 1473; * @return The field1473. */ + @java.lang.Override public java.lang.String getField1473() { java.lang.Object ref = field1473_; if (ref instanceof java.lang.String) { @@ -45240,6 +46191,7 @@ public java.lang.String getField1473() { * string field_1473 = 1473; * @return The bytes for field1473. */ + @java.lang.Override public com.google.protobuf.ByteString getField1473Bytes() { java.lang.Object ref = field1473_; @@ -45260,6 +46212,7 @@ public java.lang.String getField1473() { * string field_1474 = 1474; * @return The field1474. */ + @java.lang.Override public java.lang.String getField1474() { java.lang.Object ref = field1474_; if (ref instanceof java.lang.String) { @@ -45276,6 +46229,7 @@ public java.lang.String getField1474() { * string field_1474 = 1474; * @return The bytes for field1474. */ + @java.lang.Override public com.google.protobuf.ByteString getField1474Bytes() { java.lang.Object ref = field1474_; @@ -45296,6 +46250,7 @@ public java.lang.String getField1474() { * string field_1475 = 1475; * @return The field1475. */ + @java.lang.Override public java.lang.String getField1475() { java.lang.Object ref = field1475_; if (ref instanceof java.lang.String) { @@ -45312,6 +46267,7 @@ public java.lang.String getField1475() { * string field_1475 = 1475; * @return The bytes for field1475. */ + @java.lang.Override public com.google.protobuf.ByteString getField1475Bytes() { java.lang.Object ref = field1475_; @@ -45332,6 +46288,7 @@ public java.lang.String getField1475() { * string field_1476 = 1476; * @return The field1476. */ + @java.lang.Override public java.lang.String getField1476() { java.lang.Object ref = field1476_; if (ref instanceof java.lang.String) { @@ -45348,6 +46305,7 @@ public java.lang.String getField1476() { * string field_1476 = 1476; * @return The bytes for field1476. */ + @java.lang.Override public com.google.protobuf.ByteString getField1476Bytes() { java.lang.Object ref = field1476_; @@ -45368,6 +46326,7 @@ public java.lang.String getField1476() { * string field_1477 = 1477; * @return The field1477. */ + @java.lang.Override public java.lang.String getField1477() { java.lang.Object ref = field1477_; if (ref instanceof java.lang.String) { @@ -45384,6 +46343,7 @@ public java.lang.String getField1477() { * string field_1477 = 1477; * @return The bytes for field1477. */ + @java.lang.Override public com.google.protobuf.ByteString getField1477Bytes() { java.lang.Object ref = field1477_; @@ -45404,6 +46364,7 @@ public java.lang.String getField1477() { * string field_1478 = 1478; * @return The field1478. */ + @java.lang.Override public java.lang.String getField1478() { java.lang.Object ref = field1478_; if (ref instanceof java.lang.String) { @@ -45420,6 +46381,7 @@ public java.lang.String getField1478() { * string field_1478 = 1478; * @return The bytes for field1478. */ + @java.lang.Override public com.google.protobuf.ByteString getField1478Bytes() { java.lang.Object ref = field1478_; @@ -45440,6 +46402,7 @@ public java.lang.String getField1478() { * string field_1479 = 1479; * @return The field1479. */ + @java.lang.Override public java.lang.String getField1479() { java.lang.Object ref = field1479_; if (ref instanceof java.lang.String) { @@ -45456,6 +46419,7 @@ public java.lang.String getField1479() { * string field_1479 = 1479; * @return The bytes for field1479. */ + @java.lang.Override public com.google.protobuf.ByteString getField1479Bytes() { java.lang.Object ref = field1479_; @@ -45476,6 +46440,7 @@ public java.lang.String getField1479() { * string field_1480 = 1480; * @return The field1480. */ + @java.lang.Override public java.lang.String getField1480() { java.lang.Object ref = field1480_; if (ref instanceof java.lang.String) { @@ -45492,6 +46457,7 @@ public java.lang.String getField1480() { * string field_1480 = 1480; * @return The bytes for field1480. */ + @java.lang.Override public com.google.protobuf.ByteString getField1480Bytes() { java.lang.Object ref = field1480_; @@ -45512,6 +46478,7 @@ public java.lang.String getField1480() { * string field_1481 = 1481; * @return The field1481. */ + @java.lang.Override public java.lang.String getField1481() { java.lang.Object ref = field1481_; if (ref instanceof java.lang.String) { @@ -45528,6 +46495,7 @@ public java.lang.String getField1481() { * string field_1481 = 1481; * @return The bytes for field1481. */ + @java.lang.Override public com.google.protobuf.ByteString getField1481Bytes() { java.lang.Object ref = field1481_; @@ -45548,6 +46516,7 @@ public java.lang.String getField1481() { * string field_1482 = 1482; * @return The field1482. */ + @java.lang.Override public java.lang.String getField1482() { java.lang.Object ref = field1482_; if (ref instanceof java.lang.String) { @@ -45564,6 +46533,7 @@ public java.lang.String getField1482() { * string field_1482 = 1482; * @return The bytes for field1482. */ + @java.lang.Override public com.google.protobuf.ByteString getField1482Bytes() { java.lang.Object ref = field1482_; @@ -45584,6 +46554,7 @@ public java.lang.String getField1482() { * string field_1483 = 1483; * @return The field1483. */ + @java.lang.Override public java.lang.String getField1483() { java.lang.Object ref = field1483_; if (ref instanceof java.lang.String) { @@ -45600,6 +46571,7 @@ public java.lang.String getField1483() { * string field_1483 = 1483; * @return The bytes for field1483. */ + @java.lang.Override public com.google.protobuf.ByteString getField1483Bytes() { java.lang.Object ref = field1483_; @@ -45620,6 +46592,7 @@ public java.lang.String getField1483() { * string field_1484 = 1484; * @return The field1484. */ + @java.lang.Override public java.lang.String getField1484() { java.lang.Object ref = field1484_; if (ref instanceof java.lang.String) { @@ -45636,6 +46609,7 @@ public java.lang.String getField1484() { * string field_1484 = 1484; * @return The bytes for field1484. */ + @java.lang.Override public com.google.protobuf.ByteString getField1484Bytes() { java.lang.Object ref = field1484_; @@ -45656,6 +46630,7 @@ public java.lang.String getField1484() { * string field_1485 = 1485; * @return The field1485. */ + @java.lang.Override public java.lang.String getField1485() { java.lang.Object ref = field1485_; if (ref instanceof java.lang.String) { @@ -45672,6 +46647,7 @@ public java.lang.String getField1485() { * string field_1485 = 1485; * @return The bytes for field1485. */ + @java.lang.Override public com.google.protobuf.ByteString getField1485Bytes() { java.lang.Object ref = field1485_; @@ -45692,6 +46668,7 @@ public java.lang.String getField1485() { * string field_1486 = 1486; * @return The field1486. */ + @java.lang.Override public java.lang.String getField1486() { java.lang.Object ref = field1486_; if (ref instanceof java.lang.String) { @@ -45708,6 +46685,7 @@ public java.lang.String getField1486() { * string field_1486 = 1486; * @return The bytes for field1486. */ + @java.lang.Override public com.google.protobuf.ByteString getField1486Bytes() { java.lang.Object ref = field1486_; @@ -45728,6 +46706,7 @@ public java.lang.String getField1486() { * string field_1487 = 1487; * @return The field1487. */ + @java.lang.Override public java.lang.String getField1487() { java.lang.Object ref = field1487_; if (ref instanceof java.lang.String) { @@ -45744,6 +46723,7 @@ public java.lang.String getField1487() { * string field_1487 = 1487; * @return The bytes for field1487. */ + @java.lang.Override public com.google.protobuf.ByteString getField1487Bytes() { java.lang.Object ref = field1487_; @@ -45764,6 +46744,7 @@ public java.lang.String getField1487() { * string field_1488 = 1488; * @return The field1488. */ + @java.lang.Override public java.lang.String getField1488() { java.lang.Object ref = field1488_; if (ref instanceof java.lang.String) { @@ -45780,6 +46761,7 @@ public java.lang.String getField1488() { * string field_1488 = 1488; * @return The bytes for field1488. */ + @java.lang.Override public com.google.protobuf.ByteString getField1488Bytes() { java.lang.Object ref = field1488_; @@ -45800,6 +46782,7 @@ public java.lang.String getField1488() { * string field_1489 = 1489; * @return The field1489. */ + @java.lang.Override public java.lang.String getField1489() { java.lang.Object ref = field1489_; if (ref instanceof java.lang.String) { @@ -45816,6 +46799,7 @@ public java.lang.String getField1489() { * string field_1489 = 1489; * @return The bytes for field1489. */ + @java.lang.Override public com.google.protobuf.ByteString getField1489Bytes() { java.lang.Object ref = field1489_; @@ -45836,6 +46820,7 @@ public java.lang.String getField1489() { * string field_1490 = 1490; * @return The field1490. */ + @java.lang.Override public java.lang.String getField1490() { java.lang.Object ref = field1490_; if (ref instanceof java.lang.String) { @@ -45852,6 +46837,7 @@ public java.lang.String getField1490() { * string field_1490 = 1490; * @return The bytes for field1490. */ + @java.lang.Override public com.google.protobuf.ByteString getField1490Bytes() { java.lang.Object ref = field1490_; @@ -45872,6 +46858,7 @@ public java.lang.String getField1490() { * string field_1491 = 1491; * @return The field1491. */ + @java.lang.Override public java.lang.String getField1491() { java.lang.Object ref = field1491_; if (ref instanceof java.lang.String) { @@ -45888,6 +46875,7 @@ public java.lang.String getField1491() { * string field_1491 = 1491; * @return The bytes for field1491. */ + @java.lang.Override public com.google.protobuf.ByteString getField1491Bytes() { java.lang.Object ref = field1491_; @@ -45908,6 +46896,7 @@ public java.lang.String getField1491() { * string field_1492 = 1492; * @return The field1492. */ + @java.lang.Override public java.lang.String getField1492() { java.lang.Object ref = field1492_; if (ref instanceof java.lang.String) { @@ -45924,6 +46913,7 @@ public java.lang.String getField1492() { * string field_1492 = 1492; * @return The bytes for field1492. */ + @java.lang.Override public com.google.protobuf.ByteString getField1492Bytes() { java.lang.Object ref = field1492_; @@ -45944,6 +46934,7 @@ public java.lang.String getField1492() { * string field_1493 = 1493; * @return The field1493. */ + @java.lang.Override public java.lang.String getField1493() { java.lang.Object ref = field1493_; if (ref instanceof java.lang.String) { @@ -45960,6 +46951,7 @@ public java.lang.String getField1493() { * string field_1493 = 1493; * @return The bytes for field1493. */ + @java.lang.Override public com.google.protobuf.ByteString getField1493Bytes() { java.lang.Object ref = field1493_; @@ -45980,6 +46972,7 @@ public java.lang.String getField1493() { * string field_1494 = 1494; * @return The field1494. */ + @java.lang.Override public java.lang.String getField1494() { java.lang.Object ref = field1494_; if (ref instanceof java.lang.String) { @@ -45996,6 +46989,7 @@ public java.lang.String getField1494() { * string field_1494 = 1494; * @return The bytes for field1494. */ + @java.lang.Override public com.google.protobuf.ByteString getField1494Bytes() { java.lang.Object ref = field1494_; @@ -46016,6 +47010,7 @@ public java.lang.String getField1494() { * string field_1495 = 1495; * @return The field1495. */ + @java.lang.Override public java.lang.String getField1495() { java.lang.Object ref = field1495_; if (ref instanceof java.lang.String) { @@ -46032,6 +47027,7 @@ public java.lang.String getField1495() { * string field_1495 = 1495; * @return The bytes for field1495. */ + @java.lang.Override public com.google.protobuf.ByteString getField1495Bytes() { java.lang.Object ref = field1495_; @@ -46052,6 +47048,7 @@ public java.lang.String getField1495() { * string field_1496 = 1496; * @return The field1496. */ + @java.lang.Override public java.lang.String getField1496() { java.lang.Object ref = field1496_; if (ref instanceof java.lang.String) { @@ -46068,6 +47065,7 @@ public java.lang.String getField1496() { * string field_1496 = 1496; * @return The bytes for field1496. */ + @java.lang.Override public com.google.protobuf.ByteString getField1496Bytes() { java.lang.Object ref = field1496_; @@ -46088,6 +47086,7 @@ public java.lang.String getField1496() { * string field_1497 = 1497; * @return The field1497. */ + @java.lang.Override public java.lang.String getField1497() { java.lang.Object ref = field1497_; if (ref instanceof java.lang.String) { @@ -46104,6 +47103,7 @@ public java.lang.String getField1497() { * string field_1497 = 1497; * @return The bytes for field1497. */ + @java.lang.Override public com.google.protobuf.ByteString getField1497Bytes() { java.lang.Object ref = field1497_; @@ -46124,6 +47124,7 @@ public java.lang.String getField1497() { * string field_1498 = 1498; * @return The field1498. */ + @java.lang.Override public java.lang.String getField1498() { java.lang.Object ref = field1498_; if (ref instanceof java.lang.String) { @@ -46140,6 +47141,7 @@ public java.lang.String getField1498() { * string field_1498 = 1498; * @return The bytes for field1498. */ + @java.lang.Override public com.google.protobuf.ByteString getField1498Bytes() { java.lang.Object ref = field1498_; @@ -46160,6 +47162,7 @@ public java.lang.String getField1498() { * string field_1499 = 1499; * @return The field1499. */ + @java.lang.Override public java.lang.String getField1499() { java.lang.Object ref = field1499_; if (ref instanceof java.lang.String) { @@ -46176,6 +47179,7 @@ public java.lang.String getField1499() { * string field_1499 = 1499; * @return The bytes for field1499. */ + @java.lang.Override public com.google.protobuf.ByteString getField1499Bytes() { java.lang.Object ref = field1499_; @@ -46196,6 +47200,7 @@ public java.lang.String getField1499() { * string field_1500 = 1500; * @return The field1500. */ + @java.lang.Override public java.lang.String getField1500() { java.lang.Object ref = field1500_; if (ref instanceof java.lang.String) { @@ -46212,6 +47217,7 @@ public java.lang.String getField1500() { * string field_1500 = 1500; * @return The bytes for field1500. */ + @java.lang.Override public com.google.protobuf.ByteString getField1500Bytes() { java.lang.Object ref = field1500_; @@ -46232,6 +47238,7 @@ public java.lang.String getField1500() { * string field_1501 = 1501; * @return The field1501. */ + @java.lang.Override public java.lang.String getField1501() { java.lang.Object ref = field1501_; if (ref instanceof java.lang.String) { @@ -46248,6 +47255,7 @@ public java.lang.String getField1501() { * string field_1501 = 1501; * @return The bytes for field1501. */ + @java.lang.Override public com.google.protobuf.ByteString getField1501Bytes() { java.lang.Object ref = field1501_; @@ -46268,6 +47276,7 @@ public java.lang.String getField1501() { * string field_1502 = 1502; * @return The field1502. */ + @java.lang.Override public java.lang.String getField1502() { java.lang.Object ref = field1502_; if (ref instanceof java.lang.String) { @@ -46284,6 +47293,7 @@ public java.lang.String getField1502() { * string field_1502 = 1502; * @return The bytes for field1502. */ + @java.lang.Override public com.google.protobuf.ByteString getField1502Bytes() { java.lang.Object ref = field1502_; @@ -46304,6 +47314,7 @@ public java.lang.String getField1502() { * string field_1503 = 1503; * @return The field1503. */ + @java.lang.Override public java.lang.String getField1503() { java.lang.Object ref = field1503_; if (ref instanceof java.lang.String) { @@ -46320,6 +47331,7 @@ public java.lang.String getField1503() { * string field_1503 = 1503; * @return The bytes for field1503. */ + @java.lang.Override public com.google.protobuf.ByteString getField1503Bytes() { java.lang.Object ref = field1503_; @@ -46340,6 +47352,7 @@ public java.lang.String getField1503() { * string field_1504 = 1504; * @return The field1504. */ + @java.lang.Override public java.lang.String getField1504() { java.lang.Object ref = field1504_; if (ref instanceof java.lang.String) { @@ -46356,6 +47369,7 @@ public java.lang.String getField1504() { * string field_1504 = 1504; * @return The bytes for field1504. */ + @java.lang.Override public com.google.protobuf.ByteString getField1504Bytes() { java.lang.Object ref = field1504_; @@ -46376,6 +47390,7 @@ public java.lang.String getField1504() { * string field_1505 = 1505; * @return The field1505. */ + @java.lang.Override public java.lang.String getField1505() { java.lang.Object ref = field1505_; if (ref instanceof java.lang.String) { @@ -46392,6 +47407,7 @@ public java.lang.String getField1505() { * string field_1505 = 1505; * @return The bytes for field1505. */ + @java.lang.Override public com.google.protobuf.ByteString getField1505Bytes() { java.lang.Object ref = field1505_; @@ -46412,6 +47428,7 @@ public java.lang.String getField1505() { * string field_1506 = 1506; * @return The field1506. */ + @java.lang.Override public java.lang.String getField1506() { java.lang.Object ref = field1506_; if (ref instanceof java.lang.String) { @@ -46428,6 +47445,7 @@ public java.lang.String getField1506() { * string field_1506 = 1506; * @return The bytes for field1506. */ + @java.lang.Override public com.google.protobuf.ByteString getField1506Bytes() { java.lang.Object ref = field1506_; @@ -46448,6 +47466,7 @@ public java.lang.String getField1506() { * string field_1507 = 1507; * @return The field1507. */ + @java.lang.Override public java.lang.String getField1507() { java.lang.Object ref = field1507_; if (ref instanceof java.lang.String) { @@ -46464,6 +47483,7 @@ public java.lang.String getField1507() { * string field_1507 = 1507; * @return The bytes for field1507. */ + @java.lang.Override public com.google.protobuf.ByteString getField1507Bytes() { java.lang.Object ref = field1507_; @@ -46484,6 +47504,7 @@ public java.lang.String getField1507() { * string field_1508 = 1508; * @return The field1508. */ + @java.lang.Override public java.lang.String getField1508() { java.lang.Object ref = field1508_; if (ref instanceof java.lang.String) { @@ -46500,6 +47521,7 @@ public java.lang.String getField1508() { * string field_1508 = 1508; * @return The bytes for field1508. */ + @java.lang.Override public com.google.protobuf.ByteString getField1508Bytes() { java.lang.Object ref = field1508_; @@ -46520,6 +47542,7 @@ public java.lang.String getField1508() { * string field_1509 = 1509; * @return The field1509. */ + @java.lang.Override public java.lang.String getField1509() { java.lang.Object ref = field1509_; if (ref instanceof java.lang.String) { @@ -46536,6 +47559,7 @@ public java.lang.String getField1509() { * string field_1509 = 1509; * @return The bytes for field1509. */ + @java.lang.Override public com.google.protobuf.ByteString getField1509Bytes() { java.lang.Object ref = field1509_; @@ -46556,6 +47580,7 @@ public java.lang.String getField1509() { * string field_1510 = 1510; * @return The field1510. */ + @java.lang.Override public java.lang.String getField1510() { java.lang.Object ref = field1510_; if (ref instanceof java.lang.String) { @@ -46572,6 +47597,7 @@ public java.lang.String getField1510() { * string field_1510 = 1510; * @return The bytes for field1510. */ + @java.lang.Override public com.google.protobuf.ByteString getField1510Bytes() { java.lang.Object ref = field1510_; @@ -46592,6 +47618,7 @@ public java.lang.String getField1510() { * string field_1511 = 1511; * @return The field1511. */ + @java.lang.Override public java.lang.String getField1511() { java.lang.Object ref = field1511_; if (ref instanceof java.lang.String) { @@ -46608,6 +47635,7 @@ public java.lang.String getField1511() { * string field_1511 = 1511; * @return The bytes for field1511. */ + @java.lang.Override public com.google.protobuf.ByteString getField1511Bytes() { java.lang.Object ref = field1511_; @@ -46628,6 +47656,7 @@ public java.lang.String getField1511() { * string field_1512 = 1512; * @return The field1512. */ + @java.lang.Override public java.lang.String getField1512() { java.lang.Object ref = field1512_; if (ref instanceof java.lang.String) { @@ -46644,6 +47673,7 @@ public java.lang.String getField1512() { * string field_1512 = 1512; * @return The bytes for field1512. */ + @java.lang.Override public com.google.protobuf.ByteString getField1512Bytes() { java.lang.Object ref = field1512_; @@ -46664,6 +47694,7 @@ public java.lang.String getField1512() { * string field_1513 = 1513; * @return The field1513. */ + @java.lang.Override public java.lang.String getField1513() { java.lang.Object ref = field1513_; if (ref instanceof java.lang.String) { @@ -46680,6 +47711,7 @@ public java.lang.String getField1513() { * string field_1513 = 1513; * @return The bytes for field1513. */ + @java.lang.Override public com.google.protobuf.ByteString getField1513Bytes() { java.lang.Object ref = field1513_; @@ -46700,6 +47732,7 @@ public java.lang.String getField1513() { * string field_1514 = 1514; * @return The field1514. */ + @java.lang.Override public java.lang.String getField1514() { java.lang.Object ref = field1514_; if (ref instanceof java.lang.String) { @@ -46716,6 +47749,7 @@ public java.lang.String getField1514() { * string field_1514 = 1514; * @return The bytes for field1514. */ + @java.lang.Override public com.google.protobuf.ByteString getField1514Bytes() { java.lang.Object ref = field1514_; @@ -46736,6 +47770,7 @@ public java.lang.String getField1514() { * string field_1515 = 1515; * @return The field1515. */ + @java.lang.Override public java.lang.String getField1515() { java.lang.Object ref = field1515_; if (ref instanceof java.lang.String) { @@ -46752,6 +47787,7 @@ public java.lang.String getField1515() { * string field_1515 = 1515; * @return The bytes for field1515. */ + @java.lang.Override public com.google.protobuf.ByteString getField1515Bytes() { java.lang.Object ref = field1515_; @@ -46772,6 +47808,7 @@ public java.lang.String getField1515() { * string field_1516 = 1516; * @return The field1516. */ + @java.lang.Override public java.lang.String getField1516() { java.lang.Object ref = field1516_; if (ref instanceof java.lang.String) { @@ -46788,6 +47825,7 @@ public java.lang.String getField1516() { * string field_1516 = 1516; * @return The bytes for field1516. */ + @java.lang.Override public com.google.protobuf.ByteString getField1516Bytes() { java.lang.Object ref = field1516_; @@ -46808,6 +47846,7 @@ public java.lang.String getField1516() { * string field_1517 = 1517; * @return The field1517. */ + @java.lang.Override public java.lang.String getField1517() { java.lang.Object ref = field1517_; if (ref instanceof java.lang.String) { @@ -46824,6 +47863,7 @@ public java.lang.String getField1517() { * string field_1517 = 1517; * @return The bytes for field1517. */ + @java.lang.Override public com.google.protobuf.ByteString getField1517Bytes() { java.lang.Object ref = field1517_; @@ -46844,6 +47884,7 @@ public java.lang.String getField1517() { * string field_1518 = 1518; * @return The field1518. */ + @java.lang.Override public java.lang.String getField1518() { java.lang.Object ref = field1518_; if (ref instanceof java.lang.String) { @@ -46860,6 +47901,7 @@ public java.lang.String getField1518() { * string field_1518 = 1518; * @return The bytes for field1518. */ + @java.lang.Override public com.google.protobuf.ByteString getField1518Bytes() { java.lang.Object ref = field1518_; @@ -46880,6 +47922,7 @@ public java.lang.String getField1518() { * string field_1519 = 1519; * @return The field1519. */ + @java.lang.Override public java.lang.String getField1519() { java.lang.Object ref = field1519_; if (ref instanceof java.lang.String) { @@ -46896,6 +47939,7 @@ public java.lang.String getField1519() { * string field_1519 = 1519; * @return The bytes for field1519. */ + @java.lang.Override public com.google.protobuf.ByteString getField1519Bytes() { java.lang.Object ref = field1519_; @@ -46916,6 +47960,7 @@ public java.lang.String getField1519() { * string field_1520 = 1520; * @return The field1520. */ + @java.lang.Override public java.lang.String getField1520() { java.lang.Object ref = field1520_; if (ref instanceof java.lang.String) { @@ -46932,6 +47977,7 @@ public java.lang.String getField1520() { * string field_1520 = 1520; * @return The bytes for field1520. */ + @java.lang.Override public com.google.protobuf.ByteString getField1520Bytes() { java.lang.Object ref = field1520_; @@ -46952,6 +47998,7 @@ public java.lang.String getField1520() { * string field_1521 = 1521; * @return The field1521. */ + @java.lang.Override public java.lang.String getField1521() { java.lang.Object ref = field1521_; if (ref instanceof java.lang.String) { @@ -46968,6 +48015,7 @@ public java.lang.String getField1521() { * string field_1521 = 1521; * @return The bytes for field1521. */ + @java.lang.Override public com.google.protobuf.ByteString getField1521Bytes() { java.lang.Object ref = field1521_; @@ -46988,6 +48036,7 @@ public java.lang.String getField1521() { * string field_1522 = 1522; * @return The field1522. */ + @java.lang.Override public java.lang.String getField1522() { java.lang.Object ref = field1522_; if (ref instanceof java.lang.String) { @@ -47004,6 +48053,7 @@ public java.lang.String getField1522() { * string field_1522 = 1522; * @return The bytes for field1522. */ + @java.lang.Override public com.google.protobuf.ByteString getField1522Bytes() { java.lang.Object ref = field1522_; @@ -47024,6 +48074,7 @@ public java.lang.String getField1522() { * string field_1523 = 1523; * @return The field1523. */ + @java.lang.Override public java.lang.String getField1523() { java.lang.Object ref = field1523_; if (ref instanceof java.lang.String) { @@ -47040,6 +48091,7 @@ public java.lang.String getField1523() { * string field_1523 = 1523; * @return The bytes for field1523. */ + @java.lang.Override public com.google.protobuf.ByteString getField1523Bytes() { java.lang.Object ref = field1523_; @@ -47060,6 +48112,7 @@ public java.lang.String getField1523() { * string field_1524 = 1524; * @return The field1524. */ + @java.lang.Override public java.lang.String getField1524() { java.lang.Object ref = field1524_; if (ref instanceof java.lang.String) { @@ -47076,6 +48129,7 @@ public java.lang.String getField1524() { * string field_1524 = 1524; * @return The bytes for field1524. */ + @java.lang.Override public com.google.protobuf.ByteString getField1524Bytes() { java.lang.Object ref = field1524_; @@ -47096,6 +48150,7 @@ public java.lang.String getField1524() { * string field_1525 = 1525; * @return The field1525. */ + @java.lang.Override public java.lang.String getField1525() { java.lang.Object ref = field1525_; if (ref instanceof java.lang.String) { @@ -47112,6 +48167,7 @@ public java.lang.String getField1525() { * string field_1525 = 1525; * @return The bytes for field1525. */ + @java.lang.Override public com.google.protobuf.ByteString getField1525Bytes() { java.lang.Object ref = field1525_; @@ -47132,6 +48188,7 @@ public java.lang.String getField1525() { * string field_1526 = 1526; * @return The field1526. */ + @java.lang.Override public java.lang.String getField1526() { java.lang.Object ref = field1526_; if (ref instanceof java.lang.String) { @@ -47148,6 +48205,7 @@ public java.lang.String getField1526() { * string field_1526 = 1526; * @return The bytes for field1526. */ + @java.lang.Override public com.google.protobuf.ByteString getField1526Bytes() { java.lang.Object ref = field1526_; @@ -47168,6 +48226,7 @@ public java.lang.String getField1526() { * string field_1527 = 1527; * @return The field1527. */ + @java.lang.Override public java.lang.String getField1527() { java.lang.Object ref = field1527_; if (ref instanceof java.lang.String) { @@ -47184,6 +48243,7 @@ public java.lang.String getField1527() { * string field_1527 = 1527; * @return The bytes for field1527. */ + @java.lang.Override public com.google.protobuf.ByteString getField1527Bytes() { java.lang.Object ref = field1527_; @@ -47204,6 +48264,7 @@ public java.lang.String getField1527() { * string field_1528 = 1528; * @return The field1528. */ + @java.lang.Override public java.lang.String getField1528() { java.lang.Object ref = field1528_; if (ref instanceof java.lang.String) { @@ -47220,6 +48281,7 @@ public java.lang.String getField1528() { * string field_1528 = 1528; * @return The bytes for field1528. */ + @java.lang.Override public com.google.protobuf.ByteString getField1528Bytes() { java.lang.Object ref = field1528_; @@ -47240,6 +48302,7 @@ public java.lang.String getField1528() { * string field_1529 = 1529; * @return The field1529. */ + @java.lang.Override public java.lang.String getField1529() { java.lang.Object ref = field1529_; if (ref instanceof java.lang.String) { @@ -47256,6 +48319,7 @@ public java.lang.String getField1529() { * string field_1529 = 1529; * @return The bytes for field1529. */ + @java.lang.Override public com.google.protobuf.ByteString getField1529Bytes() { java.lang.Object ref = field1529_; @@ -47276,6 +48340,7 @@ public java.lang.String getField1529() { * string field_1530 = 1530; * @return The field1530. */ + @java.lang.Override public java.lang.String getField1530() { java.lang.Object ref = field1530_; if (ref instanceof java.lang.String) { @@ -47292,6 +48357,7 @@ public java.lang.String getField1530() { * string field_1530 = 1530; * @return The bytes for field1530. */ + @java.lang.Override public com.google.protobuf.ByteString getField1530Bytes() { java.lang.Object ref = field1530_; @@ -47312,6 +48378,7 @@ public java.lang.String getField1530() { * string field_1531 = 1531; * @return The field1531. */ + @java.lang.Override public java.lang.String getField1531() { java.lang.Object ref = field1531_; if (ref instanceof java.lang.String) { @@ -47328,6 +48395,7 @@ public java.lang.String getField1531() { * string field_1531 = 1531; * @return The bytes for field1531. */ + @java.lang.Override public com.google.protobuf.ByteString getField1531Bytes() { java.lang.Object ref = field1531_; @@ -47348,6 +48416,7 @@ public java.lang.String getField1531() { * string field_1532 = 1532; * @return The field1532. */ + @java.lang.Override public java.lang.String getField1532() { java.lang.Object ref = field1532_; if (ref instanceof java.lang.String) { @@ -47364,6 +48433,7 @@ public java.lang.String getField1532() { * string field_1532 = 1532; * @return The bytes for field1532. */ + @java.lang.Override public com.google.protobuf.ByteString getField1532Bytes() { java.lang.Object ref = field1532_; @@ -47384,6 +48454,7 @@ public java.lang.String getField1532() { * string field_1533 = 1533; * @return The field1533. */ + @java.lang.Override public java.lang.String getField1533() { java.lang.Object ref = field1533_; if (ref instanceof java.lang.String) { @@ -47400,6 +48471,7 @@ public java.lang.String getField1533() { * string field_1533 = 1533; * @return The bytes for field1533. */ + @java.lang.Override public com.google.protobuf.ByteString getField1533Bytes() { java.lang.Object ref = field1533_; @@ -47420,6 +48492,7 @@ public java.lang.String getField1533() { * string field_1534 = 1534; * @return The field1534. */ + @java.lang.Override public java.lang.String getField1534() { java.lang.Object ref = field1534_; if (ref instanceof java.lang.String) { @@ -47436,6 +48509,7 @@ public java.lang.String getField1534() { * string field_1534 = 1534; * @return The bytes for field1534. */ + @java.lang.Override public com.google.protobuf.ByteString getField1534Bytes() { java.lang.Object ref = field1534_; @@ -47456,6 +48530,7 @@ public java.lang.String getField1534() { * string field_1535 = 1535; * @return The field1535. */ + @java.lang.Override public java.lang.String getField1535() { java.lang.Object ref = field1535_; if (ref instanceof java.lang.String) { @@ -47472,6 +48547,7 @@ public java.lang.String getField1535() { * string field_1535 = 1535; * @return The bytes for field1535. */ + @java.lang.Override public com.google.protobuf.ByteString getField1535Bytes() { java.lang.Object ref = field1535_; @@ -47492,6 +48568,7 @@ public java.lang.String getField1535() { * string field_1536 = 1536; * @return The field1536. */ + @java.lang.Override public java.lang.String getField1536() { java.lang.Object ref = field1536_; if (ref instanceof java.lang.String) { @@ -47508,6 +48585,7 @@ public java.lang.String getField1536() { * string field_1536 = 1536; * @return The bytes for field1536. */ + @java.lang.Override public com.google.protobuf.ByteString getField1536Bytes() { java.lang.Object ref = field1536_; @@ -47528,6 +48606,7 @@ public java.lang.String getField1536() { * string field_1537 = 1537; * @return The field1537. */ + @java.lang.Override public java.lang.String getField1537() { java.lang.Object ref = field1537_; if (ref instanceof java.lang.String) { @@ -47544,6 +48623,7 @@ public java.lang.String getField1537() { * string field_1537 = 1537; * @return The bytes for field1537. */ + @java.lang.Override public com.google.protobuf.ByteString getField1537Bytes() { java.lang.Object ref = field1537_; @@ -47564,6 +48644,7 @@ public java.lang.String getField1537() { * string field_1538 = 1538; * @return The field1538. */ + @java.lang.Override public java.lang.String getField1538() { java.lang.Object ref = field1538_; if (ref instanceof java.lang.String) { @@ -47580,6 +48661,7 @@ public java.lang.String getField1538() { * string field_1538 = 1538; * @return The bytes for field1538. */ + @java.lang.Override public com.google.protobuf.ByteString getField1538Bytes() { java.lang.Object ref = field1538_; @@ -47600,6 +48682,7 @@ public java.lang.String getField1538() { * string field_1539 = 1539; * @return The field1539. */ + @java.lang.Override public java.lang.String getField1539() { java.lang.Object ref = field1539_; if (ref instanceof java.lang.String) { @@ -47616,6 +48699,7 @@ public java.lang.String getField1539() { * string field_1539 = 1539; * @return The bytes for field1539. */ + @java.lang.Override public com.google.protobuf.ByteString getField1539Bytes() { java.lang.Object ref = field1539_; @@ -47636,6 +48720,7 @@ public java.lang.String getField1539() { * string field_1540 = 1540; * @return The field1540. */ + @java.lang.Override public java.lang.String getField1540() { java.lang.Object ref = field1540_; if (ref instanceof java.lang.String) { @@ -47652,6 +48737,7 @@ public java.lang.String getField1540() { * string field_1540 = 1540; * @return The bytes for field1540. */ + @java.lang.Override public com.google.protobuf.ByteString getField1540Bytes() { java.lang.Object ref = field1540_; @@ -47672,6 +48758,7 @@ public java.lang.String getField1540() { * string field_1541 = 1541; * @return The field1541. */ + @java.lang.Override public java.lang.String getField1541() { java.lang.Object ref = field1541_; if (ref instanceof java.lang.String) { @@ -47688,6 +48775,7 @@ public java.lang.String getField1541() { * string field_1541 = 1541; * @return The bytes for field1541. */ + @java.lang.Override public com.google.protobuf.ByteString getField1541Bytes() { java.lang.Object ref = field1541_; @@ -47708,6 +48796,7 @@ public java.lang.String getField1541() { * string field_1542 = 1542; * @return The field1542. */ + @java.lang.Override public java.lang.String getField1542() { java.lang.Object ref = field1542_; if (ref instanceof java.lang.String) { @@ -47724,6 +48813,7 @@ public java.lang.String getField1542() { * string field_1542 = 1542; * @return The bytes for field1542. */ + @java.lang.Override public com.google.protobuf.ByteString getField1542Bytes() { java.lang.Object ref = field1542_; @@ -47744,6 +48834,7 @@ public java.lang.String getField1542() { * string field_1543 = 1543; * @return The field1543. */ + @java.lang.Override public java.lang.String getField1543() { java.lang.Object ref = field1543_; if (ref instanceof java.lang.String) { @@ -47760,6 +48851,7 @@ public java.lang.String getField1543() { * string field_1543 = 1543; * @return The bytes for field1543. */ + @java.lang.Override public com.google.protobuf.ByteString getField1543Bytes() { java.lang.Object ref = field1543_; @@ -47780,6 +48872,7 @@ public java.lang.String getField1543() { * string field_1544 = 1544; * @return The field1544. */ + @java.lang.Override public java.lang.String getField1544() { java.lang.Object ref = field1544_; if (ref instanceof java.lang.String) { @@ -47796,6 +48889,7 @@ public java.lang.String getField1544() { * string field_1544 = 1544; * @return The bytes for field1544. */ + @java.lang.Override public com.google.protobuf.ByteString getField1544Bytes() { java.lang.Object ref = field1544_; @@ -47816,6 +48910,7 @@ public java.lang.String getField1544() { * string field_1545 = 1545; * @return The field1545. */ + @java.lang.Override public java.lang.String getField1545() { java.lang.Object ref = field1545_; if (ref instanceof java.lang.String) { @@ -47832,6 +48927,7 @@ public java.lang.String getField1545() { * string field_1545 = 1545; * @return The bytes for field1545. */ + @java.lang.Override public com.google.protobuf.ByteString getField1545Bytes() { java.lang.Object ref = field1545_; @@ -47852,6 +48948,7 @@ public java.lang.String getField1545() { * string field_1546 = 1546; * @return The field1546. */ + @java.lang.Override public java.lang.String getField1546() { java.lang.Object ref = field1546_; if (ref instanceof java.lang.String) { @@ -47868,6 +48965,7 @@ public java.lang.String getField1546() { * string field_1546 = 1546; * @return The bytes for field1546. */ + @java.lang.Override public com.google.protobuf.ByteString getField1546Bytes() { java.lang.Object ref = field1546_; @@ -47888,6 +48986,7 @@ public java.lang.String getField1546() { * string field_1547 = 1547; * @return The field1547. */ + @java.lang.Override public java.lang.String getField1547() { java.lang.Object ref = field1547_; if (ref instanceof java.lang.String) { @@ -47904,6 +49003,7 @@ public java.lang.String getField1547() { * string field_1547 = 1547; * @return The bytes for field1547. */ + @java.lang.Override public com.google.protobuf.ByteString getField1547Bytes() { java.lang.Object ref = field1547_; @@ -47924,6 +49024,7 @@ public java.lang.String getField1547() { * string field_1548 = 1548; * @return The field1548. */ + @java.lang.Override public java.lang.String getField1548() { java.lang.Object ref = field1548_; if (ref instanceof java.lang.String) { @@ -47940,6 +49041,7 @@ public java.lang.String getField1548() { * string field_1548 = 1548; * @return The bytes for field1548. */ + @java.lang.Override public com.google.protobuf.ByteString getField1548Bytes() { java.lang.Object ref = field1548_; @@ -47960,6 +49062,7 @@ public java.lang.String getField1548() { * string field_1549 = 1549; * @return The field1549. */ + @java.lang.Override public java.lang.String getField1549() { java.lang.Object ref = field1549_; if (ref instanceof java.lang.String) { @@ -47976,6 +49079,7 @@ public java.lang.String getField1549() { * string field_1549 = 1549; * @return The bytes for field1549. */ + @java.lang.Override public com.google.protobuf.ByteString getField1549Bytes() { java.lang.Object ref = field1549_; @@ -47996,6 +49100,7 @@ public java.lang.String getField1549() { * string field_1550 = 1550; * @return The field1550. */ + @java.lang.Override public java.lang.String getField1550() { java.lang.Object ref = field1550_; if (ref instanceof java.lang.String) { @@ -48012,6 +49117,7 @@ public java.lang.String getField1550() { * string field_1550 = 1550; * @return The bytes for field1550. */ + @java.lang.Override public com.google.protobuf.ByteString getField1550Bytes() { java.lang.Object ref = field1550_; @@ -48032,6 +49138,7 @@ public java.lang.String getField1550() { * string field_1551 = 1551; * @return The field1551. */ + @java.lang.Override public java.lang.String getField1551() { java.lang.Object ref = field1551_; if (ref instanceof java.lang.String) { @@ -48048,6 +49155,7 @@ public java.lang.String getField1551() { * string field_1551 = 1551; * @return The bytes for field1551. */ + @java.lang.Override public com.google.protobuf.ByteString getField1551Bytes() { java.lang.Object ref = field1551_; @@ -48068,6 +49176,7 @@ public java.lang.String getField1551() { * string field_1552 = 1552; * @return The field1552. */ + @java.lang.Override public java.lang.String getField1552() { java.lang.Object ref = field1552_; if (ref instanceof java.lang.String) { @@ -48084,6 +49193,7 @@ public java.lang.String getField1552() { * string field_1552 = 1552; * @return The bytes for field1552. */ + @java.lang.Override public com.google.protobuf.ByteString getField1552Bytes() { java.lang.Object ref = field1552_; @@ -48104,6 +49214,7 @@ public java.lang.String getField1552() { * string field_1553 = 1553; * @return The field1553. */ + @java.lang.Override public java.lang.String getField1553() { java.lang.Object ref = field1553_; if (ref instanceof java.lang.String) { @@ -48120,6 +49231,7 @@ public java.lang.String getField1553() { * string field_1553 = 1553; * @return The bytes for field1553. */ + @java.lang.Override public com.google.protobuf.ByteString getField1553Bytes() { java.lang.Object ref = field1553_; @@ -48140,6 +49252,7 @@ public java.lang.String getField1553() { * string field_1554 = 1554; * @return The field1554. */ + @java.lang.Override public java.lang.String getField1554() { java.lang.Object ref = field1554_; if (ref instanceof java.lang.String) { @@ -48156,6 +49269,7 @@ public java.lang.String getField1554() { * string field_1554 = 1554; * @return The bytes for field1554. */ + @java.lang.Override public com.google.protobuf.ByteString getField1554Bytes() { java.lang.Object ref = field1554_; @@ -48176,6 +49290,7 @@ public java.lang.String getField1554() { * string field_1555 = 1555; * @return The field1555. */ + @java.lang.Override public java.lang.String getField1555() { java.lang.Object ref = field1555_; if (ref instanceof java.lang.String) { @@ -48192,6 +49307,7 @@ public java.lang.String getField1555() { * string field_1555 = 1555; * @return The bytes for field1555. */ + @java.lang.Override public com.google.protobuf.ByteString getField1555Bytes() { java.lang.Object ref = field1555_; @@ -48212,6 +49328,7 @@ public java.lang.String getField1555() { * string field_1556 = 1556; * @return The field1556. */ + @java.lang.Override public java.lang.String getField1556() { java.lang.Object ref = field1556_; if (ref instanceof java.lang.String) { @@ -48228,6 +49345,7 @@ public java.lang.String getField1556() { * string field_1556 = 1556; * @return The bytes for field1556. */ + @java.lang.Override public com.google.protobuf.ByteString getField1556Bytes() { java.lang.Object ref = field1556_; @@ -48248,6 +49366,7 @@ public java.lang.String getField1556() { * string field_1557 = 1557; * @return The field1557. */ + @java.lang.Override public java.lang.String getField1557() { java.lang.Object ref = field1557_; if (ref instanceof java.lang.String) { @@ -48264,6 +49383,7 @@ public java.lang.String getField1557() { * string field_1557 = 1557; * @return The bytes for field1557. */ + @java.lang.Override public com.google.protobuf.ByteString getField1557Bytes() { java.lang.Object ref = field1557_; @@ -48284,6 +49404,7 @@ public java.lang.String getField1557() { * string field_1558 = 1558; * @return The field1558. */ + @java.lang.Override public java.lang.String getField1558() { java.lang.Object ref = field1558_; if (ref instanceof java.lang.String) { @@ -48300,6 +49421,7 @@ public java.lang.String getField1558() { * string field_1558 = 1558; * @return The bytes for field1558. */ + @java.lang.Override public com.google.protobuf.ByteString getField1558Bytes() { java.lang.Object ref = field1558_; @@ -48320,6 +49442,7 @@ public java.lang.String getField1558() { * string field_1559 = 1559; * @return The field1559. */ + @java.lang.Override public java.lang.String getField1559() { java.lang.Object ref = field1559_; if (ref instanceof java.lang.String) { @@ -48336,6 +49459,7 @@ public java.lang.String getField1559() { * string field_1559 = 1559; * @return The bytes for field1559. */ + @java.lang.Override public com.google.protobuf.ByteString getField1559Bytes() { java.lang.Object ref = field1559_; @@ -48356,6 +49480,7 @@ public java.lang.String getField1559() { * string field_1560 = 1560; * @return The field1560. */ + @java.lang.Override public java.lang.String getField1560() { java.lang.Object ref = field1560_; if (ref instanceof java.lang.String) { @@ -48372,6 +49497,7 @@ public java.lang.String getField1560() { * string field_1560 = 1560; * @return The bytes for field1560. */ + @java.lang.Override public com.google.protobuf.ByteString getField1560Bytes() { java.lang.Object ref = field1560_; @@ -48392,6 +49518,7 @@ public java.lang.String getField1560() { * string field_1561 = 1561; * @return The field1561. */ + @java.lang.Override public java.lang.String getField1561() { java.lang.Object ref = field1561_; if (ref instanceof java.lang.String) { @@ -48408,6 +49535,7 @@ public java.lang.String getField1561() { * string field_1561 = 1561; * @return The bytes for field1561. */ + @java.lang.Override public com.google.protobuf.ByteString getField1561Bytes() { java.lang.Object ref = field1561_; @@ -48428,6 +49556,7 @@ public java.lang.String getField1561() { * string field_1562 = 1562; * @return The field1562. */ + @java.lang.Override public java.lang.String getField1562() { java.lang.Object ref = field1562_; if (ref instanceof java.lang.String) { @@ -48444,6 +49573,7 @@ public java.lang.String getField1562() { * string field_1562 = 1562; * @return The bytes for field1562. */ + @java.lang.Override public com.google.protobuf.ByteString getField1562Bytes() { java.lang.Object ref = field1562_; @@ -48464,6 +49594,7 @@ public java.lang.String getField1562() { * string field_1563 = 1563; * @return The field1563. */ + @java.lang.Override public java.lang.String getField1563() { java.lang.Object ref = field1563_; if (ref instanceof java.lang.String) { @@ -48480,6 +49611,7 @@ public java.lang.String getField1563() { * string field_1563 = 1563; * @return The bytes for field1563. */ + @java.lang.Override public com.google.protobuf.ByteString getField1563Bytes() { java.lang.Object ref = field1563_; @@ -48500,6 +49632,7 @@ public java.lang.String getField1563() { * string field_1564 = 1564; * @return The field1564. */ + @java.lang.Override public java.lang.String getField1564() { java.lang.Object ref = field1564_; if (ref instanceof java.lang.String) { @@ -48516,6 +49649,7 @@ public java.lang.String getField1564() { * string field_1564 = 1564; * @return The bytes for field1564. */ + @java.lang.Override public com.google.protobuf.ByteString getField1564Bytes() { java.lang.Object ref = field1564_; @@ -48536,6 +49670,7 @@ public java.lang.String getField1564() { * string field_1565 = 1565; * @return The field1565. */ + @java.lang.Override public java.lang.String getField1565() { java.lang.Object ref = field1565_; if (ref instanceof java.lang.String) { @@ -48552,6 +49687,7 @@ public java.lang.String getField1565() { * string field_1565 = 1565; * @return The bytes for field1565. */ + @java.lang.Override public com.google.protobuf.ByteString getField1565Bytes() { java.lang.Object ref = field1565_; @@ -48572,6 +49708,7 @@ public java.lang.String getField1565() { * string field_1566 = 1566; * @return The field1566. */ + @java.lang.Override public java.lang.String getField1566() { java.lang.Object ref = field1566_; if (ref instanceof java.lang.String) { @@ -48588,6 +49725,7 @@ public java.lang.String getField1566() { * string field_1566 = 1566; * @return The bytes for field1566. */ + @java.lang.Override public com.google.protobuf.ByteString getField1566Bytes() { java.lang.Object ref = field1566_; @@ -48608,6 +49746,7 @@ public java.lang.String getField1566() { * string field_1567 = 1567; * @return The field1567. */ + @java.lang.Override public java.lang.String getField1567() { java.lang.Object ref = field1567_; if (ref instanceof java.lang.String) { @@ -48624,6 +49763,7 @@ public java.lang.String getField1567() { * string field_1567 = 1567; * @return The bytes for field1567. */ + @java.lang.Override public com.google.protobuf.ByteString getField1567Bytes() { java.lang.Object ref = field1567_; @@ -48644,6 +49784,7 @@ public java.lang.String getField1567() { * string field_1568 = 1568; * @return The field1568. */ + @java.lang.Override public java.lang.String getField1568() { java.lang.Object ref = field1568_; if (ref instanceof java.lang.String) { @@ -48660,6 +49801,7 @@ public java.lang.String getField1568() { * string field_1568 = 1568; * @return The bytes for field1568. */ + @java.lang.Override public com.google.protobuf.ByteString getField1568Bytes() { java.lang.Object ref = field1568_; @@ -48680,6 +49822,7 @@ public java.lang.String getField1568() { * string field_1569 = 1569; * @return The field1569. */ + @java.lang.Override public java.lang.String getField1569() { java.lang.Object ref = field1569_; if (ref instanceof java.lang.String) { @@ -48696,6 +49839,7 @@ public java.lang.String getField1569() { * string field_1569 = 1569; * @return The bytes for field1569. */ + @java.lang.Override public com.google.protobuf.ByteString getField1569Bytes() { java.lang.Object ref = field1569_; @@ -48716,6 +49860,7 @@ public java.lang.String getField1569() { * string field_1570 = 1570; * @return The field1570. */ + @java.lang.Override public java.lang.String getField1570() { java.lang.Object ref = field1570_; if (ref instanceof java.lang.String) { @@ -48732,6 +49877,7 @@ public java.lang.String getField1570() { * string field_1570 = 1570; * @return The bytes for field1570. */ + @java.lang.Override public com.google.protobuf.ByteString getField1570Bytes() { java.lang.Object ref = field1570_; @@ -48752,6 +49898,7 @@ public java.lang.String getField1570() { * string field_1571 = 1571; * @return The field1571. */ + @java.lang.Override public java.lang.String getField1571() { java.lang.Object ref = field1571_; if (ref instanceof java.lang.String) { @@ -48768,6 +49915,7 @@ public java.lang.String getField1571() { * string field_1571 = 1571; * @return The bytes for field1571. */ + @java.lang.Override public com.google.protobuf.ByteString getField1571Bytes() { java.lang.Object ref = field1571_; @@ -48788,6 +49936,7 @@ public java.lang.String getField1571() { * string field_1572 = 1572; * @return The field1572. */ + @java.lang.Override public java.lang.String getField1572() { java.lang.Object ref = field1572_; if (ref instanceof java.lang.String) { @@ -48804,6 +49953,7 @@ public java.lang.String getField1572() { * string field_1572 = 1572; * @return The bytes for field1572. */ + @java.lang.Override public com.google.protobuf.ByteString getField1572Bytes() { java.lang.Object ref = field1572_; @@ -48824,6 +49974,7 @@ public java.lang.String getField1572() { * string field_1573 = 1573; * @return The field1573. */ + @java.lang.Override public java.lang.String getField1573() { java.lang.Object ref = field1573_; if (ref instanceof java.lang.String) { @@ -48840,6 +49991,7 @@ public java.lang.String getField1573() { * string field_1573 = 1573; * @return The bytes for field1573. */ + @java.lang.Override public com.google.protobuf.ByteString getField1573Bytes() { java.lang.Object ref = field1573_; @@ -48860,6 +50012,7 @@ public java.lang.String getField1573() { * string field_1574 = 1574; * @return The field1574. */ + @java.lang.Override public java.lang.String getField1574() { java.lang.Object ref = field1574_; if (ref instanceof java.lang.String) { @@ -48876,6 +50029,7 @@ public java.lang.String getField1574() { * string field_1574 = 1574; * @return The bytes for field1574. */ + @java.lang.Override public com.google.protobuf.ByteString getField1574Bytes() { java.lang.Object ref = field1574_; @@ -48896,6 +50050,7 @@ public java.lang.String getField1574() { * string field_1575 = 1575; * @return The field1575. */ + @java.lang.Override public java.lang.String getField1575() { java.lang.Object ref = field1575_; if (ref instanceof java.lang.String) { @@ -48912,6 +50067,7 @@ public java.lang.String getField1575() { * string field_1575 = 1575; * @return The bytes for field1575. */ + @java.lang.Override public com.google.protobuf.ByteString getField1575Bytes() { java.lang.Object ref = field1575_; @@ -48932,6 +50088,7 @@ public java.lang.String getField1575() { * string field_1576 = 1576; * @return The field1576. */ + @java.lang.Override public java.lang.String getField1576() { java.lang.Object ref = field1576_; if (ref instanceof java.lang.String) { @@ -48948,6 +50105,7 @@ public java.lang.String getField1576() { * string field_1576 = 1576; * @return The bytes for field1576. */ + @java.lang.Override public com.google.protobuf.ByteString getField1576Bytes() { java.lang.Object ref = field1576_; @@ -48968,6 +50126,7 @@ public java.lang.String getField1576() { * string field_1577 = 1577; * @return The field1577. */ + @java.lang.Override public java.lang.String getField1577() { java.lang.Object ref = field1577_; if (ref instanceof java.lang.String) { @@ -48984,6 +50143,7 @@ public java.lang.String getField1577() { * string field_1577 = 1577; * @return The bytes for field1577. */ + @java.lang.Override public com.google.protobuf.ByteString getField1577Bytes() { java.lang.Object ref = field1577_; @@ -49004,6 +50164,7 @@ public java.lang.String getField1577() { * string field_1578 = 1578; * @return The field1578. */ + @java.lang.Override public java.lang.String getField1578() { java.lang.Object ref = field1578_; if (ref instanceof java.lang.String) { @@ -49020,6 +50181,7 @@ public java.lang.String getField1578() { * string field_1578 = 1578; * @return The bytes for field1578. */ + @java.lang.Override public com.google.protobuf.ByteString getField1578Bytes() { java.lang.Object ref = field1578_; @@ -49040,6 +50202,7 @@ public java.lang.String getField1578() { * string field_1579 = 1579; * @return The field1579. */ + @java.lang.Override public java.lang.String getField1579() { java.lang.Object ref = field1579_; if (ref instanceof java.lang.String) { @@ -49056,6 +50219,7 @@ public java.lang.String getField1579() { * string field_1579 = 1579; * @return The bytes for field1579. */ + @java.lang.Override public com.google.protobuf.ByteString getField1579Bytes() { java.lang.Object ref = field1579_; @@ -49076,6 +50240,7 @@ public java.lang.String getField1579() { * string field_1580 = 1580; * @return The field1580. */ + @java.lang.Override public java.lang.String getField1580() { java.lang.Object ref = field1580_; if (ref instanceof java.lang.String) { @@ -49092,6 +50257,7 @@ public java.lang.String getField1580() { * string field_1580 = 1580; * @return The bytes for field1580. */ + @java.lang.Override public com.google.protobuf.ByteString getField1580Bytes() { java.lang.Object ref = field1580_; @@ -49112,6 +50278,7 @@ public java.lang.String getField1580() { * string field_1581 = 1581; * @return The field1581. */ + @java.lang.Override public java.lang.String getField1581() { java.lang.Object ref = field1581_; if (ref instanceof java.lang.String) { @@ -49128,6 +50295,7 @@ public java.lang.String getField1581() { * string field_1581 = 1581; * @return The bytes for field1581. */ + @java.lang.Override public com.google.protobuf.ByteString getField1581Bytes() { java.lang.Object ref = field1581_; @@ -49148,6 +50316,7 @@ public java.lang.String getField1581() { * string field_1582 = 1582; * @return The field1582. */ + @java.lang.Override public java.lang.String getField1582() { java.lang.Object ref = field1582_; if (ref instanceof java.lang.String) { @@ -49164,6 +50333,7 @@ public java.lang.String getField1582() { * string field_1582 = 1582; * @return The bytes for field1582. */ + @java.lang.Override public com.google.protobuf.ByteString getField1582Bytes() { java.lang.Object ref = field1582_; @@ -49184,6 +50354,7 @@ public java.lang.String getField1582() { * string field_1583 = 1583; * @return The field1583. */ + @java.lang.Override public java.lang.String getField1583() { java.lang.Object ref = field1583_; if (ref instanceof java.lang.String) { @@ -49200,6 +50371,7 @@ public java.lang.String getField1583() { * string field_1583 = 1583; * @return The bytes for field1583. */ + @java.lang.Override public com.google.protobuf.ByteString getField1583Bytes() { java.lang.Object ref = field1583_; @@ -49220,6 +50392,7 @@ public java.lang.String getField1583() { * string field_1584 = 1584; * @return The field1584. */ + @java.lang.Override public java.lang.String getField1584() { java.lang.Object ref = field1584_; if (ref instanceof java.lang.String) { @@ -49236,6 +50409,7 @@ public java.lang.String getField1584() { * string field_1584 = 1584; * @return The bytes for field1584. */ + @java.lang.Override public com.google.protobuf.ByteString getField1584Bytes() { java.lang.Object ref = field1584_; @@ -49256,6 +50430,7 @@ public java.lang.String getField1584() { * string field_1585 = 1585; * @return The field1585. */ + @java.lang.Override public java.lang.String getField1585() { java.lang.Object ref = field1585_; if (ref instanceof java.lang.String) { @@ -49272,6 +50447,7 @@ public java.lang.String getField1585() { * string field_1585 = 1585; * @return The bytes for field1585. */ + @java.lang.Override public com.google.protobuf.ByteString getField1585Bytes() { java.lang.Object ref = field1585_; @@ -49292,6 +50468,7 @@ public java.lang.String getField1585() { * string field_1586 = 1586; * @return The field1586. */ + @java.lang.Override public java.lang.String getField1586() { java.lang.Object ref = field1586_; if (ref instanceof java.lang.String) { @@ -49308,6 +50485,7 @@ public java.lang.String getField1586() { * string field_1586 = 1586; * @return The bytes for field1586. */ + @java.lang.Override public com.google.protobuf.ByteString getField1586Bytes() { java.lang.Object ref = field1586_; @@ -49328,6 +50506,7 @@ public java.lang.String getField1586() { * string field_1587 = 1587; * @return The field1587. */ + @java.lang.Override public java.lang.String getField1587() { java.lang.Object ref = field1587_; if (ref instanceof java.lang.String) { @@ -49344,6 +50523,7 @@ public java.lang.String getField1587() { * string field_1587 = 1587; * @return The bytes for field1587. */ + @java.lang.Override public com.google.protobuf.ByteString getField1587Bytes() { java.lang.Object ref = field1587_; @@ -49364,6 +50544,7 @@ public java.lang.String getField1587() { * string field_1588 = 1588; * @return The field1588. */ + @java.lang.Override public java.lang.String getField1588() { java.lang.Object ref = field1588_; if (ref instanceof java.lang.String) { @@ -49380,6 +50561,7 @@ public java.lang.String getField1588() { * string field_1588 = 1588; * @return The bytes for field1588. */ + @java.lang.Override public com.google.protobuf.ByteString getField1588Bytes() { java.lang.Object ref = field1588_; @@ -49400,6 +50582,7 @@ public java.lang.String getField1588() { * string field_1589 = 1589; * @return The field1589. */ + @java.lang.Override public java.lang.String getField1589() { java.lang.Object ref = field1589_; if (ref instanceof java.lang.String) { @@ -49416,6 +50599,7 @@ public java.lang.String getField1589() { * string field_1589 = 1589; * @return The bytes for field1589. */ + @java.lang.Override public com.google.protobuf.ByteString getField1589Bytes() { java.lang.Object ref = field1589_; @@ -49436,6 +50620,7 @@ public java.lang.String getField1589() { * string field_1590 = 1590; * @return The field1590. */ + @java.lang.Override public java.lang.String getField1590() { java.lang.Object ref = field1590_; if (ref instanceof java.lang.String) { @@ -49452,6 +50637,7 @@ public java.lang.String getField1590() { * string field_1590 = 1590; * @return The bytes for field1590. */ + @java.lang.Override public com.google.protobuf.ByteString getField1590Bytes() { java.lang.Object ref = field1590_; @@ -49472,6 +50658,7 @@ public java.lang.String getField1590() { * string field_1591 = 1591; * @return The field1591. */ + @java.lang.Override public java.lang.String getField1591() { java.lang.Object ref = field1591_; if (ref instanceof java.lang.String) { @@ -49488,6 +50675,7 @@ public java.lang.String getField1591() { * string field_1591 = 1591; * @return The bytes for field1591. */ + @java.lang.Override public com.google.protobuf.ByteString getField1591Bytes() { java.lang.Object ref = field1591_; @@ -49508,6 +50696,7 @@ public java.lang.String getField1591() { * string field_1592 = 1592; * @return The field1592. */ + @java.lang.Override public java.lang.String getField1592() { java.lang.Object ref = field1592_; if (ref instanceof java.lang.String) { @@ -49524,6 +50713,7 @@ public java.lang.String getField1592() { * string field_1592 = 1592; * @return The bytes for field1592. */ + @java.lang.Override public com.google.protobuf.ByteString getField1592Bytes() { java.lang.Object ref = field1592_; @@ -49544,6 +50734,7 @@ public java.lang.String getField1592() { * string field_1593 = 1593; * @return The field1593. */ + @java.lang.Override public java.lang.String getField1593() { java.lang.Object ref = field1593_; if (ref instanceof java.lang.String) { @@ -49560,6 +50751,7 @@ public java.lang.String getField1593() { * string field_1593 = 1593; * @return The bytes for field1593. */ + @java.lang.Override public com.google.protobuf.ByteString getField1593Bytes() { java.lang.Object ref = field1593_; @@ -49580,6 +50772,7 @@ public java.lang.String getField1593() { * string field_1594 = 1594; * @return The field1594. */ + @java.lang.Override public java.lang.String getField1594() { java.lang.Object ref = field1594_; if (ref instanceof java.lang.String) { @@ -49596,6 +50789,7 @@ public java.lang.String getField1594() { * string field_1594 = 1594; * @return The bytes for field1594. */ + @java.lang.Override public com.google.protobuf.ByteString getField1594Bytes() { java.lang.Object ref = field1594_; @@ -49616,6 +50810,7 @@ public java.lang.String getField1594() { * string field_1595 = 1595; * @return The field1595. */ + @java.lang.Override public java.lang.String getField1595() { java.lang.Object ref = field1595_; if (ref instanceof java.lang.String) { @@ -49632,6 +50827,7 @@ public java.lang.String getField1595() { * string field_1595 = 1595; * @return The bytes for field1595. */ + @java.lang.Override public com.google.protobuf.ByteString getField1595Bytes() { java.lang.Object ref = field1595_; @@ -49652,6 +50848,7 @@ public java.lang.String getField1595() { * string field_1596 = 1596; * @return The field1596. */ + @java.lang.Override public java.lang.String getField1596() { java.lang.Object ref = field1596_; if (ref instanceof java.lang.String) { @@ -49668,6 +50865,7 @@ public java.lang.String getField1596() { * string field_1596 = 1596; * @return The bytes for field1596. */ + @java.lang.Override public com.google.protobuf.ByteString getField1596Bytes() { java.lang.Object ref = field1596_; @@ -49688,6 +50886,7 @@ public java.lang.String getField1596() { * string field_1597 = 1597; * @return The field1597. */ + @java.lang.Override public java.lang.String getField1597() { java.lang.Object ref = field1597_; if (ref instanceof java.lang.String) { @@ -49704,6 +50903,7 @@ public java.lang.String getField1597() { * string field_1597 = 1597; * @return The bytes for field1597. */ + @java.lang.Override public com.google.protobuf.ByteString getField1597Bytes() { java.lang.Object ref = field1597_; @@ -49724,6 +50924,7 @@ public java.lang.String getField1597() { * string field_1598 = 1598; * @return The field1598. */ + @java.lang.Override public java.lang.String getField1598() { java.lang.Object ref = field1598_; if (ref instanceof java.lang.String) { @@ -49740,6 +50941,7 @@ public java.lang.String getField1598() { * string field_1598 = 1598; * @return The bytes for field1598. */ + @java.lang.Override public com.google.protobuf.ByteString getField1598Bytes() { java.lang.Object ref = field1598_; @@ -49760,6 +50962,7 @@ public java.lang.String getField1598() { * string field_1599 = 1599; * @return The field1599. */ + @java.lang.Override public java.lang.String getField1599() { java.lang.Object ref = field1599_; if (ref instanceof java.lang.String) { @@ -49776,6 +50979,7 @@ public java.lang.String getField1599() { * string field_1599 = 1599; * @return The bytes for field1599. */ + @java.lang.Override public com.google.protobuf.ByteString getField1599Bytes() { java.lang.Object ref = field1599_; @@ -49796,6 +51000,7 @@ public java.lang.String getField1599() { * string field_1600 = 1600; * @return The field1600. */ + @java.lang.Override public java.lang.String getField1600() { java.lang.Object ref = field1600_; if (ref instanceof java.lang.String) { @@ -49812,6 +51017,7 @@ public java.lang.String getField1600() { * string field_1600 = 1600; * @return The bytes for field1600. */ + @java.lang.Override public com.google.protobuf.ByteString getField1600Bytes() { java.lang.Object ref = field1600_; @@ -49832,6 +51038,7 @@ public java.lang.String getField1600() { * string field_1601 = 1601; * @return The field1601. */ + @java.lang.Override public java.lang.String getField1601() { java.lang.Object ref = field1601_; if (ref instanceof java.lang.String) { @@ -49848,6 +51055,7 @@ public java.lang.String getField1601() { * string field_1601 = 1601; * @return The bytes for field1601. */ + @java.lang.Override public com.google.protobuf.ByteString getField1601Bytes() { java.lang.Object ref = field1601_; @@ -49868,6 +51076,7 @@ public java.lang.String getField1601() { * string field_1602 = 1602; * @return The field1602. */ + @java.lang.Override public java.lang.String getField1602() { java.lang.Object ref = field1602_; if (ref instanceof java.lang.String) { @@ -49884,6 +51093,7 @@ public java.lang.String getField1602() { * string field_1602 = 1602; * @return The bytes for field1602. */ + @java.lang.Override public com.google.protobuf.ByteString getField1602Bytes() { java.lang.Object ref = field1602_; @@ -49904,6 +51114,7 @@ public java.lang.String getField1602() { * string field_1603 = 1603; * @return The field1603. */ + @java.lang.Override public java.lang.String getField1603() { java.lang.Object ref = field1603_; if (ref instanceof java.lang.String) { @@ -49920,6 +51131,7 @@ public java.lang.String getField1603() { * string field_1603 = 1603; * @return The bytes for field1603. */ + @java.lang.Override public com.google.protobuf.ByteString getField1603Bytes() { java.lang.Object ref = field1603_; @@ -49940,6 +51152,7 @@ public java.lang.String getField1603() { * string field_1604 = 1604; * @return The field1604. */ + @java.lang.Override public java.lang.String getField1604() { java.lang.Object ref = field1604_; if (ref instanceof java.lang.String) { @@ -49956,6 +51169,7 @@ public java.lang.String getField1604() { * string field_1604 = 1604; * @return The bytes for field1604. */ + @java.lang.Override public com.google.protobuf.ByteString getField1604Bytes() { java.lang.Object ref = field1604_; @@ -49976,6 +51190,7 @@ public java.lang.String getField1604() { * string field_1605 = 1605; * @return The field1605. */ + @java.lang.Override public java.lang.String getField1605() { java.lang.Object ref = field1605_; if (ref instanceof java.lang.String) { @@ -49992,6 +51207,7 @@ public java.lang.String getField1605() { * string field_1605 = 1605; * @return The bytes for field1605. */ + @java.lang.Override public com.google.protobuf.ByteString getField1605Bytes() { java.lang.Object ref = field1605_; @@ -50012,6 +51228,7 @@ public java.lang.String getField1605() { * string field_1606 = 1606; * @return The field1606. */ + @java.lang.Override public java.lang.String getField1606() { java.lang.Object ref = field1606_; if (ref instanceof java.lang.String) { @@ -50028,6 +51245,7 @@ public java.lang.String getField1606() { * string field_1606 = 1606; * @return The bytes for field1606. */ + @java.lang.Override public com.google.protobuf.ByteString getField1606Bytes() { java.lang.Object ref = field1606_; @@ -50048,6 +51266,7 @@ public java.lang.String getField1606() { * string field_1607 = 1607; * @return The field1607. */ + @java.lang.Override public java.lang.String getField1607() { java.lang.Object ref = field1607_; if (ref instanceof java.lang.String) { @@ -50064,6 +51283,7 @@ public java.lang.String getField1607() { * string field_1607 = 1607; * @return The bytes for field1607. */ + @java.lang.Override public com.google.protobuf.ByteString getField1607Bytes() { java.lang.Object ref = field1607_; @@ -50084,6 +51304,7 @@ public java.lang.String getField1607() { * string field_1608 = 1608; * @return The field1608. */ + @java.lang.Override public java.lang.String getField1608() { java.lang.Object ref = field1608_; if (ref instanceof java.lang.String) { @@ -50100,6 +51321,7 @@ public java.lang.String getField1608() { * string field_1608 = 1608; * @return The bytes for field1608. */ + @java.lang.Override public com.google.protobuf.ByteString getField1608Bytes() { java.lang.Object ref = field1608_; @@ -50120,6 +51342,7 @@ public java.lang.String getField1608() { * string field_1609 = 1609; * @return The field1609. */ + @java.lang.Override public java.lang.String getField1609() { java.lang.Object ref = field1609_; if (ref instanceof java.lang.String) { @@ -50136,6 +51359,7 @@ public java.lang.String getField1609() { * string field_1609 = 1609; * @return The bytes for field1609. */ + @java.lang.Override public com.google.protobuf.ByteString getField1609Bytes() { java.lang.Object ref = field1609_; @@ -50156,6 +51380,7 @@ public java.lang.String getField1609() { * string field_1610 = 1610; * @return The field1610. */ + @java.lang.Override public java.lang.String getField1610() { java.lang.Object ref = field1610_; if (ref instanceof java.lang.String) { @@ -50172,6 +51397,7 @@ public java.lang.String getField1610() { * string field_1610 = 1610; * @return The bytes for field1610. */ + @java.lang.Override public com.google.protobuf.ByteString getField1610Bytes() { java.lang.Object ref = field1610_; @@ -50192,6 +51418,7 @@ public java.lang.String getField1610() { * string field_1611 = 1611; * @return The field1611. */ + @java.lang.Override public java.lang.String getField1611() { java.lang.Object ref = field1611_; if (ref instanceof java.lang.String) { @@ -50208,6 +51435,7 @@ public java.lang.String getField1611() { * string field_1611 = 1611; * @return The bytes for field1611. */ + @java.lang.Override public com.google.protobuf.ByteString getField1611Bytes() { java.lang.Object ref = field1611_; @@ -50228,6 +51456,7 @@ public java.lang.String getField1611() { * string field_1612 = 1612; * @return The field1612. */ + @java.lang.Override public java.lang.String getField1612() { java.lang.Object ref = field1612_; if (ref instanceof java.lang.String) { @@ -50244,6 +51473,7 @@ public java.lang.String getField1612() { * string field_1612 = 1612; * @return The bytes for field1612. */ + @java.lang.Override public com.google.protobuf.ByteString getField1612Bytes() { java.lang.Object ref = field1612_; @@ -50264,6 +51494,7 @@ public java.lang.String getField1612() { * string field_1613 = 1613; * @return The field1613. */ + @java.lang.Override public java.lang.String getField1613() { java.lang.Object ref = field1613_; if (ref instanceof java.lang.String) { @@ -50280,6 +51511,7 @@ public java.lang.String getField1613() { * string field_1613 = 1613; * @return The bytes for field1613. */ + @java.lang.Override public com.google.protobuf.ByteString getField1613Bytes() { java.lang.Object ref = field1613_; @@ -50300,6 +51532,7 @@ public java.lang.String getField1613() { * string field_1614 = 1614; * @return The field1614. */ + @java.lang.Override public java.lang.String getField1614() { java.lang.Object ref = field1614_; if (ref instanceof java.lang.String) { @@ -50316,6 +51549,7 @@ public java.lang.String getField1614() { * string field_1614 = 1614; * @return The bytes for field1614. */ + @java.lang.Override public com.google.protobuf.ByteString getField1614Bytes() { java.lang.Object ref = field1614_; @@ -50336,6 +51570,7 @@ public java.lang.String getField1614() { * string field_1615 = 1615; * @return The field1615. */ + @java.lang.Override public java.lang.String getField1615() { java.lang.Object ref = field1615_; if (ref instanceof java.lang.String) { @@ -50352,6 +51587,7 @@ public java.lang.String getField1615() { * string field_1615 = 1615; * @return The bytes for field1615. */ + @java.lang.Override public com.google.protobuf.ByteString getField1615Bytes() { java.lang.Object ref = field1615_; @@ -50372,6 +51608,7 @@ public java.lang.String getField1615() { * string field_1616 = 1616; * @return The field1616. */ + @java.lang.Override public java.lang.String getField1616() { java.lang.Object ref = field1616_; if (ref instanceof java.lang.String) { @@ -50388,6 +51625,7 @@ public java.lang.String getField1616() { * string field_1616 = 1616; * @return The bytes for field1616. */ + @java.lang.Override public com.google.protobuf.ByteString getField1616Bytes() { java.lang.Object ref = field1616_; @@ -50408,6 +51646,7 @@ public java.lang.String getField1616() { * string field_1617 = 1617; * @return The field1617. */ + @java.lang.Override public java.lang.String getField1617() { java.lang.Object ref = field1617_; if (ref instanceof java.lang.String) { @@ -50424,6 +51663,7 @@ public java.lang.String getField1617() { * string field_1617 = 1617; * @return The bytes for field1617. */ + @java.lang.Override public com.google.protobuf.ByteString getField1617Bytes() { java.lang.Object ref = field1617_; @@ -50444,6 +51684,7 @@ public java.lang.String getField1617() { * string field_1618 = 1618; * @return The field1618. */ + @java.lang.Override public java.lang.String getField1618() { java.lang.Object ref = field1618_; if (ref instanceof java.lang.String) { @@ -50460,6 +51701,7 @@ public java.lang.String getField1618() { * string field_1618 = 1618; * @return The bytes for field1618. */ + @java.lang.Override public com.google.protobuf.ByteString getField1618Bytes() { java.lang.Object ref = field1618_; @@ -50480,6 +51722,7 @@ public java.lang.String getField1618() { * string field_1619 = 1619; * @return The field1619. */ + @java.lang.Override public java.lang.String getField1619() { java.lang.Object ref = field1619_; if (ref instanceof java.lang.String) { @@ -50496,6 +51739,7 @@ public java.lang.String getField1619() { * string field_1619 = 1619; * @return The bytes for field1619. */ + @java.lang.Override public com.google.protobuf.ByteString getField1619Bytes() { java.lang.Object ref = field1619_; @@ -50516,6 +51760,7 @@ public java.lang.String getField1619() { * string field_1620 = 1620; * @return The field1620. */ + @java.lang.Override public java.lang.String getField1620() { java.lang.Object ref = field1620_; if (ref instanceof java.lang.String) { @@ -50532,6 +51777,7 @@ public java.lang.String getField1620() { * string field_1620 = 1620; * @return The bytes for field1620. */ + @java.lang.Override public com.google.protobuf.ByteString getField1620Bytes() { java.lang.Object ref = field1620_; @@ -50552,6 +51798,7 @@ public java.lang.String getField1620() { * string field_1621 = 1621; * @return The field1621. */ + @java.lang.Override public java.lang.String getField1621() { java.lang.Object ref = field1621_; if (ref instanceof java.lang.String) { @@ -50568,6 +51815,7 @@ public java.lang.String getField1621() { * string field_1621 = 1621; * @return The bytes for field1621. */ + @java.lang.Override public com.google.protobuf.ByteString getField1621Bytes() { java.lang.Object ref = field1621_; @@ -50588,6 +51836,7 @@ public java.lang.String getField1621() { * string field_1622 = 1622; * @return The field1622. */ + @java.lang.Override public java.lang.String getField1622() { java.lang.Object ref = field1622_; if (ref instanceof java.lang.String) { @@ -50604,6 +51853,7 @@ public java.lang.String getField1622() { * string field_1622 = 1622; * @return The bytes for field1622. */ + @java.lang.Override public com.google.protobuf.ByteString getField1622Bytes() { java.lang.Object ref = field1622_; @@ -50624,6 +51874,7 @@ public java.lang.String getField1622() { * string field_1623 = 1623; * @return The field1623. */ + @java.lang.Override public java.lang.String getField1623() { java.lang.Object ref = field1623_; if (ref instanceof java.lang.String) { @@ -50640,6 +51891,7 @@ public java.lang.String getField1623() { * string field_1623 = 1623; * @return The bytes for field1623. */ + @java.lang.Override public com.google.protobuf.ByteString getField1623Bytes() { java.lang.Object ref = field1623_; @@ -50660,6 +51912,7 @@ public java.lang.String getField1623() { * string field_1624 = 1624; * @return The field1624. */ + @java.lang.Override public java.lang.String getField1624() { java.lang.Object ref = field1624_; if (ref instanceof java.lang.String) { @@ -50676,6 +51929,7 @@ public java.lang.String getField1624() { * string field_1624 = 1624; * @return The bytes for field1624. */ + @java.lang.Override public com.google.protobuf.ByteString getField1624Bytes() { java.lang.Object ref = field1624_; @@ -50696,6 +51950,7 @@ public java.lang.String getField1624() { * string field_1625 = 1625; * @return The field1625. */ + @java.lang.Override public java.lang.String getField1625() { java.lang.Object ref = field1625_; if (ref instanceof java.lang.String) { @@ -50712,6 +51967,7 @@ public java.lang.String getField1625() { * string field_1625 = 1625; * @return The bytes for field1625. */ + @java.lang.Override public com.google.protobuf.ByteString getField1625Bytes() { java.lang.Object ref = field1625_; @@ -50732,6 +51988,7 @@ public java.lang.String getField1625() { * string field_1626 = 1626; * @return The field1626. */ + @java.lang.Override public java.lang.String getField1626() { java.lang.Object ref = field1626_; if (ref instanceof java.lang.String) { @@ -50748,6 +52005,7 @@ public java.lang.String getField1626() { * string field_1626 = 1626; * @return The bytes for field1626. */ + @java.lang.Override public com.google.protobuf.ByteString getField1626Bytes() { java.lang.Object ref = field1626_; @@ -50768,6 +52026,7 @@ public java.lang.String getField1626() { * string field_1627 = 1627; * @return The field1627. */ + @java.lang.Override public java.lang.String getField1627() { java.lang.Object ref = field1627_; if (ref instanceof java.lang.String) { @@ -50784,6 +52043,7 @@ public java.lang.String getField1627() { * string field_1627 = 1627; * @return The bytes for field1627. */ + @java.lang.Override public com.google.protobuf.ByteString getField1627Bytes() { java.lang.Object ref = field1627_; @@ -50804,6 +52064,7 @@ public java.lang.String getField1627() { * string field_1628 = 1628; * @return The field1628. */ + @java.lang.Override public java.lang.String getField1628() { java.lang.Object ref = field1628_; if (ref instanceof java.lang.String) { @@ -50820,6 +52081,7 @@ public java.lang.String getField1628() { * string field_1628 = 1628; * @return The bytes for field1628. */ + @java.lang.Override public com.google.protobuf.ByteString getField1628Bytes() { java.lang.Object ref = field1628_; @@ -50840,6 +52102,7 @@ public java.lang.String getField1628() { * string field_1629 = 1629; * @return The field1629. */ + @java.lang.Override public java.lang.String getField1629() { java.lang.Object ref = field1629_; if (ref instanceof java.lang.String) { @@ -50856,6 +52119,7 @@ public java.lang.String getField1629() { * string field_1629 = 1629; * @return The bytes for field1629. */ + @java.lang.Override public com.google.protobuf.ByteString getField1629Bytes() { java.lang.Object ref = field1629_; @@ -50876,6 +52140,7 @@ public java.lang.String getField1629() { * string field_1630 = 1630; * @return The field1630. */ + @java.lang.Override public java.lang.String getField1630() { java.lang.Object ref = field1630_; if (ref instanceof java.lang.String) { @@ -50892,6 +52157,7 @@ public java.lang.String getField1630() { * string field_1630 = 1630; * @return The bytes for field1630. */ + @java.lang.Override public com.google.protobuf.ByteString getField1630Bytes() { java.lang.Object ref = field1630_; @@ -50912,6 +52178,7 @@ public java.lang.String getField1630() { * string field_1631 = 1631; * @return The field1631. */ + @java.lang.Override public java.lang.String getField1631() { java.lang.Object ref = field1631_; if (ref instanceof java.lang.String) { @@ -50928,6 +52195,7 @@ public java.lang.String getField1631() { * string field_1631 = 1631; * @return The bytes for field1631. */ + @java.lang.Override public com.google.protobuf.ByteString getField1631Bytes() { java.lang.Object ref = field1631_; @@ -50948,6 +52216,7 @@ public java.lang.String getField1631() { * string field_1632 = 1632; * @return The field1632. */ + @java.lang.Override public java.lang.String getField1632() { java.lang.Object ref = field1632_; if (ref instanceof java.lang.String) { @@ -50964,6 +52233,7 @@ public java.lang.String getField1632() { * string field_1632 = 1632; * @return The bytes for field1632. */ + @java.lang.Override public com.google.protobuf.ByteString getField1632Bytes() { java.lang.Object ref = field1632_; @@ -50984,6 +52254,7 @@ public java.lang.String getField1632() { * string field_1633 = 1633; * @return The field1633. */ + @java.lang.Override public java.lang.String getField1633() { java.lang.Object ref = field1633_; if (ref instanceof java.lang.String) { @@ -51000,6 +52271,7 @@ public java.lang.String getField1633() { * string field_1633 = 1633; * @return The bytes for field1633. */ + @java.lang.Override public com.google.protobuf.ByteString getField1633Bytes() { java.lang.Object ref = field1633_; @@ -51020,6 +52292,7 @@ public java.lang.String getField1633() { * string field_1634 = 1634; * @return The field1634. */ + @java.lang.Override public java.lang.String getField1634() { java.lang.Object ref = field1634_; if (ref instanceof java.lang.String) { @@ -51036,6 +52309,7 @@ public java.lang.String getField1634() { * string field_1634 = 1634; * @return The bytes for field1634. */ + @java.lang.Override public com.google.protobuf.ByteString getField1634Bytes() { java.lang.Object ref = field1634_; @@ -51056,6 +52330,7 @@ public java.lang.String getField1634() { * string field_1635 = 1635; * @return The field1635. */ + @java.lang.Override public java.lang.String getField1635() { java.lang.Object ref = field1635_; if (ref instanceof java.lang.String) { @@ -51072,6 +52347,7 @@ public java.lang.String getField1635() { * string field_1635 = 1635; * @return The bytes for field1635. */ + @java.lang.Override public com.google.protobuf.ByteString getField1635Bytes() { java.lang.Object ref = field1635_; @@ -51092,6 +52368,7 @@ public java.lang.String getField1635() { * string field_1636 = 1636; * @return The field1636. */ + @java.lang.Override public java.lang.String getField1636() { java.lang.Object ref = field1636_; if (ref instanceof java.lang.String) { @@ -51108,6 +52385,7 @@ public java.lang.String getField1636() { * string field_1636 = 1636; * @return The bytes for field1636. */ + @java.lang.Override public com.google.protobuf.ByteString getField1636Bytes() { java.lang.Object ref = field1636_; @@ -51128,6 +52406,7 @@ public java.lang.String getField1636() { * string field_1637 = 1637; * @return The field1637. */ + @java.lang.Override public java.lang.String getField1637() { java.lang.Object ref = field1637_; if (ref instanceof java.lang.String) { @@ -51144,6 +52423,7 @@ public java.lang.String getField1637() { * string field_1637 = 1637; * @return The bytes for field1637. */ + @java.lang.Override public com.google.protobuf.ByteString getField1637Bytes() { java.lang.Object ref = field1637_; @@ -51164,6 +52444,7 @@ public java.lang.String getField1637() { * string field_1638 = 1638; * @return The field1638. */ + @java.lang.Override public java.lang.String getField1638() { java.lang.Object ref = field1638_; if (ref instanceof java.lang.String) { @@ -51180,6 +52461,7 @@ public java.lang.String getField1638() { * string field_1638 = 1638; * @return The bytes for field1638. */ + @java.lang.Override public com.google.protobuf.ByteString getField1638Bytes() { java.lang.Object ref = field1638_; @@ -51200,6 +52482,7 @@ public java.lang.String getField1638() { * string field_1639 = 1639; * @return The field1639. */ + @java.lang.Override public java.lang.String getField1639() { java.lang.Object ref = field1639_; if (ref instanceof java.lang.String) { @@ -51216,6 +52499,7 @@ public java.lang.String getField1639() { * string field_1639 = 1639; * @return The bytes for field1639. */ + @java.lang.Override public com.google.protobuf.ByteString getField1639Bytes() { java.lang.Object ref = field1639_; @@ -51236,6 +52520,7 @@ public java.lang.String getField1639() { * string field_1640 = 1640; * @return The field1640. */ + @java.lang.Override public java.lang.String getField1640() { java.lang.Object ref = field1640_; if (ref instanceof java.lang.String) { @@ -51252,6 +52537,7 @@ public java.lang.String getField1640() { * string field_1640 = 1640; * @return The bytes for field1640. */ + @java.lang.Override public com.google.protobuf.ByteString getField1640Bytes() { java.lang.Object ref = field1640_; @@ -51272,6 +52558,7 @@ public java.lang.String getField1640() { * string field_1641 = 1641; * @return The field1641. */ + @java.lang.Override public java.lang.String getField1641() { java.lang.Object ref = field1641_; if (ref instanceof java.lang.String) { @@ -51288,6 +52575,7 @@ public java.lang.String getField1641() { * string field_1641 = 1641; * @return The bytes for field1641. */ + @java.lang.Override public com.google.protobuf.ByteString getField1641Bytes() { java.lang.Object ref = field1641_; @@ -51308,6 +52596,7 @@ public java.lang.String getField1641() { * string field_1642 = 1642; * @return The field1642. */ + @java.lang.Override public java.lang.String getField1642() { java.lang.Object ref = field1642_; if (ref instanceof java.lang.String) { @@ -51324,6 +52613,7 @@ public java.lang.String getField1642() { * string field_1642 = 1642; * @return The bytes for field1642. */ + @java.lang.Override public com.google.protobuf.ByteString getField1642Bytes() { java.lang.Object ref = field1642_; @@ -51344,6 +52634,7 @@ public java.lang.String getField1642() { * string field_1643 = 1643; * @return The field1643. */ + @java.lang.Override public java.lang.String getField1643() { java.lang.Object ref = field1643_; if (ref instanceof java.lang.String) { @@ -51360,6 +52651,7 @@ public java.lang.String getField1643() { * string field_1643 = 1643; * @return The bytes for field1643. */ + @java.lang.Override public com.google.protobuf.ByteString getField1643Bytes() { java.lang.Object ref = field1643_; @@ -51380,6 +52672,7 @@ public java.lang.String getField1643() { * string field_1644 = 1644; * @return The field1644. */ + @java.lang.Override public java.lang.String getField1644() { java.lang.Object ref = field1644_; if (ref instanceof java.lang.String) { @@ -51396,6 +52689,7 @@ public java.lang.String getField1644() { * string field_1644 = 1644; * @return The bytes for field1644. */ + @java.lang.Override public com.google.protobuf.ByteString getField1644Bytes() { java.lang.Object ref = field1644_; @@ -51416,6 +52710,7 @@ public java.lang.String getField1644() { * string field_1645 = 1645; * @return The field1645. */ + @java.lang.Override public java.lang.String getField1645() { java.lang.Object ref = field1645_; if (ref instanceof java.lang.String) { @@ -51432,6 +52727,7 @@ public java.lang.String getField1645() { * string field_1645 = 1645; * @return The bytes for field1645. */ + @java.lang.Override public com.google.protobuf.ByteString getField1645Bytes() { java.lang.Object ref = field1645_; @@ -51452,6 +52748,7 @@ public java.lang.String getField1645() { * string field_1646 = 1646; * @return The field1646. */ + @java.lang.Override public java.lang.String getField1646() { java.lang.Object ref = field1646_; if (ref instanceof java.lang.String) { @@ -51468,6 +52765,7 @@ public java.lang.String getField1646() { * string field_1646 = 1646; * @return The bytes for field1646. */ + @java.lang.Override public com.google.protobuf.ByteString getField1646Bytes() { java.lang.Object ref = field1646_; @@ -51488,6 +52786,7 @@ public java.lang.String getField1646() { * string field_1647 = 1647; * @return The field1647. */ + @java.lang.Override public java.lang.String getField1647() { java.lang.Object ref = field1647_; if (ref instanceof java.lang.String) { @@ -51504,6 +52803,7 @@ public java.lang.String getField1647() { * string field_1647 = 1647; * @return The bytes for field1647. */ + @java.lang.Override public com.google.protobuf.ByteString getField1647Bytes() { java.lang.Object ref = field1647_; @@ -51524,6 +52824,7 @@ public java.lang.String getField1647() { * string field_1648 = 1648; * @return The field1648. */ + @java.lang.Override public java.lang.String getField1648() { java.lang.Object ref = field1648_; if (ref instanceof java.lang.String) { @@ -51540,6 +52841,7 @@ public java.lang.String getField1648() { * string field_1648 = 1648; * @return The bytes for field1648. */ + @java.lang.Override public com.google.protobuf.ByteString getField1648Bytes() { java.lang.Object ref = field1648_; @@ -51560,6 +52862,7 @@ public java.lang.String getField1648() { * string field_1649 = 1649; * @return The field1649. */ + @java.lang.Override public java.lang.String getField1649() { java.lang.Object ref = field1649_; if (ref instanceof java.lang.String) { @@ -51576,6 +52879,7 @@ public java.lang.String getField1649() { * string field_1649 = 1649; * @return The bytes for field1649. */ + @java.lang.Override public com.google.protobuf.ByteString getField1649Bytes() { java.lang.Object ref = field1649_; @@ -51596,6 +52900,7 @@ public java.lang.String getField1649() { * string field_1650 = 1650; * @return The field1650. */ + @java.lang.Override public java.lang.String getField1650() { java.lang.Object ref = field1650_; if (ref instanceof java.lang.String) { @@ -51612,6 +52917,7 @@ public java.lang.String getField1650() { * string field_1650 = 1650; * @return The bytes for field1650. */ + @java.lang.Override public com.google.protobuf.ByteString getField1650Bytes() { java.lang.Object ref = field1650_; @@ -51632,6 +52938,7 @@ public java.lang.String getField1650() { * string field_1651 = 1651; * @return The field1651. */ + @java.lang.Override public java.lang.String getField1651() { java.lang.Object ref = field1651_; if (ref instanceof java.lang.String) { @@ -51648,6 +52955,7 @@ public java.lang.String getField1651() { * string field_1651 = 1651; * @return The bytes for field1651. */ + @java.lang.Override public com.google.protobuf.ByteString getField1651Bytes() { java.lang.Object ref = field1651_; @@ -51668,6 +52976,7 @@ public java.lang.String getField1651() { * string field_1652 = 1652; * @return The field1652. */ + @java.lang.Override public java.lang.String getField1652() { java.lang.Object ref = field1652_; if (ref instanceof java.lang.String) { @@ -51684,6 +52993,7 @@ public java.lang.String getField1652() { * string field_1652 = 1652; * @return The bytes for field1652. */ + @java.lang.Override public com.google.protobuf.ByteString getField1652Bytes() { java.lang.Object ref = field1652_; @@ -51704,6 +53014,7 @@ public java.lang.String getField1652() { * string field_1653 = 1653; * @return The field1653. */ + @java.lang.Override public java.lang.String getField1653() { java.lang.Object ref = field1653_; if (ref instanceof java.lang.String) { @@ -51720,6 +53031,7 @@ public java.lang.String getField1653() { * string field_1653 = 1653; * @return The bytes for field1653. */ + @java.lang.Override public com.google.protobuf.ByteString getField1653Bytes() { java.lang.Object ref = field1653_; @@ -51740,6 +53052,7 @@ public java.lang.String getField1653() { * string field_1654 = 1654; * @return The field1654. */ + @java.lang.Override public java.lang.String getField1654() { java.lang.Object ref = field1654_; if (ref instanceof java.lang.String) { @@ -51756,6 +53069,7 @@ public java.lang.String getField1654() { * string field_1654 = 1654; * @return The bytes for field1654. */ + @java.lang.Override public com.google.protobuf.ByteString getField1654Bytes() { java.lang.Object ref = field1654_; @@ -51776,6 +53090,7 @@ public java.lang.String getField1654() { * string field_1655 = 1655; * @return The field1655. */ + @java.lang.Override public java.lang.String getField1655() { java.lang.Object ref = field1655_; if (ref instanceof java.lang.String) { @@ -51792,6 +53107,7 @@ public java.lang.String getField1655() { * string field_1655 = 1655; * @return The bytes for field1655. */ + @java.lang.Override public com.google.protobuf.ByteString getField1655Bytes() { java.lang.Object ref = field1655_; @@ -51812,6 +53128,7 @@ public java.lang.String getField1655() { * string field_1656 = 1656; * @return The field1656. */ + @java.lang.Override public java.lang.String getField1656() { java.lang.Object ref = field1656_; if (ref instanceof java.lang.String) { @@ -51828,6 +53145,7 @@ public java.lang.String getField1656() { * string field_1656 = 1656; * @return The bytes for field1656. */ + @java.lang.Override public com.google.protobuf.ByteString getField1656Bytes() { java.lang.Object ref = field1656_; @@ -51848,6 +53166,7 @@ public java.lang.String getField1656() { * string field_1657 = 1657; * @return The field1657. */ + @java.lang.Override public java.lang.String getField1657() { java.lang.Object ref = field1657_; if (ref instanceof java.lang.String) { @@ -51864,6 +53183,7 @@ public java.lang.String getField1657() { * string field_1657 = 1657; * @return The bytes for field1657. */ + @java.lang.Override public com.google.protobuf.ByteString getField1657Bytes() { java.lang.Object ref = field1657_; @@ -51884,6 +53204,7 @@ public java.lang.String getField1657() { * string field_1658 = 1658; * @return The field1658. */ + @java.lang.Override public java.lang.String getField1658() { java.lang.Object ref = field1658_; if (ref instanceof java.lang.String) { @@ -51900,6 +53221,7 @@ public java.lang.String getField1658() { * string field_1658 = 1658; * @return The bytes for field1658. */ + @java.lang.Override public com.google.protobuf.ByteString getField1658Bytes() { java.lang.Object ref = field1658_; @@ -51920,6 +53242,7 @@ public java.lang.String getField1658() { * string field_1659 = 1659; * @return The field1659. */ + @java.lang.Override public java.lang.String getField1659() { java.lang.Object ref = field1659_; if (ref instanceof java.lang.String) { @@ -51936,6 +53259,7 @@ public java.lang.String getField1659() { * string field_1659 = 1659; * @return The bytes for field1659. */ + @java.lang.Override public com.google.protobuf.ByteString getField1659Bytes() { java.lang.Object ref = field1659_; @@ -51956,6 +53280,7 @@ public java.lang.String getField1659() { * string field_1660 = 1660; * @return The field1660. */ + @java.lang.Override public java.lang.String getField1660() { java.lang.Object ref = field1660_; if (ref instanceof java.lang.String) { @@ -51972,6 +53297,7 @@ public java.lang.String getField1660() { * string field_1660 = 1660; * @return The bytes for field1660. */ + @java.lang.Override public com.google.protobuf.ByteString getField1660Bytes() { java.lang.Object ref = field1660_; @@ -51992,6 +53318,7 @@ public java.lang.String getField1660() { * string field_1661 = 1661; * @return The field1661. */ + @java.lang.Override public java.lang.String getField1661() { java.lang.Object ref = field1661_; if (ref instanceof java.lang.String) { @@ -52008,6 +53335,7 @@ public java.lang.String getField1661() { * string field_1661 = 1661; * @return The bytes for field1661. */ + @java.lang.Override public com.google.protobuf.ByteString getField1661Bytes() { java.lang.Object ref = field1661_; @@ -52028,6 +53356,7 @@ public java.lang.String getField1661() { * string field_1662 = 1662; * @return The field1662. */ + @java.lang.Override public java.lang.String getField1662() { java.lang.Object ref = field1662_; if (ref instanceof java.lang.String) { @@ -52044,6 +53373,7 @@ public java.lang.String getField1662() { * string field_1662 = 1662; * @return The bytes for field1662. */ + @java.lang.Override public com.google.protobuf.ByteString getField1662Bytes() { java.lang.Object ref = field1662_; @@ -52064,6 +53394,7 @@ public java.lang.String getField1662() { * string field_1663 = 1663; * @return The field1663. */ + @java.lang.Override public java.lang.String getField1663() { java.lang.Object ref = field1663_; if (ref instanceof java.lang.String) { @@ -52080,6 +53411,7 @@ public java.lang.String getField1663() { * string field_1663 = 1663; * @return The bytes for field1663. */ + @java.lang.Override public com.google.protobuf.ByteString getField1663Bytes() { java.lang.Object ref = field1663_; @@ -52100,6 +53432,7 @@ public java.lang.String getField1663() { * string field_1664 = 1664; * @return The field1664. */ + @java.lang.Override public java.lang.String getField1664() { java.lang.Object ref = field1664_; if (ref instanceof java.lang.String) { @@ -52116,6 +53449,7 @@ public java.lang.String getField1664() { * string field_1664 = 1664; * @return The bytes for field1664. */ + @java.lang.Override public com.google.protobuf.ByteString getField1664Bytes() { java.lang.Object ref = field1664_; @@ -52136,6 +53470,7 @@ public java.lang.String getField1664() { * string field_1665 = 1665; * @return The field1665. */ + @java.lang.Override public java.lang.String getField1665() { java.lang.Object ref = field1665_; if (ref instanceof java.lang.String) { @@ -52152,6 +53487,7 @@ public java.lang.String getField1665() { * string field_1665 = 1665; * @return The bytes for field1665. */ + @java.lang.Override public com.google.protobuf.ByteString getField1665Bytes() { java.lang.Object ref = field1665_; @@ -52172,6 +53508,7 @@ public java.lang.String getField1665() { * string field_1666 = 1666; * @return The field1666. */ + @java.lang.Override public java.lang.String getField1666() { java.lang.Object ref = field1666_; if (ref instanceof java.lang.String) { @@ -52188,6 +53525,7 @@ public java.lang.String getField1666() { * string field_1666 = 1666; * @return The bytes for field1666. */ + @java.lang.Override public com.google.protobuf.ByteString getField1666Bytes() { java.lang.Object ref = field1666_; @@ -52208,6 +53546,7 @@ public java.lang.String getField1666() { * string field_1667 = 1667; * @return The field1667. */ + @java.lang.Override public java.lang.String getField1667() { java.lang.Object ref = field1667_; if (ref instanceof java.lang.String) { @@ -52224,6 +53563,7 @@ public java.lang.String getField1667() { * string field_1667 = 1667; * @return The bytes for field1667. */ + @java.lang.Override public com.google.protobuf.ByteString getField1667Bytes() { java.lang.Object ref = field1667_; @@ -52244,6 +53584,7 @@ public java.lang.String getField1667() { * string field_1668 = 1668; * @return The field1668. */ + @java.lang.Override public java.lang.String getField1668() { java.lang.Object ref = field1668_; if (ref instanceof java.lang.String) { @@ -52260,6 +53601,7 @@ public java.lang.String getField1668() { * string field_1668 = 1668; * @return The bytes for field1668. */ + @java.lang.Override public com.google.protobuf.ByteString getField1668Bytes() { java.lang.Object ref = field1668_; @@ -52280,6 +53622,7 @@ public java.lang.String getField1668() { * string field_1669 = 1669; * @return The field1669. */ + @java.lang.Override public java.lang.String getField1669() { java.lang.Object ref = field1669_; if (ref instanceof java.lang.String) { @@ -52296,6 +53639,7 @@ public java.lang.String getField1669() { * string field_1669 = 1669; * @return The bytes for field1669. */ + @java.lang.Override public com.google.protobuf.ByteString getField1669Bytes() { java.lang.Object ref = field1669_; @@ -52316,6 +53660,7 @@ public java.lang.String getField1669() { * string field_1670 = 1670; * @return The field1670. */ + @java.lang.Override public java.lang.String getField1670() { java.lang.Object ref = field1670_; if (ref instanceof java.lang.String) { @@ -52332,6 +53677,7 @@ public java.lang.String getField1670() { * string field_1670 = 1670; * @return The bytes for field1670. */ + @java.lang.Override public com.google.protobuf.ByteString getField1670Bytes() { java.lang.Object ref = field1670_; @@ -52352,6 +53698,7 @@ public java.lang.String getField1670() { * string field_1671 = 1671; * @return The field1671. */ + @java.lang.Override public java.lang.String getField1671() { java.lang.Object ref = field1671_; if (ref instanceof java.lang.String) { @@ -52368,6 +53715,7 @@ public java.lang.String getField1671() { * string field_1671 = 1671; * @return The bytes for field1671. */ + @java.lang.Override public com.google.protobuf.ByteString getField1671Bytes() { java.lang.Object ref = field1671_; @@ -52388,6 +53736,7 @@ public java.lang.String getField1671() { * string field_1672 = 1672; * @return The field1672. */ + @java.lang.Override public java.lang.String getField1672() { java.lang.Object ref = field1672_; if (ref instanceof java.lang.String) { @@ -52404,6 +53753,7 @@ public java.lang.String getField1672() { * string field_1672 = 1672; * @return The bytes for field1672. */ + @java.lang.Override public com.google.protobuf.ByteString getField1672Bytes() { java.lang.Object ref = field1672_; @@ -52424,6 +53774,7 @@ public java.lang.String getField1672() { * string field_1673 = 1673; * @return The field1673. */ + @java.lang.Override public java.lang.String getField1673() { java.lang.Object ref = field1673_; if (ref instanceof java.lang.String) { @@ -52440,6 +53791,7 @@ public java.lang.String getField1673() { * string field_1673 = 1673; * @return The bytes for field1673. */ + @java.lang.Override public com.google.protobuf.ByteString getField1673Bytes() { java.lang.Object ref = field1673_; @@ -52460,6 +53812,7 @@ public java.lang.String getField1673() { * string field_1674 = 1674; * @return The field1674. */ + @java.lang.Override public java.lang.String getField1674() { java.lang.Object ref = field1674_; if (ref instanceof java.lang.String) { @@ -52476,6 +53829,7 @@ public java.lang.String getField1674() { * string field_1674 = 1674; * @return The bytes for field1674. */ + @java.lang.Override public com.google.protobuf.ByteString getField1674Bytes() { java.lang.Object ref = field1674_; @@ -52496,6 +53850,7 @@ public java.lang.String getField1674() { * string field_1675 = 1675; * @return The field1675. */ + @java.lang.Override public java.lang.String getField1675() { java.lang.Object ref = field1675_; if (ref instanceof java.lang.String) { @@ -52512,6 +53867,7 @@ public java.lang.String getField1675() { * string field_1675 = 1675; * @return The bytes for field1675. */ + @java.lang.Override public com.google.protobuf.ByteString getField1675Bytes() { java.lang.Object ref = field1675_; @@ -52532,6 +53888,7 @@ public java.lang.String getField1675() { * string field_1676 = 1676; * @return The field1676. */ + @java.lang.Override public java.lang.String getField1676() { java.lang.Object ref = field1676_; if (ref instanceof java.lang.String) { @@ -52548,6 +53905,7 @@ public java.lang.String getField1676() { * string field_1676 = 1676; * @return The bytes for field1676. */ + @java.lang.Override public com.google.protobuf.ByteString getField1676Bytes() { java.lang.Object ref = field1676_; @@ -52568,6 +53926,7 @@ public java.lang.String getField1676() { * string field_1677 = 1677; * @return The field1677. */ + @java.lang.Override public java.lang.String getField1677() { java.lang.Object ref = field1677_; if (ref instanceof java.lang.String) { @@ -52584,6 +53943,7 @@ public java.lang.String getField1677() { * string field_1677 = 1677; * @return The bytes for field1677. */ + @java.lang.Override public com.google.protobuf.ByteString getField1677Bytes() { java.lang.Object ref = field1677_; @@ -52604,6 +53964,7 @@ public java.lang.String getField1677() { * string field_1678 = 1678; * @return The field1678. */ + @java.lang.Override public java.lang.String getField1678() { java.lang.Object ref = field1678_; if (ref instanceof java.lang.String) { @@ -52620,6 +53981,7 @@ public java.lang.String getField1678() { * string field_1678 = 1678; * @return The bytes for field1678. */ + @java.lang.Override public com.google.protobuf.ByteString getField1678Bytes() { java.lang.Object ref = field1678_; @@ -52640,6 +54002,7 @@ public java.lang.String getField1678() { * string field_1679 = 1679; * @return The field1679. */ + @java.lang.Override public java.lang.String getField1679() { java.lang.Object ref = field1679_; if (ref instanceof java.lang.String) { @@ -52656,6 +54019,7 @@ public java.lang.String getField1679() { * string field_1679 = 1679; * @return The bytes for field1679. */ + @java.lang.Override public com.google.protobuf.ByteString getField1679Bytes() { java.lang.Object ref = field1679_; @@ -52676,6 +54040,7 @@ public java.lang.String getField1679() { * string field_1680 = 1680; * @return The field1680. */ + @java.lang.Override public java.lang.String getField1680() { java.lang.Object ref = field1680_; if (ref instanceof java.lang.String) { @@ -52692,6 +54057,7 @@ public java.lang.String getField1680() { * string field_1680 = 1680; * @return The bytes for field1680. */ + @java.lang.Override public com.google.protobuf.ByteString getField1680Bytes() { java.lang.Object ref = field1680_; @@ -52712,6 +54078,7 @@ public java.lang.String getField1680() { * string field_1681 = 1681; * @return The field1681. */ + @java.lang.Override public java.lang.String getField1681() { java.lang.Object ref = field1681_; if (ref instanceof java.lang.String) { @@ -52728,6 +54095,7 @@ public java.lang.String getField1681() { * string field_1681 = 1681; * @return The bytes for field1681. */ + @java.lang.Override public com.google.protobuf.ByteString getField1681Bytes() { java.lang.Object ref = field1681_; @@ -52748,6 +54116,7 @@ public java.lang.String getField1681() { * string field_1682 = 1682; * @return The field1682. */ + @java.lang.Override public java.lang.String getField1682() { java.lang.Object ref = field1682_; if (ref instanceof java.lang.String) { @@ -52764,6 +54133,7 @@ public java.lang.String getField1682() { * string field_1682 = 1682; * @return The bytes for field1682. */ + @java.lang.Override public com.google.protobuf.ByteString getField1682Bytes() { java.lang.Object ref = field1682_; @@ -52784,6 +54154,7 @@ public java.lang.String getField1682() { * string field_1683 = 1683; * @return The field1683. */ + @java.lang.Override public java.lang.String getField1683() { java.lang.Object ref = field1683_; if (ref instanceof java.lang.String) { @@ -52800,6 +54171,7 @@ public java.lang.String getField1683() { * string field_1683 = 1683; * @return The bytes for field1683. */ + @java.lang.Override public com.google.protobuf.ByteString getField1683Bytes() { java.lang.Object ref = field1683_; @@ -52820,6 +54192,7 @@ public java.lang.String getField1683() { * string field_1684 = 1684; * @return The field1684. */ + @java.lang.Override public java.lang.String getField1684() { java.lang.Object ref = field1684_; if (ref instanceof java.lang.String) { @@ -52836,6 +54209,7 @@ public java.lang.String getField1684() { * string field_1684 = 1684; * @return The bytes for field1684. */ + @java.lang.Override public com.google.protobuf.ByteString getField1684Bytes() { java.lang.Object ref = field1684_; @@ -52856,6 +54230,7 @@ public java.lang.String getField1684() { * string field_1685 = 1685; * @return The field1685. */ + @java.lang.Override public java.lang.String getField1685() { java.lang.Object ref = field1685_; if (ref instanceof java.lang.String) { @@ -52872,6 +54247,7 @@ public java.lang.String getField1685() { * string field_1685 = 1685; * @return The bytes for field1685. */ + @java.lang.Override public com.google.protobuf.ByteString getField1685Bytes() { java.lang.Object ref = field1685_; @@ -52892,6 +54268,7 @@ public java.lang.String getField1685() { * string field_1686 = 1686; * @return The field1686. */ + @java.lang.Override public java.lang.String getField1686() { java.lang.Object ref = field1686_; if (ref instanceof java.lang.String) { @@ -52908,6 +54285,7 @@ public java.lang.String getField1686() { * string field_1686 = 1686; * @return The bytes for field1686. */ + @java.lang.Override public com.google.protobuf.ByteString getField1686Bytes() { java.lang.Object ref = field1686_; @@ -52928,6 +54306,7 @@ public java.lang.String getField1686() { * string field_1687 = 1687; * @return The field1687. */ + @java.lang.Override public java.lang.String getField1687() { java.lang.Object ref = field1687_; if (ref instanceof java.lang.String) { @@ -52944,6 +54323,7 @@ public java.lang.String getField1687() { * string field_1687 = 1687; * @return The bytes for field1687. */ + @java.lang.Override public com.google.protobuf.ByteString getField1687Bytes() { java.lang.Object ref = field1687_; @@ -52964,6 +54344,7 @@ public java.lang.String getField1687() { * string field_1688 = 1688; * @return The field1688. */ + @java.lang.Override public java.lang.String getField1688() { java.lang.Object ref = field1688_; if (ref instanceof java.lang.String) { @@ -52980,6 +54361,7 @@ public java.lang.String getField1688() { * string field_1688 = 1688; * @return The bytes for field1688. */ + @java.lang.Override public com.google.protobuf.ByteString getField1688Bytes() { java.lang.Object ref = field1688_; @@ -53000,6 +54382,7 @@ public java.lang.String getField1688() { * string field_1689 = 1689; * @return The field1689. */ + @java.lang.Override public java.lang.String getField1689() { java.lang.Object ref = field1689_; if (ref instanceof java.lang.String) { @@ -53016,6 +54399,7 @@ public java.lang.String getField1689() { * string field_1689 = 1689; * @return The bytes for field1689. */ + @java.lang.Override public com.google.protobuf.ByteString getField1689Bytes() { java.lang.Object ref = field1689_; @@ -53036,6 +54420,7 @@ public java.lang.String getField1689() { * string field_1690 = 1690; * @return The field1690. */ + @java.lang.Override public java.lang.String getField1690() { java.lang.Object ref = field1690_; if (ref instanceof java.lang.String) { @@ -53052,6 +54437,7 @@ public java.lang.String getField1690() { * string field_1690 = 1690; * @return The bytes for field1690. */ + @java.lang.Override public com.google.protobuf.ByteString getField1690Bytes() { java.lang.Object ref = field1690_; @@ -53072,6 +54458,7 @@ public java.lang.String getField1690() { * string field_1691 = 1691; * @return The field1691. */ + @java.lang.Override public java.lang.String getField1691() { java.lang.Object ref = field1691_; if (ref instanceof java.lang.String) { @@ -53088,6 +54475,7 @@ public java.lang.String getField1691() { * string field_1691 = 1691; * @return The bytes for field1691. */ + @java.lang.Override public com.google.protobuf.ByteString getField1691Bytes() { java.lang.Object ref = field1691_; @@ -53108,6 +54496,7 @@ public java.lang.String getField1691() { * string field_1692 = 1692; * @return The field1692. */ + @java.lang.Override public java.lang.String getField1692() { java.lang.Object ref = field1692_; if (ref instanceof java.lang.String) { @@ -53124,6 +54513,7 @@ public java.lang.String getField1692() { * string field_1692 = 1692; * @return The bytes for field1692. */ + @java.lang.Override public com.google.protobuf.ByteString getField1692Bytes() { java.lang.Object ref = field1692_; @@ -53144,6 +54534,7 @@ public java.lang.String getField1692() { * string field_1693 = 1693; * @return The field1693. */ + @java.lang.Override public java.lang.String getField1693() { java.lang.Object ref = field1693_; if (ref instanceof java.lang.String) { @@ -53160,6 +54551,7 @@ public java.lang.String getField1693() { * string field_1693 = 1693; * @return The bytes for field1693. */ + @java.lang.Override public com.google.protobuf.ByteString getField1693Bytes() { java.lang.Object ref = field1693_; @@ -53180,6 +54572,7 @@ public java.lang.String getField1693() { * string field_1694 = 1694; * @return The field1694. */ + @java.lang.Override public java.lang.String getField1694() { java.lang.Object ref = field1694_; if (ref instanceof java.lang.String) { @@ -53196,6 +54589,7 @@ public java.lang.String getField1694() { * string field_1694 = 1694; * @return The bytes for field1694. */ + @java.lang.Override public com.google.protobuf.ByteString getField1694Bytes() { java.lang.Object ref = field1694_; @@ -53216,6 +54610,7 @@ public java.lang.String getField1694() { * string field_1695 = 1695; * @return The field1695. */ + @java.lang.Override public java.lang.String getField1695() { java.lang.Object ref = field1695_; if (ref instanceof java.lang.String) { @@ -53232,6 +54627,7 @@ public java.lang.String getField1695() { * string field_1695 = 1695; * @return The bytes for field1695. */ + @java.lang.Override public com.google.protobuf.ByteString getField1695Bytes() { java.lang.Object ref = field1695_; @@ -53252,6 +54648,7 @@ public java.lang.String getField1695() { * string field_1696 = 1696; * @return The field1696. */ + @java.lang.Override public java.lang.String getField1696() { java.lang.Object ref = field1696_; if (ref instanceof java.lang.String) { @@ -53268,6 +54665,7 @@ public java.lang.String getField1696() { * string field_1696 = 1696; * @return The bytes for field1696. */ + @java.lang.Override public com.google.protobuf.ByteString getField1696Bytes() { java.lang.Object ref = field1696_; @@ -53288,6 +54686,7 @@ public java.lang.String getField1696() { * string field_1697 = 1697; * @return The field1697. */ + @java.lang.Override public java.lang.String getField1697() { java.lang.Object ref = field1697_; if (ref instanceof java.lang.String) { @@ -53304,6 +54703,7 @@ public java.lang.String getField1697() { * string field_1697 = 1697; * @return The bytes for field1697. */ + @java.lang.Override public com.google.protobuf.ByteString getField1697Bytes() { java.lang.Object ref = field1697_; @@ -53324,6 +54724,7 @@ public java.lang.String getField1697() { * string field_1698 = 1698; * @return The field1698. */ + @java.lang.Override public java.lang.String getField1698() { java.lang.Object ref = field1698_; if (ref instanceof java.lang.String) { @@ -53340,6 +54741,7 @@ public java.lang.String getField1698() { * string field_1698 = 1698; * @return The bytes for field1698. */ + @java.lang.Override public com.google.protobuf.ByteString getField1698Bytes() { java.lang.Object ref = field1698_; @@ -53360,6 +54762,7 @@ public java.lang.String getField1698() { * string field_1699 = 1699; * @return The field1699. */ + @java.lang.Override public java.lang.String getField1699() { java.lang.Object ref = field1699_; if (ref instanceof java.lang.String) { @@ -53376,6 +54779,7 @@ public java.lang.String getField1699() { * string field_1699 = 1699; * @return The bytes for field1699. */ + @java.lang.Override public com.google.protobuf.ByteString getField1699Bytes() { java.lang.Object ref = field1699_; @@ -53396,6 +54800,7 @@ public java.lang.String getField1699() { * string field_1700 = 1700; * @return The field1700. */ + @java.lang.Override public java.lang.String getField1700() { java.lang.Object ref = field1700_; if (ref instanceof java.lang.String) { @@ -53412,6 +54817,7 @@ public java.lang.String getField1700() { * string field_1700 = 1700; * @return The bytes for field1700. */ + @java.lang.Override public com.google.protobuf.ByteString getField1700Bytes() { java.lang.Object ref = field1700_; @@ -53432,6 +54838,7 @@ public java.lang.String getField1700() { * string field_1701 = 1701; * @return The field1701. */ + @java.lang.Override public java.lang.String getField1701() { java.lang.Object ref = field1701_; if (ref instanceof java.lang.String) { @@ -53448,6 +54855,7 @@ public java.lang.String getField1701() { * string field_1701 = 1701; * @return The bytes for field1701. */ + @java.lang.Override public com.google.protobuf.ByteString getField1701Bytes() { java.lang.Object ref = field1701_; @@ -53468,6 +54876,7 @@ public java.lang.String getField1701() { * string field_1702 = 1702; * @return The field1702. */ + @java.lang.Override public java.lang.String getField1702() { java.lang.Object ref = field1702_; if (ref instanceof java.lang.String) { @@ -53484,6 +54893,7 @@ public java.lang.String getField1702() { * string field_1702 = 1702; * @return The bytes for field1702. */ + @java.lang.Override public com.google.protobuf.ByteString getField1702Bytes() { java.lang.Object ref = field1702_; @@ -53504,6 +54914,7 @@ public java.lang.String getField1702() { * string field_1703 = 1703; * @return The field1703. */ + @java.lang.Override public java.lang.String getField1703() { java.lang.Object ref = field1703_; if (ref instanceof java.lang.String) { @@ -53520,6 +54931,7 @@ public java.lang.String getField1703() { * string field_1703 = 1703; * @return The bytes for field1703. */ + @java.lang.Override public com.google.protobuf.ByteString getField1703Bytes() { java.lang.Object ref = field1703_; @@ -53540,6 +54952,7 @@ public java.lang.String getField1703() { * string field_1704 = 1704; * @return The field1704. */ + @java.lang.Override public java.lang.String getField1704() { java.lang.Object ref = field1704_; if (ref instanceof java.lang.String) { @@ -53556,6 +54969,7 @@ public java.lang.String getField1704() { * string field_1704 = 1704; * @return The bytes for field1704. */ + @java.lang.Override public com.google.protobuf.ByteString getField1704Bytes() { java.lang.Object ref = field1704_; @@ -53576,6 +54990,7 @@ public java.lang.String getField1704() { * string field_1705 = 1705; * @return The field1705. */ + @java.lang.Override public java.lang.String getField1705() { java.lang.Object ref = field1705_; if (ref instanceof java.lang.String) { @@ -53592,6 +55007,7 @@ public java.lang.String getField1705() { * string field_1705 = 1705; * @return The bytes for field1705. */ + @java.lang.Override public com.google.protobuf.ByteString getField1705Bytes() { java.lang.Object ref = field1705_; @@ -53612,6 +55028,7 @@ public java.lang.String getField1705() { * string field_1706 = 1706; * @return The field1706. */ + @java.lang.Override public java.lang.String getField1706() { java.lang.Object ref = field1706_; if (ref instanceof java.lang.String) { @@ -53628,6 +55045,7 @@ public java.lang.String getField1706() { * string field_1706 = 1706; * @return The bytes for field1706. */ + @java.lang.Override public com.google.protobuf.ByteString getField1706Bytes() { java.lang.Object ref = field1706_; @@ -53648,6 +55066,7 @@ public java.lang.String getField1706() { * string field_1707 = 1707; * @return The field1707. */ + @java.lang.Override public java.lang.String getField1707() { java.lang.Object ref = field1707_; if (ref instanceof java.lang.String) { @@ -53664,6 +55083,7 @@ public java.lang.String getField1707() { * string field_1707 = 1707; * @return The bytes for field1707. */ + @java.lang.Override public com.google.protobuf.ByteString getField1707Bytes() { java.lang.Object ref = field1707_; @@ -53684,6 +55104,7 @@ public java.lang.String getField1707() { * string field_1708 = 1708; * @return The field1708. */ + @java.lang.Override public java.lang.String getField1708() { java.lang.Object ref = field1708_; if (ref instanceof java.lang.String) { @@ -53700,6 +55121,7 @@ public java.lang.String getField1708() { * string field_1708 = 1708; * @return The bytes for field1708. */ + @java.lang.Override public com.google.protobuf.ByteString getField1708Bytes() { java.lang.Object ref = field1708_; @@ -53720,6 +55142,7 @@ public java.lang.String getField1708() { * string field_1709 = 1709; * @return The field1709. */ + @java.lang.Override public java.lang.String getField1709() { java.lang.Object ref = field1709_; if (ref instanceof java.lang.String) { @@ -53736,6 +55159,7 @@ public java.lang.String getField1709() { * string field_1709 = 1709; * @return The bytes for field1709. */ + @java.lang.Override public com.google.protobuf.ByteString getField1709Bytes() { java.lang.Object ref = field1709_; @@ -53756,6 +55180,7 @@ public java.lang.String getField1709() { * string field_1710 = 1710; * @return The field1710. */ + @java.lang.Override public java.lang.String getField1710() { java.lang.Object ref = field1710_; if (ref instanceof java.lang.String) { @@ -53772,6 +55197,7 @@ public java.lang.String getField1710() { * string field_1710 = 1710; * @return The bytes for field1710. */ + @java.lang.Override public com.google.protobuf.ByteString getField1710Bytes() { java.lang.Object ref = field1710_; @@ -53792,6 +55218,7 @@ public java.lang.String getField1710() { * string field_1711 = 1711; * @return The field1711. */ + @java.lang.Override public java.lang.String getField1711() { java.lang.Object ref = field1711_; if (ref instanceof java.lang.String) { @@ -53808,6 +55235,7 @@ public java.lang.String getField1711() { * string field_1711 = 1711; * @return The bytes for field1711. */ + @java.lang.Override public com.google.protobuf.ByteString getField1711Bytes() { java.lang.Object ref = field1711_; @@ -53828,6 +55256,7 @@ public java.lang.String getField1711() { * string field_1712 = 1712; * @return The field1712. */ + @java.lang.Override public java.lang.String getField1712() { java.lang.Object ref = field1712_; if (ref instanceof java.lang.String) { @@ -53844,6 +55273,7 @@ public java.lang.String getField1712() { * string field_1712 = 1712; * @return The bytes for field1712. */ + @java.lang.Override public com.google.protobuf.ByteString getField1712Bytes() { java.lang.Object ref = field1712_; @@ -53864,6 +55294,7 @@ public java.lang.String getField1712() { * string field_1713 = 1713; * @return The field1713. */ + @java.lang.Override public java.lang.String getField1713() { java.lang.Object ref = field1713_; if (ref instanceof java.lang.String) { @@ -53880,6 +55311,7 @@ public java.lang.String getField1713() { * string field_1713 = 1713; * @return The bytes for field1713. */ + @java.lang.Override public com.google.protobuf.ByteString getField1713Bytes() { java.lang.Object ref = field1713_; @@ -53900,6 +55332,7 @@ public java.lang.String getField1713() { * string field_1714 = 1714; * @return The field1714. */ + @java.lang.Override public java.lang.String getField1714() { java.lang.Object ref = field1714_; if (ref instanceof java.lang.String) { @@ -53916,6 +55349,7 @@ public java.lang.String getField1714() { * string field_1714 = 1714; * @return The bytes for field1714. */ + @java.lang.Override public com.google.protobuf.ByteString getField1714Bytes() { java.lang.Object ref = field1714_; @@ -53936,6 +55370,7 @@ public java.lang.String getField1714() { * string field_1715 = 1715; * @return The field1715. */ + @java.lang.Override public java.lang.String getField1715() { java.lang.Object ref = field1715_; if (ref instanceof java.lang.String) { @@ -53952,6 +55387,7 @@ public java.lang.String getField1715() { * string field_1715 = 1715; * @return The bytes for field1715. */ + @java.lang.Override public com.google.protobuf.ByteString getField1715Bytes() { java.lang.Object ref = field1715_; @@ -53972,6 +55408,7 @@ public java.lang.String getField1715() { * string field_1716 = 1716; * @return The field1716. */ + @java.lang.Override public java.lang.String getField1716() { java.lang.Object ref = field1716_; if (ref instanceof java.lang.String) { @@ -53988,6 +55425,7 @@ public java.lang.String getField1716() { * string field_1716 = 1716; * @return The bytes for field1716. */ + @java.lang.Override public com.google.protobuf.ByteString getField1716Bytes() { java.lang.Object ref = field1716_; @@ -54008,6 +55446,7 @@ public java.lang.String getField1716() { * string field_1717 = 1717; * @return The field1717. */ + @java.lang.Override public java.lang.String getField1717() { java.lang.Object ref = field1717_; if (ref instanceof java.lang.String) { @@ -54024,6 +55463,7 @@ public java.lang.String getField1717() { * string field_1717 = 1717; * @return The bytes for field1717. */ + @java.lang.Override public com.google.protobuf.ByteString getField1717Bytes() { java.lang.Object ref = field1717_; @@ -54044,6 +55484,7 @@ public java.lang.String getField1717() { * string field_1718 = 1718; * @return The field1718. */ + @java.lang.Override public java.lang.String getField1718() { java.lang.Object ref = field1718_; if (ref instanceof java.lang.String) { @@ -54060,6 +55501,7 @@ public java.lang.String getField1718() { * string field_1718 = 1718; * @return The bytes for field1718. */ + @java.lang.Override public com.google.protobuf.ByteString getField1718Bytes() { java.lang.Object ref = field1718_; @@ -54080,6 +55522,7 @@ public java.lang.String getField1718() { * string field_1719 = 1719; * @return The field1719. */ + @java.lang.Override public java.lang.String getField1719() { java.lang.Object ref = field1719_; if (ref instanceof java.lang.String) { @@ -54096,6 +55539,7 @@ public java.lang.String getField1719() { * string field_1719 = 1719; * @return The bytes for field1719. */ + @java.lang.Override public com.google.protobuf.ByteString getField1719Bytes() { java.lang.Object ref = field1719_; @@ -54116,6 +55560,7 @@ public java.lang.String getField1719() { * string field_1720 = 1720; * @return The field1720. */ + @java.lang.Override public java.lang.String getField1720() { java.lang.Object ref = field1720_; if (ref instanceof java.lang.String) { @@ -54132,6 +55577,7 @@ public java.lang.String getField1720() { * string field_1720 = 1720; * @return The bytes for field1720. */ + @java.lang.Override public com.google.protobuf.ByteString getField1720Bytes() { java.lang.Object ref = field1720_; @@ -54152,6 +55598,7 @@ public java.lang.String getField1720() { * string field_1721 = 1721; * @return The field1721. */ + @java.lang.Override public java.lang.String getField1721() { java.lang.Object ref = field1721_; if (ref instanceof java.lang.String) { @@ -54168,6 +55615,7 @@ public java.lang.String getField1721() { * string field_1721 = 1721; * @return The bytes for field1721. */ + @java.lang.Override public com.google.protobuf.ByteString getField1721Bytes() { java.lang.Object ref = field1721_; @@ -54188,6 +55636,7 @@ public java.lang.String getField1721() { * string field_1722 = 1722; * @return The field1722. */ + @java.lang.Override public java.lang.String getField1722() { java.lang.Object ref = field1722_; if (ref instanceof java.lang.String) { @@ -54204,6 +55653,7 @@ public java.lang.String getField1722() { * string field_1722 = 1722; * @return The bytes for field1722. */ + @java.lang.Override public com.google.protobuf.ByteString getField1722Bytes() { java.lang.Object ref = field1722_; @@ -54224,6 +55674,7 @@ public java.lang.String getField1722() { * string field_1723 = 1723; * @return The field1723. */ + @java.lang.Override public java.lang.String getField1723() { java.lang.Object ref = field1723_; if (ref instanceof java.lang.String) { @@ -54240,6 +55691,7 @@ public java.lang.String getField1723() { * string field_1723 = 1723; * @return The bytes for field1723. */ + @java.lang.Override public com.google.protobuf.ByteString getField1723Bytes() { java.lang.Object ref = field1723_; @@ -54260,6 +55712,7 @@ public java.lang.String getField1723() { * string field_1724 = 1724; * @return The field1724. */ + @java.lang.Override public java.lang.String getField1724() { java.lang.Object ref = field1724_; if (ref instanceof java.lang.String) { @@ -54276,6 +55729,7 @@ public java.lang.String getField1724() { * string field_1724 = 1724; * @return The bytes for field1724. */ + @java.lang.Override public com.google.protobuf.ByteString getField1724Bytes() { java.lang.Object ref = field1724_; @@ -54296,6 +55750,7 @@ public java.lang.String getField1724() { * string field_1725 = 1725; * @return The field1725. */ + @java.lang.Override public java.lang.String getField1725() { java.lang.Object ref = field1725_; if (ref instanceof java.lang.String) { @@ -54312,6 +55767,7 @@ public java.lang.String getField1725() { * string field_1725 = 1725; * @return The bytes for field1725. */ + @java.lang.Override public com.google.protobuf.ByteString getField1725Bytes() { java.lang.Object ref = field1725_; @@ -54332,6 +55788,7 @@ public java.lang.String getField1725() { * string field_1726 = 1726; * @return The field1726. */ + @java.lang.Override public java.lang.String getField1726() { java.lang.Object ref = field1726_; if (ref instanceof java.lang.String) { @@ -54348,6 +55805,7 @@ public java.lang.String getField1726() { * string field_1726 = 1726; * @return The bytes for field1726. */ + @java.lang.Override public com.google.protobuf.ByteString getField1726Bytes() { java.lang.Object ref = field1726_; @@ -54368,6 +55826,7 @@ public java.lang.String getField1726() { * string field_1727 = 1727; * @return The field1727. */ + @java.lang.Override public java.lang.String getField1727() { java.lang.Object ref = field1727_; if (ref instanceof java.lang.String) { @@ -54384,6 +55843,7 @@ public java.lang.String getField1727() { * string field_1727 = 1727; * @return The bytes for field1727. */ + @java.lang.Override public com.google.protobuf.ByteString getField1727Bytes() { java.lang.Object ref = field1727_; @@ -54404,6 +55864,7 @@ public java.lang.String getField1727() { * string field_1728 = 1728; * @return The field1728. */ + @java.lang.Override public java.lang.String getField1728() { java.lang.Object ref = field1728_; if (ref instanceof java.lang.String) { @@ -54420,6 +55881,7 @@ public java.lang.String getField1728() { * string field_1728 = 1728; * @return The bytes for field1728. */ + @java.lang.Override public com.google.protobuf.ByteString getField1728Bytes() { java.lang.Object ref = field1728_; @@ -54440,6 +55902,7 @@ public java.lang.String getField1728() { * string field_1729 = 1729; * @return The field1729. */ + @java.lang.Override public java.lang.String getField1729() { java.lang.Object ref = field1729_; if (ref instanceof java.lang.String) { @@ -54456,6 +55919,7 @@ public java.lang.String getField1729() { * string field_1729 = 1729; * @return The bytes for field1729. */ + @java.lang.Override public com.google.protobuf.ByteString getField1729Bytes() { java.lang.Object ref = field1729_; @@ -54476,6 +55940,7 @@ public java.lang.String getField1729() { * string field_1730 = 1730; * @return The field1730. */ + @java.lang.Override public java.lang.String getField1730() { java.lang.Object ref = field1730_; if (ref instanceof java.lang.String) { @@ -54492,6 +55957,7 @@ public java.lang.String getField1730() { * string field_1730 = 1730; * @return The bytes for field1730. */ + @java.lang.Override public com.google.protobuf.ByteString getField1730Bytes() { java.lang.Object ref = field1730_; @@ -54512,6 +55978,7 @@ public java.lang.String getField1730() { * string field_1731 = 1731; * @return The field1731. */ + @java.lang.Override public java.lang.String getField1731() { java.lang.Object ref = field1731_; if (ref instanceof java.lang.String) { @@ -54528,6 +55995,7 @@ public java.lang.String getField1731() { * string field_1731 = 1731; * @return The bytes for field1731. */ + @java.lang.Override public com.google.protobuf.ByteString getField1731Bytes() { java.lang.Object ref = field1731_; @@ -54548,6 +56016,7 @@ public java.lang.String getField1731() { * string field_1732 = 1732; * @return The field1732. */ + @java.lang.Override public java.lang.String getField1732() { java.lang.Object ref = field1732_; if (ref instanceof java.lang.String) { @@ -54564,6 +56033,7 @@ public java.lang.String getField1732() { * string field_1732 = 1732; * @return The bytes for field1732. */ + @java.lang.Override public com.google.protobuf.ByteString getField1732Bytes() { java.lang.Object ref = field1732_; @@ -54584,6 +56054,7 @@ public java.lang.String getField1732() { * string field_1733 = 1733; * @return The field1733. */ + @java.lang.Override public java.lang.String getField1733() { java.lang.Object ref = field1733_; if (ref instanceof java.lang.String) { @@ -54600,6 +56071,7 @@ public java.lang.String getField1733() { * string field_1733 = 1733; * @return The bytes for field1733. */ + @java.lang.Override public com.google.protobuf.ByteString getField1733Bytes() { java.lang.Object ref = field1733_; @@ -54620,6 +56092,7 @@ public java.lang.String getField1733() { * string field_1734 = 1734; * @return The field1734. */ + @java.lang.Override public java.lang.String getField1734() { java.lang.Object ref = field1734_; if (ref instanceof java.lang.String) { @@ -54636,6 +56109,7 @@ public java.lang.String getField1734() { * string field_1734 = 1734; * @return The bytes for field1734. */ + @java.lang.Override public com.google.protobuf.ByteString getField1734Bytes() { java.lang.Object ref = field1734_; @@ -54656,6 +56130,7 @@ public java.lang.String getField1734() { * string field_1735 = 1735; * @return The field1735. */ + @java.lang.Override public java.lang.String getField1735() { java.lang.Object ref = field1735_; if (ref instanceof java.lang.String) { @@ -54672,6 +56147,7 @@ public java.lang.String getField1735() { * string field_1735 = 1735; * @return The bytes for field1735. */ + @java.lang.Override public com.google.protobuf.ByteString getField1735Bytes() { java.lang.Object ref = field1735_; @@ -54692,6 +56168,7 @@ public java.lang.String getField1735() { * string field_1736 = 1736; * @return The field1736. */ + @java.lang.Override public java.lang.String getField1736() { java.lang.Object ref = field1736_; if (ref instanceof java.lang.String) { @@ -54708,6 +56185,7 @@ public java.lang.String getField1736() { * string field_1736 = 1736; * @return The bytes for field1736. */ + @java.lang.Override public com.google.protobuf.ByteString getField1736Bytes() { java.lang.Object ref = field1736_; @@ -54728,6 +56206,7 @@ public java.lang.String getField1736() { * string field_1737 = 1737; * @return The field1737. */ + @java.lang.Override public java.lang.String getField1737() { java.lang.Object ref = field1737_; if (ref instanceof java.lang.String) { @@ -54744,6 +56223,7 @@ public java.lang.String getField1737() { * string field_1737 = 1737; * @return The bytes for field1737. */ + @java.lang.Override public com.google.protobuf.ByteString getField1737Bytes() { java.lang.Object ref = field1737_; @@ -54764,6 +56244,7 @@ public java.lang.String getField1737() { * string field_1738 = 1738; * @return The field1738. */ + @java.lang.Override public java.lang.String getField1738() { java.lang.Object ref = field1738_; if (ref instanceof java.lang.String) { @@ -54780,6 +56261,7 @@ public java.lang.String getField1738() { * string field_1738 = 1738; * @return The bytes for field1738. */ + @java.lang.Override public com.google.protobuf.ByteString getField1738Bytes() { java.lang.Object ref = field1738_; @@ -54800,6 +56282,7 @@ public java.lang.String getField1738() { * string field_1739 = 1739; * @return The field1739. */ + @java.lang.Override public java.lang.String getField1739() { java.lang.Object ref = field1739_; if (ref instanceof java.lang.String) { @@ -54816,6 +56299,7 @@ public java.lang.String getField1739() { * string field_1739 = 1739; * @return The bytes for field1739. */ + @java.lang.Override public com.google.protobuf.ByteString getField1739Bytes() { java.lang.Object ref = field1739_; @@ -54836,6 +56320,7 @@ public java.lang.String getField1739() { * string field_1740 = 1740; * @return The field1740. */ + @java.lang.Override public java.lang.String getField1740() { java.lang.Object ref = field1740_; if (ref instanceof java.lang.String) { @@ -54852,6 +56337,7 @@ public java.lang.String getField1740() { * string field_1740 = 1740; * @return The bytes for field1740. */ + @java.lang.Override public com.google.protobuf.ByteString getField1740Bytes() { java.lang.Object ref = field1740_; @@ -54872,6 +56358,7 @@ public java.lang.String getField1740() { * string field_1741 = 1741; * @return The field1741. */ + @java.lang.Override public java.lang.String getField1741() { java.lang.Object ref = field1741_; if (ref instanceof java.lang.String) { @@ -54888,6 +56375,7 @@ public java.lang.String getField1741() { * string field_1741 = 1741; * @return The bytes for field1741. */ + @java.lang.Override public com.google.protobuf.ByteString getField1741Bytes() { java.lang.Object ref = field1741_; @@ -54908,6 +56396,7 @@ public java.lang.String getField1741() { * string field_1742 = 1742; * @return The field1742. */ + @java.lang.Override public java.lang.String getField1742() { java.lang.Object ref = field1742_; if (ref instanceof java.lang.String) { @@ -54924,6 +56413,7 @@ public java.lang.String getField1742() { * string field_1742 = 1742; * @return The bytes for field1742. */ + @java.lang.Override public com.google.protobuf.ByteString getField1742Bytes() { java.lang.Object ref = field1742_; @@ -54944,6 +56434,7 @@ public java.lang.String getField1742() { * string field_1743 = 1743; * @return The field1743. */ + @java.lang.Override public java.lang.String getField1743() { java.lang.Object ref = field1743_; if (ref instanceof java.lang.String) { @@ -54960,6 +56451,7 @@ public java.lang.String getField1743() { * string field_1743 = 1743; * @return The bytes for field1743. */ + @java.lang.Override public com.google.protobuf.ByteString getField1743Bytes() { java.lang.Object ref = field1743_; @@ -54980,6 +56472,7 @@ public java.lang.String getField1743() { * string field_1744 = 1744; * @return The field1744. */ + @java.lang.Override public java.lang.String getField1744() { java.lang.Object ref = field1744_; if (ref instanceof java.lang.String) { @@ -54996,6 +56489,7 @@ public java.lang.String getField1744() { * string field_1744 = 1744; * @return The bytes for field1744. */ + @java.lang.Override public com.google.protobuf.ByteString getField1744Bytes() { java.lang.Object ref = field1744_; @@ -55016,6 +56510,7 @@ public java.lang.String getField1744() { * string field_1745 = 1745; * @return The field1745. */ + @java.lang.Override public java.lang.String getField1745() { java.lang.Object ref = field1745_; if (ref instanceof java.lang.String) { @@ -55032,6 +56527,7 @@ public java.lang.String getField1745() { * string field_1745 = 1745; * @return The bytes for field1745. */ + @java.lang.Override public com.google.protobuf.ByteString getField1745Bytes() { java.lang.Object ref = field1745_; @@ -55052,6 +56548,7 @@ public java.lang.String getField1745() { * string field_1746 = 1746; * @return The field1746. */ + @java.lang.Override public java.lang.String getField1746() { java.lang.Object ref = field1746_; if (ref instanceof java.lang.String) { @@ -55068,6 +56565,7 @@ public java.lang.String getField1746() { * string field_1746 = 1746; * @return The bytes for field1746. */ + @java.lang.Override public com.google.protobuf.ByteString getField1746Bytes() { java.lang.Object ref = field1746_; @@ -55088,6 +56586,7 @@ public java.lang.String getField1746() { * string field_1747 = 1747; * @return The field1747. */ + @java.lang.Override public java.lang.String getField1747() { java.lang.Object ref = field1747_; if (ref instanceof java.lang.String) { @@ -55104,6 +56603,7 @@ public java.lang.String getField1747() { * string field_1747 = 1747; * @return The bytes for field1747. */ + @java.lang.Override public com.google.protobuf.ByteString getField1747Bytes() { java.lang.Object ref = field1747_; @@ -55124,6 +56624,7 @@ public java.lang.String getField1747() { * string field_1748 = 1748; * @return The field1748. */ + @java.lang.Override public java.lang.String getField1748() { java.lang.Object ref = field1748_; if (ref instanceof java.lang.String) { @@ -55140,6 +56641,7 @@ public java.lang.String getField1748() { * string field_1748 = 1748; * @return The bytes for field1748. */ + @java.lang.Override public com.google.protobuf.ByteString getField1748Bytes() { java.lang.Object ref = field1748_; @@ -55160,6 +56662,7 @@ public java.lang.String getField1748() { * string field_1749 = 1749; * @return The field1749. */ + @java.lang.Override public java.lang.String getField1749() { java.lang.Object ref = field1749_; if (ref instanceof java.lang.String) { @@ -55176,6 +56679,7 @@ public java.lang.String getField1749() { * string field_1749 = 1749; * @return The bytes for field1749. */ + @java.lang.Override public com.google.protobuf.ByteString getField1749Bytes() { java.lang.Object ref = field1749_; @@ -55196,6 +56700,7 @@ public java.lang.String getField1749() { * string field_1750 = 1750; * @return The field1750. */ + @java.lang.Override public java.lang.String getField1750() { java.lang.Object ref = field1750_; if (ref instanceof java.lang.String) { @@ -55212,6 +56717,7 @@ public java.lang.String getField1750() { * string field_1750 = 1750; * @return The bytes for field1750. */ + @java.lang.Override public com.google.protobuf.ByteString getField1750Bytes() { java.lang.Object ref = field1750_; @@ -55232,6 +56738,7 @@ public java.lang.String getField1750() { * string field_1751 = 1751; * @return The field1751. */ + @java.lang.Override public java.lang.String getField1751() { java.lang.Object ref = field1751_; if (ref instanceof java.lang.String) { @@ -55248,6 +56755,7 @@ public java.lang.String getField1751() { * string field_1751 = 1751; * @return The bytes for field1751. */ + @java.lang.Override public com.google.protobuf.ByteString getField1751Bytes() { java.lang.Object ref = field1751_; @@ -55268,6 +56776,7 @@ public java.lang.String getField1751() { * string field_1752 = 1752; * @return The field1752. */ + @java.lang.Override public java.lang.String getField1752() { java.lang.Object ref = field1752_; if (ref instanceof java.lang.String) { @@ -55284,6 +56793,7 @@ public java.lang.String getField1752() { * string field_1752 = 1752; * @return The bytes for field1752. */ + @java.lang.Override public com.google.protobuf.ByteString getField1752Bytes() { java.lang.Object ref = field1752_; @@ -55304,6 +56814,7 @@ public java.lang.String getField1752() { * string field_1753 = 1753; * @return The field1753. */ + @java.lang.Override public java.lang.String getField1753() { java.lang.Object ref = field1753_; if (ref instanceof java.lang.String) { @@ -55320,6 +56831,7 @@ public java.lang.String getField1753() { * string field_1753 = 1753; * @return The bytes for field1753. */ + @java.lang.Override public com.google.protobuf.ByteString getField1753Bytes() { java.lang.Object ref = field1753_; @@ -55340,6 +56852,7 @@ public java.lang.String getField1753() { * string field_1754 = 1754; * @return The field1754. */ + @java.lang.Override public java.lang.String getField1754() { java.lang.Object ref = field1754_; if (ref instanceof java.lang.String) { @@ -55356,6 +56869,7 @@ public java.lang.String getField1754() { * string field_1754 = 1754; * @return The bytes for field1754. */ + @java.lang.Override public com.google.protobuf.ByteString getField1754Bytes() { java.lang.Object ref = field1754_; @@ -55376,6 +56890,7 @@ public java.lang.String getField1754() { * string field_1755 = 1755; * @return The field1755. */ + @java.lang.Override public java.lang.String getField1755() { java.lang.Object ref = field1755_; if (ref instanceof java.lang.String) { @@ -55392,6 +56907,7 @@ public java.lang.String getField1755() { * string field_1755 = 1755; * @return The bytes for field1755. */ + @java.lang.Override public com.google.protobuf.ByteString getField1755Bytes() { java.lang.Object ref = field1755_; @@ -55412,6 +56928,7 @@ public java.lang.String getField1755() { * string field_1756 = 1756; * @return The field1756. */ + @java.lang.Override public java.lang.String getField1756() { java.lang.Object ref = field1756_; if (ref instanceof java.lang.String) { @@ -55428,6 +56945,7 @@ public java.lang.String getField1756() { * string field_1756 = 1756; * @return The bytes for field1756. */ + @java.lang.Override public com.google.protobuf.ByteString getField1756Bytes() { java.lang.Object ref = field1756_; @@ -55448,6 +56966,7 @@ public java.lang.String getField1756() { * string field_1757 = 1757; * @return The field1757. */ + @java.lang.Override public java.lang.String getField1757() { java.lang.Object ref = field1757_; if (ref instanceof java.lang.String) { @@ -55464,6 +56983,7 @@ public java.lang.String getField1757() { * string field_1757 = 1757; * @return The bytes for field1757. */ + @java.lang.Override public com.google.protobuf.ByteString getField1757Bytes() { java.lang.Object ref = field1757_; @@ -55484,6 +57004,7 @@ public java.lang.String getField1757() { * string field_1758 = 1758; * @return The field1758. */ + @java.lang.Override public java.lang.String getField1758() { java.lang.Object ref = field1758_; if (ref instanceof java.lang.String) { @@ -55500,6 +57021,7 @@ public java.lang.String getField1758() { * string field_1758 = 1758; * @return The bytes for field1758. */ + @java.lang.Override public com.google.protobuf.ByteString getField1758Bytes() { java.lang.Object ref = field1758_; @@ -55520,6 +57042,7 @@ public java.lang.String getField1758() { * string field_1759 = 1759; * @return The field1759. */ + @java.lang.Override public java.lang.String getField1759() { java.lang.Object ref = field1759_; if (ref instanceof java.lang.String) { @@ -55536,6 +57059,7 @@ public java.lang.String getField1759() { * string field_1759 = 1759; * @return The bytes for field1759. */ + @java.lang.Override public com.google.protobuf.ByteString getField1759Bytes() { java.lang.Object ref = field1759_; @@ -55556,6 +57080,7 @@ public java.lang.String getField1759() { * string field_1760 = 1760; * @return The field1760. */ + @java.lang.Override public java.lang.String getField1760() { java.lang.Object ref = field1760_; if (ref instanceof java.lang.String) { @@ -55572,6 +57097,7 @@ public java.lang.String getField1760() { * string field_1760 = 1760; * @return The bytes for field1760. */ + @java.lang.Override public com.google.protobuf.ByteString getField1760Bytes() { java.lang.Object ref = field1760_; @@ -55592,6 +57118,7 @@ public java.lang.String getField1760() { * string field_1761 = 1761; * @return The field1761. */ + @java.lang.Override public java.lang.String getField1761() { java.lang.Object ref = field1761_; if (ref instanceof java.lang.String) { @@ -55608,6 +57135,7 @@ public java.lang.String getField1761() { * string field_1761 = 1761; * @return The bytes for field1761. */ + @java.lang.Override public com.google.protobuf.ByteString getField1761Bytes() { java.lang.Object ref = field1761_; @@ -55628,6 +57156,7 @@ public java.lang.String getField1761() { * string field_1762 = 1762; * @return The field1762. */ + @java.lang.Override public java.lang.String getField1762() { java.lang.Object ref = field1762_; if (ref instanceof java.lang.String) { @@ -55644,6 +57173,7 @@ public java.lang.String getField1762() { * string field_1762 = 1762; * @return The bytes for field1762. */ + @java.lang.Override public com.google.protobuf.ByteString getField1762Bytes() { java.lang.Object ref = field1762_; @@ -55664,6 +57194,7 @@ public java.lang.String getField1762() { * string field_1763 = 1763; * @return The field1763. */ + @java.lang.Override public java.lang.String getField1763() { java.lang.Object ref = field1763_; if (ref instanceof java.lang.String) { @@ -55680,6 +57211,7 @@ public java.lang.String getField1763() { * string field_1763 = 1763; * @return The bytes for field1763. */ + @java.lang.Override public com.google.protobuf.ByteString getField1763Bytes() { java.lang.Object ref = field1763_; @@ -55700,6 +57232,7 @@ public java.lang.String getField1763() { * string field_1764 = 1764; * @return The field1764. */ + @java.lang.Override public java.lang.String getField1764() { java.lang.Object ref = field1764_; if (ref instanceof java.lang.String) { @@ -55716,6 +57249,7 @@ public java.lang.String getField1764() { * string field_1764 = 1764; * @return The bytes for field1764. */ + @java.lang.Override public com.google.protobuf.ByteString getField1764Bytes() { java.lang.Object ref = field1764_; @@ -55736,6 +57270,7 @@ public java.lang.String getField1764() { * string field_1765 = 1765; * @return The field1765. */ + @java.lang.Override public java.lang.String getField1765() { java.lang.Object ref = field1765_; if (ref instanceof java.lang.String) { @@ -55752,6 +57287,7 @@ public java.lang.String getField1765() { * string field_1765 = 1765; * @return The bytes for field1765. */ + @java.lang.Override public com.google.protobuf.ByteString getField1765Bytes() { java.lang.Object ref = field1765_; @@ -55772,6 +57308,7 @@ public java.lang.String getField1765() { * string field_1766 = 1766; * @return The field1766. */ + @java.lang.Override public java.lang.String getField1766() { java.lang.Object ref = field1766_; if (ref instanceof java.lang.String) { @@ -55788,6 +57325,7 @@ public java.lang.String getField1766() { * string field_1766 = 1766; * @return The bytes for field1766. */ + @java.lang.Override public com.google.protobuf.ByteString getField1766Bytes() { java.lang.Object ref = field1766_; @@ -55808,6 +57346,7 @@ public java.lang.String getField1766() { * string field_1767 = 1767; * @return The field1767. */ + @java.lang.Override public java.lang.String getField1767() { java.lang.Object ref = field1767_; if (ref instanceof java.lang.String) { @@ -55824,6 +57363,7 @@ public java.lang.String getField1767() { * string field_1767 = 1767; * @return The bytes for field1767. */ + @java.lang.Override public com.google.protobuf.ByteString getField1767Bytes() { java.lang.Object ref = field1767_; @@ -55844,6 +57384,7 @@ public java.lang.String getField1767() { * string field_1768 = 1768; * @return The field1768. */ + @java.lang.Override public java.lang.String getField1768() { java.lang.Object ref = field1768_; if (ref instanceof java.lang.String) { @@ -55860,6 +57401,7 @@ public java.lang.String getField1768() { * string field_1768 = 1768; * @return The bytes for field1768. */ + @java.lang.Override public com.google.protobuf.ByteString getField1768Bytes() { java.lang.Object ref = field1768_; @@ -55880,6 +57422,7 @@ public java.lang.String getField1768() { * string field_1769 = 1769; * @return The field1769. */ + @java.lang.Override public java.lang.String getField1769() { java.lang.Object ref = field1769_; if (ref instanceof java.lang.String) { @@ -55896,6 +57439,7 @@ public java.lang.String getField1769() { * string field_1769 = 1769; * @return The bytes for field1769. */ + @java.lang.Override public com.google.protobuf.ByteString getField1769Bytes() { java.lang.Object ref = field1769_; @@ -55916,6 +57460,7 @@ public java.lang.String getField1769() { * string field_1770 = 1770; * @return The field1770. */ + @java.lang.Override public java.lang.String getField1770() { java.lang.Object ref = field1770_; if (ref instanceof java.lang.String) { @@ -55932,6 +57477,7 @@ public java.lang.String getField1770() { * string field_1770 = 1770; * @return The bytes for field1770. */ + @java.lang.Override public com.google.protobuf.ByteString getField1770Bytes() { java.lang.Object ref = field1770_; @@ -55952,6 +57498,7 @@ public java.lang.String getField1770() { * string field_1771 = 1771; * @return The field1771. */ + @java.lang.Override public java.lang.String getField1771() { java.lang.Object ref = field1771_; if (ref instanceof java.lang.String) { @@ -55968,6 +57515,7 @@ public java.lang.String getField1771() { * string field_1771 = 1771; * @return The bytes for field1771. */ + @java.lang.Override public com.google.protobuf.ByteString getField1771Bytes() { java.lang.Object ref = field1771_; @@ -55988,6 +57536,7 @@ public java.lang.String getField1771() { * string field_1772 = 1772; * @return The field1772. */ + @java.lang.Override public java.lang.String getField1772() { java.lang.Object ref = field1772_; if (ref instanceof java.lang.String) { @@ -56004,6 +57553,7 @@ public java.lang.String getField1772() { * string field_1772 = 1772; * @return The bytes for field1772. */ + @java.lang.Override public com.google.protobuf.ByteString getField1772Bytes() { java.lang.Object ref = field1772_; @@ -56024,6 +57574,7 @@ public java.lang.String getField1772() { * string field_1773 = 1773; * @return The field1773. */ + @java.lang.Override public java.lang.String getField1773() { java.lang.Object ref = field1773_; if (ref instanceof java.lang.String) { @@ -56040,6 +57591,7 @@ public java.lang.String getField1773() { * string field_1773 = 1773; * @return The bytes for field1773. */ + @java.lang.Override public com.google.protobuf.ByteString getField1773Bytes() { java.lang.Object ref = field1773_; @@ -56060,6 +57612,7 @@ public java.lang.String getField1773() { * string field_1774 = 1774; * @return The field1774. */ + @java.lang.Override public java.lang.String getField1774() { java.lang.Object ref = field1774_; if (ref instanceof java.lang.String) { @@ -56076,6 +57629,7 @@ public java.lang.String getField1774() { * string field_1774 = 1774; * @return The bytes for field1774. */ + @java.lang.Override public com.google.protobuf.ByteString getField1774Bytes() { java.lang.Object ref = field1774_; @@ -56096,6 +57650,7 @@ public java.lang.String getField1774() { * string field_1775 = 1775; * @return The field1775. */ + @java.lang.Override public java.lang.String getField1775() { java.lang.Object ref = field1775_; if (ref instanceof java.lang.String) { @@ -56112,6 +57667,7 @@ public java.lang.String getField1775() { * string field_1775 = 1775; * @return The bytes for field1775. */ + @java.lang.Override public com.google.protobuf.ByteString getField1775Bytes() { java.lang.Object ref = field1775_; @@ -56132,6 +57688,7 @@ public java.lang.String getField1775() { * string field_1776 = 1776; * @return The field1776. */ + @java.lang.Override public java.lang.String getField1776() { java.lang.Object ref = field1776_; if (ref instanceof java.lang.String) { @@ -56148,6 +57705,7 @@ public java.lang.String getField1776() { * string field_1776 = 1776; * @return The bytes for field1776. */ + @java.lang.Override public com.google.protobuf.ByteString getField1776Bytes() { java.lang.Object ref = field1776_; @@ -56168,6 +57726,7 @@ public java.lang.String getField1776() { * string field_1777 = 1777; * @return The field1777. */ + @java.lang.Override public java.lang.String getField1777() { java.lang.Object ref = field1777_; if (ref instanceof java.lang.String) { @@ -56184,6 +57743,7 @@ public java.lang.String getField1777() { * string field_1777 = 1777; * @return The bytes for field1777. */ + @java.lang.Override public com.google.protobuf.ByteString getField1777Bytes() { java.lang.Object ref = field1777_; @@ -56204,6 +57764,7 @@ public java.lang.String getField1777() { * string field_1778 = 1778; * @return The field1778. */ + @java.lang.Override public java.lang.String getField1778() { java.lang.Object ref = field1778_; if (ref instanceof java.lang.String) { @@ -56220,6 +57781,7 @@ public java.lang.String getField1778() { * string field_1778 = 1778; * @return The bytes for field1778. */ + @java.lang.Override public com.google.protobuf.ByteString getField1778Bytes() { java.lang.Object ref = field1778_; @@ -56240,6 +57802,7 @@ public java.lang.String getField1778() { * string field_1779 = 1779; * @return The field1779. */ + @java.lang.Override public java.lang.String getField1779() { java.lang.Object ref = field1779_; if (ref instanceof java.lang.String) { @@ -56256,6 +57819,7 @@ public java.lang.String getField1779() { * string field_1779 = 1779; * @return The bytes for field1779. */ + @java.lang.Override public com.google.protobuf.ByteString getField1779Bytes() { java.lang.Object ref = field1779_; @@ -56276,6 +57840,7 @@ public java.lang.String getField1779() { * string field_1780 = 1780; * @return The field1780. */ + @java.lang.Override public java.lang.String getField1780() { java.lang.Object ref = field1780_; if (ref instanceof java.lang.String) { @@ -56292,6 +57857,7 @@ public java.lang.String getField1780() { * string field_1780 = 1780; * @return The bytes for field1780. */ + @java.lang.Override public com.google.protobuf.ByteString getField1780Bytes() { java.lang.Object ref = field1780_; @@ -56312,6 +57878,7 @@ public java.lang.String getField1780() { * string field_1781 = 1781; * @return The field1781. */ + @java.lang.Override public java.lang.String getField1781() { java.lang.Object ref = field1781_; if (ref instanceof java.lang.String) { @@ -56328,6 +57895,7 @@ public java.lang.String getField1781() { * string field_1781 = 1781; * @return The bytes for field1781. */ + @java.lang.Override public com.google.protobuf.ByteString getField1781Bytes() { java.lang.Object ref = field1781_; @@ -56348,6 +57916,7 @@ public java.lang.String getField1781() { * string field_1782 = 1782; * @return The field1782. */ + @java.lang.Override public java.lang.String getField1782() { java.lang.Object ref = field1782_; if (ref instanceof java.lang.String) { @@ -56364,6 +57933,7 @@ public java.lang.String getField1782() { * string field_1782 = 1782; * @return The bytes for field1782. */ + @java.lang.Override public com.google.protobuf.ByteString getField1782Bytes() { java.lang.Object ref = field1782_; @@ -56384,6 +57954,7 @@ public java.lang.String getField1782() { * string field_1783 = 1783; * @return The field1783. */ + @java.lang.Override public java.lang.String getField1783() { java.lang.Object ref = field1783_; if (ref instanceof java.lang.String) { @@ -56400,6 +57971,7 @@ public java.lang.String getField1783() { * string field_1783 = 1783; * @return The bytes for field1783. */ + @java.lang.Override public com.google.protobuf.ByteString getField1783Bytes() { java.lang.Object ref = field1783_; @@ -56420,6 +57992,7 @@ public java.lang.String getField1783() { * string field_1784 = 1784; * @return The field1784. */ + @java.lang.Override public java.lang.String getField1784() { java.lang.Object ref = field1784_; if (ref instanceof java.lang.String) { @@ -56436,6 +58009,7 @@ public java.lang.String getField1784() { * string field_1784 = 1784; * @return The bytes for field1784. */ + @java.lang.Override public com.google.protobuf.ByteString getField1784Bytes() { java.lang.Object ref = field1784_; @@ -56456,6 +58030,7 @@ public java.lang.String getField1784() { * string field_1785 = 1785; * @return The field1785. */ + @java.lang.Override public java.lang.String getField1785() { java.lang.Object ref = field1785_; if (ref instanceof java.lang.String) { @@ -56472,6 +58047,7 @@ public java.lang.String getField1785() { * string field_1785 = 1785; * @return The bytes for field1785. */ + @java.lang.Override public com.google.protobuf.ByteString getField1785Bytes() { java.lang.Object ref = field1785_; @@ -56492,6 +58068,7 @@ public java.lang.String getField1785() { * string field_1786 = 1786; * @return The field1786. */ + @java.lang.Override public java.lang.String getField1786() { java.lang.Object ref = field1786_; if (ref instanceof java.lang.String) { @@ -56508,6 +58085,7 @@ public java.lang.String getField1786() { * string field_1786 = 1786; * @return The bytes for field1786. */ + @java.lang.Override public com.google.protobuf.ByteString getField1786Bytes() { java.lang.Object ref = field1786_; @@ -56528,6 +58106,7 @@ public java.lang.String getField1786() { * string field_1787 = 1787; * @return The field1787. */ + @java.lang.Override public java.lang.String getField1787() { java.lang.Object ref = field1787_; if (ref instanceof java.lang.String) { @@ -56544,6 +58123,7 @@ public java.lang.String getField1787() { * string field_1787 = 1787; * @return The bytes for field1787. */ + @java.lang.Override public com.google.protobuf.ByteString getField1787Bytes() { java.lang.Object ref = field1787_; @@ -56564,6 +58144,7 @@ public java.lang.String getField1787() { * string field_1788 = 1788; * @return The field1788. */ + @java.lang.Override public java.lang.String getField1788() { java.lang.Object ref = field1788_; if (ref instanceof java.lang.String) { @@ -56580,6 +58161,7 @@ public java.lang.String getField1788() { * string field_1788 = 1788; * @return The bytes for field1788. */ + @java.lang.Override public com.google.protobuf.ByteString getField1788Bytes() { java.lang.Object ref = field1788_; @@ -56600,6 +58182,7 @@ public java.lang.String getField1788() { * string field_1789 = 1789; * @return The field1789. */ + @java.lang.Override public java.lang.String getField1789() { java.lang.Object ref = field1789_; if (ref instanceof java.lang.String) { @@ -56616,6 +58199,7 @@ public java.lang.String getField1789() { * string field_1789 = 1789; * @return The bytes for field1789. */ + @java.lang.Override public com.google.protobuf.ByteString getField1789Bytes() { java.lang.Object ref = field1789_; @@ -56636,6 +58220,7 @@ public java.lang.String getField1789() { * string field_1790 = 1790; * @return The field1790. */ + @java.lang.Override public java.lang.String getField1790() { java.lang.Object ref = field1790_; if (ref instanceof java.lang.String) { @@ -56652,6 +58237,7 @@ public java.lang.String getField1790() { * string field_1790 = 1790; * @return The bytes for field1790. */ + @java.lang.Override public com.google.protobuf.ByteString getField1790Bytes() { java.lang.Object ref = field1790_; @@ -56672,6 +58258,7 @@ public java.lang.String getField1790() { * string field_1791 = 1791; * @return The field1791. */ + @java.lang.Override public java.lang.String getField1791() { java.lang.Object ref = field1791_; if (ref instanceof java.lang.String) { @@ -56688,6 +58275,7 @@ public java.lang.String getField1791() { * string field_1791 = 1791; * @return The bytes for field1791. */ + @java.lang.Override public com.google.protobuf.ByteString getField1791Bytes() { java.lang.Object ref = field1791_; @@ -56708,6 +58296,7 @@ public java.lang.String getField1791() { * string field_1792 = 1792; * @return The field1792. */ + @java.lang.Override public java.lang.String getField1792() { java.lang.Object ref = field1792_; if (ref instanceof java.lang.String) { @@ -56724,6 +58313,7 @@ public java.lang.String getField1792() { * string field_1792 = 1792; * @return The bytes for field1792. */ + @java.lang.Override public com.google.protobuf.ByteString getField1792Bytes() { java.lang.Object ref = field1792_; @@ -56744,6 +58334,7 @@ public java.lang.String getField1792() { * string field_1793 = 1793; * @return The field1793. */ + @java.lang.Override public java.lang.String getField1793() { java.lang.Object ref = field1793_; if (ref instanceof java.lang.String) { @@ -56760,6 +58351,7 @@ public java.lang.String getField1793() { * string field_1793 = 1793; * @return The bytes for field1793. */ + @java.lang.Override public com.google.protobuf.ByteString getField1793Bytes() { java.lang.Object ref = field1793_; @@ -56780,6 +58372,7 @@ public java.lang.String getField1793() { * string field_1794 = 1794; * @return The field1794. */ + @java.lang.Override public java.lang.String getField1794() { java.lang.Object ref = field1794_; if (ref instanceof java.lang.String) { @@ -56796,6 +58389,7 @@ public java.lang.String getField1794() { * string field_1794 = 1794; * @return The bytes for field1794. */ + @java.lang.Override public com.google.protobuf.ByteString getField1794Bytes() { java.lang.Object ref = field1794_; @@ -56816,6 +58410,7 @@ public java.lang.String getField1794() { * string field_1795 = 1795; * @return The field1795. */ + @java.lang.Override public java.lang.String getField1795() { java.lang.Object ref = field1795_; if (ref instanceof java.lang.String) { @@ -56832,6 +58427,7 @@ public java.lang.String getField1795() { * string field_1795 = 1795; * @return The bytes for field1795. */ + @java.lang.Override public com.google.protobuf.ByteString getField1795Bytes() { java.lang.Object ref = field1795_; @@ -56852,6 +58448,7 @@ public java.lang.String getField1795() { * string field_1796 = 1796; * @return The field1796. */ + @java.lang.Override public java.lang.String getField1796() { java.lang.Object ref = field1796_; if (ref instanceof java.lang.String) { @@ -56868,6 +58465,7 @@ public java.lang.String getField1796() { * string field_1796 = 1796; * @return The bytes for field1796. */ + @java.lang.Override public com.google.protobuf.ByteString getField1796Bytes() { java.lang.Object ref = field1796_; @@ -56888,6 +58486,7 @@ public java.lang.String getField1796() { * string field_1797 = 1797; * @return The field1797. */ + @java.lang.Override public java.lang.String getField1797() { java.lang.Object ref = field1797_; if (ref instanceof java.lang.String) { @@ -56904,6 +58503,7 @@ public java.lang.String getField1797() { * string field_1797 = 1797; * @return The bytes for field1797. */ + @java.lang.Override public com.google.protobuf.ByteString getField1797Bytes() { java.lang.Object ref = field1797_; @@ -56924,6 +58524,7 @@ public java.lang.String getField1797() { * string field_1798 = 1798; * @return The field1798. */ + @java.lang.Override public java.lang.String getField1798() { java.lang.Object ref = field1798_; if (ref instanceof java.lang.String) { @@ -56940,6 +58541,7 @@ public java.lang.String getField1798() { * string field_1798 = 1798; * @return The bytes for field1798. */ + @java.lang.Override public com.google.protobuf.ByteString getField1798Bytes() { java.lang.Object ref = field1798_; @@ -56960,6 +58562,7 @@ public java.lang.String getField1798() { * string field_1799 = 1799; * @return The field1799. */ + @java.lang.Override public java.lang.String getField1799() { java.lang.Object ref = field1799_; if (ref instanceof java.lang.String) { @@ -56976,6 +58579,7 @@ public java.lang.String getField1799() { * string field_1799 = 1799; * @return The bytes for field1799. */ + @java.lang.Override public com.google.protobuf.ByteString getField1799Bytes() { java.lang.Object ref = field1799_; @@ -56996,6 +58600,7 @@ public java.lang.String getField1799() { * string field_1800 = 1800; * @return The field1800. */ + @java.lang.Override public java.lang.String getField1800() { java.lang.Object ref = field1800_; if (ref instanceof java.lang.String) { @@ -57012,6 +58617,7 @@ public java.lang.String getField1800() { * string field_1800 = 1800; * @return The bytes for field1800. */ + @java.lang.Override public com.google.protobuf.ByteString getField1800Bytes() { java.lang.Object ref = field1800_; @@ -57032,6 +58638,7 @@ public java.lang.String getField1800() { * string field_1801 = 1801; * @return The field1801. */ + @java.lang.Override public java.lang.String getField1801() { java.lang.Object ref = field1801_; if (ref instanceof java.lang.String) { @@ -57048,6 +58655,7 @@ public java.lang.String getField1801() { * string field_1801 = 1801; * @return The bytes for field1801. */ + @java.lang.Override public com.google.protobuf.ByteString getField1801Bytes() { java.lang.Object ref = field1801_; @@ -57068,6 +58676,7 @@ public java.lang.String getField1801() { * string field_1802 = 1802; * @return The field1802. */ + @java.lang.Override public java.lang.String getField1802() { java.lang.Object ref = field1802_; if (ref instanceof java.lang.String) { @@ -57084,6 +58693,7 @@ public java.lang.String getField1802() { * string field_1802 = 1802; * @return The bytes for field1802. */ + @java.lang.Override public com.google.protobuf.ByteString getField1802Bytes() { java.lang.Object ref = field1802_; @@ -57104,6 +58714,7 @@ public java.lang.String getField1802() { * string field_1803 = 1803; * @return The field1803. */ + @java.lang.Override public java.lang.String getField1803() { java.lang.Object ref = field1803_; if (ref instanceof java.lang.String) { @@ -57120,6 +58731,7 @@ public java.lang.String getField1803() { * string field_1803 = 1803; * @return The bytes for field1803. */ + @java.lang.Override public com.google.protobuf.ByteString getField1803Bytes() { java.lang.Object ref = field1803_; @@ -57140,6 +58752,7 @@ public java.lang.String getField1803() { * string field_1804 = 1804; * @return The field1804. */ + @java.lang.Override public java.lang.String getField1804() { java.lang.Object ref = field1804_; if (ref instanceof java.lang.String) { @@ -57156,6 +58769,7 @@ public java.lang.String getField1804() { * string field_1804 = 1804; * @return The bytes for field1804. */ + @java.lang.Override public com.google.protobuf.ByteString getField1804Bytes() { java.lang.Object ref = field1804_; @@ -57176,6 +58790,7 @@ public java.lang.String getField1804() { * string field_1805 = 1805; * @return The field1805. */ + @java.lang.Override public java.lang.String getField1805() { java.lang.Object ref = field1805_; if (ref instanceof java.lang.String) { @@ -57192,6 +58807,7 @@ public java.lang.String getField1805() { * string field_1805 = 1805; * @return The bytes for field1805. */ + @java.lang.Override public com.google.protobuf.ByteString getField1805Bytes() { java.lang.Object ref = field1805_; @@ -57212,6 +58828,7 @@ public java.lang.String getField1805() { * string field_1806 = 1806; * @return The field1806. */ + @java.lang.Override public java.lang.String getField1806() { java.lang.Object ref = field1806_; if (ref instanceof java.lang.String) { @@ -57228,6 +58845,7 @@ public java.lang.String getField1806() { * string field_1806 = 1806; * @return The bytes for field1806. */ + @java.lang.Override public com.google.protobuf.ByteString getField1806Bytes() { java.lang.Object ref = field1806_; @@ -57248,6 +58866,7 @@ public java.lang.String getField1806() { * string field_1807 = 1807; * @return The field1807. */ + @java.lang.Override public java.lang.String getField1807() { java.lang.Object ref = field1807_; if (ref instanceof java.lang.String) { @@ -57264,6 +58883,7 @@ public java.lang.String getField1807() { * string field_1807 = 1807; * @return The bytes for field1807. */ + @java.lang.Override public com.google.protobuf.ByteString getField1807Bytes() { java.lang.Object ref = field1807_; @@ -57284,6 +58904,7 @@ public java.lang.String getField1807() { * string field_1808 = 1808; * @return The field1808. */ + @java.lang.Override public java.lang.String getField1808() { java.lang.Object ref = field1808_; if (ref instanceof java.lang.String) { @@ -57300,6 +58921,7 @@ public java.lang.String getField1808() { * string field_1808 = 1808; * @return The bytes for field1808. */ + @java.lang.Override public com.google.protobuf.ByteString getField1808Bytes() { java.lang.Object ref = field1808_; @@ -57320,6 +58942,7 @@ public java.lang.String getField1808() { * string field_1809 = 1809; * @return The field1809. */ + @java.lang.Override public java.lang.String getField1809() { java.lang.Object ref = field1809_; if (ref instanceof java.lang.String) { @@ -57336,6 +58959,7 @@ public java.lang.String getField1809() { * string field_1809 = 1809; * @return The bytes for field1809. */ + @java.lang.Override public com.google.protobuf.ByteString getField1809Bytes() { java.lang.Object ref = field1809_; @@ -57356,6 +58980,7 @@ public java.lang.String getField1809() { * string field_1810 = 1810; * @return The field1810. */ + @java.lang.Override public java.lang.String getField1810() { java.lang.Object ref = field1810_; if (ref instanceof java.lang.String) { @@ -57372,6 +58997,7 @@ public java.lang.String getField1810() { * string field_1810 = 1810; * @return The bytes for field1810. */ + @java.lang.Override public com.google.protobuf.ByteString getField1810Bytes() { java.lang.Object ref = field1810_; @@ -57392,6 +59018,7 @@ public java.lang.String getField1810() { * string field_1811 = 1811; * @return The field1811. */ + @java.lang.Override public java.lang.String getField1811() { java.lang.Object ref = field1811_; if (ref instanceof java.lang.String) { @@ -57408,6 +59035,7 @@ public java.lang.String getField1811() { * string field_1811 = 1811; * @return The bytes for field1811. */ + @java.lang.Override public com.google.protobuf.ByteString getField1811Bytes() { java.lang.Object ref = field1811_; @@ -57428,6 +59056,7 @@ public java.lang.String getField1811() { * string field_1812 = 1812; * @return The field1812. */ + @java.lang.Override public java.lang.String getField1812() { java.lang.Object ref = field1812_; if (ref instanceof java.lang.String) { @@ -57444,6 +59073,7 @@ public java.lang.String getField1812() { * string field_1812 = 1812; * @return The bytes for field1812. */ + @java.lang.Override public com.google.protobuf.ByteString getField1812Bytes() { java.lang.Object ref = field1812_; @@ -57464,6 +59094,7 @@ public java.lang.String getField1812() { * string field_1813 = 1813; * @return The field1813. */ + @java.lang.Override public java.lang.String getField1813() { java.lang.Object ref = field1813_; if (ref instanceof java.lang.String) { @@ -57480,6 +59111,7 @@ public java.lang.String getField1813() { * string field_1813 = 1813; * @return The bytes for field1813. */ + @java.lang.Override public com.google.protobuf.ByteString getField1813Bytes() { java.lang.Object ref = field1813_; @@ -57500,6 +59132,7 @@ public java.lang.String getField1813() { * string field_1814 = 1814; * @return The field1814. */ + @java.lang.Override public java.lang.String getField1814() { java.lang.Object ref = field1814_; if (ref instanceof java.lang.String) { @@ -57516,6 +59149,7 @@ public java.lang.String getField1814() { * string field_1814 = 1814; * @return The bytes for field1814. */ + @java.lang.Override public com.google.protobuf.ByteString getField1814Bytes() { java.lang.Object ref = field1814_; @@ -57536,6 +59170,7 @@ public java.lang.String getField1814() { * string field_1815 = 1815; * @return The field1815. */ + @java.lang.Override public java.lang.String getField1815() { java.lang.Object ref = field1815_; if (ref instanceof java.lang.String) { @@ -57552,6 +59187,7 @@ public java.lang.String getField1815() { * string field_1815 = 1815; * @return The bytes for field1815. */ + @java.lang.Override public com.google.protobuf.ByteString getField1815Bytes() { java.lang.Object ref = field1815_; @@ -57572,6 +59208,7 @@ public java.lang.String getField1815() { * string field_1816 = 1816; * @return The field1816. */ + @java.lang.Override public java.lang.String getField1816() { java.lang.Object ref = field1816_; if (ref instanceof java.lang.String) { @@ -57588,6 +59225,7 @@ public java.lang.String getField1816() { * string field_1816 = 1816; * @return The bytes for field1816. */ + @java.lang.Override public com.google.protobuf.ByteString getField1816Bytes() { java.lang.Object ref = field1816_; @@ -57608,6 +59246,7 @@ public java.lang.String getField1816() { * string field_1817 = 1817; * @return The field1817. */ + @java.lang.Override public java.lang.String getField1817() { java.lang.Object ref = field1817_; if (ref instanceof java.lang.String) { @@ -57624,6 +59263,7 @@ public java.lang.String getField1817() { * string field_1817 = 1817; * @return The bytes for field1817. */ + @java.lang.Override public com.google.protobuf.ByteString getField1817Bytes() { java.lang.Object ref = field1817_; @@ -57644,6 +59284,7 @@ public java.lang.String getField1817() { * string field_1818 = 1818; * @return The field1818. */ + @java.lang.Override public java.lang.String getField1818() { java.lang.Object ref = field1818_; if (ref instanceof java.lang.String) { @@ -57660,6 +59301,7 @@ public java.lang.String getField1818() { * string field_1818 = 1818; * @return The bytes for field1818. */ + @java.lang.Override public com.google.protobuf.ByteString getField1818Bytes() { java.lang.Object ref = field1818_; @@ -57680,6 +59322,7 @@ public java.lang.String getField1818() { * string field_1819 = 1819; * @return The field1819. */ + @java.lang.Override public java.lang.String getField1819() { java.lang.Object ref = field1819_; if (ref instanceof java.lang.String) { @@ -57696,6 +59339,7 @@ public java.lang.String getField1819() { * string field_1819 = 1819; * @return The bytes for field1819. */ + @java.lang.Override public com.google.protobuf.ByteString getField1819Bytes() { java.lang.Object ref = field1819_; @@ -57716,6 +59360,7 @@ public java.lang.String getField1819() { * string field_1820 = 1820; * @return The field1820. */ + @java.lang.Override public java.lang.String getField1820() { java.lang.Object ref = field1820_; if (ref instanceof java.lang.String) { @@ -57732,6 +59377,7 @@ public java.lang.String getField1820() { * string field_1820 = 1820; * @return The bytes for field1820. */ + @java.lang.Override public com.google.protobuf.ByteString getField1820Bytes() { java.lang.Object ref = field1820_; @@ -57752,6 +59398,7 @@ public java.lang.String getField1820() { * string field_1821 = 1821; * @return The field1821. */ + @java.lang.Override public java.lang.String getField1821() { java.lang.Object ref = field1821_; if (ref instanceof java.lang.String) { @@ -57768,6 +59415,7 @@ public java.lang.String getField1821() { * string field_1821 = 1821; * @return The bytes for field1821. */ + @java.lang.Override public com.google.protobuf.ByteString getField1821Bytes() { java.lang.Object ref = field1821_; @@ -57788,6 +59436,7 @@ public java.lang.String getField1821() { * string field_1822 = 1822; * @return The field1822. */ + @java.lang.Override public java.lang.String getField1822() { java.lang.Object ref = field1822_; if (ref instanceof java.lang.String) { @@ -57804,6 +59453,7 @@ public java.lang.String getField1822() { * string field_1822 = 1822; * @return The bytes for field1822. */ + @java.lang.Override public com.google.protobuf.ByteString getField1822Bytes() { java.lang.Object ref = field1822_; @@ -57824,6 +59474,7 @@ public java.lang.String getField1822() { * string field_1823 = 1823; * @return The field1823. */ + @java.lang.Override public java.lang.String getField1823() { java.lang.Object ref = field1823_; if (ref instanceof java.lang.String) { @@ -57840,6 +59491,7 @@ public java.lang.String getField1823() { * string field_1823 = 1823; * @return The bytes for field1823. */ + @java.lang.Override public com.google.protobuf.ByteString getField1823Bytes() { java.lang.Object ref = field1823_; @@ -57860,6 +59512,7 @@ public java.lang.String getField1823() { * string field_1824 = 1824; * @return The field1824. */ + @java.lang.Override public java.lang.String getField1824() { java.lang.Object ref = field1824_; if (ref instanceof java.lang.String) { @@ -57876,6 +59529,7 @@ public java.lang.String getField1824() { * string field_1824 = 1824; * @return The bytes for field1824. */ + @java.lang.Override public com.google.protobuf.ByteString getField1824Bytes() { java.lang.Object ref = field1824_; @@ -57896,6 +59550,7 @@ public java.lang.String getField1824() { * string field_1825 = 1825; * @return The field1825. */ + @java.lang.Override public java.lang.String getField1825() { java.lang.Object ref = field1825_; if (ref instanceof java.lang.String) { @@ -57912,6 +59567,7 @@ public java.lang.String getField1825() { * string field_1825 = 1825; * @return The bytes for field1825. */ + @java.lang.Override public com.google.protobuf.ByteString getField1825Bytes() { java.lang.Object ref = field1825_; @@ -57932,6 +59588,7 @@ public java.lang.String getField1825() { * string field_1826 = 1826; * @return The field1826. */ + @java.lang.Override public java.lang.String getField1826() { java.lang.Object ref = field1826_; if (ref instanceof java.lang.String) { @@ -57948,6 +59605,7 @@ public java.lang.String getField1826() { * string field_1826 = 1826; * @return The bytes for field1826. */ + @java.lang.Override public com.google.protobuf.ByteString getField1826Bytes() { java.lang.Object ref = field1826_; @@ -57968,6 +59626,7 @@ public java.lang.String getField1826() { * string field_1827 = 1827; * @return The field1827. */ + @java.lang.Override public java.lang.String getField1827() { java.lang.Object ref = field1827_; if (ref instanceof java.lang.String) { @@ -57984,6 +59643,7 @@ public java.lang.String getField1827() { * string field_1827 = 1827; * @return The bytes for field1827. */ + @java.lang.Override public com.google.protobuf.ByteString getField1827Bytes() { java.lang.Object ref = field1827_; @@ -58004,6 +59664,7 @@ public java.lang.String getField1827() { * string field_1828 = 1828; * @return The field1828. */ + @java.lang.Override public java.lang.String getField1828() { java.lang.Object ref = field1828_; if (ref instanceof java.lang.String) { @@ -58020,6 +59681,7 @@ public java.lang.String getField1828() { * string field_1828 = 1828; * @return The bytes for field1828. */ + @java.lang.Override public com.google.protobuf.ByteString getField1828Bytes() { java.lang.Object ref = field1828_; @@ -58040,6 +59702,7 @@ public java.lang.String getField1828() { * string field_1829 = 1829; * @return The field1829. */ + @java.lang.Override public java.lang.String getField1829() { java.lang.Object ref = field1829_; if (ref instanceof java.lang.String) { @@ -58056,6 +59719,7 @@ public java.lang.String getField1829() { * string field_1829 = 1829; * @return The bytes for field1829. */ + @java.lang.Override public com.google.protobuf.ByteString getField1829Bytes() { java.lang.Object ref = field1829_; @@ -58076,6 +59740,7 @@ public java.lang.String getField1829() { * string field_1830 = 1830; * @return The field1830. */ + @java.lang.Override public java.lang.String getField1830() { java.lang.Object ref = field1830_; if (ref instanceof java.lang.String) { @@ -58092,6 +59757,7 @@ public java.lang.String getField1830() { * string field_1830 = 1830; * @return The bytes for field1830. */ + @java.lang.Override public com.google.protobuf.ByteString getField1830Bytes() { java.lang.Object ref = field1830_; @@ -58112,6 +59778,7 @@ public java.lang.String getField1830() { * string field_1831 = 1831; * @return The field1831. */ + @java.lang.Override public java.lang.String getField1831() { java.lang.Object ref = field1831_; if (ref instanceof java.lang.String) { @@ -58128,6 +59795,7 @@ public java.lang.String getField1831() { * string field_1831 = 1831; * @return The bytes for field1831. */ + @java.lang.Override public com.google.protobuf.ByteString getField1831Bytes() { java.lang.Object ref = field1831_; @@ -58148,6 +59816,7 @@ public java.lang.String getField1831() { * string field_1832 = 1832; * @return The field1832. */ + @java.lang.Override public java.lang.String getField1832() { java.lang.Object ref = field1832_; if (ref instanceof java.lang.String) { @@ -58164,6 +59833,7 @@ public java.lang.String getField1832() { * string field_1832 = 1832; * @return The bytes for field1832. */ + @java.lang.Override public com.google.protobuf.ByteString getField1832Bytes() { java.lang.Object ref = field1832_; @@ -58184,6 +59854,7 @@ public java.lang.String getField1832() { * string field_1833 = 1833; * @return The field1833. */ + @java.lang.Override public java.lang.String getField1833() { java.lang.Object ref = field1833_; if (ref instanceof java.lang.String) { @@ -58200,6 +59871,7 @@ public java.lang.String getField1833() { * string field_1833 = 1833; * @return The bytes for field1833. */ + @java.lang.Override public com.google.protobuf.ByteString getField1833Bytes() { java.lang.Object ref = field1833_; @@ -58220,6 +59892,7 @@ public java.lang.String getField1833() { * string field_1834 = 1834; * @return The field1834. */ + @java.lang.Override public java.lang.String getField1834() { java.lang.Object ref = field1834_; if (ref instanceof java.lang.String) { @@ -58236,6 +59909,7 @@ public java.lang.String getField1834() { * string field_1834 = 1834; * @return The bytes for field1834. */ + @java.lang.Override public com.google.protobuf.ByteString getField1834Bytes() { java.lang.Object ref = field1834_; @@ -58256,6 +59930,7 @@ public java.lang.String getField1834() { * string field_1835 = 1835; * @return The field1835. */ + @java.lang.Override public java.lang.String getField1835() { java.lang.Object ref = field1835_; if (ref instanceof java.lang.String) { @@ -58272,6 +59947,7 @@ public java.lang.String getField1835() { * string field_1835 = 1835; * @return The bytes for field1835. */ + @java.lang.Override public com.google.protobuf.ByteString getField1835Bytes() { java.lang.Object ref = field1835_; @@ -58292,6 +59968,7 @@ public java.lang.String getField1835() { * string field_1836 = 1836; * @return The field1836. */ + @java.lang.Override public java.lang.String getField1836() { java.lang.Object ref = field1836_; if (ref instanceof java.lang.String) { @@ -58308,6 +59985,7 @@ public java.lang.String getField1836() { * string field_1836 = 1836; * @return The bytes for field1836. */ + @java.lang.Override public com.google.protobuf.ByteString getField1836Bytes() { java.lang.Object ref = field1836_; @@ -58328,6 +60006,7 @@ public java.lang.String getField1836() { * string field_1837 = 1837; * @return The field1837. */ + @java.lang.Override public java.lang.String getField1837() { java.lang.Object ref = field1837_; if (ref instanceof java.lang.String) { @@ -58344,6 +60023,7 @@ public java.lang.String getField1837() { * string field_1837 = 1837; * @return The bytes for field1837. */ + @java.lang.Override public com.google.protobuf.ByteString getField1837Bytes() { java.lang.Object ref = field1837_; @@ -58364,6 +60044,7 @@ public java.lang.String getField1837() { * string field_1838 = 1838; * @return The field1838. */ + @java.lang.Override public java.lang.String getField1838() { java.lang.Object ref = field1838_; if (ref instanceof java.lang.String) { @@ -58380,6 +60061,7 @@ public java.lang.String getField1838() { * string field_1838 = 1838; * @return The bytes for field1838. */ + @java.lang.Override public com.google.protobuf.ByteString getField1838Bytes() { java.lang.Object ref = field1838_; @@ -58400,6 +60082,7 @@ public java.lang.String getField1838() { * string field_1839 = 1839; * @return The field1839. */ + @java.lang.Override public java.lang.String getField1839() { java.lang.Object ref = field1839_; if (ref instanceof java.lang.String) { @@ -58416,6 +60099,7 @@ public java.lang.String getField1839() { * string field_1839 = 1839; * @return The bytes for field1839. */ + @java.lang.Override public com.google.protobuf.ByteString getField1839Bytes() { java.lang.Object ref = field1839_; @@ -58436,6 +60120,7 @@ public java.lang.String getField1839() { * string field_1840 = 1840; * @return The field1840. */ + @java.lang.Override public java.lang.String getField1840() { java.lang.Object ref = field1840_; if (ref instanceof java.lang.String) { @@ -58452,6 +60137,7 @@ public java.lang.String getField1840() { * string field_1840 = 1840; * @return The bytes for field1840. */ + @java.lang.Override public com.google.protobuf.ByteString getField1840Bytes() { java.lang.Object ref = field1840_; @@ -58472,6 +60158,7 @@ public java.lang.String getField1840() { * string field_1841 = 1841; * @return The field1841. */ + @java.lang.Override public java.lang.String getField1841() { java.lang.Object ref = field1841_; if (ref instanceof java.lang.String) { @@ -58488,6 +60175,7 @@ public java.lang.String getField1841() { * string field_1841 = 1841; * @return The bytes for field1841. */ + @java.lang.Override public com.google.protobuf.ByteString getField1841Bytes() { java.lang.Object ref = field1841_; @@ -58508,6 +60196,7 @@ public java.lang.String getField1841() { * string field_1842 = 1842; * @return The field1842. */ + @java.lang.Override public java.lang.String getField1842() { java.lang.Object ref = field1842_; if (ref instanceof java.lang.String) { @@ -58524,6 +60213,7 @@ public java.lang.String getField1842() { * string field_1842 = 1842; * @return The bytes for field1842. */ + @java.lang.Override public com.google.protobuf.ByteString getField1842Bytes() { java.lang.Object ref = field1842_; @@ -58544,6 +60234,7 @@ public java.lang.String getField1842() { * string field_1843 = 1843; * @return The field1843. */ + @java.lang.Override public java.lang.String getField1843() { java.lang.Object ref = field1843_; if (ref instanceof java.lang.String) { @@ -58560,6 +60251,7 @@ public java.lang.String getField1843() { * string field_1843 = 1843; * @return The bytes for field1843. */ + @java.lang.Override public com.google.protobuf.ByteString getField1843Bytes() { java.lang.Object ref = field1843_; @@ -58580,6 +60272,7 @@ public java.lang.String getField1843() { * string field_1844 = 1844; * @return The field1844. */ + @java.lang.Override public java.lang.String getField1844() { java.lang.Object ref = field1844_; if (ref instanceof java.lang.String) { @@ -58596,6 +60289,7 @@ public java.lang.String getField1844() { * string field_1844 = 1844; * @return The bytes for field1844. */ + @java.lang.Override public com.google.protobuf.ByteString getField1844Bytes() { java.lang.Object ref = field1844_; @@ -58616,6 +60310,7 @@ public java.lang.String getField1844() { * string field_1845 = 1845; * @return The field1845. */ + @java.lang.Override public java.lang.String getField1845() { java.lang.Object ref = field1845_; if (ref instanceof java.lang.String) { @@ -58632,6 +60327,7 @@ public java.lang.String getField1845() { * string field_1845 = 1845; * @return The bytes for field1845. */ + @java.lang.Override public com.google.protobuf.ByteString getField1845Bytes() { java.lang.Object ref = field1845_; @@ -58652,6 +60348,7 @@ public java.lang.String getField1845() { * string field_1846 = 1846; * @return The field1846. */ + @java.lang.Override public java.lang.String getField1846() { java.lang.Object ref = field1846_; if (ref instanceof java.lang.String) { @@ -58668,6 +60365,7 @@ public java.lang.String getField1846() { * string field_1846 = 1846; * @return The bytes for field1846. */ + @java.lang.Override public com.google.protobuf.ByteString getField1846Bytes() { java.lang.Object ref = field1846_; @@ -58688,6 +60386,7 @@ public java.lang.String getField1846() { * string field_1847 = 1847; * @return The field1847. */ + @java.lang.Override public java.lang.String getField1847() { java.lang.Object ref = field1847_; if (ref instanceof java.lang.String) { @@ -58704,6 +60403,7 @@ public java.lang.String getField1847() { * string field_1847 = 1847; * @return The bytes for field1847. */ + @java.lang.Override public com.google.protobuf.ByteString getField1847Bytes() { java.lang.Object ref = field1847_; @@ -58724,6 +60424,7 @@ public java.lang.String getField1847() { * string field_1848 = 1848; * @return The field1848. */ + @java.lang.Override public java.lang.String getField1848() { java.lang.Object ref = field1848_; if (ref instanceof java.lang.String) { @@ -58740,6 +60441,7 @@ public java.lang.String getField1848() { * string field_1848 = 1848; * @return The bytes for field1848. */ + @java.lang.Override public com.google.protobuf.ByteString getField1848Bytes() { java.lang.Object ref = field1848_; @@ -58760,6 +60462,7 @@ public java.lang.String getField1848() { * string field_1849 = 1849; * @return The field1849. */ + @java.lang.Override public java.lang.String getField1849() { java.lang.Object ref = field1849_; if (ref instanceof java.lang.String) { @@ -58776,6 +60479,7 @@ public java.lang.String getField1849() { * string field_1849 = 1849; * @return The bytes for field1849. */ + @java.lang.Override public com.google.protobuf.ByteString getField1849Bytes() { java.lang.Object ref = field1849_; @@ -58796,6 +60500,7 @@ public java.lang.String getField1849() { * string field_1850 = 1850; * @return The field1850. */ + @java.lang.Override public java.lang.String getField1850() { java.lang.Object ref = field1850_; if (ref instanceof java.lang.String) { @@ -58812,6 +60517,7 @@ public java.lang.String getField1850() { * string field_1850 = 1850; * @return The bytes for field1850. */ + @java.lang.Override public com.google.protobuf.ByteString getField1850Bytes() { java.lang.Object ref = field1850_; @@ -58832,6 +60538,7 @@ public java.lang.String getField1850() { * string field_1851 = 1851; * @return The field1851. */ + @java.lang.Override public java.lang.String getField1851() { java.lang.Object ref = field1851_; if (ref instanceof java.lang.String) { @@ -58848,6 +60555,7 @@ public java.lang.String getField1851() { * string field_1851 = 1851; * @return The bytes for field1851. */ + @java.lang.Override public com.google.protobuf.ByteString getField1851Bytes() { java.lang.Object ref = field1851_; @@ -58868,6 +60576,7 @@ public java.lang.String getField1851() { * string field_1852 = 1852; * @return The field1852. */ + @java.lang.Override public java.lang.String getField1852() { java.lang.Object ref = field1852_; if (ref instanceof java.lang.String) { @@ -58884,6 +60593,7 @@ public java.lang.String getField1852() { * string field_1852 = 1852; * @return The bytes for field1852. */ + @java.lang.Override public com.google.protobuf.ByteString getField1852Bytes() { java.lang.Object ref = field1852_; @@ -58904,6 +60614,7 @@ public java.lang.String getField1852() { * string field_1853 = 1853; * @return The field1853. */ + @java.lang.Override public java.lang.String getField1853() { java.lang.Object ref = field1853_; if (ref instanceof java.lang.String) { @@ -58920,6 +60631,7 @@ public java.lang.String getField1853() { * string field_1853 = 1853; * @return The bytes for field1853. */ + @java.lang.Override public com.google.protobuf.ByteString getField1853Bytes() { java.lang.Object ref = field1853_; @@ -58940,6 +60652,7 @@ public java.lang.String getField1853() { * string field_1854 = 1854; * @return The field1854. */ + @java.lang.Override public java.lang.String getField1854() { java.lang.Object ref = field1854_; if (ref instanceof java.lang.String) { @@ -58956,6 +60669,7 @@ public java.lang.String getField1854() { * string field_1854 = 1854; * @return The bytes for field1854. */ + @java.lang.Override public com.google.protobuf.ByteString getField1854Bytes() { java.lang.Object ref = field1854_; @@ -58976,6 +60690,7 @@ public java.lang.String getField1854() { * string field_1855 = 1855; * @return The field1855. */ + @java.lang.Override public java.lang.String getField1855() { java.lang.Object ref = field1855_; if (ref instanceof java.lang.String) { @@ -58992,6 +60707,7 @@ public java.lang.String getField1855() { * string field_1855 = 1855; * @return The bytes for field1855. */ + @java.lang.Override public com.google.protobuf.ByteString getField1855Bytes() { java.lang.Object ref = field1855_; @@ -59012,6 +60728,7 @@ public java.lang.String getField1855() { * string field_1856 = 1856; * @return The field1856. */ + @java.lang.Override public java.lang.String getField1856() { java.lang.Object ref = field1856_; if (ref instanceof java.lang.String) { @@ -59028,6 +60745,7 @@ public java.lang.String getField1856() { * string field_1856 = 1856; * @return The bytes for field1856. */ + @java.lang.Override public com.google.protobuf.ByteString getField1856Bytes() { java.lang.Object ref = field1856_; @@ -59048,6 +60766,7 @@ public java.lang.String getField1856() { * string field_1857 = 1857; * @return The field1857. */ + @java.lang.Override public java.lang.String getField1857() { java.lang.Object ref = field1857_; if (ref instanceof java.lang.String) { @@ -59064,6 +60783,7 @@ public java.lang.String getField1857() { * string field_1857 = 1857; * @return The bytes for field1857. */ + @java.lang.Override public com.google.protobuf.ByteString getField1857Bytes() { java.lang.Object ref = field1857_; @@ -59084,6 +60804,7 @@ public java.lang.String getField1857() { * string field_1858 = 1858; * @return The field1858. */ + @java.lang.Override public java.lang.String getField1858() { java.lang.Object ref = field1858_; if (ref instanceof java.lang.String) { @@ -59100,6 +60821,7 @@ public java.lang.String getField1858() { * string field_1858 = 1858; * @return The bytes for field1858. */ + @java.lang.Override public com.google.protobuf.ByteString getField1858Bytes() { java.lang.Object ref = field1858_; @@ -59120,6 +60842,7 @@ public java.lang.String getField1858() { * string field_1859 = 1859; * @return The field1859. */ + @java.lang.Override public java.lang.String getField1859() { java.lang.Object ref = field1859_; if (ref instanceof java.lang.String) { @@ -59136,6 +60859,7 @@ public java.lang.String getField1859() { * string field_1859 = 1859; * @return The bytes for field1859. */ + @java.lang.Override public com.google.protobuf.ByteString getField1859Bytes() { java.lang.Object ref = field1859_; @@ -59156,6 +60880,7 @@ public java.lang.String getField1859() { * string field_1860 = 1860; * @return The field1860. */ + @java.lang.Override public java.lang.String getField1860() { java.lang.Object ref = field1860_; if (ref instanceof java.lang.String) { @@ -59172,6 +60897,7 @@ public java.lang.String getField1860() { * string field_1860 = 1860; * @return The bytes for field1860. */ + @java.lang.Override public com.google.protobuf.ByteString getField1860Bytes() { java.lang.Object ref = field1860_; @@ -59192,6 +60918,7 @@ public java.lang.String getField1860() { * string field_1861 = 1861; * @return The field1861. */ + @java.lang.Override public java.lang.String getField1861() { java.lang.Object ref = field1861_; if (ref instanceof java.lang.String) { @@ -59208,6 +60935,7 @@ public java.lang.String getField1861() { * string field_1861 = 1861; * @return The bytes for field1861. */ + @java.lang.Override public com.google.protobuf.ByteString getField1861Bytes() { java.lang.Object ref = field1861_; @@ -59228,6 +60956,7 @@ public java.lang.String getField1861() { * string field_1862 = 1862; * @return The field1862. */ + @java.lang.Override public java.lang.String getField1862() { java.lang.Object ref = field1862_; if (ref instanceof java.lang.String) { @@ -59244,6 +60973,7 @@ public java.lang.String getField1862() { * string field_1862 = 1862; * @return The bytes for field1862. */ + @java.lang.Override public com.google.protobuf.ByteString getField1862Bytes() { java.lang.Object ref = field1862_; @@ -59264,6 +60994,7 @@ public java.lang.String getField1862() { * string field_1863 = 1863; * @return The field1863. */ + @java.lang.Override public java.lang.String getField1863() { java.lang.Object ref = field1863_; if (ref instanceof java.lang.String) { @@ -59280,6 +61011,7 @@ public java.lang.String getField1863() { * string field_1863 = 1863; * @return The bytes for field1863. */ + @java.lang.Override public com.google.protobuf.ByteString getField1863Bytes() { java.lang.Object ref = field1863_; @@ -59300,6 +61032,7 @@ public java.lang.String getField1863() { * string field_1864 = 1864; * @return The field1864. */ + @java.lang.Override public java.lang.String getField1864() { java.lang.Object ref = field1864_; if (ref instanceof java.lang.String) { @@ -59316,6 +61049,7 @@ public java.lang.String getField1864() { * string field_1864 = 1864; * @return The bytes for field1864. */ + @java.lang.Override public com.google.protobuf.ByteString getField1864Bytes() { java.lang.Object ref = field1864_; @@ -59336,6 +61070,7 @@ public java.lang.String getField1864() { * string field_1865 = 1865; * @return The field1865. */ + @java.lang.Override public java.lang.String getField1865() { java.lang.Object ref = field1865_; if (ref instanceof java.lang.String) { @@ -59352,6 +61087,7 @@ public java.lang.String getField1865() { * string field_1865 = 1865; * @return The bytes for field1865. */ + @java.lang.Override public com.google.protobuf.ByteString getField1865Bytes() { java.lang.Object ref = field1865_; @@ -59372,6 +61108,7 @@ public java.lang.String getField1865() { * string field_1866 = 1866; * @return The field1866. */ + @java.lang.Override public java.lang.String getField1866() { java.lang.Object ref = field1866_; if (ref instanceof java.lang.String) { @@ -59388,6 +61125,7 @@ public java.lang.String getField1866() { * string field_1866 = 1866; * @return The bytes for field1866. */ + @java.lang.Override public com.google.protobuf.ByteString getField1866Bytes() { java.lang.Object ref = field1866_; @@ -59408,6 +61146,7 @@ public java.lang.String getField1866() { * string field_1867 = 1867; * @return The field1867. */ + @java.lang.Override public java.lang.String getField1867() { java.lang.Object ref = field1867_; if (ref instanceof java.lang.String) { @@ -59424,6 +61163,7 @@ public java.lang.String getField1867() { * string field_1867 = 1867; * @return The bytes for field1867. */ + @java.lang.Override public com.google.protobuf.ByteString getField1867Bytes() { java.lang.Object ref = field1867_; @@ -59444,6 +61184,7 @@ public java.lang.String getField1867() { * string field_1868 = 1868; * @return The field1868. */ + @java.lang.Override public java.lang.String getField1868() { java.lang.Object ref = field1868_; if (ref instanceof java.lang.String) { @@ -59460,6 +61201,7 @@ public java.lang.String getField1868() { * string field_1868 = 1868; * @return The bytes for field1868. */ + @java.lang.Override public com.google.protobuf.ByteString getField1868Bytes() { java.lang.Object ref = field1868_; @@ -59480,6 +61222,7 @@ public java.lang.String getField1868() { * string field_1869 = 1869; * @return The field1869. */ + @java.lang.Override public java.lang.String getField1869() { java.lang.Object ref = field1869_; if (ref instanceof java.lang.String) { @@ -59496,6 +61239,7 @@ public java.lang.String getField1869() { * string field_1869 = 1869; * @return The bytes for field1869. */ + @java.lang.Override public com.google.protobuf.ByteString getField1869Bytes() { java.lang.Object ref = field1869_; @@ -59516,6 +61260,7 @@ public java.lang.String getField1869() { * string field_1870 = 1870; * @return The field1870. */ + @java.lang.Override public java.lang.String getField1870() { java.lang.Object ref = field1870_; if (ref instanceof java.lang.String) { @@ -59532,6 +61277,7 @@ public java.lang.String getField1870() { * string field_1870 = 1870; * @return The bytes for field1870. */ + @java.lang.Override public com.google.protobuf.ByteString getField1870Bytes() { java.lang.Object ref = field1870_; @@ -59552,6 +61298,7 @@ public java.lang.String getField1870() { * string field_1871 = 1871; * @return The field1871. */ + @java.lang.Override public java.lang.String getField1871() { java.lang.Object ref = field1871_; if (ref instanceof java.lang.String) { @@ -59568,6 +61315,7 @@ public java.lang.String getField1871() { * string field_1871 = 1871; * @return The bytes for field1871. */ + @java.lang.Override public com.google.protobuf.ByteString getField1871Bytes() { java.lang.Object ref = field1871_; @@ -59588,6 +61336,7 @@ public java.lang.String getField1871() { * string field_1872 = 1872; * @return The field1872. */ + @java.lang.Override public java.lang.String getField1872() { java.lang.Object ref = field1872_; if (ref instanceof java.lang.String) { @@ -59604,6 +61353,7 @@ public java.lang.String getField1872() { * string field_1872 = 1872; * @return The bytes for field1872. */ + @java.lang.Override public com.google.protobuf.ByteString getField1872Bytes() { java.lang.Object ref = field1872_; @@ -59624,6 +61374,7 @@ public java.lang.String getField1872() { * string field_1873 = 1873; * @return The field1873. */ + @java.lang.Override public java.lang.String getField1873() { java.lang.Object ref = field1873_; if (ref instanceof java.lang.String) { @@ -59640,6 +61391,7 @@ public java.lang.String getField1873() { * string field_1873 = 1873; * @return The bytes for field1873. */ + @java.lang.Override public com.google.protobuf.ByteString getField1873Bytes() { java.lang.Object ref = field1873_; @@ -59660,6 +61412,7 @@ public java.lang.String getField1873() { * string field_1874 = 1874; * @return The field1874. */ + @java.lang.Override public java.lang.String getField1874() { java.lang.Object ref = field1874_; if (ref instanceof java.lang.String) { @@ -59676,6 +61429,7 @@ public java.lang.String getField1874() { * string field_1874 = 1874; * @return The bytes for field1874. */ + @java.lang.Override public com.google.protobuf.ByteString getField1874Bytes() { java.lang.Object ref = field1874_; @@ -59696,6 +61450,7 @@ public java.lang.String getField1874() { * string field_1875 = 1875; * @return The field1875. */ + @java.lang.Override public java.lang.String getField1875() { java.lang.Object ref = field1875_; if (ref instanceof java.lang.String) { @@ -59712,6 +61467,7 @@ public java.lang.String getField1875() { * string field_1875 = 1875; * @return The bytes for field1875. */ + @java.lang.Override public com.google.protobuf.ByteString getField1875Bytes() { java.lang.Object ref = field1875_; @@ -59732,6 +61488,7 @@ public java.lang.String getField1875() { * string field_1876 = 1876; * @return The field1876. */ + @java.lang.Override public java.lang.String getField1876() { java.lang.Object ref = field1876_; if (ref instanceof java.lang.String) { @@ -59748,6 +61505,7 @@ public java.lang.String getField1876() { * string field_1876 = 1876; * @return The bytes for field1876. */ + @java.lang.Override public com.google.protobuf.ByteString getField1876Bytes() { java.lang.Object ref = field1876_; @@ -59768,6 +61526,7 @@ public java.lang.String getField1876() { * string field_1877 = 1877; * @return The field1877. */ + @java.lang.Override public java.lang.String getField1877() { java.lang.Object ref = field1877_; if (ref instanceof java.lang.String) { @@ -59784,6 +61543,7 @@ public java.lang.String getField1877() { * string field_1877 = 1877; * @return The bytes for field1877. */ + @java.lang.Override public com.google.protobuf.ByteString getField1877Bytes() { java.lang.Object ref = field1877_; @@ -59804,6 +61564,7 @@ public java.lang.String getField1877() { * string field_1878 = 1878; * @return The field1878. */ + @java.lang.Override public java.lang.String getField1878() { java.lang.Object ref = field1878_; if (ref instanceof java.lang.String) { @@ -59820,6 +61581,7 @@ public java.lang.String getField1878() { * string field_1878 = 1878; * @return The bytes for field1878. */ + @java.lang.Override public com.google.protobuf.ByteString getField1878Bytes() { java.lang.Object ref = field1878_; @@ -59840,6 +61602,7 @@ public java.lang.String getField1878() { * string field_1879 = 1879; * @return The field1879. */ + @java.lang.Override public java.lang.String getField1879() { java.lang.Object ref = field1879_; if (ref instanceof java.lang.String) { @@ -59856,6 +61619,7 @@ public java.lang.String getField1879() { * string field_1879 = 1879; * @return The bytes for field1879. */ + @java.lang.Override public com.google.protobuf.ByteString getField1879Bytes() { java.lang.Object ref = field1879_; @@ -59876,6 +61640,7 @@ public java.lang.String getField1879() { * string field_1880 = 1880; * @return The field1880. */ + @java.lang.Override public java.lang.String getField1880() { java.lang.Object ref = field1880_; if (ref instanceof java.lang.String) { @@ -59892,6 +61657,7 @@ public java.lang.String getField1880() { * string field_1880 = 1880; * @return The bytes for field1880. */ + @java.lang.Override public com.google.protobuf.ByteString getField1880Bytes() { java.lang.Object ref = field1880_; @@ -59912,6 +61678,7 @@ public java.lang.String getField1880() { * string field_1881 = 1881; * @return The field1881. */ + @java.lang.Override public java.lang.String getField1881() { java.lang.Object ref = field1881_; if (ref instanceof java.lang.String) { @@ -59928,6 +61695,7 @@ public java.lang.String getField1881() { * string field_1881 = 1881; * @return The bytes for field1881. */ + @java.lang.Override public com.google.protobuf.ByteString getField1881Bytes() { java.lang.Object ref = field1881_; @@ -59948,6 +61716,7 @@ public java.lang.String getField1881() { * string field_1882 = 1882; * @return The field1882. */ + @java.lang.Override public java.lang.String getField1882() { java.lang.Object ref = field1882_; if (ref instanceof java.lang.String) { @@ -59964,6 +61733,7 @@ public java.lang.String getField1882() { * string field_1882 = 1882; * @return The bytes for field1882. */ + @java.lang.Override public com.google.protobuf.ByteString getField1882Bytes() { java.lang.Object ref = field1882_; @@ -59984,6 +61754,7 @@ public java.lang.String getField1882() { * string field_1883 = 1883; * @return The field1883. */ + @java.lang.Override public java.lang.String getField1883() { java.lang.Object ref = field1883_; if (ref instanceof java.lang.String) { @@ -60000,6 +61771,7 @@ public java.lang.String getField1883() { * string field_1883 = 1883; * @return The bytes for field1883. */ + @java.lang.Override public com.google.protobuf.ByteString getField1883Bytes() { java.lang.Object ref = field1883_; @@ -60020,6 +61792,7 @@ public java.lang.String getField1883() { * string field_1884 = 1884; * @return The field1884. */ + @java.lang.Override public java.lang.String getField1884() { java.lang.Object ref = field1884_; if (ref instanceof java.lang.String) { @@ -60036,6 +61809,7 @@ public java.lang.String getField1884() { * string field_1884 = 1884; * @return The bytes for field1884. */ + @java.lang.Override public com.google.protobuf.ByteString getField1884Bytes() { java.lang.Object ref = field1884_; @@ -60056,6 +61830,7 @@ public java.lang.String getField1884() { * string field_1885 = 1885; * @return The field1885. */ + @java.lang.Override public java.lang.String getField1885() { java.lang.Object ref = field1885_; if (ref instanceof java.lang.String) { @@ -60072,6 +61847,7 @@ public java.lang.String getField1885() { * string field_1885 = 1885; * @return The bytes for field1885. */ + @java.lang.Override public com.google.protobuf.ByteString getField1885Bytes() { java.lang.Object ref = field1885_; @@ -60092,6 +61868,7 @@ public java.lang.String getField1885() { * string field_1886 = 1886; * @return The field1886. */ + @java.lang.Override public java.lang.String getField1886() { java.lang.Object ref = field1886_; if (ref instanceof java.lang.String) { @@ -60108,6 +61885,7 @@ public java.lang.String getField1886() { * string field_1886 = 1886; * @return The bytes for field1886. */ + @java.lang.Override public com.google.protobuf.ByteString getField1886Bytes() { java.lang.Object ref = field1886_; @@ -60128,6 +61906,7 @@ public java.lang.String getField1886() { * string field_1887 = 1887; * @return The field1887. */ + @java.lang.Override public java.lang.String getField1887() { java.lang.Object ref = field1887_; if (ref instanceof java.lang.String) { @@ -60144,6 +61923,7 @@ public java.lang.String getField1887() { * string field_1887 = 1887; * @return The bytes for field1887. */ + @java.lang.Override public com.google.protobuf.ByteString getField1887Bytes() { java.lang.Object ref = field1887_; @@ -60164,6 +61944,7 @@ public java.lang.String getField1887() { * string field_1888 = 1888; * @return The field1888. */ + @java.lang.Override public java.lang.String getField1888() { java.lang.Object ref = field1888_; if (ref instanceof java.lang.String) { @@ -60180,6 +61961,7 @@ public java.lang.String getField1888() { * string field_1888 = 1888; * @return The bytes for field1888. */ + @java.lang.Override public com.google.protobuf.ByteString getField1888Bytes() { java.lang.Object ref = field1888_; @@ -60200,6 +61982,7 @@ public java.lang.String getField1888() { * string field_1889 = 1889; * @return The field1889. */ + @java.lang.Override public java.lang.String getField1889() { java.lang.Object ref = field1889_; if (ref instanceof java.lang.String) { @@ -60216,6 +61999,7 @@ public java.lang.String getField1889() { * string field_1889 = 1889; * @return The bytes for field1889. */ + @java.lang.Override public com.google.protobuf.ByteString getField1889Bytes() { java.lang.Object ref = field1889_; @@ -60236,6 +62020,7 @@ public java.lang.String getField1889() { * string field_1890 = 1890; * @return The field1890. */ + @java.lang.Override public java.lang.String getField1890() { java.lang.Object ref = field1890_; if (ref instanceof java.lang.String) { @@ -60252,6 +62037,7 @@ public java.lang.String getField1890() { * string field_1890 = 1890; * @return The bytes for field1890. */ + @java.lang.Override public com.google.protobuf.ByteString getField1890Bytes() { java.lang.Object ref = field1890_; @@ -60272,6 +62058,7 @@ public java.lang.String getField1890() { * string field_1891 = 1891; * @return The field1891. */ + @java.lang.Override public java.lang.String getField1891() { java.lang.Object ref = field1891_; if (ref instanceof java.lang.String) { @@ -60288,6 +62075,7 @@ public java.lang.String getField1891() { * string field_1891 = 1891; * @return The bytes for field1891. */ + @java.lang.Override public com.google.protobuf.ByteString getField1891Bytes() { java.lang.Object ref = field1891_; @@ -60308,6 +62096,7 @@ public java.lang.String getField1891() { * string field_1892 = 1892; * @return The field1892. */ + @java.lang.Override public java.lang.String getField1892() { java.lang.Object ref = field1892_; if (ref instanceof java.lang.String) { @@ -60324,6 +62113,7 @@ public java.lang.String getField1892() { * string field_1892 = 1892; * @return The bytes for field1892. */ + @java.lang.Override public com.google.protobuf.ByteString getField1892Bytes() { java.lang.Object ref = field1892_; @@ -60344,6 +62134,7 @@ public java.lang.String getField1892() { * string field_1893 = 1893; * @return The field1893. */ + @java.lang.Override public java.lang.String getField1893() { java.lang.Object ref = field1893_; if (ref instanceof java.lang.String) { @@ -60360,6 +62151,7 @@ public java.lang.String getField1893() { * string field_1893 = 1893; * @return The bytes for field1893. */ + @java.lang.Override public com.google.protobuf.ByteString getField1893Bytes() { java.lang.Object ref = field1893_; @@ -60380,6 +62172,7 @@ public java.lang.String getField1893() { * string field_1894 = 1894; * @return The field1894. */ + @java.lang.Override public java.lang.String getField1894() { java.lang.Object ref = field1894_; if (ref instanceof java.lang.String) { @@ -60396,6 +62189,7 @@ public java.lang.String getField1894() { * string field_1894 = 1894; * @return The bytes for field1894. */ + @java.lang.Override public com.google.protobuf.ByteString getField1894Bytes() { java.lang.Object ref = field1894_; @@ -60416,6 +62210,7 @@ public java.lang.String getField1894() { * string field_1895 = 1895; * @return The field1895. */ + @java.lang.Override public java.lang.String getField1895() { java.lang.Object ref = field1895_; if (ref instanceof java.lang.String) { @@ -60432,6 +62227,7 @@ public java.lang.String getField1895() { * string field_1895 = 1895; * @return The bytes for field1895. */ + @java.lang.Override public com.google.protobuf.ByteString getField1895Bytes() { java.lang.Object ref = field1895_; @@ -60452,6 +62248,7 @@ public java.lang.String getField1895() { * string field_1896 = 1896; * @return The field1896. */ + @java.lang.Override public java.lang.String getField1896() { java.lang.Object ref = field1896_; if (ref instanceof java.lang.String) { @@ -60468,6 +62265,7 @@ public java.lang.String getField1896() { * string field_1896 = 1896; * @return The bytes for field1896. */ + @java.lang.Override public com.google.protobuf.ByteString getField1896Bytes() { java.lang.Object ref = field1896_; @@ -60488,6 +62286,7 @@ public java.lang.String getField1896() { * string field_1897 = 1897; * @return The field1897. */ + @java.lang.Override public java.lang.String getField1897() { java.lang.Object ref = field1897_; if (ref instanceof java.lang.String) { @@ -60504,6 +62303,7 @@ public java.lang.String getField1897() { * string field_1897 = 1897; * @return The bytes for field1897. */ + @java.lang.Override public com.google.protobuf.ByteString getField1897Bytes() { java.lang.Object ref = field1897_; @@ -60524,6 +62324,7 @@ public java.lang.String getField1897() { * string field_1898 = 1898; * @return The field1898. */ + @java.lang.Override public java.lang.String getField1898() { java.lang.Object ref = field1898_; if (ref instanceof java.lang.String) { @@ -60540,6 +62341,7 @@ public java.lang.String getField1898() { * string field_1898 = 1898; * @return The bytes for field1898. */ + @java.lang.Override public com.google.protobuf.ByteString getField1898Bytes() { java.lang.Object ref = field1898_; @@ -60560,6 +62362,7 @@ public java.lang.String getField1898() { * string field_1899 = 1899; * @return The field1899. */ + @java.lang.Override public java.lang.String getField1899() { java.lang.Object ref = field1899_; if (ref instanceof java.lang.String) { @@ -60576,6 +62379,7 @@ public java.lang.String getField1899() { * string field_1899 = 1899; * @return The bytes for field1899. */ + @java.lang.Override public com.google.protobuf.ByteString getField1899Bytes() { java.lang.Object ref = field1899_; @@ -60596,6 +62400,7 @@ public java.lang.String getField1899() { * string field_1900 = 1900; * @return The field1900. */ + @java.lang.Override public java.lang.String getField1900() { java.lang.Object ref = field1900_; if (ref instanceof java.lang.String) { @@ -60612,6 +62417,7 @@ public java.lang.String getField1900() { * string field_1900 = 1900; * @return The bytes for field1900. */ + @java.lang.Override public com.google.protobuf.ByteString getField1900Bytes() { java.lang.Object ref = field1900_; @@ -60632,6 +62438,7 @@ public java.lang.String getField1900() { * string field_1901 = 1901; * @return The field1901. */ + @java.lang.Override public java.lang.String getField1901() { java.lang.Object ref = field1901_; if (ref instanceof java.lang.String) { @@ -60648,6 +62455,7 @@ public java.lang.String getField1901() { * string field_1901 = 1901; * @return The bytes for field1901. */ + @java.lang.Override public com.google.protobuf.ByteString getField1901Bytes() { java.lang.Object ref = field1901_; @@ -60668,6 +62476,7 @@ public java.lang.String getField1901() { * string field_1902 = 1902; * @return The field1902. */ + @java.lang.Override public java.lang.String getField1902() { java.lang.Object ref = field1902_; if (ref instanceof java.lang.String) { @@ -60684,6 +62493,7 @@ public java.lang.String getField1902() { * string field_1902 = 1902; * @return The bytes for field1902. */ + @java.lang.Override public com.google.protobuf.ByteString getField1902Bytes() { java.lang.Object ref = field1902_; @@ -60704,6 +62514,7 @@ public java.lang.String getField1902() { * string field_1903 = 1903; * @return The field1903. */ + @java.lang.Override public java.lang.String getField1903() { java.lang.Object ref = field1903_; if (ref instanceof java.lang.String) { @@ -60720,6 +62531,7 @@ public java.lang.String getField1903() { * string field_1903 = 1903; * @return The bytes for field1903. */ + @java.lang.Override public com.google.protobuf.ByteString getField1903Bytes() { java.lang.Object ref = field1903_; @@ -60740,6 +62552,7 @@ public java.lang.String getField1903() { * string field_1904 = 1904; * @return The field1904. */ + @java.lang.Override public java.lang.String getField1904() { java.lang.Object ref = field1904_; if (ref instanceof java.lang.String) { @@ -60756,6 +62569,7 @@ public java.lang.String getField1904() { * string field_1904 = 1904; * @return The bytes for field1904. */ + @java.lang.Override public com.google.protobuf.ByteString getField1904Bytes() { java.lang.Object ref = field1904_; @@ -60776,6 +62590,7 @@ public java.lang.String getField1904() { * string field_1905 = 1905; * @return The field1905. */ + @java.lang.Override public java.lang.String getField1905() { java.lang.Object ref = field1905_; if (ref instanceof java.lang.String) { @@ -60792,6 +62607,7 @@ public java.lang.String getField1905() { * string field_1905 = 1905; * @return The bytes for field1905. */ + @java.lang.Override public com.google.protobuf.ByteString getField1905Bytes() { java.lang.Object ref = field1905_; @@ -60812,6 +62628,7 @@ public java.lang.String getField1905() { * string field_1906 = 1906; * @return The field1906. */ + @java.lang.Override public java.lang.String getField1906() { java.lang.Object ref = field1906_; if (ref instanceof java.lang.String) { @@ -60828,6 +62645,7 @@ public java.lang.String getField1906() { * string field_1906 = 1906; * @return The bytes for field1906. */ + @java.lang.Override public com.google.protobuf.ByteString getField1906Bytes() { java.lang.Object ref = field1906_; @@ -60848,6 +62666,7 @@ public java.lang.String getField1906() { * string field_1907 = 1907; * @return The field1907. */ + @java.lang.Override public java.lang.String getField1907() { java.lang.Object ref = field1907_; if (ref instanceof java.lang.String) { @@ -60864,6 +62683,7 @@ public java.lang.String getField1907() { * string field_1907 = 1907; * @return The bytes for field1907. */ + @java.lang.Override public com.google.protobuf.ByteString getField1907Bytes() { java.lang.Object ref = field1907_; @@ -60884,6 +62704,7 @@ public java.lang.String getField1907() { * string field_1908 = 1908; * @return The field1908. */ + @java.lang.Override public java.lang.String getField1908() { java.lang.Object ref = field1908_; if (ref instanceof java.lang.String) { @@ -60900,6 +62721,7 @@ public java.lang.String getField1908() { * string field_1908 = 1908; * @return The bytes for field1908. */ + @java.lang.Override public com.google.protobuf.ByteString getField1908Bytes() { java.lang.Object ref = field1908_; @@ -60920,6 +62742,7 @@ public java.lang.String getField1908() { * string field_1909 = 1909; * @return The field1909. */ + @java.lang.Override public java.lang.String getField1909() { java.lang.Object ref = field1909_; if (ref instanceof java.lang.String) { @@ -60936,6 +62759,7 @@ public java.lang.String getField1909() { * string field_1909 = 1909; * @return The bytes for field1909. */ + @java.lang.Override public com.google.protobuf.ByteString getField1909Bytes() { java.lang.Object ref = field1909_; @@ -60956,6 +62780,7 @@ public java.lang.String getField1909() { * string field_1910 = 1910; * @return The field1910. */ + @java.lang.Override public java.lang.String getField1910() { java.lang.Object ref = field1910_; if (ref instanceof java.lang.String) { @@ -60972,6 +62797,7 @@ public java.lang.String getField1910() { * string field_1910 = 1910; * @return The bytes for field1910. */ + @java.lang.Override public com.google.protobuf.ByteString getField1910Bytes() { java.lang.Object ref = field1910_; @@ -60992,6 +62818,7 @@ public java.lang.String getField1910() { * string field_1911 = 1911; * @return The field1911. */ + @java.lang.Override public java.lang.String getField1911() { java.lang.Object ref = field1911_; if (ref instanceof java.lang.String) { @@ -61008,6 +62835,7 @@ public java.lang.String getField1911() { * string field_1911 = 1911; * @return The bytes for field1911. */ + @java.lang.Override public com.google.protobuf.ByteString getField1911Bytes() { java.lang.Object ref = field1911_; @@ -61028,6 +62856,7 @@ public java.lang.String getField1911() { * string field_1912 = 1912; * @return The field1912. */ + @java.lang.Override public java.lang.String getField1912() { java.lang.Object ref = field1912_; if (ref instanceof java.lang.String) { @@ -61044,6 +62873,7 @@ public java.lang.String getField1912() { * string field_1912 = 1912; * @return The bytes for field1912. */ + @java.lang.Override public com.google.protobuf.ByteString getField1912Bytes() { java.lang.Object ref = field1912_; @@ -61064,6 +62894,7 @@ public java.lang.String getField1912() { * string field_1913 = 1913; * @return The field1913. */ + @java.lang.Override public java.lang.String getField1913() { java.lang.Object ref = field1913_; if (ref instanceof java.lang.String) { @@ -61080,6 +62911,7 @@ public java.lang.String getField1913() { * string field_1913 = 1913; * @return The bytes for field1913. */ + @java.lang.Override public com.google.protobuf.ByteString getField1913Bytes() { java.lang.Object ref = field1913_; @@ -61100,6 +62932,7 @@ public java.lang.String getField1913() { * string field_1914 = 1914; * @return The field1914. */ + @java.lang.Override public java.lang.String getField1914() { java.lang.Object ref = field1914_; if (ref instanceof java.lang.String) { @@ -61116,6 +62949,7 @@ public java.lang.String getField1914() { * string field_1914 = 1914; * @return The bytes for field1914. */ + @java.lang.Override public com.google.protobuf.ByteString getField1914Bytes() { java.lang.Object ref = field1914_; @@ -61136,6 +62970,7 @@ public java.lang.String getField1914() { * string field_1915 = 1915; * @return The field1915. */ + @java.lang.Override public java.lang.String getField1915() { java.lang.Object ref = field1915_; if (ref instanceof java.lang.String) { @@ -61152,6 +62987,7 @@ public java.lang.String getField1915() { * string field_1915 = 1915; * @return The bytes for field1915. */ + @java.lang.Override public com.google.protobuf.ByteString getField1915Bytes() { java.lang.Object ref = field1915_; @@ -61172,6 +63008,7 @@ public java.lang.String getField1915() { * string field_1916 = 1916; * @return The field1916. */ + @java.lang.Override public java.lang.String getField1916() { java.lang.Object ref = field1916_; if (ref instanceof java.lang.String) { @@ -61188,6 +63025,7 @@ public java.lang.String getField1916() { * string field_1916 = 1916; * @return The bytes for field1916. */ + @java.lang.Override public com.google.protobuf.ByteString getField1916Bytes() { java.lang.Object ref = field1916_; @@ -61208,6 +63046,7 @@ public java.lang.String getField1916() { * string field_1917 = 1917; * @return The field1917. */ + @java.lang.Override public java.lang.String getField1917() { java.lang.Object ref = field1917_; if (ref instanceof java.lang.String) { @@ -61224,6 +63063,7 @@ public java.lang.String getField1917() { * string field_1917 = 1917; * @return The bytes for field1917. */ + @java.lang.Override public com.google.protobuf.ByteString getField1917Bytes() { java.lang.Object ref = field1917_; @@ -61244,6 +63084,7 @@ public java.lang.String getField1917() { * string field_1918 = 1918; * @return The field1918. */ + @java.lang.Override public java.lang.String getField1918() { java.lang.Object ref = field1918_; if (ref instanceof java.lang.String) { @@ -61260,6 +63101,7 @@ public java.lang.String getField1918() { * string field_1918 = 1918; * @return The bytes for field1918. */ + @java.lang.Override public com.google.protobuf.ByteString getField1918Bytes() { java.lang.Object ref = field1918_; @@ -61280,6 +63122,7 @@ public java.lang.String getField1918() { * string field_1919 = 1919; * @return The field1919. */ + @java.lang.Override public java.lang.String getField1919() { java.lang.Object ref = field1919_; if (ref instanceof java.lang.String) { @@ -61296,6 +63139,7 @@ public java.lang.String getField1919() { * string field_1919 = 1919; * @return The bytes for field1919. */ + @java.lang.Override public com.google.protobuf.ByteString getField1919Bytes() { java.lang.Object ref = field1919_; @@ -61316,6 +63160,7 @@ public java.lang.String getField1919() { * string field_1920 = 1920; * @return The field1920. */ + @java.lang.Override public java.lang.String getField1920() { java.lang.Object ref = field1920_; if (ref instanceof java.lang.String) { @@ -61332,6 +63177,7 @@ public java.lang.String getField1920() { * string field_1920 = 1920; * @return The bytes for field1920. */ + @java.lang.Override public com.google.protobuf.ByteString getField1920Bytes() { java.lang.Object ref = field1920_; @@ -61352,6 +63198,7 @@ public java.lang.String getField1920() { * string field_1921 = 1921; * @return The field1921. */ + @java.lang.Override public java.lang.String getField1921() { java.lang.Object ref = field1921_; if (ref instanceof java.lang.String) { @@ -61368,6 +63215,7 @@ public java.lang.String getField1921() { * string field_1921 = 1921; * @return The bytes for field1921. */ + @java.lang.Override public com.google.protobuf.ByteString getField1921Bytes() { java.lang.Object ref = field1921_; @@ -61388,6 +63236,7 @@ public java.lang.String getField1921() { * string field_1922 = 1922; * @return The field1922. */ + @java.lang.Override public java.lang.String getField1922() { java.lang.Object ref = field1922_; if (ref instanceof java.lang.String) { @@ -61404,6 +63253,7 @@ public java.lang.String getField1922() { * string field_1922 = 1922; * @return The bytes for field1922. */ + @java.lang.Override public com.google.protobuf.ByteString getField1922Bytes() { java.lang.Object ref = field1922_; @@ -61424,6 +63274,7 @@ public java.lang.String getField1922() { * string field_1923 = 1923; * @return The field1923. */ + @java.lang.Override public java.lang.String getField1923() { java.lang.Object ref = field1923_; if (ref instanceof java.lang.String) { @@ -61440,6 +63291,7 @@ public java.lang.String getField1923() { * string field_1923 = 1923; * @return The bytes for field1923. */ + @java.lang.Override public com.google.protobuf.ByteString getField1923Bytes() { java.lang.Object ref = field1923_; @@ -61460,6 +63312,7 @@ public java.lang.String getField1923() { * string field_1924 = 1924; * @return The field1924. */ + @java.lang.Override public java.lang.String getField1924() { java.lang.Object ref = field1924_; if (ref instanceof java.lang.String) { @@ -61476,6 +63329,7 @@ public java.lang.String getField1924() { * string field_1924 = 1924; * @return The bytes for field1924. */ + @java.lang.Override public com.google.protobuf.ByteString getField1924Bytes() { java.lang.Object ref = field1924_; @@ -61496,6 +63350,7 @@ public java.lang.String getField1924() { * string field_1925 = 1925; * @return The field1925. */ + @java.lang.Override public java.lang.String getField1925() { java.lang.Object ref = field1925_; if (ref instanceof java.lang.String) { @@ -61512,6 +63367,7 @@ public java.lang.String getField1925() { * string field_1925 = 1925; * @return The bytes for field1925. */ + @java.lang.Override public com.google.protobuf.ByteString getField1925Bytes() { java.lang.Object ref = field1925_; @@ -61532,6 +63388,7 @@ public java.lang.String getField1925() { * string field_1926 = 1926; * @return The field1926. */ + @java.lang.Override public java.lang.String getField1926() { java.lang.Object ref = field1926_; if (ref instanceof java.lang.String) { @@ -61548,6 +63405,7 @@ public java.lang.String getField1926() { * string field_1926 = 1926; * @return The bytes for field1926. */ + @java.lang.Override public com.google.protobuf.ByteString getField1926Bytes() { java.lang.Object ref = field1926_; @@ -61568,6 +63426,7 @@ public java.lang.String getField1926() { * string field_1927 = 1927; * @return The field1927. */ + @java.lang.Override public java.lang.String getField1927() { java.lang.Object ref = field1927_; if (ref instanceof java.lang.String) { @@ -61584,6 +63443,7 @@ public java.lang.String getField1927() { * string field_1927 = 1927; * @return The bytes for field1927. */ + @java.lang.Override public com.google.protobuf.ByteString getField1927Bytes() { java.lang.Object ref = field1927_; @@ -61604,6 +63464,7 @@ public java.lang.String getField1927() { * string field_1928 = 1928; * @return The field1928. */ + @java.lang.Override public java.lang.String getField1928() { java.lang.Object ref = field1928_; if (ref instanceof java.lang.String) { @@ -61620,6 +63481,7 @@ public java.lang.String getField1928() { * string field_1928 = 1928; * @return The bytes for field1928. */ + @java.lang.Override public com.google.protobuf.ByteString getField1928Bytes() { java.lang.Object ref = field1928_; @@ -61640,6 +63502,7 @@ public java.lang.String getField1928() { * string field_1929 = 1929; * @return The field1929. */ + @java.lang.Override public java.lang.String getField1929() { java.lang.Object ref = field1929_; if (ref instanceof java.lang.String) { @@ -61656,6 +63519,7 @@ public java.lang.String getField1929() { * string field_1929 = 1929; * @return The bytes for field1929. */ + @java.lang.Override public com.google.protobuf.ByteString getField1929Bytes() { java.lang.Object ref = field1929_; @@ -61676,6 +63540,7 @@ public java.lang.String getField1929() { * string field_1930 = 1930; * @return The field1930. */ + @java.lang.Override public java.lang.String getField1930() { java.lang.Object ref = field1930_; if (ref instanceof java.lang.String) { @@ -61692,6 +63557,7 @@ public java.lang.String getField1930() { * string field_1930 = 1930; * @return The bytes for field1930. */ + @java.lang.Override public com.google.protobuf.ByteString getField1930Bytes() { java.lang.Object ref = field1930_; @@ -61712,6 +63578,7 @@ public java.lang.String getField1930() { * string field_1931 = 1931; * @return The field1931. */ + @java.lang.Override public java.lang.String getField1931() { java.lang.Object ref = field1931_; if (ref instanceof java.lang.String) { @@ -61728,6 +63595,7 @@ public java.lang.String getField1931() { * string field_1931 = 1931; * @return The bytes for field1931. */ + @java.lang.Override public com.google.protobuf.ByteString getField1931Bytes() { java.lang.Object ref = field1931_; @@ -61748,6 +63616,7 @@ public java.lang.String getField1931() { * string field_1932 = 1932; * @return The field1932. */ + @java.lang.Override public java.lang.String getField1932() { java.lang.Object ref = field1932_; if (ref instanceof java.lang.String) { @@ -61764,6 +63633,7 @@ public java.lang.String getField1932() { * string field_1932 = 1932; * @return The bytes for field1932. */ + @java.lang.Override public com.google.protobuf.ByteString getField1932Bytes() { java.lang.Object ref = field1932_; @@ -61784,6 +63654,7 @@ public java.lang.String getField1932() { * string field_1933 = 1933; * @return The field1933. */ + @java.lang.Override public java.lang.String getField1933() { java.lang.Object ref = field1933_; if (ref instanceof java.lang.String) { @@ -61800,6 +63671,7 @@ public java.lang.String getField1933() { * string field_1933 = 1933; * @return The bytes for field1933. */ + @java.lang.Override public com.google.protobuf.ByteString getField1933Bytes() { java.lang.Object ref = field1933_; @@ -61820,6 +63692,7 @@ public java.lang.String getField1933() { * string field_1934 = 1934; * @return The field1934. */ + @java.lang.Override public java.lang.String getField1934() { java.lang.Object ref = field1934_; if (ref instanceof java.lang.String) { @@ -61836,6 +63709,7 @@ public java.lang.String getField1934() { * string field_1934 = 1934; * @return The bytes for field1934. */ + @java.lang.Override public com.google.protobuf.ByteString getField1934Bytes() { java.lang.Object ref = field1934_; @@ -61856,6 +63730,7 @@ public java.lang.String getField1934() { * string field_1935 = 1935; * @return The field1935. */ + @java.lang.Override public java.lang.String getField1935() { java.lang.Object ref = field1935_; if (ref instanceof java.lang.String) { @@ -61872,6 +63747,7 @@ public java.lang.String getField1935() { * string field_1935 = 1935; * @return The bytes for field1935. */ + @java.lang.Override public com.google.protobuf.ByteString getField1935Bytes() { java.lang.Object ref = field1935_; @@ -61892,6 +63768,7 @@ public java.lang.String getField1935() { * string field_1936 = 1936; * @return The field1936. */ + @java.lang.Override public java.lang.String getField1936() { java.lang.Object ref = field1936_; if (ref instanceof java.lang.String) { @@ -61908,6 +63785,7 @@ public java.lang.String getField1936() { * string field_1936 = 1936; * @return The bytes for field1936. */ + @java.lang.Override public com.google.protobuf.ByteString getField1936Bytes() { java.lang.Object ref = field1936_; @@ -61928,6 +63806,7 @@ public java.lang.String getField1936() { * string field_1937 = 1937; * @return The field1937. */ + @java.lang.Override public java.lang.String getField1937() { java.lang.Object ref = field1937_; if (ref instanceof java.lang.String) { @@ -61944,6 +63823,7 @@ public java.lang.String getField1937() { * string field_1937 = 1937; * @return The bytes for field1937. */ + @java.lang.Override public com.google.protobuf.ByteString getField1937Bytes() { java.lang.Object ref = field1937_; @@ -61964,6 +63844,7 @@ public java.lang.String getField1937() { * string field_1938 = 1938; * @return The field1938. */ + @java.lang.Override public java.lang.String getField1938() { java.lang.Object ref = field1938_; if (ref instanceof java.lang.String) { @@ -61980,6 +63861,7 @@ public java.lang.String getField1938() { * string field_1938 = 1938; * @return The bytes for field1938. */ + @java.lang.Override public com.google.protobuf.ByteString getField1938Bytes() { java.lang.Object ref = field1938_; @@ -62000,6 +63882,7 @@ public java.lang.String getField1938() { * string field_1939 = 1939; * @return The field1939. */ + @java.lang.Override public java.lang.String getField1939() { java.lang.Object ref = field1939_; if (ref instanceof java.lang.String) { @@ -62016,6 +63899,7 @@ public java.lang.String getField1939() { * string field_1939 = 1939; * @return The bytes for field1939. */ + @java.lang.Override public com.google.protobuf.ByteString getField1939Bytes() { java.lang.Object ref = field1939_; @@ -62036,6 +63920,7 @@ public java.lang.String getField1939() { * string field_1940 = 1940; * @return The field1940. */ + @java.lang.Override public java.lang.String getField1940() { java.lang.Object ref = field1940_; if (ref instanceof java.lang.String) { @@ -62052,6 +63937,7 @@ public java.lang.String getField1940() { * string field_1940 = 1940; * @return The bytes for field1940. */ + @java.lang.Override public com.google.protobuf.ByteString getField1940Bytes() { java.lang.Object ref = field1940_; @@ -62072,6 +63958,7 @@ public java.lang.String getField1940() { * string field_1941 = 1941; * @return The field1941. */ + @java.lang.Override public java.lang.String getField1941() { java.lang.Object ref = field1941_; if (ref instanceof java.lang.String) { @@ -62088,6 +63975,7 @@ public java.lang.String getField1941() { * string field_1941 = 1941; * @return The bytes for field1941. */ + @java.lang.Override public com.google.protobuf.ByteString getField1941Bytes() { java.lang.Object ref = field1941_; @@ -62108,6 +63996,7 @@ public java.lang.String getField1941() { * string field_1942 = 1942; * @return The field1942. */ + @java.lang.Override public java.lang.String getField1942() { java.lang.Object ref = field1942_; if (ref instanceof java.lang.String) { @@ -62124,6 +64013,7 @@ public java.lang.String getField1942() { * string field_1942 = 1942; * @return The bytes for field1942. */ + @java.lang.Override public com.google.protobuf.ByteString getField1942Bytes() { java.lang.Object ref = field1942_; @@ -62144,6 +64034,7 @@ public java.lang.String getField1942() { * string field_1943 = 1943; * @return The field1943. */ + @java.lang.Override public java.lang.String getField1943() { java.lang.Object ref = field1943_; if (ref instanceof java.lang.String) { @@ -62160,6 +64051,7 @@ public java.lang.String getField1943() { * string field_1943 = 1943; * @return The bytes for field1943. */ + @java.lang.Override public com.google.protobuf.ByteString getField1943Bytes() { java.lang.Object ref = field1943_; @@ -62180,6 +64072,7 @@ public java.lang.String getField1943() { * string field_1944 = 1944; * @return The field1944. */ + @java.lang.Override public java.lang.String getField1944() { java.lang.Object ref = field1944_; if (ref instanceof java.lang.String) { @@ -62196,6 +64089,7 @@ public java.lang.String getField1944() { * string field_1944 = 1944; * @return The bytes for field1944. */ + @java.lang.Override public com.google.protobuf.ByteString getField1944Bytes() { java.lang.Object ref = field1944_; @@ -62216,6 +64110,7 @@ public java.lang.String getField1944() { * string field_1945 = 1945; * @return The field1945. */ + @java.lang.Override public java.lang.String getField1945() { java.lang.Object ref = field1945_; if (ref instanceof java.lang.String) { @@ -62232,6 +64127,7 @@ public java.lang.String getField1945() { * string field_1945 = 1945; * @return The bytes for field1945. */ + @java.lang.Override public com.google.protobuf.ByteString getField1945Bytes() { java.lang.Object ref = field1945_; @@ -62252,6 +64148,7 @@ public java.lang.String getField1945() { * string field_1946 = 1946; * @return The field1946. */ + @java.lang.Override public java.lang.String getField1946() { java.lang.Object ref = field1946_; if (ref instanceof java.lang.String) { @@ -62268,6 +64165,7 @@ public java.lang.String getField1946() { * string field_1946 = 1946; * @return The bytes for field1946. */ + @java.lang.Override public com.google.protobuf.ByteString getField1946Bytes() { java.lang.Object ref = field1946_; @@ -62288,6 +64186,7 @@ public java.lang.String getField1946() { * string field_1947 = 1947; * @return The field1947. */ + @java.lang.Override public java.lang.String getField1947() { java.lang.Object ref = field1947_; if (ref instanceof java.lang.String) { @@ -62304,6 +64203,7 @@ public java.lang.String getField1947() { * string field_1947 = 1947; * @return The bytes for field1947. */ + @java.lang.Override public com.google.protobuf.ByteString getField1947Bytes() { java.lang.Object ref = field1947_; @@ -62324,6 +64224,7 @@ public java.lang.String getField1947() { * string field_1948 = 1948; * @return The field1948. */ + @java.lang.Override public java.lang.String getField1948() { java.lang.Object ref = field1948_; if (ref instanceof java.lang.String) { @@ -62340,6 +64241,7 @@ public java.lang.String getField1948() { * string field_1948 = 1948; * @return The bytes for field1948. */ + @java.lang.Override public com.google.protobuf.ByteString getField1948Bytes() { java.lang.Object ref = field1948_; @@ -62360,6 +64262,7 @@ public java.lang.String getField1948() { * string field_1949 = 1949; * @return The field1949. */ + @java.lang.Override public java.lang.String getField1949() { java.lang.Object ref = field1949_; if (ref instanceof java.lang.String) { @@ -62376,6 +64279,7 @@ public java.lang.String getField1949() { * string field_1949 = 1949; * @return The bytes for field1949. */ + @java.lang.Override public com.google.protobuf.ByteString getField1949Bytes() { java.lang.Object ref = field1949_; @@ -62396,6 +64300,7 @@ public java.lang.String getField1949() { * string field_1950 = 1950; * @return The field1950. */ + @java.lang.Override public java.lang.String getField1950() { java.lang.Object ref = field1950_; if (ref instanceof java.lang.String) { @@ -62412,6 +64317,7 @@ public java.lang.String getField1950() { * string field_1950 = 1950; * @return The bytes for field1950. */ + @java.lang.Override public com.google.protobuf.ByteString getField1950Bytes() { java.lang.Object ref = field1950_; @@ -62432,6 +64338,7 @@ public java.lang.String getField1950() { * string field_1951 = 1951; * @return The field1951. */ + @java.lang.Override public java.lang.String getField1951() { java.lang.Object ref = field1951_; if (ref instanceof java.lang.String) { @@ -62448,6 +64355,7 @@ public java.lang.String getField1951() { * string field_1951 = 1951; * @return The bytes for field1951. */ + @java.lang.Override public com.google.protobuf.ByteString getField1951Bytes() { java.lang.Object ref = field1951_; @@ -62468,6 +64376,7 @@ public java.lang.String getField1951() { * string field_1952 = 1952; * @return The field1952. */ + @java.lang.Override public java.lang.String getField1952() { java.lang.Object ref = field1952_; if (ref instanceof java.lang.String) { @@ -62484,6 +64393,7 @@ public java.lang.String getField1952() { * string field_1952 = 1952; * @return The bytes for field1952. */ + @java.lang.Override public com.google.protobuf.ByteString getField1952Bytes() { java.lang.Object ref = field1952_; @@ -62504,6 +64414,7 @@ public java.lang.String getField1952() { * string field_1953 = 1953; * @return The field1953. */ + @java.lang.Override public java.lang.String getField1953() { java.lang.Object ref = field1953_; if (ref instanceof java.lang.String) { @@ -62520,6 +64431,7 @@ public java.lang.String getField1953() { * string field_1953 = 1953; * @return The bytes for field1953. */ + @java.lang.Override public com.google.protobuf.ByteString getField1953Bytes() { java.lang.Object ref = field1953_; @@ -62540,6 +64452,7 @@ public java.lang.String getField1953() { * string field_1954 = 1954; * @return The field1954. */ + @java.lang.Override public java.lang.String getField1954() { java.lang.Object ref = field1954_; if (ref instanceof java.lang.String) { @@ -62556,6 +64469,7 @@ public java.lang.String getField1954() { * string field_1954 = 1954; * @return The bytes for field1954. */ + @java.lang.Override public com.google.protobuf.ByteString getField1954Bytes() { java.lang.Object ref = field1954_; @@ -62576,6 +64490,7 @@ public java.lang.String getField1954() { * string field_1955 = 1955; * @return The field1955. */ + @java.lang.Override public java.lang.String getField1955() { java.lang.Object ref = field1955_; if (ref instanceof java.lang.String) { @@ -62592,6 +64507,7 @@ public java.lang.String getField1955() { * string field_1955 = 1955; * @return The bytes for field1955. */ + @java.lang.Override public com.google.protobuf.ByteString getField1955Bytes() { java.lang.Object ref = field1955_; @@ -62612,6 +64528,7 @@ public java.lang.String getField1955() { * string field_1956 = 1956; * @return The field1956. */ + @java.lang.Override public java.lang.String getField1956() { java.lang.Object ref = field1956_; if (ref instanceof java.lang.String) { @@ -62628,6 +64545,7 @@ public java.lang.String getField1956() { * string field_1956 = 1956; * @return The bytes for field1956. */ + @java.lang.Override public com.google.protobuf.ByteString getField1956Bytes() { java.lang.Object ref = field1956_; @@ -62648,6 +64566,7 @@ public java.lang.String getField1956() { * string field_1957 = 1957; * @return The field1957. */ + @java.lang.Override public java.lang.String getField1957() { java.lang.Object ref = field1957_; if (ref instanceof java.lang.String) { @@ -62664,6 +64583,7 @@ public java.lang.String getField1957() { * string field_1957 = 1957; * @return The bytes for field1957. */ + @java.lang.Override public com.google.protobuf.ByteString getField1957Bytes() { java.lang.Object ref = field1957_; @@ -62684,6 +64604,7 @@ public java.lang.String getField1957() { * string field_1958 = 1958; * @return The field1958. */ + @java.lang.Override public java.lang.String getField1958() { java.lang.Object ref = field1958_; if (ref instanceof java.lang.String) { @@ -62700,6 +64621,7 @@ public java.lang.String getField1958() { * string field_1958 = 1958; * @return The bytes for field1958. */ + @java.lang.Override public com.google.protobuf.ByteString getField1958Bytes() { java.lang.Object ref = field1958_; @@ -62720,6 +64642,7 @@ public java.lang.String getField1958() { * string field_1959 = 1959; * @return The field1959. */ + @java.lang.Override public java.lang.String getField1959() { java.lang.Object ref = field1959_; if (ref instanceof java.lang.String) { @@ -62736,6 +64659,7 @@ public java.lang.String getField1959() { * string field_1959 = 1959; * @return The bytes for field1959. */ + @java.lang.Override public com.google.protobuf.ByteString getField1959Bytes() { java.lang.Object ref = field1959_; @@ -62756,6 +64680,7 @@ public java.lang.String getField1959() { * string field_1960 = 1960; * @return The field1960. */ + @java.lang.Override public java.lang.String getField1960() { java.lang.Object ref = field1960_; if (ref instanceof java.lang.String) { @@ -62772,6 +64697,7 @@ public java.lang.String getField1960() { * string field_1960 = 1960; * @return The bytes for field1960. */ + @java.lang.Override public com.google.protobuf.ByteString getField1960Bytes() { java.lang.Object ref = field1960_; @@ -62792,6 +64718,7 @@ public java.lang.String getField1960() { * string field_1961 = 1961; * @return The field1961. */ + @java.lang.Override public java.lang.String getField1961() { java.lang.Object ref = field1961_; if (ref instanceof java.lang.String) { @@ -62808,6 +64735,7 @@ public java.lang.String getField1961() { * string field_1961 = 1961; * @return The bytes for field1961. */ + @java.lang.Override public com.google.protobuf.ByteString getField1961Bytes() { java.lang.Object ref = field1961_; @@ -62828,6 +64756,7 @@ public java.lang.String getField1961() { * string field_1962 = 1962; * @return The field1962. */ + @java.lang.Override public java.lang.String getField1962() { java.lang.Object ref = field1962_; if (ref instanceof java.lang.String) { @@ -62844,6 +64773,7 @@ public java.lang.String getField1962() { * string field_1962 = 1962; * @return The bytes for field1962. */ + @java.lang.Override public com.google.protobuf.ByteString getField1962Bytes() { java.lang.Object ref = field1962_; @@ -62864,6 +64794,7 @@ public java.lang.String getField1962() { * string field_1963 = 1963; * @return The field1963. */ + @java.lang.Override public java.lang.String getField1963() { java.lang.Object ref = field1963_; if (ref instanceof java.lang.String) { @@ -62880,6 +64811,7 @@ public java.lang.String getField1963() { * string field_1963 = 1963; * @return The bytes for field1963. */ + @java.lang.Override public com.google.protobuf.ByteString getField1963Bytes() { java.lang.Object ref = field1963_; @@ -62900,6 +64832,7 @@ public java.lang.String getField1963() { * string field_1964 = 1964; * @return The field1964. */ + @java.lang.Override public java.lang.String getField1964() { java.lang.Object ref = field1964_; if (ref instanceof java.lang.String) { @@ -62916,6 +64849,7 @@ public java.lang.String getField1964() { * string field_1964 = 1964; * @return The bytes for field1964. */ + @java.lang.Override public com.google.protobuf.ByteString getField1964Bytes() { java.lang.Object ref = field1964_; @@ -62936,6 +64870,7 @@ public java.lang.String getField1964() { * string field_1965 = 1965; * @return The field1965. */ + @java.lang.Override public java.lang.String getField1965() { java.lang.Object ref = field1965_; if (ref instanceof java.lang.String) { @@ -62952,6 +64887,7 @@ public java.lang.String getField1965() { * string field_1965 = 1965; * @return The bytes for field1965. */ + @java.lang.Override public com.google.protobuf.ByteString getField1965Bytes() { java.lang.Object ref = field1965_; @@ -62972,6 +64908,7 @@ public java.lang.String getField1965() { * string field_1966 = 1966; * @return The field1966. */ + @java.lang.Override public java.lang.String getField1966() { java.lang.Object ref = field1966_; if (ref instanceof java.lang.String) { @@ -62988,6 +64925,7 @@ public java.lang.String getField1966() { * string field_1966 = 1966; * @return The bytes for field1966. */ + @java.lang.Override public com.google.protobuf.ByteString getField1966Bytes() { java.lang.Object ref = field1966_; @@ -63008,6 +64946,7 @@ public java.lang.String getField1966() { * string field_1967 = 1967; * @return The field1967. */ + @java.lang.Override public java.lang.String getField1967() { java.lang.Object ref = field1967_; if (ref instanceof java.lang.String) { @@ -63024,6 +64963,7 @@ public java.lang.String getField1967() { * string field_1967 = 1967; * @return The bytes for field1967. */ + @java.lang.Override public com.google.protobuf.ByteString getField1967Bytes() { java.lang.Object ref = field1967_; @@ -63044,6 +64984,7 @@ public java.lang.String getField1967() { * string field_1968 = 1968; * @return The field1968. */ + @java.lang.Override public java.lang.String getField1968() { java.lang.Object ref = field1968_; if (ref instanceof java.lang.String) { @@ -63060,6 +65001,7 @@ public java.lang.String getField1968() { * string field_1968 = 1968; * @return The bytes for field1968. */ + @java.lang.Override public com.google.protobuf.ByteString getField1968Bytes() { java.lang.Object ref = field1968_; @@ -63080,6 +65022,7 @@ public java.lang.String getField1968() { * string field_1969 = 1969; * @return The field1969. */ + @java.lang.Override public java.lang.String getField1969() { java.lang.Object ref = field1969_; if (ref instanceof java.lang.String) { @@ -63096,6 +65039,7 @@ public java.lang.String getField1969() { * string field_1969 = 1969; * @return The bytes for field1969. */ + @java.lang.Override public com.google.protobuf.ByteString getField1969Bytes() { java.lang.Object ref = field1969_; @@ -63116,6 +65060,7 @@ public java.lang.String getField1969() { * string field_1970 = 1970; * @return The field1970. */ + @java.lang.Override public java.lang.String getField1970() { java.lang.Object ref = field1970_; if (ref instanceof java.lang.String) { @@ -63132,6 +65077,7 @@ public java.lang.String getField1970() { * string field_1970 = 1970; * @return The bytes for field1970. */ + @java.lang.Override public com.google.protobuf.ByteString getField1970Bytes() { java.lang.Object ref = field1970_; @@ -63152,6 +65098,7 @@ public java.lang.String getField1970() { * string field_1971 = 1971; * @return The field1971. */ + @java.lang.Override public java.lang.String getField1971() { java.lang.Object ref = field1971_; if (ref instanceof java.lang.String) { @@ -63168,6 +65115,7 @@ public java.lang.String getField1971() { * string field_1971 = 1971; * @return The bytes for field1971. */ + @java.lang.Override public com.google.protobuf.ByteString getField1971Bytes() { java.lang.Object ref = field1971_; @@ -63188,6 +65136,7 @@ public java.lang.String getField1971() { * string field_1972 = 1972; * @return The field1972. */ + @java.lang.Override public java.lang.String getField1972() { java.lang.Object ref = field1972_; if (ref instanceof java.lang.String) { @@ -63204,6 +65153,7 @@ public java.lang.String getField1972() { * string field_1972 = 1972; * @return The bytes for field1972. */ + @java.lang.Override public com.google.protobuf.ByteString getField1972Bytes() { java.lang.Object ref = field1972_; @@ -63224,6 +65174,7 @@ public java.lang.String getField1972() { * string field_1973 = 1973; * @return The field1973. */ + @java.lang.Override public java.lang.String getField1973() { java.lang.Object ref = field1973_; if (ref instanceof java.lang.String) { @@ -63240,6 +65191,7 @@ public java.lang.String getField1973() { * string field_1973 = 1973; * @return The bytes for field1973. */ + @java.lang.Override public com.google.protobuf.ByteString getField1973Bytes() { java.lang.Object ref = field1973_; @@ -63260,6 +65212,7 @@ public java.lang.String getField1973() { * string field_1974 = 1974; * @return The field1974. */ + @java.lang.Override public java.lang.String getField1974() { java.lang.Object ref = field1974_; if (ref instanceof java.lang.String) { @@ -63276,6 +65229,7 @@ public java.lang.String getField1974() { * string field_1974 = 1974; * @return The bytes for field1974. */ + @java.lang.Override public com.google.protobuf.ByteString getField1974Bytes() { java.lang.Object ref = field1974_; @@ -63296,6 +65250,7 @@ public java.lang.String getField1974() { * string field_1975 = 1975; * @return The field1975. */ + @java.lang.Override public java.lang.String getField1975() { java.lang.Object ref = field1975_; if (ref instanceof java.lang.String) { @@ -63312,6 +65267,7 @@ public java.lang.String getField1975() { * string field_1975 = 1975; * @return The bytes for field1975. */ + @java.lang.Override public com.google.protobuf.ByteString getField1975Bytes() { java.lang.Object ref = field1975_; @@ -63332,6 +65288,7 @@ public java.lang.String getField1975() { * string field_1976 = 1976; * @return The field1976. */ + @java.lang.Override public java.lang.String getField1976() { java.lang.Object ref = field1976_; if (ref instanceof java.lang.String) { @@ -63348,6 +65305,7 @@ public java.lang.String getField1976() { * string field_1976 = 1976; * @return The bytes for field1976. */ + @java.lang.Override public com.google.protobuf.ByteString getField1976Bytes() { java.lang.Object ref = field1976_; @@ -63368,6 +65326,7 @@ public java.lang.String getField1976() { * string field_1977 = 1977; * @return The field1977. */ + @java.lang.Override public java.lang.String getField1977() { java.lang.Object ref = field1977_; if (ref instanceof java.lang.String) { @@ -63384,6 +65343,7 @@ public java.lang.String getField1977() { * string field_1977 = 1977; * @return The bytes for field1977. */ + @java.lang.Override public com.google.protobuf.ByteString getField1977Bytes() { java.lang.Object ref = field1977_; @@ -63404,6 +65364,7 @@ public java.lang.String getField1977() { * string field_1978 = 1978; * @return The field1978. */ + @java.lang.Override public java.lang.String getField1978() { java.lang.Object ref = field1978_; if (ref instanceof java.lang.String) { @@ -63420,6 +65381,7 @@ public java.lang.String getField1978() { * string field_1978 = 1978; * @return The bytes for field1978. */ + @java.lang.Override public com.google.protobuf.ByteString getField1978Bytes() { java.lang.Object ref = field1978_; @@ -63440,6 +65402,7 @@ public java.lang.String getField1978() { * string field_1979 = 1979; * @return The field1979. */ + @java.lang.Override public java.lang.String getField1979() { java.lang.Object ref = field1979_; if (ref instanceof java.lang.String) { @@ -63456,6 +65419,7 @@ public java.lang.String getField1979() { * string field_1979 = 1979; * @return The bytes for field1979. */ + @java.lang.Override public com.google.protobuf.ByteString getField1979Bytes() { java.lang.Object ref = field1979_; @@ -63476,6 +65440,7 @@ public java.lang.String getField1979() { * string field_1980 = 1980; * @return The field1980. */ + @java.lang.Override public java.lang.String getField1980() { java.lang.Object ref = field1980_; if (ref instanceof java.lang.String) { @@ -63492,6 +65457,7 @@ public java.lang.String getField1980() { * string field_1980 = 1980; * @return The bytes for field1980. */ + @java.lang.Override public com.google.protobuf.ByteString getField1980Bytes() { java.lang.Object ref = field1980_; @@ -63512,6 +65478,7 @@ public java.lang.String getField1980() { * string field_1981 = 1981; * @return The field1981. */ + @java.lang.Override public java.lang.String getField1981() { java.lang.Object ref = field1981_; if (ref instanceof java.lang.String) { @@ -63528,6 +65495,7 @@ public java.lang.String getField1981() { * string field_1981 = 1981; * @return The bytes for field1981. */ + @java.lang.Override public com.google.protobuf.ByteString getField1981Bytes() { java.lang.Object ref = field1981_; @@ -63548,6 +65516,7 @@ public java.lang.String getField1981() { * string field_1982 = 1982; * @return The field1982. */ + @java.lang.Override public java.lang.String getField1982() { java.lang.Object ref = field1982_; if (ref instanceof java.lang.String) { @@ -63564,6 +65533,7 @@ public java.lang.String getField1982() { * string field_1982 = 1982; * @return The bytes for field1982. */ + @java.lang.Override public com.google.protobuf.ByteString getField1982Bytes() { java.lang.Object ref = field1982_; @@ -63584,6 +65554,7 @@ public java.lang.String getField1982() { * string field_1983 = 1983; * @return The field1983. */ + @java.lang.Override public java.lang.String getField1983() { java.lang.Object ref = field1983_; if (ref instanceof java.lang.String) { @@ -63600,6 +65571,7 @@ public java.lang.String getField1983() { * string field_1983 = 1983; * @return The bytes for field1983. */ + @java.lang.Override public com.google.protobuf.ByteString getField1983Bytes() { java.lang.Object ref = field1983_; @@ -63620,6 +65592,7 @@ public java.lang.String getField1983() { * string field_1984 = 1984; * @return The field1984. */ + @java.lang.Override public java.lang.String getField1984() { java.lang.Object ref = field1984_; if (ref instanceof java.lang.String) { @@ -63636,6 +65609,7 @@ public java.lang.String getField1984() { * string field_1984 = 1984; * @return The bytes for field1984. */ + @java.lang.Override public com.google.protobuf.ByteString getField1984Bytes() { java.lang.Object ref = field1984_; @@ -63656,6 +65630,7 @@ public java.lang.String getField1984() { * string field_1985 = 1985; * @return The field1985. */ + @java.lang.Override public java.lang.String getField1985() { java.lang.Object ref = field1985_; if (ref instanceof java.lang.String) { @@ -63672,6 +65647,7 @@ public java.lang.String getField1985() { * string field_1985 = 1985; * @return The bytes for field1985. */ + @java.lang.Override public com.google.protobuf.ByteString getField1985Bytes() { java.lang.Object ref = field1985_; @@ -63692,6 +65668,7 @@ public java.lang.String getField1985() { * string field_1986 = 1986; * @return The field1986. */ + @java.lang.Override public java.lang.String getField1986() { java.lang.Object ref = field1986_; if (ref instanceof java.lang.String) { @@ -63708,6 +65685,7 @@ public java.lang.String getField1986() { * string field_1986 = 1986; * @return The bytes for field1986. */ + @java.lang.Override public com.google.protobuf.ByteString getField1986Bytes() { java.lang.Object ref = field1986_; @@ -63728,6 +65706,7 @@ public java.lang.String getField1986() { * string field_1987 = 1987; * @return The field1987. */ + @java.lang.Override public java.lang.String getField1987() { java.lang.Object ref = field1987_; if (ref instanceof java.lang.String) { @@ -63744,6 +65723,7 @@ public java.lang.String getField1987() { * string field_1987 = 1987; * @return The bytes for field1987. */ + @java.lang.Override public com.google.protobuf.ByteString getField1987Bytes() { java.lang.Object ref = field1987_; @@ -63764,6 +65744,7 @@ public java.lang.String getField1987() { * string field_1988 = 1988; * @return The field1988. */ + @java.lang.Override public java.lang.String getField1988() { java.lang.Object ref = field1988_; if (ref instanceof java.lang.String) { @@ -63780,6 +65761,7 @@ public java.lang.String getField1988() { * string field_1988 = 1988; * @return The bytes for field1988. */ + @java.lang.Override public com.google.protobuf.ByteString getField1988Bytes() { java.lang.Object ref = field1988_; @@ -63800,6 +65782,7 @@ public java.lang.String getField1988() { * string field_1989 = 1989; * @return The field1989. */ + @java.lang.Override public java.lang.String getField1989() { java.lang.Object ref = field1989_; if (ref instanceof java.lang.String) { @@ -63816,6 +65799,7 @@ public java.lang.String getField1989() { * string field_1989 = 1989; * @return The bytes for field1989. */ + @java.lang.Override public com.google.protobuf.ByteString getField1989Bytes() { java.lang.Object ref = field1989_; @@ -63836,6 +65820,7 @@ public java.lang.String getField1989() { * string field_1990 = 1990; * @return The field1990. */ + @java.lang.Override public java.lang.String getField1990() { java.lang.Object ref = field1990_; if (ref instanceof java.lang.String) { @@ -63852,6 +65837,7 @@ public java.lang.String getField1990() { * string field_1990 = 1990; * @return The bytes for field1990. */ + @java.lang.Override public com.google.protobuf.ByteString getField1990Bytes() { java.lang.Object ref = field1990_; @@ -63872,6 +65858,7 @@ public java.lang.String getField1990() { * string field_1991 = 1991; * @return The field1991. */ + @java.lang.Override public java.lang.String getField1991() { java.lang.Object ref = field1991_; if (ref instanceof java.lang.String) { @@ -63888,6 +65875,7 @@ public java.lang.String getField1991() { * string field_1991 = 1991; * @return The bytes for field1991. */ + @java.lang.Override public com.google.protobuf.ByteString getField1991Bytes() { java.lang.Object ref = field1991_; @@ -63908,6 +65896,7 @@ public java.lang.String getField1991() { * string field_1992 = 1992; * @return The field1992. */ + @java.lang.Override public java.lang.String getField1992() { java.lang.Object ref = field1992_; if (ref instanceof java.lang.String) { @@ -63924,6 +65913,7 @@ public java.lang.String getField1992() { * string field_1992 = 1992; * @return The bytes for field1992. */ + @java.lang.Override public com.google.protobuf.ByteString getField1992Bytes() { java.lang.Object ref = field1992_; @@ -63944,6 +65934,7 @@ public java.lang.String getField1992() { * string field_1993 = 1993; * @return The field1993. */ + @java.lang.Override public java.lang.String getField1993() { java.lang.Object ref = field1993_; if (ref instanceof java.lang.String) { @@ -63960,6 +65951,7 @@ public java.lang.String getField1993() { * string field_1993 = 1993; * @return The bytes for field1993. */ + @java.lang.Override public com.google.protobuf.ByteString getField1993Bytes() { java.lang.Object ref = field1993_; @@ -63980,6 +65972,7 @@ public java.lang.String getField1993() { * string field_1994 = 1994; * @return The field1994. */ + @java.lang.Override public java.lang.String getField1994() { java.lang.Object ref = field1994_; if (ref instanceof java.lang.String) { @@ -63996,6 +65989,7 @@ public java.lang.String getField1994() { * string field_1994 = 1994; * @return The bytes for field1994. */ + @java.lang.Override public com.google.protobuf.ByteString getField1994Bytes() { java.lang.Object ref = field1994_; @@ -64016,6 +66010,7 @@ public java.lang.String getField1994() { * string field_1995 = 1995; * @return The field1995. */ + @java.lang.Override public java.lang.String getField1995() { java.lang.Object ref = field1995_; if (ref instanceof java.lang.String) { @@ -64032,6 +66027,7 @@ public java.lang.String getField1995() { * string field_1995 = 1995; * @return The bytes for field1995. */ + @java.lang.Override public com.google.protobuf.ByteString getField1995Bytes() { java.lang.Object ref = field1995_; @@ -64052,6 +66048,7 @@ public java.lang.String getField1995() { * string field_1996 = 1996; * @return The field1996. */ + @java.lang.Override public java.lang.String getField1996() { java.lang.Object ref = field1996_; if (ref instanceof java.lang.String) { @@ -64068,6 +66065,7 @@ public java.lang.String getField1996() { * string field_1996 = 1996; * @return The bytes for field1996. */ + @java.lang.Override public com.google.protobuf.ByteString getField1996Bytes() { java.lang.Object ref = field1996_; @@ -64088,6 +66086,7 @@ public java.lang.String getField1996() { * string field_1997 = 1997; * @return The field1997. */ + @java.lang.Override public java.lang.String getField1997() { java.lang.Object ref = field1997_; if (ref instanceof java.lang.String) { @@ -64104,6 +66103,7 @@ public java.lang.String getField1997() { * string field_1997 = 1997; * @return The bytes for field1997. */ + @java.lang.Override public com.google.protobuf.ByteString getField1997Bytes() { java.lang.Object ref = field1997_; @@ -64124,6 +66124,7 @@ public java.lang.String getField1997() { * string field_1998 = 1998; * @return The field1998. */ + @java.lang.Override public java.lang.String getField1998() { java.lang.Object ref = field1998_; if (ref instanceof java.lang.String) { @@ -64140,6 +66141,7 @@ public java.lang.String getField1998() { * string field_1998 = 1998; * @return The bytes for field1998. */ + @java.lang.Override public com.google.protobuf.ByteString getField1998Bytes() { java.lang.Object ref = field1998_; @@ -64160,6 +66162,7 @@ public java.lang.String getField1998() { * string field_1999 = 1999; * @return The field1999. */ + @java.lang.Override public java.lang.String getField1999() { java.lang.Object ref = field1999_; if (ref instanceof java.lang.String) { @@ -64176,6 +66179,7 @@ public java.lang.String getField1999() { * string field_1999 = 1999; * @return The bytes for field1999. */ + @java.lang.Override public com.google.protobuf.ByteString getField1999Bytes() { java.lang.Object ref = field1999_; @@ -157531,1680 +159535,3080 @@ public interface MessageWithHugeOneofOrBuilder extends // @@protoc_insertion_point(interface_extends:pbandk.testpb.MessageWithHugeOneof) com.google.protobuf.MessageOrBuilder { + /** + * int32 oneof_1000 = 1000; + * @return Whether the oneof1000 field is set. + */ + boolean hasOneof1000(); /** * int32 oneof_1000 = 1000; * @return The oneof1000. */ int getOneof1000(); + /** + * int32 oneof_1001 = 1001; + * @return Whether the oneof1001 field is set. + */ + boolean hasOneof1001(); /** * int32 oneof_1001 = 1001; * @return The oneof1001. */ int getOneof1001(); + /** + * int32 oneof_1002 = 1002; + * @return Whether the oneof1002 field is set. + */ + boolean hasOneof1002(); /** * int32 oneof_1002 = 1002; * @return The oneof1002. */ int getOneof1002(); + /** + * int32 oneof_1003 = 1003; + * @return Whether the oneof1003 field is set. + */ + boolean hasOneof1003(); /** * int32 oneof_1003 = 1003; * @return The oneof1003. */ int getOneof1003(); + /** + * int32 oneof_1004 = 1004; + * @return Whether the oneof1004 field is set. + */ + boolean hasOneof1004(); /** * int32 oneof_1004 = 1004; * @return The oneof1004. */ int getOneof1004(); + /** + * int32 oneof_1005 = 1005; + * @return Whether the oneof1005 field is set. + */ + boolean hasOneof1005(); /** * int32 oneof_1005 = 1005; * @return The oneof1005. */ int getOneof1005(); + /** + * int32 oneof_1006 = 1006; + * @return Whether the oneof1006 field is set. + */ + boolean hasOneof1006(); /** * int32 oneof_1006 = 1006; * @return The oneof1006. */ int getOneof1006(); + /** + * int32 oneof_1007 = 1007; + * @return Whether the oneof1007 field is set. + */ + boolean hasOneof1007(); /** * int32 oneof_1007 = 1007; * @return The oneof1007. */ int getOneof1007(); + /** + * int32 oneof_1008 = 1008; + * @return Whether the oneof1008 field is set. + */ + boolean hasOneof1008(); /** * int32 oneof_1008 = 1008; * @return The oneof1008. */ int getOneof1008(); + /** + * int32 oneof_1009 = 1009; + * @return Whether the oneof1009 field is set. + */ + boolean hasOneof1009(); /** * int32 oneof_1009 = 1009; * @return The oneof1009. */ int getOneof1009(); + /** + * int32 oneof_1010 = 1010; + * @return Whether the oneof1010 field is set. + */ + boolean hasOneof1010(); /** * int32 oneof_1010 = 1010; * @return The oneof1010. */ int getOneof1010(); + /** + * int32 oneof_1011 = 1011; + * @return Whether the oneof1011 field is set. + */ + boolean hasOneof1011(); /** * int32 oneof_1011 = 1011; * @return The oneof1011. */ int getOneof1011(); + /** + * int32 oneof_1012 = 1012; + * @return Whether the oneof1012 field is set. + */ + boolean hasOneof1012(); /** * int32 oneof_1012 = 1012; * @return The oneof1012. */ int getOneof1012(); + /** + * int32 oneof_1013 = 1013; + * @return Whether the oneof1013 field is set. + */ + boolean hasOneof1013(); /** * int32 oneof_1013 = 1013; * @return The oneof1013. */ int getOneof1013(); + /** + * int32 oneof_1014 = 1014; + * @return Whether the oneof1014 field is set. + */ + boolean hasOneof1014(); /** * int32 oneof_1014 = 1014; * @return The oneof1014. */ int getOneof1014(); + /** + * int32 oneof_1015 = 1015; + * @return Whether the oneof1015 field is set. + */ + boolean hasOneof1015(); /** * int32 oneof_1015 = 1015; * @return The oneof1015. */ int getOneof1015(); + /** + * int32 oneof_1016 = 1016; + * @return Whether the oneof1016 field is set. + */ + boolean hasOneof1016(); /** * int32 oneof_1016 = 1016; * @return The oneof1016. */ int getOneof1016(); + /** + * int32 oneof_1017 = 1017; + * @return Whether the oneof1017 field is set. + */ + boolean hasOneof1017(); /** * int32 oneof_1017 = 1017; * @return The oneof1017. */ int getOneof1017(); + /** + * int32 oneof_1018 = 1018; + * @return Whether the oneof1018 field is set. + */ + boolean hasOneof1018(); /** * int32 oneof_1018 = 1018; * @return The oneof1018. */ int getOneof1018(); + /** + * int32 oneof_1019 = 1019; + * @return Whether the oneof1019 field is set. + */ + boolean hasOneof1019(); /** * int32 oneof_1019 = 1019; * @return The oneof1019. */ int getOneof1019(); + /** + * int32 oneof_1020 = 1020; + * @return Whether the oneof1020 field is set. + */ + boolean hasOneof1020(); /** * int32 oneof_1020 = 1020; * @return The oneof1020. */ int getOneof1020(); + /** + * int32 oneof_1021 = 1021; + * @return Whether the oneof1021 field is set. + */ + boolean hasOneof1021(); /** * int32 oneof_1021 = 1021; * @return The oneof1021. */ int getOneof1021(); + /** + * int32 oneof_1022 = 1022; + * @return Whether the oneof1022 field is set. + */ + boolean hasOneof1022(); /** * int32 oneof_1022 = 1022; * @return The oneof1022. */ int getOneof1022(); + /** + * int32 oneof_1023 = 1023; + * @return Whether the oneof1023 field is set. + */ + boolean hasOneof1023(); /** * int32 oneof_1023 = 1023; * @return The oneof1023. */ int getOneof1023(); + /** + * int32 oneof_1024 = 1024; + * @return Whether the oneof1024 field is set. + */ + boolean hasOneof1024(); /** * int32 oneof_1024 = 1024; * @return The oneof1024. */ int getOneof1024(); + /** + * int32 oneof_1025 = 1025; + * @return Whether the oneof1025 field is set. + */ + boolean hasOneof1025(); /** * int32 oneof_1025 = 1025; * @return The oneof1025. */ int getOneof1025(); + /** + * int32 oneof_1026 = 1026; + * @return Whether the oneof1026 field is set. + */ + boolean hasOneof1026(); /** * int32 oneof_1026 = 1026; * @return The oneof1026. */ int getOneof1026(); + /** + * int32 oneof_1027 = 1027; + * @return Whether the oneof1027 field is set. + */ + boolean hasOneof1027(); /** * int32 oneof_1027 = 1027; * @return The oneof1027. */ int getOneof1027(); + /** + * int32 oneof_1028 = 1028; + * @return Whether the oneof1028 field is set. + */ + boolean hasOneof1028(); /** * int32 oneof_1028 = 1028; * @return The oneof1028. */ int getOneof1028(); + /** + * int32 oneof_1029 = 1029; + * @return Whether the oneof1029 field is set. + */ + boolean hasOneof1029(); /** * int32 oneof_1029 = 1029; * @return The oneof1029. */ int getOneof1029(); + /** + * int32 oneof_1030 = 1030; + * @return Whether the oneof1030 field is set. + */ + boolean hasOneof1030(); /** * int32 oneof_1030 = 1030; * @return The oneof1030. */ int getOneof1030(); + /** + * int32 oneof_1031 = 1031; + * @return Whether the oneof1031 field is set. + */ + boolean hasOneof1031(); /** * int32 oneof_1031 = 1031; * @return The oneof1031. */ int getOneof1031(); + /** + * int32 oneof_1032 = 1032; + * @return Whether the oneof1032 field is set. + */ + boolean hasOneof1032(); /** * int32 oneof_1032 = 1032; * @return The oneof1032. */ int getOneof1032(); + /** + * int32 oneof_1033 = 1033; + * @return Whether the oneof1033 field is set. + */ + boolean hasOneof1033(); /** * int32 oneof_1033 = 1033; * @return The oneof1033. */ int getOneof1033(); + /** + * int32 oneof_1034 = 1034; + * @return Whether the oneof1034 field is set. + */ + boolean hasOneof1034(); /** * int32 oneof_1034 = 1034; * @return The oneof1034. */ int getOneof1034(); + /** + * int32 oneof_1035 = 1035; + * @return Whether the oneof1035 field is set. + */ + boolean hasOneof1035(); /** * int32 oneof_1035 = 1035; * @return The oneof1035. */ int getOneof1035(); + /** + * int32 oneof_1036 = 1036; + * @return Whether the oneof1036 field is set. + */ + boolean hasOneof1036(); /** * int32 oneof_1036 = 1036; * @return The oneof1036. */ int getOneof1036(); + /** + * int32 oneof_1037 = 1037; + * @return Whether the oneof1037 field is set. + */ + boolean hasOneof1037(); /** * int32 oneof_1037 = 1037; * @return The oneof1037. */ int getOneof1037(); + /** + * int32 oneof_1038 = 1038; + * @return Whether the oneof1038 field is set. + */ + boolean hasOneof1038(); /** * int32 oneof_1038 = 1038; * @return The oneof1038. */ int getOneof1038(); + /** + * int32 oneof_1039 = 1039; + * @return Whether the oneof1039 field is set. + */ + boolean hasOneof1039(); /** * int32 oneof_1039 = 1039; * @return The oneof1039. */ int getOneof1039(); + /** + * int32 oneof_1040 = 1040; + * @return Whether the oneof1040 field is set. + */ + boolean hasOneof1040(); /** * int32 oneof_1040 = 1040; * @return The oneof1040. */ int getOneof1040(); + /** + * int32 oneof_1041 = 1041; + * @return Whether the oneof1041 field is set. + */ + boolean hasOneof1041(); /** * int32 oneof_1041 = 1041; * @return The oneof1041. */ int getOneof1041(); + /** + * int32 oneof_1042 = 1042; + * @return Whether the oneof1042 field is set. + */ + boolean hasOneof1042(); /** * int32 oneof_1042 = 1042; * @return The oneof1042. */ int getOneof1042(); + /** + * int32 oneof_1043 = 1043; + * @return Whether the oneof1043 field is set. + */ + boolean hasOneof1043(); /** * int32 oneof_1043 = 1043; * @return The oneof1043. */ int getOneof1043(); + /** + * int32 oneof_1044 = 1044; + * @return Whether the oneof1044 field is set. + */ + boolean hasOneof1044(); /** * int32 oneof_1044 = 1044; * @return The oneof1044. */ int getOneof1044(); + /** + * int32 oneof_1045 = 1045; + * @return Whether the oneof1045 field is set. + */ + boolean hasOneof1045(); /** * int32 oneof_1045 = 1045; * @return The oneof1045. */ int getOneof1045(); + /** + * int32 oneof_1046 = 1046; + * @return Whether the oneof1046 field is set. + */ + boolean hasOneof1046(); /** * int32 oneof_1046 = 1046; * @return The oneof1046. */ int getOneof1046(); + /** + * int32 oneof_1047 = 1047; + * @return Whether the oneof1047 field is set. + */ + boolean hasOneof1047(); /** * int32 oneof_1047 = 1047; * @return The oneof1047. */ int getOneof1047(); + /** + * int32 oneof_1048 = 1048; + * @return Whether the oneof1048 field is set. + */ + boolean hasOneof1048(); /** * int32 oneof_1048 = 1048; * @return The oneof1048. */ int getOneof1048(); + /** + * int32 oneof_1049 = 1049; + * @return Whether the oneof1049 field is set. + */ + boolean hasOneof1049(); /** * int32 oneof_1049 = 1049; * @return The oneof1049. */ int getOneof1049(); + /** + * int32 oneof_1050 = 1050; + * @return Whether the oneof1050 field is set. + */ + boolean hasOneof1050(); /** * int32 oneof_1050 = 1050; * @return The oneof1050. */ int getOneof1050(); + /** + * int32 oneof_1051 = 1051; + * @return Whether the oneof1051 field is set. + */ + boolean hasOneof1051(); /** * int32 oneof_1051 = 1051; * @return The oneof1051. */ int getOneof1051(); + /** + * int32 oneof_1052 = 1052; + * @return Whether the oneof1052 field is set. + */ + boolean hasOneof1052(); /** * int32 oneof_1052 = 1052; * @return The oneof1052. */ int getOneof1052(); + /** + * int32 oneof_1053 = 1053; + * @return Whether the oneof1053 field is set. + */ + boolean hasOneof1053(); /** * int32 oneof_1053 = 1053; * @return The oneof1053. */ int getOneof1053(); + /** + * int32 oneof_1054 = 1054; + * @return Whether the oneof1054 field is set. + */ + boolean hasOneof1054(); /** * int32 oneof_1054 = 1054; * @return The oneof1054. */ int getOneof1054(); + /** + * int32 oneof_1055 = 1055; + * @return Whether the oneof1055 field is set. + */ + boolean hasOneof1055(); /** * int32 oneof_1055 = 1055; * @return The oneof1055. */ int getOneof1055(); + /** + * int32 oneof_1056 = 1056; + * @return Whether the oneof1056 field is set. + */ + boolean hasOneof1056(); /** * int32 oneof_1056 = 1056; * @return The oneof1056. */ int getOneof1056(); + /** + * int32 oneof_1057 = 1057; + * @return Whether the oneof1057 field is set. + */ + boolean hasOneof1057(); /** * int32 oneof_1057 = 1057; * @return The oneof1057. */ int getOneof1057(); + /** + * int32 oneof_1058 = 1058; + * @return Whether the oneof1058 field is set. + */ + boolean hasOneof1058(); /** * int32 oneof_1058 = 1058; * @return The oneof1058. */ int getOneof1058(); + /** + * int32 oneof_1059 = 1059; + * @return Whether the oneof1059 field is set. + */ + boolean hasOneof1059(); /** * int32 oneof_1059 = 1059; * @return The oneof1059. */ int getOneof1059(); + /** + * int32 oneof_1060 = 1060; + * @return Whether the oneof1060 field is set. + */ + boolean hasOneof1060(); /** * int32 oneof_1060 = 1060; * @return The oneof1060. */ int getOneof1060(); + /** + * int32 oneof_1061 = 1061; + * @return Whether the oneof1061 field is set. + */ + boolean hasOneof1061(); /** * int32 oneof_1061 = 1061; * @return The oneof1061. */ int getOneof1061(); + /** + * int32 oneof_1062 = 1062; + * @return Whether the oneof1062 field is set. + */ + boolean hasOneof1062(); /** * int32 oneof_1062 = 1062; * @return The oneof1062. */ int getOneof1062(); + /** + * int32 oneof_1063 = 1063; + * @return Whether the oneof1063 field is set. + */ + boolean hasOneof1063(); /** * int32 oneof_1063 = 1063; * @return The oneof1063. */ int getOneof1063(); + /** + * int32 oneof_1064 = 1064; + * @return Whether the oneof1064 field is set. + */ + boolean hasOneof1064(); /** * int32 oneof_1064 = 1064; * @return The oneof1064. */ int getOneof1064(); + /** + * int32 oneof_1065 = 1065; + * @return Whether the oneof1065 field is set. + */ + boolean hasOneof1065(); /** * int32 oneof_1065 = 1065; * @return The oneof1065. */ int getOneof1065(); + /** + * int32 oneof_1066 = 1066; + * @return Whether the oneof1066 field is set. + */ + boolean hasOneof1066(); /** * int32 oneof_1066 = 1066; * @return The oneof1066. */ int getOneof1066(); + /** + * int32 oneof_1067 = 1067; + * @return Whether the oneof1067 field is set. + */ + boolean hasOneof1067(); /** * int32 oneof_1067 = 1067; * @return The oneof1067. */ int getOneof1067(); + /** + * int32 oneof_1068 = 1068; + * @return Whether the oneof1068 field is set. + */ + boolean hasOneof1068(); /** * int32 oneof_1068 = 1068; * @return The oneof1068. */ int getOneof1068(); + /** + * int32 oneof_1069 = 1069; + * @return Whether the oneof1069 field is set. + */ + boolean hasOneof1069(); /** * int32 oneof_1069 = 1069; * @return The oneof1069. */ int getOneof1069(); + /** + * int32 oneof_1070 = 1070; + * @return Whether the oneof1070 field is set. + */ + boolean hasOneof1070(); /** * int32 oneof_1070 = 1070; * @return The oneof1070. */ int getOneof1070(); + /** + * int32 oneof_1071 = 1071; + * @return Whether the oneof1071 field is set. + */ + boolean hasOneof1071(); /** * int32 oneof_1071 = 1071; * @return The oneof1071. */ int getOneof1071(); + /** + * int32 oneof_1072 = 1072; + * @return Whether the oneof1072 field is set. + */ + boolean hasOneof1072(); /** * int32 oneof_1072 = 1072; * @return The oneof1072. */ int getOneof1072(); + /** + * int32 oneof_1073 = 1073; + * @return Whether the oneof1073 field is set. + */ + boolean hasOneof1073(); /** * int32 oneof_1073 = 1073; * @return The oneof1073. */ int getOneof1073(); + /** + * int32 oneof_1074 = 1074; + * @return Whether the oneof1074 field is set. + */ + boolean hasOneof1074(); /** * int32 oneof_1074 = 1074; * @return The oneof1074. */ int getOneof1074(); + /** + * int32 oneof_1075 = 1075; + * @return Whether the oneof1075 field is set. + */ + boolean hasOneof1075(); /** * int32 oneof_1075 = 1075; * @return The oneof1075. */ int getOneof1075(); + /** + * int32 oneof_1076 = 1076; + * @return Whether the oneof1076 field is set. + */ + boolean hasOneof1076(); /** * int32 oneof_1076 = 1076; * @return The oneof1076. */ int getOneof1076(); + /** + * int32 oneof_1077 = 1077; + * @return Whether the oneof1077 field is set. + */ + boolean hasOneof1077(); /** * int32 oneof_1077 = 1077; * @return The oneof1077. */ int getOneof1077(); + /** + * int32 oneof_1078 = 1078; + * @return Whether the oneof1078 field is set. + */ + boolean hasOneof1078(); /** * int32 oneof_1078 = 1078; * @return The oneof1078. */ int getOneof1078(); + /** + * int32 oneof_1079 = 1079; + * @return Whether the oneof1079 field is set. + */ + boolean hasOneof1079(); /** * int32 oneof_1079 = 1079; * @return The oneof1079. */ int getOneof1079(); + /** + * int32 oneof_1080 = 1080; + * @return Whether the oneof1080 field is set. + */ + boolean hasOneof1080(); /** * int32 oneof_1080 = 1080; * @return The oneof1080. */ int getOneof1080(); + /** + * int32 oneof_1081 = 1081; + * @return Whether the oneof1081 field is set. + */ + boolean hasOneof1081(); /** * int32 oneof_1081 = 1081; * @return The oneof1081. */ int getOneof1081(); + /** + * int32 oneof_1082 = 1082; + * @return Whether the oneof1082 field is set. + */ + boolean hasOneof1082(); /** * int32 oneof_1082 = 1082; * @return The oneof1082. */ int getOneof1082(); + /** + * int32 oneof_1083 = 1083; + * @return Whether the oneof1083 field is set. + */ + boolean hasOneof1083(); /** * int32 oneof_1083 = 1083; * @return The oneof1083. */ int getOneof1083(); + /** + * int32 oneof_1084 = 1084; + * @return Whether the oneof1084 field is set. + */ + boolean hasOneof1084(); /** * int32 oneof_1084 = 1084; * @return The oneof1084. */ int getOneof1084(); + /** + * int32 oneof_1085 = 1085; + * @return Whether the oneof1085 field is set. + */ + boolean hasOneof1085(); /** * int32 oneof_1085 = 1085; * @return The oneof1085. */ int getOneof1085(); + /** + * int32 oneof_1086 = 1086; + * @return Whether the oneof1086 field is set. + */ + boolean hasOneof1086(); /** * int32 oneof_1086 = 1086; * @return The oneof1086. */ int getOneof1086(); + /** + * int32 oneof_1087 = 1087; + * @return Whether the oneof1087 field is set. + */ + boolean hasOneof1087(); /** * int32 oneof_1087 = 1087; * @return The oneof1087. */ int getOneof1087(); + /** + * int32 oneof_1088 = 1088; + * @return Whether the oneof1088 field is set. + */ + boolean hasOneof1088(); /** * int32 oneof_1088 = 1088; * @return The oneof1088. */ int getOneof1088(); + /** + * int32 oneof_1089 = 1089; + * @return Whether the oneof1089 field is set. + */ + boolean hasOneof1089(); /** * int32 oneof_1089 = 1089; * @return The oneof1089. */ int getOneof1089(); + /** + * int32 oneof_1090 = 1090; + * @return Whether the oneof1090 field is set. + */ + boolean hasOneof1090(); /** * int32 oneof_1090 = 1090; * @return The oneof1090. */ int getOneof1090(); + /** + * int32 oneof_1091 = 1091; + * @return Whether the oneof1091 field is set. + */ + boolean hasOneof1091(); /** * int32 oneof_1091 = 1091; * @return The oneof1091. */ int getOneof1091(); + /** + * int32 oneof_1092 = 1092; + * @return Whether the oneof1092 field is set. + */ + boolean hasOneof1092(); /** * int32 oneof_1092 = 1092; * @return The oneof1092. */ int getOneof1092(); + /** + * int32 oneof_1093 = 1093; + * @return Whether the oneof1093 field is set. + */ + boolean hasOneof1093(); /** * int32 oneof_1093 = 1093; * @return The oneof1093. */ int getOneof1093(); + /** + * int32 oneof_1094 = 1094; + * @return Whether the oneof1094 field is set. + */ + boolean hasOneof1094(); /** * int32 oneof_1094 = 1094; * @return The oneof1094. */ int getOneof1094(); + /** + * int32 oneof_1095 = 1095; + * @return Whether the oneof1095 field is set. + */ + boolean hasOneof1095(); /** * int32 oneof_1095 = 1095; * @return The oneof1095. */ int getOneof1095(); + /** + * int32 oneof_1096 = 1096; + * @return Whether the oneof1096 field is set. + */ + boolean hasOneof1096(); /** * int32 oneof_1096 = 1096; * @return The oneof1096. */ int getOneof1096(); + /** + * int32 oneof_1097 = 1097; + * @return Whether the oneof1097 field is set. + */ + boolean hasOneof1097(); /** * int32 oneof_1097 = 1097; * @return The oneof1097. */ int getOneof1097(); + /** + * int32 oneof_1098 = 1098; + * @return Whether the oneof1098 field is set. + */ + boolean hasOneof1098(); /** * int32 oneof_1098 = 1098; * @return The oneof1098. */ int getOneof1098(); + /** + * int32 oneof_1099 = 1099; + * @return Whether the oneof1099 field is set. + */ + boolean hasOneof1099(); /** * int32 oneof_1099 = 1099; * @return The oneof1099. */ int getOneof1099(); + /** + * int32 oneof_1100 = 1100; + * @return Whether the oneof1100 field is set. + */ + boolean hasOneof1100(); /** * int32 oneof_1100 = 1100; * @return The oneof1100. */ int getOneof1100(); + /** + * int32 oneof_1101 = 1101; + * @return Whether the oneof1101 field is set. + */ + boolean hasOneof1101(); /** * int32 oneof_1101 = 1101; * @return The oneof1101. */ int getOneof1101(); + /** + * int32 oneof_1102 = 1102; + * @return Whether the oneof1102 field is set. + */ + boolean hasOneof1102(); /** * int32 oneof_1102 = 1102; * @return The oneof1102. */ int getOneof1102(); + /** + * int32 oneof_1103 = 1103; + * @return Whether the oneof1103 field is set. + */ + boolean hasOneof1103(); /** * int32 oneof_1103 = 1103; * @return The oneof1103. */ int getOneof1103(); + /** + * int32 oneof_1104 = 1104; + * @return Whether the oneof1104 field is set. + */ + boolean hasOneof1104(); /** * int32 oneof_1104 = 1104; * @return The oneof1104. */ int getOneof1104(); + /** + * int32 oneof_1105 = 1105; + * @return Whether the oneof1105 field is set. + */ + boolean hasOneof1105(); /** * int32 oneof_1105 = 1105; * @return The oneof1105. */ int getOneof1105(); + /** + * int32 oneof_1106 = 1106; + * @return Whether the oneof1106 field is set. + */ + boolean hasOneof1106(); /** * int32 oneof_1106 = 1106; * @return The oneof1106. */ int getOneof1106(); + /** + * int32 oneof_1107 = 1107; + * @return Whether the oneof1107 field is set. + */ + boolean hasOneof1107(); /** * int32 oneof_1107 = 1107; * @return The oneof1107. */ int getOneof1107(); + /** + * int32 oneof_1108 = 1108; + * @return Whether the oneof1108 field is set. + */ + boolean hasOneof1108(); /** * int32 oneof_1108 = 1108; * @return The oneof1108. */ int getOneof1108(); + /** + * int32 oneof_1109 = 1109; + * @return Whether the oneof1109 field is set. + */ + boolean hasOneof1109(); /** * int32 oneof_1109 = 1109; * @return The oneof1109. */ int getOneof1109(); + /** + * int32 oneof_1110 = 1110; + * @return Whether the oneof1110 field is set. + */ + boolean hasOneof1110(); /** * int32 oneof_1110 = 1110; * @return The oneof1110. */ int getOneof1110(); + /** + * int32 oneof_1111 = 1111; + * @return Whether the oneof1111 field is set. + */ + boolean hasOneof1111(); /** * int32 oneof_1111 = 1111; * @return The oneof1111. */ int getOneof1111(); + /** + * int32 oneof_1112 = 1112; + * @return Whether the oneof1112 field is set. + */ + boolean hasOneof1112(); /** * int32 oneof_1112 = 1112; * @return The oneof1112. */ int getOneof1112(); + /** + * int32 oneof_1113 = 1113; + * @return Whether the oneof1113 field is set. + */ + boolean hasOneof1113(); /** * int32 oneof_1113 = 1113; * @return The oneof1113. */ int getOneof1113(); + /** + * int32 oneof_1114 = 1114; + * @return Whether the oneof1114 field is set. + */ + boolean hasOneof1114(); /** * int32 oneof_1114 = 1114; * @return The oneof1114. */ int getOneof1114(); + /** + * int32 oneof_1115 = 1115; + * @return Whether the oneof1115 field is set. + */ + boolean hasOneof1115(); /** * int32 oneof_1115 = 1115; * @return The oneof1115. */ int getOneof1115(); + /** + * int32 oneof_1116 = 1116; + * @return Whether the oneof1116 field is set. + */ + boolean hasOneof1116(); /** * int32 oneof_1116 = 1116; * @return The oneof1116. */ int getOneof1116(); + /** + * int32 oneof_1117 = 1117; + * @return Whether the oneof1117 field is set. + */ + boolean hasOneof1117(); /** * int32 oneof_1117 = 1117; * @return The oneof1117. */ int getOneof1117(); + /** + * int32 oneof_1118 = 1118; + * @return Whether the oneof1118 field is set. + */ + boolean hasOneof1118(); /** * int32 oneof_1118 = 1118; * @return The oneof1118. */ int getOneof1118(); + /** + * int32 oneof_1119 = 1119; + * @return Whether the oneof1119 field is set. + */ + boolean hasOneof1119(); /** * int32 oneof_1119 = 1119; * @return The oneof1119. */ int getOneof1119(); + /** + * int32 oneof_1120 = 1120; + * @return Whether the oneof1120 field is set. + */ + boolean hasOneof1120(); /** * int32 oneof_1120 = 1120; * @return The oneof1120. */ int getOneof1120(); + /** + * int32 oneof_1121 = 1121; + * @return Whether the oneof1121 field is set. + */ + boolean hasOneof1121(); /** * int32 oneof_1121 = 1121; * @return The oneof1121. */ int getOneof1121(); + /** + * int32 oneof_1122 = 1122; + * @return Whether the oneof1122 field is set. + */ + boolean hasOneof1122(); /** * int32 oneof_1122 = 1122; * @return The oneof1122. */ int getOneof1122(); + /** + * int32 oneof_1123 = 1123; + * @return Whether the oneof1123 field is set. + */ + boolean hasOneof1123(); /** * int32 oneof_1123 = 1123; * @return The oneof1123. */ int getOneof1123(); + /** + * int32 oneof_1124 = 1124; + * @return Whether the oneof1124 field is set. + */ + boolean hasOneof1124(); /** * int32 oneof_1124 = 1124; * @return The oneof1124. */ int getOneof1124(); + /** + * int32 oneof_1125 = 1125; + * @return Whether the oneof1125 field is set. + */ + boolean hasOneof1125(); /** * int32 oneof_1125 = 1125; * @return The oneof1125. */ int getOneof1125(); + /** + * int32 oneof_1126 = 1126; + * @return Whether the oneof1126 field is set. + */ + boolean hasOneof1126(); /** * int32 oneof_1126 = 1126; * @return The oneof1126. */ int getOneof1126(); + /** + * int32 oneof_1127 = 1127; + * @return Whether the oneof1127 field is set. + */ + boolean hasOneof1127(); /** * int32 oneof_1127 = 1127; * @return The oneof1127. */ int getOneof1127(); + /** + * int32 oneof_1128 = 1128; + * @return Whether the oneof1128 field is set. + */ + boolean hasOneof1128(); /** * int32 oneof_1128 = 1128; * @return The oneof1128. */ int getOneof1128(); + /** + * int32 oneof_1129 = 1129; + * @return Whether the oneof1129 field is set. + */ + boolean hasOneof1129(); /** * int32 oneof_1129 = 1129; * @return The oneof1129. */ int getOneof1129(); + /** + * int32 oneof_1130 = 1130; + * @return Whether the oneof1130 field is set. + */ + boolean hasOneof1130(); /** * int32 oneof_1130 = 1130; * @return The oneof1130. */ int getOneof1130(); + /** + * int32 oneof_1131 = 1131; + * @return Whether the oneof1131 field is set. + */ + boolean hasOneof1131(); /** * int32 oneof_1131 = 1131; * @return The oneof1131. */ int getOneof1131(); + /** + * int32 oneof_1132 = 1132; + * @return Whether the oneof1132 field is set. + */ + boolean hasOneof1132(); /** * int32 oneof_1132 = 1132; * @return The oneof1132. */ int getOneof1132(); + /** + * int32 oneof_1133 = 1133; + * @return Whether the oneof1133 field is set. + */ + boolean hasOneof1133(); /** * int32 oneof_1133 = 1133; * @return The oneof1133. */ int getOneof1133(); + /** + * int32 oneof_1134 = 1134; + * @return Whether the oneof1134 field is set. + */ + boolean hasOneof1134(); /** * int32 oneof_1134 = 1134; * @return The oneof1134. */ int getOneof1134(); + /** + * int32 oneof_1135 = 1135; + * @return Whether the oneof1135 field is set. + */ + boolean hasOneof1135(); /** * int32 oneof_1135 = 1135; * @return The oneof1135. */ int getOneof1135(); + /** + * int32 oneof_1136 = 1136; + * @return Whether the oneof1136 field is set. + */ + boolean hasOneof1136(); /** * int32 oneof_1136 = 1136; * @return The oneof1136. */ int getOneof1136(); + /** + * int32 oneof_1137 = 1137; + * @return Whether the oneof1137 field is set. + */ + boolean hasOneof1137(); /** * int32 oneof_1137 = 1137; * @return The oneof1137. */ int getOneof1137(); + /** + * int32 oneof_1138 = 1138; + * @return Whether the oneof1138 field is set. + */ + boolean hasOneof1138(); /** * int32 oneof_1138 = 1138; * @return The oneof1138. */ int getOneof1138(); + /** + * int32 oneof_1139 = 1139; + * @return Whether the oneof1139 field is set. + */ + boolean hasOneof1139(); /** * int32 oneof_1139 = 1139; * @return The oneof1139. */ int getOneof1139(); + /** + * int32 oneof_1140 = 1140; + * @return Whether the oneof1140 field is set. + */ + boolean hasOneof1140(); /** * int32 oneof_1140 = 1140; * @return The oneof1140. */ int getOneof1140(); + /** + * int32 oneof_1141 = 1141; + * @return Whether the oneof1141 field is set. + */ + boolean hasOneof1141(); /** * int32 oneof_1141 = 1141; * @return The oneof1141. */ int getOneof1141(); + /** + * int32 oneof_1142 = 1142; + * @return Whether the oneof1142 field is set. + */ + boolean hasOneof1142(); /** * int32 oneof_1142 = 1142; * @return The oneof1142. */ int getOneof1142(); + /** + * int32 oneof_1143 = 1143; + * @return Whether the oneof1143 field is set. + */ + boolean hasOneof1143(); /** * int32 oneof_1143 = 1143; * @return The oneof1143. */ int getOneof1143(); + /** + * int32 oneof_1144 = 1144; + * @return Whether the oneof1144 field is set. + */ + boolean hasOneof1144(); /** * int32 oneof_1144 = 1144; * @return The oneof1144. */ int getOneof1144(); + /** + * int32 oneof_1145 = 1145; + * @return Whether the oneof1145 field is set. + */ + boolean hasOneof1145(); /** * int32 oneof_1145 = 1145; * @return The oneof1145. */ int getOneof1145(); + /** + * int32 oneof_1146 = 1146; + * @return Whether the oneof1146 field is set. + */ + boolean hasOneof1146(); /** * int32 oneof_1146 = 1146; * @return The oneof1146. */ int getOneof1146(); + /** + * int32 oneof_1147 = 1147; + * @return Whether the oneof1147 field is set. + */ + boolean hasOneof1147(); /** * int32 oneof_1147 = 1147; * @return The oneof1147. */ int getOneof1147(); + /** + * int32 oneof_1148 = 1148; + * @return Whether the oneof1148 field is set. + */ + boolean hasOneof1148(); /** * int32 oneof_1148 = 1148; * @return The oneof1148. */ int getOneof1148(); + /** + * int32 oneof_1149 = 1149; + * @return Whether the oneof1149 field is set. + */ + boolean hasOneof1149(); /** * int32 oneof_1149 = 1149; * @return The oneof1149. */ int getOneof1149(); + /** + * int32 oneof_1150 = 1150; + * @return Whether the oneof1150 field is set. + */ + boolean hasOneof1150(); /** * int32 oneof_1150 = 1150; * @return The oneof1150. */ int getOneof1150(); + /** + * int32 oneof_1151 = 1151; + * @return Whether the oneof1151 field is set. + */ + boolean hasOneof1151(); /** * int32 oneof_1151 = 1151; * @return The oneof1151. */ int getOneof1151(); + /** + * int32 oneof_1152 = 1152; + * @return Whether the oneof1152 field is set. + */ + boolean hasOneof1152(); /** * int32 oneof_1152 = 1152; * @return The oneof1152. */ int getOneof1152(); + /** + * int32 oneof_1153 = 1153; + * @return Whether the oneof1153 field is set. + */ + boolean hasOneof1153(); /** * int32 oneof_1153 = 1153; * @return The oneof1153. */ int getOneof1153(); + /** + * int32 oneof_1154 = 1154; + * @return Whether the oneof1154 field is set. + */ + boolean hasOneof1154(); /** * int32 oneof_1154 = 1154; * @return The oneof1154. */ int getOneof1154(); + /** + * int32 oneof_1155 = 1155; + * @return Whether the oneof1155 field is set. + */ + boolean hasOneof1155(); /** * int32 oneof_1155 = 1155; * @return The oneof1155. */ int getOneof1155(); + /** + * int32 oneof_1156 = 1156; + * @return Whether the oneof1156 field is set. + */ + boolean hasOneof1156(); /** * int32 oneof_1156 = 1156; * @return The oneof1156. */ int getOneof1156(); + /** + * int32 oneof_1157 = 1157; + * @return Whether the oneof1157 field is set. + */ + boolean hasOneof1157(); /** * int32 oneof_1157 = 1157; * @return The oneof1157. */ int getOneof1157(); + /** + * int32 oneof_1158 = 1158; + * @return Whether the oneof1158 field is set. + */ + boolean hasOneof1158(); /** * int32 oneof_1158 = 1158; * @return The oneof1158. */ int getOneof1158(); + /** + * int32 oneof_1159 = 1159; + * @return Whether the oneof1159 field is set. + */ + boolean hasOneof1159(); /** * int32 oneof_1159 = 1159; * @return The oneof1159. */ int getOneof1159(); + /** + * int32 oneof_1160 = 1160; + * @return Whether the oneof1160 field is set. + */ + boolean hasOneof1160(); /** * int32 oneof_1160 = 1160; * @return The oneof1160. */ int getOneof1160(); + /** + * int32 oneof_1161 = 1161; + * @return Whether the oneof1161 field is set. + */ + boolean hasOneof1161(); /** * int32 oneof_1161 = 1161; * @return The oneof1161. */ int getOneof1161(); + /** + * int32 oneof_1162 = 1162; + * @return Whether the oneof1162 field is set. + */ + boolean hasOneof1162(); /** * int32 oneof_1162 = 1162; * @return The oneof1162. */ int getOneof1162(); + /** + * int32 oneof_1163 = 1163; + * @return Whether the oneof1163 field is set. + */ + boolean hasOneof1163(); /** * int32 oneof_1163 = 1163; * @return The oneof1163. */ int getOneof1163(); + /** + * int32 oneof_1164 = 1164; + * @return Whether the oneof1164 field is set. + */ + boolean hasOneof1164(); /** * int32 oneof_1164 = 1164; * @return The oneof1164. */ int getOneof1164(); + /** + * int32 oneof_1165 = 1165; + * @return Whether the oneof1165 field is set. + */ + boolean hasOneof1165(); /** * int32 oneof_1165 = 1165; * @return The oneof1165. */ int getOneof1165(); + /** + * int32 oneof_1166 = 1166; + * @return Whether the oneof1166 field is set. + */ + boolean hasOneof1166(); /** * int32 oneof_1166 = 1166; * @return The oneof1166. */ int getOneof1166(); + /** + * int32 oneof_1167 = 1167; + * @return Whether the oneof1167 field is set. + */ + boolean hasOneof1167(); /** * int32 oneof_1167 = 1167; * @return The oneof1167. */ int getOneof1167(); + /** + * int32 oneof_1168 = 1168; + * @return Whether the oneof1168 field is set. + */ + boolean hasOneof1168(); /** * int32 oneof_1168 = 1168; * @return The oneof1168. */ int getOneof1168(); + /** + * int32 oneof_1169 = 1169; + * @return Whether the oneof1169 field is set. + */ + boolean hasOneof1169(); /** * int32 oneof_1169 = 1169; * @return The oneof1169. */ int getOneof1169(); + /** + * int32 oneof_1170 = 1170; + * @return Whether the oneof1170 field is set. + */ + boolean hasOneof1170(); /** * int32 oneof_1170 = 1170; * @return The oneof1170. */ int getOneof1170(); + /** + * int32 oneof_1171 = 1171; + * @return Whether the oneof1171 field is set. + */ + boolean hasOneof1171(); /** * int32 oneof_1171 = 1171; * @return The oneof1171. */ int getOneof1171(); + /** + * int32 oneof_1172 = 1172; + * @return Whether the oneof1172 field is set. + */ + boolean hasOneof1172(); /** * int32 oneof_1172 = 1172; * @return The oneof1172. */ int getOneof1172(); + /** + * int32 oneof_1173 = 1173; + * @return Whether the oneof1173 field is set. + */ + boolean hasOneof1173(); /** * int32 oneof_1173 = 1173; * @return The oneof1173. */ int getOneof1173(); + /** + * int32 oneof_1174 = 1174; + * @return Whether the oneof1174 field is set. + */ + boolean hasOneof1174(); /** * int32 oneof_1174 = 1174; * @return The oneof1174. */ int getOneof1174(); + /** + * int32 oneof_1175 = 1175; + * @return Whether the oneof1175 field is set. + */ + boolean hasOneof1175(); /** * int32 oneof_1175 = 1175; * @return The oneof1175. */ int getOneof1175(); + /** + * int32 oneof_1176 = 1176; + * @return Whether the oneof1176 field is set. + */ + boolean hasOneof1176(); /** * int32 oneof_1176 = 1176; * @return The oneof1176. */ int getOneof1176(); + /** + * int32 oneof_1177 = 1177; + * @return Whether the oneof1177 field is set. + */ + boolean hasOneof1177(); /** * int32 oneof_1177 = 1177; * @return The oneof1177. */ int getOneof1177(); + /** + * int32 oneof_1178 = 1178; + * @return Whether the oneof1178 field is set. + */ + boolean hasOneof1178(); /** * int32 oneof_1178 = 1178; * @return The oneof1178. */ int getOneof1178(); + /** + * int32 oneof_1179 = 1179; + * @return Whether the oneof1179 field is set. + */ + boolean hasOneof1179(); /** * int32 oneof_1179 = 1179; * @return The oneof1179. */ int getOneof1179(); + /** + * int32 oneof_1180 = 1180; + * @return Whether the oneof1180 field is set. + */ + boolean hasOneof1180(); /** * int32 oneof_1180 = 1180; * @return The oneof1180. */ int getOneof1180(); + /** + * int32 oneof_1181 = 1181; + * @return Whether the oneof1181 field is set. + */ + boolean hasOneof1181(); /** * int32 oneof_1181 = 1181; * @return The oneof1181. */ int getOneof1181(); + /** + * int32 oneof_1182 = 1182; + * @return Whether the oneof1182 field is set. + */ + boolean hasOneof1182(); /** * int32 oneof_1182 = 1182; * @return The oneof1182. */ int getOneof1182(); + /** + * int32 oneof_1183 = 1183; + * @return Whether the oneof1183 field is set. + */ + boolean hasOneof1183(); /** * int32 oneof_1183 = 1183; * @return The oneof1183. */ int getOneof1183(); + /** + * int32 oneof_1184 = 1184; + * @return Whether the oneof1184 field is set. + */ + boolean hasOneof1184(); /** * int32 oneof_1184 = 1184; * @return The oneof1184. */ int getOneof1184(); + /** + * int32 oneof_1185 = 1185; + * @return Whether the oneof1185 field is set. + */ + boolean hasOneof1185(); /** * int32 oneof_1185 = 1185; * @return The oneof1185. */ int getOneof1185(); + /** + * int32 oneof_1186 = 1186; + * @return Whether the oneof1186 field is set. + */ + boolean hasOneof1186(); /** * int32 oneof_1186 = 1186; * @return The oneof1186. */ int getOneof1186(); + /** + * int32 oneof_1187 = 1187; + * @return Whether the oneof1187 field is set. + */ + boolean hasOneof1187(); /** * int32 oneof_1187 = 1187; * @return The oneof1187. */ int getOneof1187(); + /** + * int32 oneof_1188 = 1188; + * @return Whether the oneof1188 field is set. + */ + boolean hasOneof1188(); /** * int32 oneof_1188 = 1188; * @return The oneof1188. */ int getOneof1188(); + /** + * int32 oneof_1189 = 1189; + * @return Whether the oneof1189 field is set. + */ + boolean hasOneof1189(); /** * int32 oneof_1189 = 1189; * @return The oneof1189. */ int getOneof1189(); + /** + * int32 oneof_1190 = 1190; + * @return Whether the oneof1190 field is set. + */ + boolean hasOneof1190(); /** * int32 oneof_1190 = 1190; * @return The oneof1190. */ int getOneof1190(); + /** + * int32 oneof_1191 = 1191; + * @return Whether the oneof1191 field is set. + */ + boolean hasOneof1191(); /** * int32 oneof_1191 = 1191; * @return The oneof1191. */ int getOneof1191(); + /** + * int32 oneof_1192 = 1192; + * @return Whether the oneof1192 field is set. + */ + boolean hasOneof1192(); /** * int32 oneof_1192 = 1192; * @return The oneof1192. */ int getOneof1192(); + /** + * int32 oneof_1193 = 1193; + * @return Whether the oneof1193 field is set. + */ + boolean hasOneof1193(); /** * int32 oneof_1193 = 1193; * @return The oneof1193. */ int getOneof1193(); + /** + * int32 oneof_1194 = 1194; + * @return Whether the oneof1194 field is set. + */ + boolean hasOneof1194(); /** * int32 oneof_1194 = 1194; * @return The oneof1194. */ int getOneof1194(); + /** + * int32 oneof_1195 = 1195; + * @return Whether the oneof1195 field is set. + */ + boolean hasOneof1195(); /** * int32 oneof_1195 = 1195; * @return The oneof1195. */ int getOneof1195(); + /** + * int32 oneof_1196 = 1196; + * @return Whether the oneof1196 field is set. + */ + boolean hasOneof1196(); /** * int32 oneof_1196 = 1196; * @return The oneof1196. */ int getOneof1196(); + /** + * int32 oneof_1197 = 1197; + * @return Whether the oneof1197 field is set. + */ + boolean hasOneof1197(); /** * int32 oneof_1197 = 1197; * @return The oneof1197. */ int getOneof1197(); + /** + * int32 oneof_1198 = 1198; + * @return Whether the oneof1198 field is set. + */ + boolean hasOneof1198(); /** * int32 oneof_1198 = 1198; * @return The oneof1198. */ int getOneof1198(); + /** + * int32 oneof_1199 = 1199; + * @return Whether the oneof1199 field is set. + */ + boolean hasOneof1199(); /** * int32 oneof_1199 = 1199; * @return The oneof1199. */ int getOneof1199(); + /** + * int32 oneof_1200 = 1200; + * @return Whether the oneof1200 field is set. + */ + boolean hasOneof1200(); /** * int32 oneof_1200 = 1200; * @return The oneof1200. */ int getOneof1200(); + /** + * int32 oneof_1201 = 1201; + * @return Whether the oneof1201 field is set. + */ + boolean hasOneof1201(); /** * int32 oneof_1201 = 1201; * @return The oneof1201. */ int getOneof1201(); + /** + * int32 oneof_1202 = 1202; + * @return Whether the oneof1202 field is set. + */ + boolean hasOneof1202(); /** * int32 oneof_1202 = 1202; * @return The oneof1202. */ int getOneof1202(); + /** + * int32 oneof_1203 = 1203; + * @return Whether the oneof1203 field is set. + */ + boolean hasOneof1203(); /** * int32 oneof_1203 = 1203; * @return The oneof1203. */ int getOneof1203(); + /** + * int32 oneof_1204 = 1204; + * @return Whether the oneof1204 field is set. + */ + boolean hasOneof1204(); /** * int32 oneof_1204 = 1204; * @return The oneof1204. */ int getOneof1204(); + /** + * int32 oneof_1205 = 1205; + * @return Whether the oneof1205 field is set. + */ + boolean hasOneof1205(); /** * int32 oneof_1205 = 1205; * @return The oneof1205. */ int getOneof1205(); + /** + * int32 oneof_1206 = 1206; + * @return Whether the oneof1206 field is set. + */ + boolean hasOneof1206(); /** * int32 oneof_1206 = 1206; * @return The oneof1206. */ int getOneof1206(); + /** + * int32 oneof_1207 = 1207; + * @return Whether the oneof1207 field is set. + */ + boolean hasOneof1207(); /** * int32 oneof_1207 = 1207; * @return The oneof1207. */ int getOneof1207(); + /** + * int32 oneof_1208 = 1208; + * @return Whether the oneof1208 field is set. + */ + boolean hasOneof1208(); /** * int32 oneof_1208 = 1208; * @return The oneof1208. */ int getOneof1208(); + /** + * int32 oneof_1209 = 1209; + * @return Whether the oneof1209 field is set. + */ + boolean hasOneof1209(); /** * int32 oneof_1209 = 1209; * @return The oneof1209. */ int getOneof1209(); + /** + * int32 oneof_1210 = 1210; + * @return Whether the oneof1210 field is set. + */ + boolean hasOneof1210(); /** * int32 oneof_1210 = 1210; * @return The oneof1210. */ int getOneof1210(); + /** + * int32 oneof_1211 = 1211; + * @return Whether the oneof1211 field is set. + */ + boolean hasOneof1211(); /** * int32 oneof_1211 = 1211; * @return The oneof1211. */ int getOneof1211(); + /** + * int32 oneof_1212 = 1212; + * @return Whether the oneof1212 field is set. + */ + boolean hasOneof1212(); /** * int32 oneof_1212 = 1212; * @return The oneof1212. */ int getOneof1212(); + /** + * int32 oneof_1213 = 1213; + * @return Whether the oneof1213 field is set. + */ + boolean hasOneof1213(); /** * int32 oneof_1213 = 1213; * @return The oneof1213. */ int getOneof1213(); + /** + * int32 oneof_1214 = 1214; + * @return Whether the oneof1214 field is set. + */ + boolean hasOneof1214(); /** * int32 oneof_1214 = 1214; * @return The oneof1214. */ int getOneof1214(); + /** + * int32 oneof_1215 = 1215; + * @return Whether the oneof1215 field is set. + */ + boolean hasOneof1215(); /** * int32 oneof_1215 = 1215; * @return The oneof1215. */ int getOneof1215(); + /** + * int32 oneof_1216 = 1216; + * @return Whether the oneof1216 field is set. + */ + boolean hasOneof1216(); /** * int32 oneof_1216 = 1216; * @return The oneof1216. */ int getOneof1216(); + /** + * int32 oneof_1217 = 1217; + * @return Whether the oneof1217 field is set. + */ + boolean hasOneof1217(); /** * int32 oneof_1217 = 1217; * @return The oneof1217. */ int getOneof1217(); + /** + * int32 oneof_1218 = 1218; + * @return Whether the oneof1218 field is set. + */ + boolean hasOneof1218(); /** * int32 oneof_1218 = 1218; * @return The oneof1218. */ int getOneof1218(); + /** + * int32 oneof_1219 = 1219; + * @return Whether the oneof1219 field is set. + */ + boolean hasOneof1219(); /** * int32 oneof_1219 = 1219; * @return The oneof1219. */ int getOneof1219(); + /** + * int32 oneof_1220 = 1220; + * @return Whether the oneof1220 field is set. + */ + boolean hasOneof1220(); /** * int32 oneof_1220 = 1220; * @return The oneof1220. */ int getOneof1220(); + /** + * int32 oneof_1221 = 1221; + * @return Whether the oneof1221 field is set. + */ + boolean hasOneof1221(); /** * int32 oneof_1221 = 1221; * @return The oneof1221. */ int getOneof1221(); + /** + * int32 oneof_1222 = 1222; + * @return Whether the oneof1222 field is set. + */ + boolean hasOneof1222(); /** * int32 oneof_1222 = 1222; * @return The oneof1222. */ int getOneof1222(); + /** + * int32 oneof_1223 = 1223; + * @return Whether the oneof1223 field is set. + */ + boolean hasOneof1223(); /** * int32 oneof_1223 = 1223; * @return The oneof1223. */ int getOneof1223(); + /** + * int32 oneof_1224 = 1224; + * @return Whether the oneof1224 field is set. + */ + boolean hasOneof1224(); /** * int32 oneof_1224 = 1224; * @return The oneof1224. */ int getOneof1224(); + /** + * int32 oneof_1225 = 1225; + * @return Whether the oneof1225 field is set. + */ + boolean hasOneof1225(); /** * int32 oneof_1225 = 1225; * @return The oneof1225. */ int getOneof1225(); + /** + * int32 oneof_1226 = 1226; + * @return Whether the oneof1226 field is set. + */ + boolean hasOneof1226(); /** * int32 oneof_1226 = 1226; * @return The oneof1226. */ int getOneof1226(); + /** + * int32 oneof_1227 = 1227; + * @return Whether the oneof1227 field is set. + */ + boolean hasOneof1227(); /** * int32 oneof_1227 = 1227; * @return The oneof1227. */ int getOneof1227(); + /** + * int32 oneof_1228 = 1228; + * @return Whether the oneof1228 field is set. + */ + boolean hasOneof1228(); /** * int32 oneof_1228 = 1228; * @return The oneof1228. */ int getOneof1228(); + /** + * int32 oneof_1229 = 1229; + * @return Whether the oneof1229 field is set. + */ + boolean hasOneof1229(); /** * int32 oneof_1229 = 1229; * @return The oneof1229. */ int getOneof1229(); + /** + * int32 oneof_1230 = 1230; + * @return Whether the oneof1230 field is set. + */ + boolean hasOneof1230(); /** * int32 oneof_1230 = 1230; * @return The oneof1230. */ int getOneof1230(); + /** + * int32 oneof_1231 = 1231; + * @return Whether the oneof1231 field is set. + */ + boolean hasOneof1231(); /** * int32 oneof_1231 = 1231; * @return The oneof1231. */ int getOneof1231(); + /** + * int32 oneof_1232 = 1232; + * @return Whether the oneof1232 field is set. + */ + boolean hasOneof1232(); /** * int32 oneof_1232 = 1232; * @return The oneof1232. */ int getOneof1232(); + /** + * int32 oneof_1233 = 1233; + * @return Whether the oneof1233 field is set. + */ + boolean hasOneof1233(); /** * int32 oneof_1233 = 1233; * @return The oneof1233. */ int getOneof1233(); + /** + * int32 oneof_1234 = 1234; + * @return Whether the oneof1234 field is set. + */ + boolean hasOneof1234(); /** * int32 oneof_1234 = 1234; * @return The oneof1234. */ int getOneof1234(); + /** + * int32 oneof_1235 = 1235; + * @return Whether the oneof1235 field is set. + */ + boolean hasOneof1235(); /** * int32 oneof_1235 = 1235; * @return The oneof1235. */ int getOneof1235(); + /** + * int32 oneof_1236 = 1236; + * @return Whether the oneof1236 field is set. + */ + boolean hasOneof1236(); /** * int32 oneof_1236 = 1236; * @return The oneof1236. */ int getOneof1236(); + /** + * int32 oneof_1237 = 1237; + * @return Whether the oneof1237 field is set. + */ + boolean hasOneof1237(); /** * int32 oneof_1237 = 1237; * @return The oneof1237. */ int getOneof1237(); + /** + * int32 oneof_1238 = 1238; + * @return Whether the oneof1238 field is set. + */ + boolean hasOneof1238(); /** * int32 oneof_1238 = 1238; * @return The oneof1238. */ int getOneof1238(); + /** + * int32 oneof_1239 = 1239; + * @return Whether the oneof1239 field is set. + */ + boolean hasOneof1239(); /** * int32 oneof_1239 = 1239; * @return The oneof1239. */ int getOneof1239(); + /** + * int32 oneof_1240 = 1240; + * @return Whether the oneof1240 field is set. + */ + boolean hasOneof1240(); /** * int32 oneof_1240 = 1240; * @return The oneof1240. */ int getOneof1240(); + /** + * int32 oneof_1241 = 1241; + * @return Whether the oneof1241 field is set. + */ + boolean hasOneof1241(); /** * int32 oneof_1241 = 1241; * @return The oneof1241. */ int getOneof1241(); + /** + * int32 oneof_1242 = 1242; + * @return Whether the oneof1242 field is set. + */ + boolean hasOneof1242(); /** * int32 oneof_1242 = 1242; * @return The oneof1242. */ int getOneof1242(); + /** + * int32 oneof_1243 = 1243; + * @return Whether the oneof1243 field is set. + */ + boolean hasOneof1243(); /** * int32 oneof_1243 = 1243; * @return The oneof1243. */ int getOneof1243(); + /** + * int32 oneof_1244 = 1244; + * @return Whether the oneof1244 field is set. + */ + boolean hasOneof1244(); /** * int32 oneof_1244 = 1244; * @return The oneof1244. */ int getOneof1244(); + /** + * int32 oneof_1245 = 1245; + * @return Whether the oneof1245 field is set. + */ + boolean hasOneof1245(); /** * int32 oneof_1245 = 1245; * @return The oneof1245. */ int getOneof1245(); + /** + * int32 oneof_1246 = 1246; + * @return Whether the oneof1246 field is set. + */ + boolean hasOneof1246(); /** * int32 oneof_1246 = 1246; * @return The oneof1246. */ int getOneof1246(); + /** + * int32 oneof_1247 = 1247; + * @return Whether the oneof1247 field is set. + */ + boolean hasOneof1247(); /** * int32 oneof_1247 = 1247; * @return The oneof1247. */ int getOneof1247(); + /** + * int32 oneof_1248 = 1248; + * @return Whether the oneof1248 field is set. + */ + boolean hasOneof1248(); /** * int32 oneof_1248 = 1248; * @return The oneof1248. */ int getOneof1248(); + /** + * int32 oneof_1249 = 1249; + * @return Whether the oneof1249 field is set. + */ + boolean hasOneof1249(); /** * int32 oneof_1249 = 1249; * @return The oneof1249. */ int getOneof1249(); + /** + * int32 oneof_1250 = 1250; + * @return Whether the oneof1250 field is set. + */ + boolean hasOneof1250(); /** * int32 oneof_1250 = 1250; * @return The oneof1250. */ int getOneof1250(); + /** + * int32 oneof_1251 = 1251; + * @return Whether the oneof1251 field is set. + */ + boolean hasOneof1251(); /** * int32 oneof_1251 = 1251; * @return The oneof1251. */ int getOneof1251(); + /** + * int32 oneof_1252 = 1252; + * @return Whether the oneof1252 field is set. + */ + boolean hasOneof1252(); /** * int32 oneof_1252 = 1252; * @return The oneof1252. */ int getOneof1252(); + /** + * int32 oneof_1253 = 1253; + * @return Whether the oneof1253 field is set. + */ + boolean hasOneof1253(); /** * int32 oneof_1253 = 1253; * @return The oneof1253. */ int getOneof1253(); + /** + * int32 oneof_1254 = 1254; + * @return Whether the oneof1254 field is set. + */ + boolean hasOneof1254(); /** * int32 oneof_1254 = 1254; * @return The oneof1254. */ int getOneof1254(); + /** + * int32 oneof_1255 = 1255; + * @return Whether the oneof1255 field is set. + */ + boolean hasOneof1255(); /** * int32 oneof_1255 = 1255; * @return The oneof1255. */ int getOneof1255(); + /** + * int32 oneof_1256 = 1256; + * @return Whether the oneof1256 field is set. + */ + boolean hasOneof1256(); /** * int32 oneof_1256 = 1256; * @return The oneof1256. */ int getOneof1256(); + /** + * int32 oneof_1257 = 1257; + * @return Whether the oneof1257 field is set. + */ + boolean hasOneof1257(); /** * int32 oneof_1257 = 1257; * @return The oneof1257. */ int getOneof1257(); + /** + * int32 oneof_1258 = 1258; + * @return Whether the oneof1258 field is set. + */ + boolean hasOneof1258(); /** * int32 oneof_1258 = 1258; * @return The oneof1258. */ int getOneof1258(); + /** + * int32 oneof_1259 = 1259; + * @return Whether the oneof1259 field is set. + */ + boolean hasOneof1259(); /** * int32 oneof_1259 = 1259; * @return The oneof1259. */ int getOneof1259(); + /** + * int32 oneof_1260 = 1260; + * @return Whether the oneof1260 field is set. + */ + boolean hasOneof1260(); /** * int32 oneof_1260 = 1260; * @return The oneof1260. */ int getOneof1260(); + /** + * int32 oneof_1261 = 1261; + * @return Whether the oneof1261 field is set. + */ + boolean hasOneof1261(); /** * int32 oneof_1261 = 1261; * @return The oneof1261. */ int getOneof1261(); + /** + * int32 oneof_1262 = 1262; + * @return Whether the oneof1262 field is set. + */ + boolean hasOneof1262(); /** * int32 oneof_1262 = 1262; * @return The oneof1262. */ int getOneof1262(); + /** + * int32 oneof_1263 = 1263; + * @return Whether the oneof1263 field is set. + */ + boolean hasOneof1263(); /** * int32 oneof_1263 = 1263; * @return The oneof1263. */ int getOneof1263(); + /** + * int32 oneof_1264 = 1264; + * @return Whether the oneof1264 field is set. + */ + boolean hasOneof1264(); /** * int32 oneof_1264 = 1264; * @return The oneof1264. */ int getOneof1264(); + /** + * int32 oneof_1265 = 1265; + * @return Whether the oneof1265 field is set. + */ + boolean hasOneof1265(); /** * int32 oneof_1265 = 1265; * @return The oneof1265. */ int getOneof1265(); + /** + * int32 oneof_1266 = 1266; + * @return Whether the oneof1266 field is set. + */ + boolean hasOneof1266(); /** * int32 oneof_1266 = 1266; * @return The oneof1266. */ int getOneof1266(); + /** + * int32 oneof_1267 = 1267; + * @return Whether the oneof1267 field is set. + */ + boolean hasOneof1267(); /** * int32 oneof_1267 = 1267; * @return The oneof1267. */ int getOneof1267(); + /** + * int32 oneof_1268 = 1268; + * @return Whether the oneof1268 field is set. + */ + boolean hasOneof1268(); /** * int32 oneof_1268 = 1268; * @return The oneof1268. */ int getOneof1268(); + /** + * int32 oneof_1269 = 1269; + * @return Whether the oneof1269 field is set. + */ + boolean hasOneof1269(); /** * int32 oneof_1269 = 1269; * @return The oneof1269. */ int getOneof1269(); + /** + * int32 oneof_1270 = 1270; + * @return Whether the oneof1270 field is set. + */ + boolean hasOneof1270(); /** * int32 oneof_1270 = 1270; * @return The oneof1270. */ int getOneof1270(); + /** + * int32 oneof_1271 = 1271; + * @return Whether the oneof1271 field is set. + */ + boolean hasOneof1271(); /** * int32 oneof_1271 = 1271; * @return The oneof1271. */ int getOneof1271(); + /** + * int32 oneof_1272 = 1272; + * @return Whether the oneof1272 field is set. + */ + boolean hasOneof1272(); /** * int32 oneof_1272 = 1272; * @return The oneof1272. */ int getOneof1272(); + /** + * int32 oneof_1273 = 1273; + * @return Whether the oneof1273 field is set. + */ + boolean hasOneof1273(); /** * int32 oneof_1273 = 1273; * @return The oneof1273. */ int getOneof1273(); + /** + * int32 oneof_1274 = 1274; + * @return Whether the oneof1274 field is set. + */ + boolean hasOneof1274(); /** * int32 oneof_1274 = 1274; * @return The oneof1274. */ int getOneof1274(); + /** + * int32 oneof_1275 = 1275; + * @return Whether the oneof1275 field is set. + */ + boolean hasOneof1275(); /** * int32 oneof_1275 = 1275; * @return The oneof1275. */ int getOneof1275(); + /** + * int32 oneof_1276 = 1276; + * @return Whether the oneof1276 field is set. + */ + boolean hasOneof1276(); /** * int32 oneof_1276 = 1276; * @return The oneof1276. */ int getOneof1276(); + /** + * int32 oneof_1277 = 1277; + * @return Whether the oneof1277 field is set. + */ + boolean hasOneof1277(); /** * int32 oneof_1277 = 1277; * @return The oneof1277. */ int getOneof1277(); + /** + * int32 oneof_1278 = 1278; + * @return Whether the oneof1278 field is set. + */ + boolean hasOneof1278(); /** * int32 oneof_1278 = 1278; * @return The oneof1278. */ int getOneof1278(); + /** + * int32 oneof_1279 = 1279; + * @return Whether the oneof1279 field is set. + */ + boolean hasOneof1279(); /** * int32 oneof_1279 = 1279; * @return The oneof1279. @@ -159213,10318 +162617,18918 @@ public interface MessageWithHugeOneofOrBuilder extends /** * int32 oneof_1280 = 1280; - * @return The oneof1280. + * @return Whether the oneof1280 field is set. */ - int getOneof1280(); + boolean hasOneof1280(); + /** + * int32 oneof_1280 = 1280; + * @return The oneof1280. + */ + int getOneof1280(); + /** + * int32 oneof_1281 = 1281; + * @return Whether the oneof1281 field is set. + */ + boolean hasOneof1281(); /** * int32 oneof_1281 = 1281; * @return The oneof1281. */ int getOneof1281(); + /** + * int32 oneof_1282 = 1282; + * @return Whether the oneof1282 field is set. + */ + boolean hasOneof1282(); /** * int32 oneof_1282 = 1282; * @return The oneof1282. */ int getOneof1282(); + /** + * int32 oneof_1283 = 1283; + * @return Whether the oneof1283 field is set. + */ + boolean hasOneof1283(); /** * int32 oneof_1283 = 1283; * @return The oneof1283. */ int getOneof1283(); + /** + * int32 oneof_1284 = 1284; + * @return Whether the oneof1284 field is set. + */ + boolean hasOneof1284(); /** * int32 oneof_1284 = 1284; * @return The oneof1284. */ int getOneof1284(); + /** + * int32 oneof_1285 = 1285; + * @return Whether the oneof1285 field is set. + */ + boolean hasOneof1285(); /** * int32 oneof_1285 = 1285; * @return The oneof1285. */ int getOneof1285(); + /** + * int32 oneof_1286 = 1286; + * @return Whether the oneof1286 field is set. + */ + boolean hasOneof1286(); /** * int32 oneof_1286 = 1286; * @return The oneof1286. */ int getOneof1286(); + /** + * int32 oneof_1287 = 1287; + * @return Whether the oneof1287 field is set. + */ + boolean hasOneof1287(); /** * int32 oneof_1287 = 1287; * @return The oneof1287. */ int getOneof1287(); + /** + * int32 oneof_1288 = 1288; + * @return Whether the oneof1288 field is set. + */ + boolean hasOneof1288(); /** * int32 oneof_1288 = 1288; * @return The oneof1288. */ int getOneof1288(); + /** + * int32 oneof_1289 = 1289; + * @return Whether the oneof1289 field is set. + */ + boolean hasOneof1289(); /** * int32 oneof_1289 = 1289; * @return The oneof1289. */ int getOneof1289(); + /** + * int32 oneof_1290 = 1290; + * @return Whether the oneof1290 field is set. + */ + boolean hasOneof1290(); /** * int32 oneof_1290 = 1290; * @return The oneof1290. */ int getOneof1290(); + /** + * int32 oneof_1291 = 1291; + * @return Whether the oneof1291 field is set. + */ + boolean hasOneof1291(); /** * int32 oneof_1291 = 1291; * @return The oneof1291. */ int getOneof1291(); + /** + * int32 oneof_1292 = 1292; + * @return Whether the oneof1292 field is set. + */ + boolean hasOneof1292(); /** * int32 oneof_1292 = 1292; * @return The oneof1292. */ int getOneof1292(); + /** + * int32 oneof_1293 = 1293; + * @return Whether the oneof1293 field is set. + */ + boolean hasOneof1293(); /** * int32 oneof_1293 = 1293; * @return The oneof1293. */ int getOneof1293(); + /** + * int32 oneof_1294 = 1294; + * @return Whether the oneof1294 field is set. + */ + boolean hasOneof1294(); /** * int32 oneof_1294 = 1294; * @return The oneof1294. */ int getOneof1294(); + /** + * int32 oneof_1295 = 1295; + * @return Whether the oneof1295 field is set. + */ + boolean hasOneof1295(); /** * int32 oneof_1295 = 1295; * @return The oneof1295. */ int getOneof1295(); + /** + * int32 oneof_1296 = 1296; + * @return Whether the oneof1296 field is set. + */ + boolean hasOneof1296(); /** * int32 oneof_1296 = 1296; * @return The oneof1296. */ int getOneof1296(); + /** + * int32 oneof_1297 = 1297; + * @return Whether the oneof1297 field is set. + */ + boolean hasOneof1297(); /** * int32 oneof_1297 = 1297; * @return The oneof1297. */ int getOneof1297(); + /** + * int32 oneof_1298 = 1298; + * @return Whether the oneof1298 field is set. + */ + boolean hasOneof1298(); /** * int32 oneof_1298 = 1298; * @return The oneof1298. */ int getOneof1298(); + /** + * int32 oneof_1299 = 1299; + * @return Whether the oneof1299 field is set. + */ + boolean hasOneof1299(); /** * int32 oneof_1299 = 1299; * @return The oneof1299. */ int getOneof1299(); + /** + * int32 oneof_1300 = 1300; + * @return Whether the oneof1300 field is set. + */ + boolean hasOneof1300(); /** * int32 oneof_1300 = 1300; * @return The oneof1300. */ int getOneof1300(); + /** + * int32 oneof_1301 = 1301; + * @return Whether the oneof1301 field is set. + */ + boolean hasOneof1301(); /** * int32 oneof_1301 = 1301; * @return The oneof1301. */ int getOneof1301(); + /** + * int32 oneof_1302 = 1302; + * @return Whether the oneof1302 field is set. + */ + boolean hasOneof1302(); /** * int32 oneof_1302 = 1302; * @return The oneof1302. */ int getOneof1302(); + /** + * int32 oneof_1303 = 1303; + * @return Whether the oneof1303 field is set. + */ + boolean hasOneof1303(); /** * int32 oneof_1303 = 1303; * @return The oneof1303. */ int getOneof1303(); + /** + * int32 oneof_1304 = 1304; + * @return Whether the oneof1304 field is set. + */ + boolean hasOneof1304(); /** * int32 oneof_1304 = 1304; * @return The oneof1304. */ int getOneof1304(); + /** + * int32 oneof_1305 = 1305; + * @return Whether the oneof1305 field is set. + */ + boolean hasOneof1305(); /** * int32 oneof_1305 = 1305; * @return The oneof1305. */ int getOneof1305(); + /** + * int32 oneof_1306 = 1306; + * @return Whether the oneof1306 field is set. + */ + boolean hasOneof1306(); /** * int32 oneof_1306 = 1306; * @return The oneof1306. */ int getOneof1306(); + /** + * int32 oneof_1307 = 1307; + * @return Whether the oneof1307 field is set. + */ + boolean hasOneof1307(); /** * int32 oneof_1307 = 1307; * @return The oneof1307. */ int getOneof1307(); + /** + * int32 oneof_1308 = 1308; + * @return Whether the oneof1308 field is set. + */ + boolean hasOneof1308(); /** * int32 oneof_1308 = 1308; * @return The oneof1308. */ int getOneof1308(); + /** + * int32 oneof_1309 = 1309; + * @return Whether the oneof1309 field is set. + */ + boolean hasOneof1309(); /** * int32 oneof_1309 = 1309; * @return The oneof1309. */ int getOneof1309(); + /** + * int32 oneof_1310 = 1310; + * @return Whether the oneof1310 field is set. + */ + boolean hasOneof1310(); /** * int32 oneof_1310 = 1310; * @return The oneof1310. */ int getOneof1310(); + /** + * int32 oneof_1311 = 1311; + * @return Whether the oneof1311 field is set. + */ + boolean hasOneof1311(); /** * int32 oneof_1311 = 1311; * @return The oneof1311. */ int getOneof1311(); + /** + * int32 oneof_1312 = 1312; + * @return Whether the oneof1312 field is set. + */ + boolean hasOneof1312(); /** * int32 oneof_1312 = 1312; * @return The oneof1312. */ int getOneof1312(); + /** + * int32 oneof_1313 = 1313; + * @return Whether the oneof1313 field is set. + */ + boolean hasOneof1313(); /** * int32 oneof_1313 = 1313; * @return The oneof1313. */ int getOneof1313(); + /** + * int32 oneof_1314 = 1314; + * @return Whether the oneof1314 field is set. + */ + boolean hasOneof1314(); /** * int32 oneof_1314 = 1314; * @return The oneof1314. */ int getOneof1314(); + /** + * int32 oneof_1315 = 1315; + * @return Whether the oneof1315 field is set. + */ + boolean hasOneof1315(); /** * int32 oneof_1315 = 1315; * @return The oneof1315. */ int getOneof1315(); + /** + * int32 oneof_1316 = 1316; + * @return Whether the oneof1316 field is set. + */ + boolean hasOneof1316(); /** * int32 oneof_1316 = 1316; * @return The oneof1316. */ int getOneof1316(); + /** + * int32 oneof_1317 = 1317; + * @return Whether the oneof1317 field is set. + */ + boolean hasOneof1317(); /** * int32 oneof_1317 = 1317; * @return The oneof1317. */ int getOneof1317(); + /** + * int32 oneof_1318 = 1318; + * @return Whether the oneof1318 field is set. + */ + boolean hasOneof1318(); /** * int32 oneof_1318 = 1318; * @return The oneof1318. */ int getOneof1318(); + /** + * int32 oneof_1319 = 1319; + * @return Whether the oneof1319 field is set. + */ + boolean hasOneof1319(); /** * int32 oneof_1319 = 1319; * @return The oneof1319. */ int getOneof1319(); + /** + * int32 oneof_1320 = 1320; + * @return Whether the oneof1320 field is set. + */ + boolean hasOneof1320(); /** * int32 oneof_1320 = 1320; * @return The oneof1320. */ int getOneof1320(); + /** + * int32 oneof_1321 = 1321; + * @return Whether the oneof1321 field is set. + */ + boolean hasOneof1321(); /** * int32 oneof_1321 = 1321; * @return The oneof1321. */ int getOneof1321(); + /** + * int32 oneof_1322 = 1322; + * @return Whether the oneof1322 field is set. + */ + boolean hasOneof1322(); /** * int32 oneof_1322 = 1322; * @return The oneof1322. */ int getOneof1322(); + /** + * int32 oneof_1323 = 1323; + * @return Whether the oneof1323 field is set. + */ + boolean hasOneof1323(); /** * int32 oneof_1323 = 1323; * @return The oneof1323. */ int getOneof1323(); + /** + * int32 oneof_1324 = 1324; + * @return Whether the oneof1324 field is set. + */ + boolean hasOneof1324(); /** * int32 oneof_1324 = 1324; * @return The oneof1324. */ int getOneof1324(); + /** + * int32 oneof_1325 = 1325; + * @return Whether the oneof1325 field is set. + */ + boolean hasOneof1325(); /** * int32 oneof_1325 = 1325; * @return The oneof1325. */ int getOneof1325(); + /** + * int32 oneof_1326 = 1326; + * @return Whether the oneof1326 field is set. + */ + boolean hasOneof1326(); /** * int32 oneof_1326 = 1326; * @return The oneof1326. */ int getOneof1326(); + /** + * int32 oneof_1327 = 1327; + * @return Whether the oneof1327 field is set. + */ + boolean hasOneof1327(); /** * int32 oneof_1327 = 1327; * @return The oneof1327. */ int getOneof1327(); + /** + * int32 oneof_1328 = 1328; + * @return Whether the oneof1328 field is set. + */ + boolean hasOneof1328(); /** * int32 oneof_1328 = 1328; * @return The oneof1328. */ int getOneof1328(); + /** + * int32 oneof_1329 = 1329; + * @return Whether the oneof1329 field is set. + */ + boolean hasOneof1329(); /** * int32 oneof_1329 = 1329; * @return The oneof1329. */ int getOneof1329(); + /** + * int32 oneof_1330 = 1330; + * @return Whether the oneof1330 field is set. + */ + boolean hasOneof1330(); /** * int32 oneof_1330 = 1330; * @return The oneof1330. */ int getOneof1330(); + /** + * int32 oneof_1331 = 1331; + * @return Whether the oneof1331 field is set. + */ + boolean hasOneof1331(); /** * int32 oneof_1331 = 1331; * @return The oneof1331. */ int getOneof1331(); + /** + * int32 oneof_1332 = 1332; + * @return Whether the oneof1332 field is set. + */ + boolean hasOneof1332(); /** * int32 oneof_1332 = 1332; * @return The oneof1332. */ int getOneof1332(); + /** + * int32 oneof_1333 = 1333; + * @return Whether the oneof1333 field is set. + */ + boolean hasOneof1333(); /** * int32 oneof_1333 = 1333; * @return The oneof1333. */ int getOneof1333(); + /** + * int32 oneof_1334 = 1334; + * @return Whether the oneof1334 field is set. + */ + boolean hasOneof1334(); /** * int32 oneof_1334 = 1334; * @return The oneof1334. */ int getOneof1334(); + /** + * int32 oneof_1335 = 1335; + * @return Whether the oneof1335 field is set. + */ + boolean hasOneof1335(); /** * int32 oneof_1335 = 1335; * @return The oneof1335. */ int getOneof1335(); + /** + * int32 oneof_1336 = 1336; + * @return Whether the oneof1336 field is set. + */ + boolean hasOneof1336(); /** * int32 oneof_1336 = 1336; * @return The oneof1336. */ int getOneof1336(); + /** + * int32 oneof_1337 = 1337; + * @return Whether the oneof1337 field is set. + */ + boolean hasOneof1337(); /** * int32 oneof_1337 = 1337; * @return The oneof1337. */ int getOneof1337(); + /** + * int32 oneof_1338 = 1338; + * @return Whether the oneof1338 field is set. + */ + boolean hasOneof1338(); /** * int32 oneof_1338 = 1338; * @return The oneof1338. */ int getOneof1338(); + /** + * int32 oneof_1339 = 1339; + * @return Whether the oneof1339 field is set. + */ + boolean hasOneof1339(); /** * int32 oneof_1339 = 1339; * @return The oneof1339. */ int getOneof1339(); + /** + * int32 oneof_1340 = 1340; + * @return Whether the oneof1340 field is set. + */ + boolean hasOneof1340(); /** * int32 oneof_1340 = 1340; * @return The oneof1340. */ int getOneof1340(); + /** + * int32 oneof_1341 = 1341; + * @return Whether the oneof1341 field is set. + */ + boolean hasOneof1341(); /** * int32 oneof_1341 = 1341; * @return The oneof1341. */ int getOneof1341(); + /** + * int32 oneof_1342 = 1342; + * @return Whether the oneof1342 field is set. + */ + boolean hasOneof1342(); /** * int32 oneof_1342 = 1342; * @return The oneof1342. */ int getOneof1342(); + /** + * int32 oneof_1343 = 1343; + * @return Whether the oneof1343 field is set. + */ + boolean hasOneof1343(); /** * int32 oneof_1343 = 1343; * @return The oneof1343. */ int getOneof1343(); + /** + * int32 oneof_1344 = 1344; + * @return Whether the oneof1344 field is set. + */ + boolean hasOneof1344(); /** * int32 oneof_1344 = 1344; * @return The oneof1344. */ int getOneof1344(); + /** + * int32 oneof_1345 = 1345; + * @return Whether the oneof1345 field is set. + */ + boolean hasOneof1345(); /** * int32 oneof_1345 = 1345; * @return The oneof1345. */ int getOneof1345(); + /** + * int32 oneof_1346 = 1346; + * @return Whether the oneof1346 field is set. + */ + boolean hasOneof1346(); /** * int32 oneof_1346 = 1346; * @return The oneof1346. */ int getOneof1346(); + /** + * int32 oneof_1347 = 1347; + * @return Whether the oneof1347 field is set. + */ + boolean hasOneof1347(); /** * int32 oneof_1347 = 1347; * @return The oneof1347. */ int getOneof1347(); + /** + * int32 oneof_1348 = 1348; + * @return Whether the oneof1348 field is set. + */ + boolean hasOneof1348(); /** * int32 oneof_1348 = 1348; * @return The oneof1348. */ int getOneof1348(); + /** + * int32 oneof_1349 = 1349; + * @return Whether the oneof1349 field is set. + */ + boolean hasOneof1349(); /** * int32 oneof_1349 = 1349; * @return The oneof1349. */ int getOneof1349(); + /** + * int32 oneof_1350 = 1350; + * @return Whether the oneof1350 field is set. + */ + boolean hasOneof1350(); /** * int32 oneof_1350 = 1350; * @return The oneof1350. */ int getOneof1350(); + /** + * int32 oneof_1351 = 1351; + * @return Whether the oneof1351 field is set. + */ + boolean hasOneof1351(); /** * int32 oneof_1351 = 1351; * @return The oneof1351. */ int getOneof1351(); + /** + * int32 oneof_1352 = 1352; + * @return Whether the oneof1352 field is set. + */ + boolean hasOneof1352(); /** * int32 oneof_1352 = 1352; * @return The oneof1352. */ int getOneof1352(); + /** + * int32 oneof_1353 = 1353; + * @return Whether the oneof1353 field is set. + */ + boolean hasOneof1353(); /** * int32 oneof_1353 = 1353; * @return The oneof1353. */ int getOneof1353(); + /** + * int32 oneof_1354 = 1354; + * @return Whether the oneof1354 field is set. + */ + boolean hasOneof1354(); /** * int32 oneof_1354 = 1354; * @return The oneof1354. */ int getOneof1354(); + /** + * int32 oneof_1355 = 1355; + * @return Whether the oneof1355 field is set. + */ + boolean hasOneof1355(); /** * int32 oneof_1355 = 1355; * @return The oneof1355. */ int getOneof1355(); + /** + * int32 oneof_1356 = 1356; + * @return Whether the oneof1356 field is set. + */ + boolean hasOneof1356(); /** * int32 oneof_1356 = 1356; * @return The oneof1356. */ int getOneof1356(); + /** + * int32 oneof_1357 = 1357; + * @return Whether the oneof1357 field is set. + */ + boolean hasOneof1357(); /** * int32 oneof_1357 = 1357; * @return The oneof1357. */ int getOneof1357(); + /** + * int32 oneof_1358 = 1358; + * @return Whether the oneof1358 field is set. + */ + boolean hasOneof1358(); /** * int32 oneof_1358 = 1358; * @return The oneof1358. */ int getOneof1358(); + /** + * int32 oneof_1359 = 1359; + * @return Whether the oneof1359 field is set. + */ + boolean hasOneof1359(); /** * int32 oneof_1359 = 1359; * @return The oneof1359. */ int getOneof1359(); + /** + * int32 oneof_1360 = 1360; + * @return Whether the oneof1360 field is set. + */ + boolean hasOneof1360(); /** * int32 oneof_1360 = 1360; * @return The oneof1360. */ int getOneof1360(); + /** + * int32 oneof_1361 = 1361; + * @return Whether the oneof1361 field is set. + */ + boolean hasOneof1361(); /** * int32 oneof_1361 = 1361; * @return The oneof1361. */ int getOneof1361(); + /** + * int32 oneof_1362 = 1362; + * @return Whether the oneof1362 field is set. + */ + boolean hasOneof1362(); /** * int32 oneof_1362 = 1362; * @return The oneof1362. */ int getOneof1362(); + /** + * int32 oneof_1363 = 1363; + * @return Whether the oneof1363 field is set. + */ + boolean hasOneof1363(); /** * int32 oneof_1363 = 1363; * @return The oneof1363. */ int getOneof1363(); + /** + * int32 oneof_1364 = 1364; + * @return Whether the oneof1364 field is set. + */ + boolean hasOneof1364(); /** * int32 oneof_1364 = 1364; * @return The oneof1364. */ int getOneof1364(); + /** + * int32 oneof_1365 = 1365; + * @return Whether the oneof1365 field is set. + */ + boolean hasOneof1365(); /** * int32 oneof_1365 = 1365; * @return The oneof1365. */ int getOneof1365(); + /** + * int32 oneof_1366 = 1366; + * @return Whether the oneof1366 field is set. + */ + boolean hasOneof1366(); /** * int32 oneof_1366 = 1366; * @return The oneof1366. */ int getOneof1366(); + /** + * int32 oneof_1367 = 1367; + * @return Whether the oneof1367 field is set. + */ + boolean hasOneof1367(); /** * int32 oneof_1367 = 1367; * @return The oneof1367. */ int getOneof1367(); + /** + * int32 oneof_1368 = 1368; + * @return Whether the oneof1368 field is set. + */ + boolean hasOneof1368(); /** * int32 oneof_1368 = 1368; * @return The oneof1368. */ int getOneof1368(); + /** + * int32 oneof_1369 = 1369; + * @return Whether the oneof1369 field is set. + */ + boolean hasOneof1369(); /** * int32 oneof_1369 = 1369; * @return The oneof1369. */ int getOneof1369(); + /** + * int32 oneof_1370 = 1370; + * @return Whether the oneof1370 field is set. + */ + boolean hasOneof1370(); /** * int32 oneof_1370 = 1370; * @return The oneof1370. */ int getOneof1370(); + /** + * int32 oneof_1371 = 1371; + * @return Whether the oneof1371 field is set. + */ + boolean hasOneof1371(); /** * int32 oneof_1371 = 1371; * @return The oneof1371. */ int getOneof1371(); + /** + * int32 oneof_1372 = 1372; + * @return Whether the oneof1372 field is set. + */ + boolean hasOneof1372(); /** * int32 oneof_1372 = 1372; * @return The oneof1372. */ int getOneof1372(); + /** + * int32 oneof_1373 = 1373; + * @return Whether the oneof1373 field is set. + */ + boolean hasOneof1373(); /** * int32 oneof_1373 = 1373; * @return The oneof1373. */ int getOneof1373(); + /** + * int32 oneof_1374 = 1374; + * @return Whether the oneof1374 field is set. + */ + boolean hasOneof1374(); /** * int32 oneof_1374 = 1374; * @return The oneof1374. */ int getOneof1374(); + /** + * int32 oneof_1375 = 1375; + * @return Whether the oneof1375 field is set. + */ + boolean hasOneof1375(); /** * int32 oneof_1375 = 1375; * @return The oneof1375. */ int getOneof1375(); + /** + * int32 oneof_1376 = 1376; + * @return Whether the oneof1376 field is set. + */ + boolean hasOneof1376(); /** * int32 oneof_1376 = 1376; * @return The oneof1376. */ int getOneof1376(); + /** + * int32 oneof_1377 = 1377; + * @return Whether the oneof1377 field is set. + */ + boolean hasOneof1377(); /** * int32 oneof_1377 = 1377; * @return The oneof1377. */ int getOneof1377(); + /** + * int32 oneof_1378 = 1378; + * @return Whether the oneof1378 field is set. + */ + boolean hasOneof1378(); /** * int32 oneof_1378 = 1378; * @return The oneof1378. */ int getOneof1378(); + /** + * int32 oneof_1379 = 1379; + * @return Whether the oneof1379 field is set. + */ + boolean hasOneof1379(); /** * int32 oneof_1379 = 1379; * @return The oneof1379. */ int getOneof1379(); + /** + * int32 oneof_1380 = 1380; + * @return Whether the oneof1380 field is set. + */ + boolean hasOneof1380(); /** * int32 oneof_1380 = 1380; * @return The oneof1380. */ int getOneof1380(); + /** + * int32 oneof_1381 = 1381; + * @return Whether the oneof1381 field is set. + */ + boolean hasOneof1381(); /** * int32 oneof_1381 = 1381; * @return The oneof1381. */ int getOneof1381(); + /** + * int32 oneof_1382 = 1382; + * @return Whether the oneof1382 field is set. + */ + boolean hasOneof1382(); /** * int32 oneof_1382 = 1382; * @return The oneof1382. */ int getOneof1382(); + /** + * int32 oneof_1383 = 1383; + * @return Whether the oneof1383 field is set. + */ + boolean hasOneof1383(); /** * int32 oneof_1383 = 1383; * @return The oneof1383. */ int getOneof1383(); + /** + * int32 oneof_1384 = 1384; + * @return Whether the oneof1384 field is set. + */ + boolean hasOneof1384(); /** * int32 oneof_1384 = 1384; * @return The oneof1384. */ int getOneof1384(); + /** + * int32 oneof_1385 = 1385; + * @return Whether the oneof1385 field is set. + */ + boolean hasOneof1385(); /** * int32 oneof_1385 = 1385; * @return The oneof1385. */ int getOneof1385(); + /** + * int32 oneof_1386 = 1386; + * @return Whether the oneof1386 field is set. + */ + boolean hasOneof1386(); /** * int32 oneof_1386 = 1386; * @return The oneof1386. */ int getOneof1386(); + /** + * int32 oneof_1387 = 1387; + * @return Whether the oneof1387 field is set. + */ + boolean hasOneof1387(); /** * int32 oneof_1387 = 1387; * @return The oneof1387. */ int getOneof1387(); + /** + * int32 oneof_1388 = 1388; + * @return Whether the oneof1388 field is set. + */ + boolean hasOneof1388(); /** * int32 oneof_1388 = 1388; * @return The oneof1388. */ int getOneof1388(); + /** + * int32 oneof_1389 = 1389; + * @return Whether the oneof1389 field is set. + */ + boolean hasOneof1389(); /** * int32 oneof_1389 = 1389; * @return The oneof1389. */ int getOneof1389(); + /** + * int32 oneof_1390 = 1390; + * @return Whether the oneof1390 field is set. + */ + boolean hasOneof1390(); /** * int32 oneof_1390 = 1390; * @return The oneof1390. */ int getOneof1390(); + /** + * int32 oneof_1391 = 1391; + * @return Whether the oneof1391 field is set. + */ + boolean hasOneof1391(); /** * int32 oneof_1391 = 1391; * @return The oneof1391. */ int getOneof1391(); + /** + * int32 oneof_1392 = 1392; + * @return Whether the oneof1392 field is set. + */ + boolean hasOneof1392(); /** * int32 oneof_1392 = 1392; * @return The oneof1392. */ int getOneof1392(); + /** + * int32 oneof_1393 = 1393; + * @return Whether the oneof1393 field is set. + */ + boolean hasOneof1393(); /** * int32 oneof_1393 = 1393; * @return The oneof1393. */ int getOneof1393(); + /** + * int32 oneof_1394 = 1394; + * @return Whether the oneof1394 field is set. + */ + boolean hasOneof1394(); /** * int32 oneof_1394 = 1394; * @return The oneof1394. */ int getOneof1394(); + /** + * int32 oneof_1395 = 1395; + * @return Whether the oneof1395 field is set. + */ + boolean hasOneof1395(); /** * int32 oneof_1395 = 1395; * @return The oneof1395. */ int getOneof1395(); + /** + * int32 oneof_1396 = 1396; + * @return Whether the oneof1396 field is set. + */ + boolean hasOneof1396(); /** * int32 oneof_1396 = 1396; * @return The oneof1396. */ int getOneof1396(); + /** + * int32 oneof_1397 = 1397; + * @return Whether the oneof1397 field is set. + */ + boolean hasOneof1397(); /** * int32 oneof_1397 = 1397; * @return The oneof1397. */ int getOneof1397(); + /** + * int32 oneof_1398 = 1398; + * @return Whether the oneof1398 field is set. + */ + boolean hasOneof1398(); /** * int32 oneof_1398 = 1398; * @return The oneof1398. */ int getOneof1398(); + /** + * int32 oneof_1399 = 1399; + * @return Whether the oneof1399 field is set. + */ + boolean hasOneof1399(); /** * int32 oneof_1399 = 1399; * @return The oneof1399. */ int getOneof1399(); + /** + * int32 oneof_1400 = 1400; + * @return Whether the oneof1400 field is set. + */ + boolean hasOneof1400(); /** * int32 oneof_1400 = 1400; * @return The oneof1400. */ int getOneof1400(); + /** + * int32 oneof_1401 = 1401; + * @return Whether the oneof1401 field is set. + */ + boolean hasOneof1401(); /** * int32 oneof_1401 = 1401; * @return The oneof1401. */ int getOneof1401(); + /** + * int32 oneof_1402 = 1402; + * @return Whether the oneof1402 field is set. + */ + boolean hasOneof1402(); /** * int32 oneof_1402 = 1402; * @return The oneof1402. */ int getOneof1402(); + /** + * int32 oneof_1403 = 1403; + * @return Whether the oneof1403 field is set. + */ + boolean hasOneof1403(); /** * int32 oneof_1403 = 1403; * @return The oneof1403. */ int getOneof1403(); + /** + * int32 oneof_1404 = 1404; + * @return Whether the oneof1404 field is set. + */ + boolean hasOneof1404(); /** * int32 oneof_1404 = 1404; * @return The oneof1404. */ int getOneof1404(); + /** + * int32 oneof_1405 = 1405; + * @return Whether the oneof1405 field is set. + */ + boolean hasOneof1405(); /** * int32 oneof_1405 = 1405; * @return The oneof1405. */ int getOneof1405(); + /** + * int32 oneof_1406 = 1406; + * @return Whether the oneof1406 field is set. + */ + boolean hasOneof1406(); /** * int32 oneof_1406 = 1406; * @return The oneof1406. */ int getOneof1406(); + /** + * int32 oneof_1407 = 1407; + * @return Whether the oneof1407 field is set. + */ + boolean hasOneof1407(); /** * int32 oneof_1407 = 1407; * @return The oneof1407. */ int getOneof1407(); + /** + * int32 oneof_1408 = 1408; + * @return Whether the oneof1408 field is set. + */ + boolean hasOneof1408(); /** * int32 oneof_1408 = 1408; * @return The oneof1408. */ int getOneof1408(); + /** + * int32 oneof_1409 = 1409; + * @return Whether the oneof1409 field is set. + */ + boolean hasOneof1409(); /** * int32 oneof_1409 = 1409; * @return The oneof1409. */ int getOneof1409(); + /** + * int32 oneof_1410 = 1410; + * @return Whether the oneof1410 field is set. + */ + boolean hasOneof1410(); /** * int32 oneof_1410 = 1410; * @return The oneof1410. */ int getOneof1410(); + /** + * int32 oneof_1411 = 1411; + * @return Whether the oneof1411 field is set. + */ + boolean hasOneof1411(); /** * int32 oneof_1411 = 1411; * @return The oneof1411. */ int getOneof1411(); + /** + * int32 oneof_1412 = 1412; + * @return Whether the oneof1412 field is set. + */ + boolean hasOneof1412(); /** * int32 oneof_1412 = 1412; * @return The oneof1412. */ int getOneof1412(); + /** + * int32 oneof_1413 = 1413; + * @return Whether the oneof1413 field is set. + */ + boolean hasOneof1413(); /** * int32 oneof_1413 = 1413; * @return The oneof1413. */ int getOneof1413(); + /** + * int32 oneof_1414 = 1414; + * @return Whether the oneof1414 field is set. + */ + boolean hasOneof1414(); /** * int32 oneof_1414 = 1414; * @return The oneof1414. */ int getOneof1414(); + /** + * int32 oneof_1415 = 1415; + * @return Whether the oneof1415 field is set. + */ + boolean hasOneof1415(); /** * int32 oneof_1415 = 1415; * @return The oneof1415. */ int getOneof1415(); + /** + * int32 oneof_1416 = 1416; + * @return Whether the oneof1416 field is set. + */ + boolean hasOneof1416(); /** * int32 oneof_1416 = 1416; * @return The oneof1416. */ int getOneof1416(); + /** + * int32 oneof_1417 = 1417; + * @return Whether the oneof1417 field is set. + */ + boolean hasOneof1417(); /** * int32 oneof_1417 = 1417; * @return The oneof1417. */ int getOneof1417(); + /** + * int32 oneof_1418 = 1418; + * @return Whether the oneof1418 field is set. + */ + boolean hasOneof1418(); /** * int32 oneof_1418 = 1418; * @return The oneof1418. */ int getOneof1418(); + /** + * int32 oneof_1419 = 1419; + * @return Whether the oneof1419 field is set. + */ + boolean hasOneof1419(); /** * int32 oneof_1419 = 1419; * @return The oneof1419. */ int getOneof1419(); + /** + * int32 oneof_1420 = 1420; + * @return Whether the oneof1420 field is set. + */ + boolean hasOneof1420(); /** * int32 oneof_1420 = 1420; * @return The oneof1420. */ int getOneof1420(); + /** + * int32 oneof_1421 = 1421; + * @return Whether the oneof1421 field is set. + */ + boolean hasOneof1421(); /** * int32 oneof_1421 = 1421; * @return The oneof1421. */ int getOneof1421(); + /** + * int32 oneof_1422 = 1422; + * @return Whether the oneof1422 field is set. + */ + boolean hasOneof1422(); /** * int32 oneof_1422 = 1422; * @return The oneof1422. */ int getOneof1422(); + /** + * int32 oneof_1423 = 1423; + * @return Whether the oneof1423 field is set. + */ + boolean hasOneof1423(); /** * int32 oneof_1423 = 1423; * @return The oneof1423. */ int getOneof1423(); + /** + * int32 oneof_1424 = 1424; + * @return Whether the oneof1424 field is set. + */ + boolean hasOneof1424(); /** * int32 oneof_1424 = 1424; * @return The oneof1424. */ int getOneof1424(); + /** + * int32 oneof_1425 = 1425; + * @return Whether the oneof1425 field is set. + */ + boolean hasOneof1425(); /** * int32 oneof_1425 = 1425; * @return The oneof1425. */ int getOneof1425(); + /** + * int32 oneof_1426 = 1426; + * @return Whether the oneof1426 field is set. + */ + boolean hasOneof1426(); /** * int32 oneof_1426 = 1426; * @return The oneof1426. */ int getOneof1426(); + /** + * int32 oneof_1427 = 1427; + * @return Whether the oneof1427 field is set. + */ + boolean hasOneof1427(); /** * int32 oneof_1427 = 1427; * @return The oneof1427. */ int getOneof1427(); + /** + * int32 oneof_1428 = 1428; + * @return Whether the oneof1428 field is set. + */ + boolean hasOneof1428(); /** * int32 oneof_1428 = 1428; * @return The oneof1428. */ int getOneof1428(); + /** + * int32 oneof_1429 = 1429; + * @return Whether the oneof1429 field is set. + */ + boolean hasOneof1429(); /** * int32 oneof_1429 = 1429; * @return The oneof1429. */ int getOneof1429(); + /** + * int32 oneof_1430 = 1430; + * @return Whether the oneof1430 field is set. + */ + boolean hasOneof1430(); /** * int32 oneof_1430 = 1430; * @return The oneof1430. */ int getOneof1430(); + /** + * int32 oneof_1431 = 1431; + * @return Whether the oneof1431 field is set. + */ + boolean hasOneof1431(); /** * int32 oneof_1431 = 1431; * @return The oneof1431. */ int getOneof1431(); + /** + * int32 oneof_1432 = 1432; + * @return Whether the oneof1432 field is set. + */ + boolean hasOneof1432(); /** * int32 oneof_1432 = 1432; * @return The oneof1432. */ int getOneof1432(); + /** + * int32 oneof_1433 = 1433; + * @return Whether the oneof1433 field is set. + */ + boolean hasOneof1433(); /** * int32 oneof_1433 = 1433; * @return The oneof1433. */ int getOneof1433(); + /** + * int32 oneof_1434 = 1434; + * @return Whether the oneof1434 field is set. + */ + boolean hasOneof1434(); /** * int32 oneof_1434 = 1434; * @return The oneof1434. */ int getOneof1434(); + /** + * int32 oneof_1435 = 1435; + * @return Whether the oneof1435 field is set. + */ + boolean hasOneof1435(); /** * int32 oneof_1435 = 1435; * @return The oneof1435. */ int getOneof1435(); + /** + * int32 oneof_1436 = 1436; + * @return Whether the oneof1436 field is set. + */ + boolean hasOneof1436(); /** * int32 oneof_1436 = 1436; * @return The oneof1436. */ int getOneof1436(); + /** + * int32 oneof_1437 = 1437; + * @return Whether the oneof1437 field is set. + */ + boolean hasOneof1437(); /** * int32 oneof_1437 = 1437; * @return The oneof1437. */ int getOneof1437(); + /** + * int32 oneof_1438 = 1438; + * @return Whether the oneof1438 field is set. + */ + boolean hasOneof1438(); /** * int32 oneof_1438 = 1438; * @return The oneof1438. */ int getOneof1438(); + /** + * int32 oneof_1439 = 1439; + * @return Whether the oneof1439 field is set. + */ + boolean hasOneof1439(); /** * int32 oneof_1439 = 1439; * @return The oneof1439. */ int getOneof1439(); + /** + * int32 oneof_1440 = 1440; + * @return Whether the oneof1440 field is set. + */ + boolean hasOneof1440(); /** * int32 oneof_1440 = 1440; * @return The oneof1440. */ int getOneof1440(); + /** + * int32 oneof_1441 = 1441; + * @return Whether the oneof1441 field is set. + */ + boolean hasOneof1441(); /** * int32 oneof_1441 = 1441; * @return The oneof1441. */ int getOneof1441(); + /** + * int32 oneof_1442 = 1442; + * @return Whether the oneof1442 field is set. + */ + boolean hasOneof1442(); /** * int32 oneof_1442 = 1442; * @return The oneof1442. */ int getOneof1442(); + /** + * int32 oneof_1443 = 1443; + * @return Whether the oneof1443 field is set. + */ + boolean hasOneof1443(); /** * int32 oneof_1443 = 1443; * @return The oneof1443. */ int getOneof1443(); + /** + * int32 oneof_1444 = 1444; + * @return Whether the oneof1444 field is set. + */ + boolean hasOneof1444(); /** * int32 oneof_1444 = 1444; * @return The oneof1444. */ int getOneof1444(); + /** + * int32 oneof_1445 = 1445; + * @return Whether the oneof1445 field is set. + */ + boolean hasOneof1445(); /** * int32 oneof_1445 = 1445; * @return The oneof1445. */ int getOneof1445(); + /** + * int32 oneof_1446 = 1446; + * @return Whether the oneof1446 field is set. + */ + boolean hasOneof1446(); /** * int32 oneof_1446 = 1446; * @return The oneof1446. */ int getOneof1446(); + /** + * int32 oneof_1447 = 1447; + * @return Whether the oneof1447 field is set. + */ + boolean hasOneof1447(); /** * int32 oneof_1447 = 1447; * @return The oneof1447. */ int getOneof1447(); + /** + * int32 oneof_1448 = 1448; + * @return Whether the oneof1448 field is set. + */ + boolean hasOneof1448(); /** * int32 oneof_1448 = 1448; * @return The oneof1448. */ int getOneof1448(); + /** + * int32 oneof_1449 = 1449; + * @return Whether the oneof1449 field is set. + */ + boolean hasOneof1449(); /** * int32 oneof_1449 = 1449; * @return The oneof1449. */ int getOneof1449(); + /** + * int32 oneof_1450 = 1450; + * @return Whether the oneof1450 field is set. + */ + boolean hasOneof1450(); /** * int32 oneof_1450 = 1450; * @return The oneof1450. */ int getOneof1450(); + /** + * int32 oneof_1451 = 1451; + * @return Whether the oneof1451 field is set. + */ + boolean hasOneof1451(); /** * int32 oneof_1451 = 1451; * @return The oneof1451. */ int getOneof1451(); + /** + * int32 oneof_1452 = 1452; + * @return Whether the oneof1452 field is set. + */ + boolean hasOneof1452(); /** * int32 oneof_1452 = 1452; * @return The oneof1452. */ int getOneof1452(); + /** + * int32 oneof_1453 = 1453; + * @return Whether the oneof1453 field is set. + */ + boolean hasOneof1453(); /** * int32 oneof_1453 = 1453; * @return The oneof1453. */ int getOneof1453(); + /** + * int32 oneof_1454 = 1454; + * @return Whether the oneof1454 field is set. + */ + boolean hasOneof1454(); /** * int32 oneof_1454 = 1454; * @return The oneof1454. */ int getOneof1454(); + /** + * int32 oneof_1455 = 1455; + * @return Whether the oneof1455 field is set. + */ + boolean hasOneof1455(); /** * int32 oneof_1455 = 1455; * @return The oneof1455. */ int getOneof1455(); + /** + * int32 oneof_1456 = 1456; + * @return Whether the oneof1456 field is set. + */ + boolean hasOneof1456(); /** * int32 oneof_1456 = 1456; * @return The oneof1456. */ int getOneof1456(); + /** + * int32 oneof_1457 = 1457; + * @return Whether the oneof1457 field is set. + */ + boolean hasOneof1457(); /** * int32 oneof_1457 = 1457; * @return The oneof1457. */ int getOneof1457(); + /** + * int32 oneof_1458 = 1458; + * @return Whether the oneof1458 field is set. + */ + boolean hasOneof1458(); /** * int32 oneof_1458 = 1458; * @return The oneof1458. */ int getOneof1458(); + /** + * int32 oneof_1459 = 1459; + * @return Whether the oneof1459 field is set. + */ + boolean hasOneof1459(); /** * int32 oneof_1459 = 1459; * @return The oneof1459. */ int getOneof1459(); + /** + * int32 oneof_1460 = 1460; + * @return Whether the oneof1460 field is set. + */ + boolean hasOneof1460(); /** * int32 oneof_1460 = 1460; * @return The oneof1460. */ int getOneof1460(); + /** + * int32 oneof_1461 = 1461; + * @return Whether the oneof1461 field is set. + */ + boolean hasOneof1461(); /** * int32 oneof_1461 = 1461; * @return The oneof1461. */ int getOneof1461(); + /** + * int32 oneof_1462 = 1462; + * @return Whether the oneof1462 field is set. + */ + boolean hasOneof1462(); /** * int32 oneof_1462 = 1462; * @return The oneof1462. */ int getOneof1462(); + /** + * int32 oneof_1463 = 1463; + * @return Whether the oneof1463 field is set. + */ + boolean hasOneof1463(); /** * int32 oneof_1463 = 1463; * @return The oneof1463. */ int getOneof1463(); + /** + * int32 oneof_1464 = 1464; + * @return Whether the oneof1464 field is set. + */ + boolean hasOneof1464(); /** * int32 oneof_1464 = 1464; * @return The oneof1464. */ int getOneof1464(); + /** + * int32 oneof_1465 = 1465; + * @return Whether the oneof1465 field is set. + */ + boolean hasOneof1465(); /** * int32 oneof_1465 = 1465; * @return The oneof1465. */ int getOneof1465(); + /** + * int32 oneof_1466 = 1466; + * @return Whether the oneof1466 field is set. + */ + boolean hasOneof1466(); /** * int32 oneof_1466 = 1466; * @return The oneof1466. */ int getOneof1466(); + /** + * int32 oneof_1467 = 1467; + * @return Whether the oneof1467 field is set. + */ + boolean hasOneof1467(); /** * int32 oneof_1467 = 1467; * @return The oneof1467. */ int getOneof1467(); + /** + * int32 oneof_1468 = 1468; + * @return Whether the oneof1468 field is set. + */ + boolean hasOneof1468(); /** * int32 oneof_1468 = 1468; * @return The oneof1468. */ int getOneof1468(); + /** + * int32 oneof_1469 = 1469; + * @return Whether the oneof1469 field is set. + */ + boolean hasOneof1469(); /** * int32 oneof_1469 = 1469; * @return The oneof1469. */ int getOneof1469(); + /** + * int32 oneof_1470 = 1470; + * @return Whether the oneof1470 field is set. + */ + boolean hasOneof1470(); /** * int32 oneof_1470 = 1470; * @return The oneof1470. */ int getOneof1470(); + /** + * int32 oneof_1471 = 1471; + * @return Whether the oneof1471 field is set. + */ + boolean hasOneof1471(); /** * int32 oneof_1471 = 1471; * @return The oneof1471. */ int getOneof1471(); + /** + * int32 oneof_1472 = 1472; + * @return Whether the oneof1472 field is set. + */ + boolean hasOneof1472(); /** * int32 oneof_1472 = 1472; * @return The oneof1472. */ int getOneof1472(); + /** + * int32 oneof_1473 = 1473; + * @return Whether the oneof1473 field is set. + */ + boolean hasOneof1473(); /** * int32 oneof_1473 = 1473; * @return The oneof1473. */ int getOneof1473(); + /** + * int32 oneof_1474 = 1474; + * @return Whether the oneof1474 field is set. + */ + boolean hasOneof1474(); /** * int32 oneof_1474 = 1474; * @return The oneof1474. */ int getOneof1474(); + /** + * int32 oneof_1475 = 1475; + * @return Whether the oneof1475 field is set. + */ + boolean hasOneof1475(); /** * int32 oneof_1475 = 1475; * @return The oneof1475. */ int getOneof1475(); + /** + * int32 oneof_1476 = 1476; + * @return Whether the oneof1476 field is set. + */ + boolean hasOneof1476(); /** * int32 oneof_1476 = 1476; * @return The oneof1476. */ int getOneof1476(); + /** + * int32 oneof_1477 = 1477; + * @return Whether the oneof1477 field is set. + */ + boolean hasOneof1477(); /** * int32 oneof_1477 = 1477; * @return The oneof1477. */ int getOneof1477(); + /** + * int32 oneof_1478 = 1478; + * @return Whether the oneof1478 field is set. + */ + boolean hasOneof1478(); /** * int32 oneof_1478 = 1478; * @return The oneof1478. */ int getOneof1478(); + /** + * int32 oneof_1479 = 1479; + * @return Whether the oneof1479 field is set. + */ + boolean hasOneof1479(); /** * int32 oneof_1479 = 1479; * @return The oneof1479. */ int getOneof1479(); + /** + * int32 oneof_1480 = 1480; + * @return Whether the oneof1480 field is set. + */ + boolean hasOneof1480(); /** * int32 oneof_1480 = 1480; * @return The oneof1480. */ int getOneof1480(); + /** + * int32 oneof_1481 = 1481; + * @return Whether the oneof1481 field is set. + */ + boolean hasOneof1481(); /** * int32 oneof_1481 = 1481; * @return The oneof1481. */ int getOneof1481(); + /** + * int32 oneof_1482 = 1482; + * @return Whether the oneof1482 field is set. + */ + boolean hasOneof1482(); /** * int32 oneof_1482 = 1482; * @return The oneof1482. */ int getOneof1482(); + /** + * int32 oneof_1483 = 1483; + * @return Whether the oneof1483 field is set. + */ + boolean hasOneof1483(); /** * int32 oneof_1483 = 1483; * @return The oneof1483. */ int getOneof1483(); + /** + * int32 oneof_1484 = 1484; + * @return Whether the oneof1484 field is set. + */ + boolean hasOneof1484(); /** * int32 oneof_1484 = 1484; * @return The oneof1484. */ int getOneof1484(); + /** + * int32 oneof_1485 = 1485; + * @return Whether the oneof1485 field is set. + */ + boolean hasOneof1485(); /** * int32 oneof_1485 = 1485; * @return The oneof1485. */ int getOneof1485(); + /** + * int32 oneof_1486 = 1486; + * @return Whether the oneof1486 field is set. + */ + boolean hasOneof1486(); /** * int32 oneof_1486 = 1486; * @return The oneof1486. */ int getOneof1486(); + /** + * int32 oneof_1487 = 1487; + * @return Whether the oneof1487 field is set. + */ + boolean hasOneof1487(); /** * int32 oneof_1487 = 1487; * @return The oneof1487. */ int getOneof1487(); + /** + * int32 oneof_1488 = 1488; + * @return Whether the oneof1488 field is set. + */ + boolean hasOneof1488(); /** * int32 oneof_1488 = 1488; * @return The oneof1488. */ int getOneof1488(); + /** + * int32 oneof_1489 = 1489; + * @return Whether the oneof1489 field is set. + */ + boolean hasOneof1489(); /** * int32 oneof_1489 = 1489; * @return The oneof1489. */ int getOneof1489(); + /** + * int32 oneof_1490 = 1490; + * @return Whether the oneof1490 field is set. + */ + boolean hasOneof1490(); /** * int32 oneof_1490 = 1490; * @return The oneof1490. */ int getOneof1490(); + /** + * int32 oneof_1491 = 1491; + * @return Whether the oneof1491 field is set. + */ + boolean hasOneof1491(); /** * int32 oneof_1491 = 1491; * @return The oneof1491. */ int getOneof1491(); + /** + * int32 oneof_1492 = 1492; + * @return Whether the oneof1492 field is set. + */ + boolean hasOneof1492(); /** * int32 oneof_1492 = 1492; * @return The oneof1492. */ int getOneof1492(); + /** + * int32 oneof_1493 = 1493; + * @return Whether the oneof1493 field is set. + */ + boolean hasOneof1493(); /** * int32 oneof_1493 = 1493; * @return The oneof1493. */ int getOneof1493(); + /** + * int32 oneof_1494 = 1494; + * @return Whether the oneof1494 field is set. + */ + boolean hasOneof1494(); /** * int32 oneof_1494 = 1494; * @return The oneof1494. */ int getOneof1494(); + /** + * int32 oneof_1495 = 1495; + * @return Whether the oneof1495 field is set. + */ + boolean hasOneof1495(); /** * int32 oneof_1495 = 1495; * @return The oneof1495. */ int getOneof1495(); + /** + * int32 oneof_1496 = 1496; + * @return Whether the oneof1496 field is set. + */ + boolean hasOneof1496(); /** * int32 oneof_1496 = 1496; * @return The oneof1496. */ int getOneof1496(); + /** + * int32 oneof_1497 = 1497; + * @return Whether the oneof1497 field is set. + */ + boolean hasOneof1497(); /** * int32 oneof_1497 = 1497; * @return The oneof1497. */ int getOneof1497(); + /** + * int32 oneof_1498 = 1498; + * @return Whether the oneof1498 field is set. + */ + boolean hasOneof1498(); /** * int32 oneof_1498 = 1498; * @return The oneof1498. */ int getOneof1498(); + /** + * int32 oneof_1499 = 1499; + * @return Whether the oneof1499 field is set. + */ + boolean hasOneof1499(); /** * int32 oneof_1499 = 1499; * @return The oneof1499. */ int getOneof1499(); + /** + * int32 oneof_1500 = 1500; + * @return Whether the oneof1500 field is set. + */ + boolean hasOneof1500(); /** * int32 oneof_1500 = 1500; * @return The oneof1500. */ int getOneof1500(); + /** + * int32 oneof_1501 = 1501; + * @return Whether the oneof1501 field is set. + */ + boolean hasOneof1501(); /** * int32 oneof_1501 = 1501; * @return The oneof1501. */ int getOneof1501(); + /** + * int32 oneof_1502 = 1502; + * @return Whether the oneof1502 field is set. + */ + boolean hasOneof1502(); /** * int32 oneof_1502 = 1502; * @return The oneof1502. */ int getOneof1502(); + /** + * int32 oneof_1503 = 1503; + * @return Whether the oneof1503 field is set. + */ + boolean hasOneof1503(); /** * int32 oneof_1503 = 1503; * @return The oneof1503. */ int getOneof1503(); + /** + * int32 oneof_1504 = 1504; + * @return Whether the oneof1504 field is set. + */ + boolean hasOneof1504(); /** * int32 oneof_1504 = 1504; * @return The oneof1504. */ int getOneof1504(); + /** + * int32 oneof_1505 = 1505; + * @return Whether the oneof1505 field is set. + */ + boolean hasOneof1505(); /** * int32 oneof_1505 = 1505; * @return The oneof1505. */ int getOneof1505(); + /** + * int32 oneof_1506 = 1506; + * @return Whether the oneof1506 field is set. + */ + boolean hasOneof1506(); /** * int32 oneof_1506 = 1506; * @return The oneof1506. */ int getOneof1506(); + /** + * int32 oneof_1507 = 1507; + * @return Whether the oneof1507 field is set. + */ + boolean hasOneof1507(); /** * int32 oneof_1507 = 1507; * @return The oneof1507. */ int getOneof1507(); + /** + * int32 oneof_1508 = 1508; + * @return Whether the oneof1508 field is set. + */ + boolean hasOneof1508(); /** * int32 oneof_1508 = 1508; * @return The oneof1508. */ int getOneof1508(); + /** + * int32 oneof_1509 = 1509; + * @return Whether the oneof1509 field is set. + */ + boolean hasOneof1509(); /** * int32 oneof_1509 = 1509; * @return The oneof1509. */ int getOneof1509(); + /** + * int32 oneof_1510 = 1510; + * @return Whether the oneof1510 field is set. + */ + boolean hasOneof1510(); /** * int32 oneof_1510 = 1510; * @return The oneof1510. */ int getOneof1510(); + /** + * int32 oneof_1511 = 1511; + * @return Whether the oneof1511 field is set. + */ + boolean hasOneof1511(); /** * int32 oneof_1511 = 1511; * @return The oneof1511. */ int getOneof1511(); + /** + * int32 oneof_1512 = 1512; + * @return Whether the oneof1512 field is set. + */ + boolean hasOneof1512(); /** * int32 oneof_1512 = 1512; * @return The oneof1512. */ int getOneof1512(); + /** + * int32 oneof_1513 = 1513; + * @return Whether the oneof1513 field is set. + */ + boolean hasOneof1513(); /** * int32 oneof_1513 = 1513; * @return The oneof1513. */ int getOneof1513(); + /** + * int32 oneof_1514 = 1514; + * @return Whether the oneof1514 field is set. + */ + boolean hasOneof1514(); /** * int32 oneof_1514 = 1514; * @return The oneof1514. */ int getOneof1514(); + /** + * int32 oneof_1515 = 1515; + * @return Whether the oneof1515 field is set. + */ + boolean hasOneof1515(); /** * int32 oneof_1515 = 1515; * @return The oneof1515. */ int getOneof1515(); + /** + * int32 oneof_1516 = 1516; + * @return Whether the oneof1516 field is set. + */ + boolean hasOneof1516(); /** * int32 oneof_1516 = 1516; * @return The oneof1516. */ int getOneof1516(); + /** + * int32 oneof_1517 = 1517; + * @return Whether the oneof1517 field is set. + */ + boolean hasOneof1517(); /** * int32 oneof_1517 = 1517; * @return The oneof1517. */ int getOneof1517(); + /** + * int32 oneof_1518 = 1518; + * @return Whether the oneof1518 field is set. + */ + boolean hasOneof1518(); /** * int32 oneof_1518 = 1518; * @return The oneof1518. */ int getOneof1518(); + /** + * int32 oneof_1519 = 1519; + * @return Whether the oneof1519 field is set. + */ + boolean hasOneof1519(); /** * int32 oneof_1519 = 1519; * @return The oneof1519. */ int getOneof1519(); + /** + * int32 oneof_1520 = 1520; + * @return Whether the oneof1520 field is set. + */ + boolean hasOneof1520(); /** * int32 oneof_1520 = 1520; * @return The oneof1520. */ int getOneof1520(); + /** + * int32 oneof_1521 = 1521; + * @return Whether the oneof1521 field is set. + */ + boolean hasOneof1521(); /** * int32 oneof_1521 = 1521; * @return The oneof1521. */ int getOneof1521(); + /** + * int32 oneof_1522 = 1522; + * @return Whether the oneof1522 field is set. + */ + boolean hasOneof1522(); /** * int32 oneof_1522 = 1522; * @return The oneof1522. */ int getOneof1522(); + /** + * int32 oneof_1523 = 1523; + * @return Whether the oneof1523 field is set. + */ + boolean hasOneof1523(); /** * int32 oneof_1523 = 1523; * @return The oneof1523. */ int getOneof1523(); + /** + * int32 oneof_1524 = 1524; + * @return Whether the oneof1524 field is set. + */ + boolean hasOneof1524(); /** * int32 oneof_1524 = 1524; * @return The oneof1524. */ int getOneof1524(); + /** + * int32 oneof_1525 = 1525; + * @return Whether the oneof1525 field is set. + */ + boolean hasOneof1525(); /** * int32 oneof_1525 = 1525; * @return The oneof1525. */ int getOneof1525(); + /** + * int32 oneof_1526 = 1526; + * @return Whether the oneof1526 field is set. + */ + boolean hasOneof1526(); /** * int32 oneof_1526 = 1526; * @return The oneof1526. */ int getOneof1526(); + /** + * int32 oneof_1527 = 1527; + * @return Whether the oneof1527 field is set. + */ + boolean hasOneof1527(); /** * int32 oneof_1527 = 1527; * @return The oneof1527. */ int getOneof1527(); + /** + * int32 oneof_1528 = 1528; + * @return Whether the oneof1528 field is set. + */ + boolean hasOneof1528(); /** * int32 oneof_1528 = 1528; * @return The oneof1528. */ int getOneof1528(); + /** + * int32 oneof_1529 = 1529; + * @return Whether the oneof1529 field is set. + */ + boolean hasOneof1529(); /** * int32 oneof_1529 = 1529; * @return The oneof1529. */ int getOneof1529(); + /** + * int32 oneof_1530 = 1530; + * @return Whether the oneof1530 field is set. + */ + boolean hasOneof1530(); /** * int32 oneof_1530 = 1530; * @return The oneof1530. */ int getOneof1530(); + /** + * int32 oneof_1531 = 1531; + * @return Whether the oneof1531 field is set. + */ + boolean hasOneof1531(); /** * int32 oneof_1531 = 1531; * @return The oneof1531. */ int getOneof1531(); + /** + * int32 oneof_1532 = 1532; + * @return Whether the oneof1532 field is set. + */ + boolean hasOneof1532(); /** * int32 oneof_1532 = 1532; * @return The oneof1532. */ int getOneof1532(); + /** + * int32 oneof_1533 = 1533; + * @return Whether the oneof1533 field is set. + */ + boolean hasOneof1533(); /** * int32 oneof_1533 = 1533; * @return The oneof1533. */ int getOneof1533(); + /** + * int32 oneof_1534 = 1534; + * @return Whether the oneof1534 field is set. + */ + boolean hasOneof1534(); /** * int32 oneof_1534 = 1534; * @return The oneof1534. */ int getOneof1534(); + /** + * int32 oneof_1535 = 1535; + * @return Whether the oneof1535 field is set. + */ + boolean hasOneof1535(); /** * int32 oneof_1535 = 1535; * @return The oneof1535. */ int getOneof1535(); + /** + * int32 oneof_1536 = 1536; + * @return Whether the oneof1536 field is set. + */ + boolean hasOneof1536(); /** * int32 oneof_1536 = 1536; * @return The oneof1536. */ int getOneof1536(); + /** + * int32 oneof_1537 = 1537; + * @return Whether the oneof1537 field is set. + */ + boolean hasOneof1537(); /** * int32 oneof_1537 = 1537; * @return The oneof1537. */ int getOneof1537(); + /** + * int32 oneof_1538 = 1538; + * @return Whether the oneof1538 field is set. + */ + boolean hasOneof1538(); /** * int32 oneof_1538 = 1538; * @return The oneof1538. */ int getOneof1538(); + /** + * int32 oneof_1539 = 1539; + * @return Whether the oneof1539 field is set. + */ + boolean hasOneof1539(); /** * int32 oneof_1539 = 1539; * @return The oneof1539. */ int getOneof1539(); + /** + * int32 oneof_1540 = 1540; + * @return Whether the oneof1540 field is set. + */ + boolean hasOneof1540(); /** * int32 oneof_1540 = 1540; * @return The oneof1540. */ int getOneof1540(); + /** + * int32 oneof_1541 = 1541; + * @return Whether the oneof1541 field is set. + */ + boolean hasOneof1541(); /** * int32 oneof_1541 = 1541; * @return The oneof1541. */ int getOneof1541(); + /** + * int32 oneof_1542 = 1542; + * @return Whether the oneof1542 field is set. + */ + boolean hasOneof1542(); /** * int32 oneof_1542 = 1542; * @return The oneof1542. */ int getOneof1542(); + /** + * int32 oneof_1543 = 1543; + * @return Whether the oneof1543 field is set. + */ + boolean hasOneof1543(); /** * int32 oneof_1543 = 1543; * @return The oneof1543. */ int getOneof1543(); + /** + * int32 oneof_1544 = 1544; + * @return Whether the oneof1544 field is set. + */ + boolean hasOneof1544(); /** * int32 oneof_1544 = 1544; * @return The oneof1544. */ int getOneof1544(); + /** + * int32 oneof_1545 = 1545; + * @return Whether the oneof1545 field is set. + */ + boolean hasOneof1545(); /** * int32 oneof_1545 = 1545; * @return The oneof1545. */ int getOneof1545(); + /** + * int32 oneof_1546 = 1546; + * @return Whether the oneof1546 field is set. + */ + boolean hasOneof1546(); /** * int32 oneof_1546 = 1546; * @return The oneof1546. */ int getOneof1546(); + /** + * int32 oneof_1547 = 1547; + * @return Whether the oneof1547 field is set. + */ + boolean hasOneof1547(); /** * int32 oneof_1547 = 1547; * @return The oneof1547. */ int getOneof1547(); + /** + * int32 oneof_1548 = 1548; + * @return Whether the oneof1548 field is set. + */ + boolean hasOneof1548(); /** * int32 oneof_1548 = 1548; * @return The oneof1548. */ int getOneof1548(); + /** + * int32 oneof_1549 = 1549; + * @return Whether the oneof1549 field is set. + */ + boolean hasOneof1549(); /** * int32 oneof_1549 = 1549; * @return The oneof1549. */ int getOneof1549(); + /** + * int32 oneof_1550 = 1550; + * @return Whether the oneof1550 field is set. + */ + boolean hasOneof1550(); /** * int32 oneof_1550 = 1550; * @return The oneof1550. */ int getOneof1550(); + /** + * int32 oneof_1551 = 1551; + * @return Whether the oneof1551 field is set. + */ + boolean hasOneof1551(); /** * int32 oneof_1551 = 1551; * @return The oneof1551. */ int getOneof1551(); + /** + * int32 oneof_1552 = 1552; + * @return Whether the oneof1552 field is set. + */ + boolean hasOneof1552(); /** * int32 oneof_1552 = 1552; * @return The oneof1552. */ int getOneof1552(); + /** + * int32 oneof_1553 = 1553; + * @return Whether the oneof1553 field is set. + */ + boolean hasOneof1553(); /** * int32 oneof_1553 = 1553; * @return The oneof1553. */ int getOneof1553(); + /** + * int32 oneof_1554 = 1554; + * @return Whether the oneof1554 field is set. + */ + boolean hasOneof1554(); /** * int32 oneof_1554 = 1554; * @return The oneof1554. */ int getOneof1554(); + /** + * int32 oneof_1555 = 1555; + * @return Whether the oneof1555 field is set. + */ + boolean hasOneof1555(); /** * int32 oneof_1555 = 1555; * @return The oneof1555. */ int getOneof1555(); + /** + * int32 oneof_1556 = 1556; + * @return Whether the oneof1556 field is set. + */ + boolean hasOneof1556(); /** * int32 oneof_1556 = 1556; * @return The oneof1556. */ int getOneof1556(); + /** + * int32 oneof_1557 = 1557; + * @return Whether the oneof1557 field is set. + */ + boolean hasOneof1557(); /** * int32 oneof_1557 = 1557; * @return The oneof1557. */ int getOneof1557(); + /** + * int32 oneof_1558 = 1558; + * @return Whether the oneof1558 field is set. + */ + boolean hasOneof1558(); /** * int32 oneof_1558 = 1558; * @return The oneof1558. */ int getOneof1558(); + /** + * int32 oneof_1559 = 1559; + * @return Whether the oneof1559 field is set. + */ + boolean hasOneof1559(); /** * int32 oneof_1559 = 1559; * @return The oneof1559. */ int getOneof1559(); + /** + * int32 oneof_1560 = 1560; + * @return Whether the oneof1560 field is set. + */ + boolean hasOneof1560(); /** * int32 oneof_1560 = 1560; * @return The oneof1560. */ int getOneof1560(); + /** + * int32 oneof_1561 = 1561; + * @return Whether the oneof1561 field is set. + */ + boolean hasOneof1561(); /** * int32 oneof_1561 = 1561; * @return The oneof1561. */ int getOneof1561(); + /** + * int32 oneof_1562 = 1562; + * @return Whether the oneof1562 field is set. + */ + boolean hasOneof1562(); /** * int32 oneof_1562 = 1562; * @return The oneof1562. */ int getOneof1562(); + /** + * int32 oneof_1563 = 1563; + * @return Whether the oneof1563 field is set. + */ + boolean hasOneof1563(); /** * int32 oneof_1563 = 1563; * @return The oneof1563. */ int getOneof1563(); + /** + * int32 oneof_1564 = 1564; + * @return Whether the oneof1564 field is set. + */ + boolean hasOneof1564(); /** * int32 oneof_1564 = 1564; * @return The oneof1564. */ int getOneof1564(); + /** + * int32 oneof_1565 = 1565; + * @return Whether the oneof1565 field is set. + */ + boolean hasOneof1565(); /** * int32 oneof_1565 = 1565; * @return The oneof1565. */ int getOneof1565(); + /** + * int32 oneof_1566 = 1566; + * @return Whether the oneof1566 field is set. + */ + boolean hasOneof1566(); /** * int32 oneof_1566 = 1566; * @return The oneof1566. */ int getOneof1566(); + /** + * int32 oneof_1567 = 1567; + * @return Whether the oneof1567 field is set. + */ + boolean hasOneof1567(); /** * int32 oneof_1567 = 1567; * @return The oneof1567. */ int getOneof1567(); + /** + * int32 oneof_1568 = 1568; + * @return Whether the oneof1568 field is set. + */ + boolean hasOneof1568(); /** * int32 oneof_1568 = 1568; * @return The oneof1568. */ int getOneof1568(); + /** + * int32 oneof_1569 = 1569; + * @return Whether the oneof1569 field is set. + */ + boolean hasOneof1569(); /** * int32 oneof_1569 = 1569; * @return The oneof1569. */ int getOneof1569(); + /** + * int32 oneof_1570 = 1570; + * @return Whether the oneof1570 field is set. + */ + boolean hasOneof1570(); /** * int32 oneof_1570 = 1570; * @return The oneof1570. */ int getOneof1570(); + /** + * int32 oneof_1571 = 1571; + * @return Whether the oneof1571 field is set. + */ + boolean hasOneof1571(); /** * int32 oneof_1571 = 1571; * @return The oneof1571. */ int getOneof1571(); + /** + * int32 oneof_1572 = 1572; + * @return Whether the oneof1572 field is set. + */ + boolean hasOneof1572(); /** * int32 oneof_1572 = 1572; * @return The oneof1572. */ int getOneof1572(); + /** + * int32 oneof_1573 = 1573; + * @return Whether the oneof1573 field is set. + */ + boolean hasOneof1573(); /** * int32 oneof_1573 = 1573; * @return The oneof1573. */ int getOneof1573(); + /** + * int32 oneof_1574 = 1574; + * @return Whether the oneof1574 field is set. + */ + boolean hasOneof1574(); /** * int32 oneof_1574 = 1574; * @return The oneof1574. */ int getOneof1574(); + /** + * int32 oneof_1575 = 1575; + * @return Whether the oneof1575 field is set. + */ + boolean hasOneof1575(); /** * int32 oneof_1575 = 1575; * @return The oneof1575. */ int getOneof1575(); + /** + * int32 oneof_1576 = 1576; + * @return Whether the oneof1576 field is set. + */ + boolean hasOneof1576(); /** * int32 oneof_1576 = 1576; * @return The oneof1576. */ int getOneof1576(); + /** + * int32 oneof_1577 = 1577; + * @return Whether the oneof1577 field is set. + */ + boolean hasOneof1577(); /** * int32 oneof_1577 = 1577; * @return The oneof1577. */ int getOneof1577(); + /** + * int32 oneof_1578 = 1578; + * @return Whether the oneof1578 field is set. + */ + boolean hasOneof1578(); /** * int32 oneof_1578 = 1578; * @return The oneof1578. */ int getOneof1578(); + /** + * int32 oneof_1579 = 1579; + * @return Whether the oneof1579 field is set. + */ + boolean hasOneof1579(); /** * int32 oneof_1579 = 1579; * @return The oneof1579. */ int getOneof1579(); + /** + * int32 oneof_1580 = 1580; + * @return Whether the oneof1580 field is set. + */ + boolean hasOneof1580(); /** * int32 oneof_1580 = 1580; * @return The oneof1580. */ int getOneof1580(); + /** + * int32 oneof_1581 = 1581; + * @return Whether the oneof1581 field is set. + */ + boolean hasOneof1581(); /** * int32 oneof_1581 = 1581; * @return The oneof1581. */ int getOneof1581(); + /** + * int32 oneof_1582 = 1582; + * @return Whether the oneof1582 field is set. + */ + boolean hasOneof1582(); /** * int32 oneof_1582 = 1582; * @return The oneof1582. */ int getOneof1582(); + /** + * int32 oneof_1583 = 1583; + * @return Whether the oneof1583 field is set. + */ + boolean hasOneof1583(); /** * int32 oneof_1583 = 1583; * @return The oneof1583. */ int getOneof1583(); + /** + * int32 oneof_1584 = 1584; + * @return Whether the oneof1584 field is set. + */ + boolean hasOneof1584(); /** * int32 oneof_1584 = 1584; * @return The oneof1584. */ int getOneof1584(); + /** + * int32 oneof_1585 = 1585; + * @return Whether the oneof1585 field is set. + */ + boolean hasOneof1585(); /** * int32 oneof_1585 = 1585; * @return The oneof1585. */ int getOneof1585(); + /** + * int32 oneof_1586 = 1586; + * @return Whether the oneof1586 field is set. + */ + boolean hasOneof1586(); /** * int32 oneof_1586 = 1586; * @return The oneof1586. */ int getOneof1586(); + /** + * int32 oneof_1587 = 1587; + * @return Whether the oneof1587 field is set. + */ + boolean hasOneof1587(); /** * int32 oneof_1587 = 1587; * @return The oneof1587. */ int getOneof1587(); + /** + * int32 oneof_1588 = 1588; + * @return Whether the oneof1588 field is set. + */ + boolean hasOneof1588(); /** * int32 oneof_1588 = 1588; * @return The oneof1588. */ int getOneof1588(); + /** + * int32 oneof_1589 = 1589; + * @return Whether the oneof1589 field is set. + */ + boolean hasOneof1589(); /** * int32 oneof_1589 = 1589; * @return The oneof1589. */ int getOneof1589(); + /** + * int32 oneof_1590 = 1590; + * @return Whether the oneof1590 field is set. + */ + boolean hasOneof1590(); /** * int32 oneof_1590 = 1590; * @return The oneof1590. */ int getOneof1590(); + /** + * int32 oneof_1591 = 1591; + * @return Whether the oneof1591 field is set. + */ + boolean hasOneof1591(); /** * int32 oneof_1591 = 1591; * @return The oneof1591. */ int getOneof1591(); + /** + * int32 oneof_1592 = 1592; + * @return Whether the oneof1592 field is set. + */ + boolean hasOneof1592(); /** * int32 oneof_1592 = 1592; * @return The oneof1592. */ int getOneof1592(); + /** + * int32 oneof_1593 = 1593; + * @return Whether the oneof1593 field is set. + */ + boolean hasOneof1593(); /** * int32 oneof_1593 = 1593; * @return The oneof1593. */ int getOneof1593(); + /** + * int32 oneof_1594 = 1594; + * @return Whether the oneof1594 field is set. + */ + boolean hasOneof1594(); /** * int32 oneof_1594 = 1594; * @return The oneof1594. */ int getOneof1594(); + /** + * int32 oneof_1595 = 1595; + * @return Whether the oneof1595 field is set. + */ + boolean hasOneof1595(); /** * int32 oneof_1595 = 1595; * @return The oneof1595. */ int getOneof1595(); + /** + * int32 oneof_1596 = 1596; + * @return Whether the oneof1596 field is set. + */ + boolean hasOneof1596(); /** * int32 oneof_1596 = 1596; * @return The oneof1596. */ int getOneof1596(); + /** + * int32 oneof_1597 = 1597; + * @return Whether the oneof1597 field is set. + */ + boolean hasOneof1597(); /** * int32 oneof_1597 = 1597; * @return The oneof1597. */ int getOneof1597(); + /** + * int32 oneof_1598 = 1598; + * @return Whether the oneof1598 field is set. + */ + boolean hasOneof1598(); /** * int32 oneof_1598 = 1598; * @return The oneof1598. */ int getOneof1598(); + /** + * int32 oneof_1599 = 1599; + * @return Whether the oneof1599 field is set. + */ + boolean hasOneof1599(); /** * int32 oneof_1599 = 1599; * @return The oneof1599. */ int getOneof1599(); + /** + * int32 oneof_1600 = 1600; + * @return Whether the oneof1600 field is set. + */ + boolean hasOneof1600(); /** * int32 oneof_1600 = 1600; * @return The oneof1600. */ int getOneof1600(); + /** + * int32 oneof_1601 = 1601; + * @return Whether the oneof1601 field is set. + */ + boolean hasOneof1601(); /** * int32 oneof_1601 = 1601; * @return The oneof1601. */ int getOneof1601(); + /** + * int32 oneof_1602 = 1602; + * @return Whether the oneof1602 field is set. + */ + boolean hasOneof1602(); /** * int32 oneof_1602 = 1602; * @return The oneof1602. */ int getOneof1602(); + /** + * int32 oneof_1603 = 1603; + * @return Whether the oneof1603 field is set. + */ + boolean hasOneof1603(); /** * int32 oneof_1603 = 1603; * @return The oneof1603. */ int getOneof1603(); + /** + * int32 oneof_1604 = 1604; + * @return Whether the oneof1604 field is set. + */ + boolean hasOneof1604(); /** * int32 oneof_1604 = 1604; * @return The oneof1604. */ int getOneof1604(); + /** + * int32 oneof_1605 = 1605; + * @return Whether the oneof1605 field is set. + */ + boolean hasOneof1605(); /** * int32 oneof_1605 = 1605; * @return The oneof1605. */ int getOneof1605(); + /** + * int32 oneof_1606 = 1606; + * @return Whether the oneof1606 field is set. + */ + boolean hasOneof1606(); /** * int32 oneof_1606 = 1606; * @return The oneof1606. */ int getOneof1606(); + /** + * int32 oneof_1607 = 1607; + * @return Whether the oneof1607 field is set. + */ + boolean hasOneof1607(); /** * int32 oneof_1607 = 1607; * @return The oneof1607. */ int getOneof1607(); + /** + * int32 oneof_1608 = 1608; + * @return Whether the oneof1608 field is set. + */ + boolean hasOneof1608(); /** * int32 oneof_1608 = 1608; * @return The oneof1608. */ int getOneof1608(); + /** + * int32 oneof_1609 = 1609; + * @return Whether the oneof1609 field is set. + */ + boolean hasOneof1609(); /** * int32 oneof_1609 = 1609; * @return The oneof1609. */ int getOneof1609(); + /** + * int32 oneof_1610 = 1610; + * @return Whether the oneof1610 field is set. + */ + boolean hasOneof1610(); /** * int32 oneof_1610 = 1610; * @return The oneof1610. */ int getOneof1610(); + /** + * int32 oneof_1611 = 1611; + * @return Whether the oneof1611 field is set. + */ + boolean hasOneof1611(); /** * int32 oneof_1611 = 1611; * @return The oneof1611. */ int getOneof1611(); + /** + * int32 oneof_1612 = 1612; + * @return Whether the oneof1612 field is set. + */ + boolean hasOneof1612(); /** * int32 oneof_1612 = 1612; * @return The oneof1612. */ int getOneof1612(); + /** + * int32 oneof_1613 = 1613; + * @return Whether the oneof1613 field is set. + */ + boolean hasOneof1613(); /** * int32 oneof_1613 = 1613; * @return The oneof1613. */ int getOneof1613(); + /** + * int32 oneof_1614 = 1614; + * @return Whether the oneof1614 field is set. + */ + boolean hasOneof1614(); /** * int32 oneof_1614 = 1614; * @return The oneof1614. */ int getOneof1614(); + /** + * int32 oneof_1615 = 1615; + * @return Whether the oneof1615 field is set. + */ + boolean hasOneof1615(); /** * int32 oneof_1615 = 1615; * @return The oneof1615. */ int getOneof1615(); + /** + * int32 oneof_1616 = 1616; + * @return Whether the oneof1616 field is set. + */ + boolean hasOneof1616(); /** * int32 oneof_1616 = 1616; * @return The oneof1616. */ int getOneof1616(); + /** + * int32 oneof_1617 = 1617; + * @return Whether the oneof1617 field is set. + */ + boolean hasOneof1617(); /** * int32 oneof_1617 = 1617; * @return The oneof1617. */ int getOneof1617(); + /** + * int32 oneof_1618 = 1618; + * @return Whether the oneof1618 field is set. + */ + boolean hasOneof1618(); /** * int32 oneof_1618 = 1618; * @return The oneof1618. */ int getOneof1618(); + /** + * int32 oneof_1619 = 1619; + * @return Whether the oneof1619 field is set. + */ + boolean hasOneof1619(); /** * int32 oneof_1619 = 1619; * @return The oneof1619. */ int getOneof1619(); + /** + * int32 oneof_1620 = 1620; + * @return Whether the oneof1620 field is set. + */ + boolean hasOneof1620(); /** * int32 oneof_1620 = 1620; * @return The oneof1620. */ int getOneof1620(); + /** + * int32 oneof_1621 = 1621; + * @return Whether the oneof1621 field is set. + */ + boolean hasOneof1621(); /** * int32 oneof_1621 = 1621; * @return The oneof1621. */ int getOneof1621(); + /** + * int32 oneof_1622 = 1622; + * @return Whether the oneof1622 field is set. + */ + boolean hasOneof1622(); /** * int32 oneof_1622 = 1622; * @return The oneof1622. */ int getOneof1622(); + /** + * int32 oneof_1623 = 1623; + * @return Whether the oneof1623 field is set. + */ + boolean hasOneof1623(); /** * int32 oneof_1623 = 1623; * @return The oneof1623. */ int getOneof1623(); + /** + * int32 oneof_1624 = 1624; + * @return Whether the oneof1624 field is set. + */ + boolean hasOneof1624(); /** * int32 oneof_1624 = 1624; * @return The oneof1624. */ int getOneof1624(); + /** + * int32 oneof_1625 = 1625; + * @return Whether the oneof1625 field is set. + */ + boolean hasOneof1625(); /** * int32 oneof_1625 = 1625; * @return The oneof1625. */ int getOneof1625(); + /** + * int32 oneof_1626 = 1626; + * @return Whether the oneof1626 field is set. + */ + boolean hasOneof1626(); /** * int32 oneof_1626 = 1626; * @return The oneof1626. */ int getOneof1626(); + /** + * int32 oneof_1627 = 1627; + * @return Whether the oneof1627 field is set. + */ + boolean hasOneof1627(); /** * int32 oneof_1627 = 1627; * @return The oneof1627. */ int getOneof1627(); + /** + * int32 oneof_1628 = 1628; + * @return Whether the oneof1628 field is set. + */ + boolean hasOneof1628(); /** * int32 oneof_1628 = 1628; * @return The oneof1628. */ int getOneof1628(); + /** + * int32 oneof_1629 = 1629; + * @return Whether the oneof1629 field is set. + */ + boolean hasOneof1629(); /** * int32 oneof_1629 = 1629; * @return The oneof1629. */ int getOneof1629(); + /** + * int32 oneof_1630 = 1630; + * @return Whether the oneof1630 field is set. + */ + boolean hasOneof1630(); /** * int32 oneof_1630 = 1630; * @return The oneof1630. */ int getOneof1630(); + /** + * int32 oneof_1631 = 1631; + * @return Whether the oneof1631 field is set. + */ + boolean hasOneof1631(); /** * int32 oneof_1631 = 1631; * @return The oneof1631. */ int getOneof1631(); + /** + * int32 oneof_1632 = 1632; + * @return Whether the oneof1632 field is set. + */ + boolean hasOneof1632(); /** * int32 oneof_1632 = 1632; * @return The oneof1632. */ int getOneof1632(); + /** + * int32 oneof_1633 = 1633; + * @return Whether the oneof1633 field is set. + */ + boolean hasOneof1633(); /** * int32 oneof_1633 = 1633; * @return The oneof1633. */ int getOneof1633(); + /** + * int32 oneof_1634 = 1634; + * @return Whether the oneof1634 field is set. + */ + boolean hasOneof1634(); /** * int32 oneof_1634 = 1634; * @return The oneof1634. */ int getOneof1634(); + /** + * int32 oneof_1635 = 1635; + * @return Whether the oneof1635 field is set. + */ + boolean hasOneof1635(); /** * int32 oneof_1635 = 1635; * @return The oneof1635. */ int getOneof1635(); + /** + * int32 oneof_1636 = 1636; + * @return Whether the oneof1636 field is set. + */ + boolean hasOneof1636(); /** * int32 oneof_1636 = 1636; * @return The oneof1636. */ - int getOneof1636(); - + int getOneof1636(); + + /** + * int32 oneof_1637 = 1637; + * @return Whether the oneof1637 field is set. + */ + boolean hasOneof1637(); /** * int32 oneof_1637 = 1637; * @return The oneof1637. */ int getOneof1637(); + /** + * int32 oneof_1638 = 1638; + * @return Whether the oneof1638 field is set. + */ + boolean hasOneof1638(); /** * int32 oneof_1638 = 1638; * @return The oneof1638. */ int getOneof1638(); + /** + * int32 oneof_1639 = 1639; + * @return Whether the oneof1639 field is set. + */ + boolean hasOneof1639(); /** * int32 oneof_1639 = 1639; * @return The oneof1639. */ int getOneof1639(); + /** + * int32 oneof_1640 = 1640; + * @return Whether the oneof1640 field is set. + */ + boolean hasOneof1640(); /** * int32 oneof_1640 = 1640; * @return The oneof1640. */ int getOneof1640(); + /** + * int32 oneof_1641 = 1641; + * @return Whether the oneof1641 field is set. + */ + boolean hasOneof1641(); /** * int32 oneof_1641 = 1641; * @return The oneof1641. */ int getOneof1641(); + /** + * int32 oneof_1642 = 1642; + * @return Whether the oneof1642 field is set. + */ + boolean hasOneof1642(); /** * int32 oneof_1642 = 1642; * @return The oneof1642. */ int getOneof1642(); + /** + * int32 oneof_1643 = 1643; + * @return Whether the oneof1643 field is set. + */ + boolean hasOneof1643(); /** * int32 oneof_1643 = 1643; * @return The oneof1643. */ int getOneof1643(); + /** + * int32 oneof_1644 = 1644; + * @return Whether the oneof1644 field is set. + */ + boolean hasOneof1644(); /** * int32 oneof_1644 = 1644; * @return The oneof1644. */ int getOneof1644(); + /** + * int32 oneof_1645 = 1645; + * @return Whether the oneof1645 field is set. + */ + boolean hasOneof1645(); /** * int32 oneof_1645 = 1645; * @return The oneof1645. */ int getOneof1645(); + /** + * int32 oneof_1646 = 1646; + * @return Whether the oneof1646 field is set. + */ + boolean hasOneof1646(); /** * int32 oneof_1646 = 1646; * @return The oneof1646. */ int getOneof1646(); + /** + * int32 oneof_1647 = 1647; + * @return Whether the oneof1647 field is set. + */ + boolean hasOneof1647(); /** * int32 oneof_1647 = 1647; * @return The oneof1647. */ int getOneof1647(); + /** + * int32 oneof_1648 = 1648; + * @return Whether the oneof1648 field is set. + */ + boolean hasOneof1648(); /** * int32 oneof_1648 = 1648; * @return The oneof1648. */ int getOneof1648(); + /** + * int32 oneof_1649 = 1649; + * @return Whether the oneof1649 field is set. + */ + boolean hasOneof1649(); /** * int32 oneof_1649 = 1649; * @return The oneof1649. */ int getOneof1649(); + /** + * int32 oneof_1650 = 1650; + * @return Whether the oneof1650 field is set. + */ + boolean hasOneof1650(); /** * int32 oneof_1650 = 1650; * @return The oneof1650. */ int getOneof1650(); + /** + * int32 oneof_1651 = 1651; + * @return Whether the oneof1651 field is set. + */ + boolean hasOneof1651(); /** * int32 oneof_1651 = 1651; * @return The oneof1651. */ int getOneof1651(); + /** + * int32 oneof_1652 = 1652; + * @return Whether the oneof1652 field is set. + */ + boolean hasOneof1652(); /** * int32 oneof_1652 = 1652; * @return The oneof1652. */ int getOneof1652(); + /** + * int32 oneof_1653 = 1653; + * @return Whether the oneof1653 field is set. + */ + boolean hasOneof1653(); /** * int32 oneof_1653 = 1653; * @return The oneof1653. */ int getOneof1653(); + /** + * int32 oneof_1654 = 1654; + * @return Whether the oneof1654 field is set. + */ + boolean hasOneof1654(); /** * int32 oneof_1654 = 1654; * @return The oneof1654. */ int getOneof1654(); + /** + * int32 oneof_1655 = 1655; + * @return Whether the oneof1655 field is set. + */ + boolean hasOneof1655(); /** * int32 oneof_1655 = 1655; * @return The oneof1655. */ int getOneof1655(); + /** + * int32 oneof_1656 = 1656; + * @return Whether the oneof1656 field is set. + */ + boolean hasOneof1656(); /** * int32 oneof_1656 = 1656; * @return The oneof1656. */ int getOneof1656(); + /** + * int32 oneof_1657 = 1657; + * @return Whether the oneof1657 field is set. + */ + boolean hasOneof1657(); /** * int32 oneof_1657 = 1657; * @return The oneof1657. */ int getOneof1657(); + /** + * int32 oneof_1658 = 1658; + * @return Whether the oneof1658 field is set. + */ + boolean hasOneof1658(); /** * int32 oneof_1658 = 1658; * @return The oneof1658. */ int getOneof1658(); + /** + * int32 oneof_1659 = 1659; + * @return Whether the oneof1659 field is set. + */ + boolean hasOneof1659(); /** * int32 oneof_1659 = 1659; * @return The oneof1659. */ int getOneof1659(); + /** + * int32 oneof_1660 = 1660; + * @return Whether the oneof1660 field is set. + */ + boolean hasOneof1660(); /** * int32 oneof_1660 = 1660; * @return The oneof1660. */ int getOneof1660(); + /** + * int32 oneof_1661 = 1661; + * @return Whether the oneof1661 field is set. + */ + boolean hasOneof1661(); /** * int32 oneof_1661 = 1661; * @return The oneof1661. */ int getOneof1661(); + /** + * int32 oneof_1662 = 1662; + * @return Whether the oneof1662 field is set. + */ + boolean hasOneof1662(); /** * int32 oneof_1662 = 1662; * @return The oneof1662. */ int getOneof1662(); + /** + * int32 oneof_1663 = 1663; + * @return Whether the oneof1663 field is set. + */ + boolean hasOneof1663(); /** * int32 oneof_1663 = 1663; * @return The oneof1663. */ int getOneof1663(); + /** + * int32 oneof_1664 = 1664; + * @return Whether the oneof1664 field is set. + */ + boolean hasOneof1664(); /** * int32 oneof_1664 = 1664; * @return The oneof1664. */ int getOneof1664(); + /** + * int32 oneof_1665 = 1665; + * @return Whether the oneof1665 field is set. + */ + boolean hasOneof1665(); /** * int32 oneof_1665 = 1665; * @return The oneof1665. */ int getOneof1665(); + /** + * int32 oneof_1666 = 1666; + * @return Whether the oneof1666 field is set. + */ + boolean hasOneof1666(); /** * int32 oneof_1666 = 1666; * @return The oneof1666. */ int getOneof1666(); + /** + * int32 oneof_1667 = 1667; + * @return Whether the oneof1667 field is set. + */ + boolean hasOneof1667(); /** * int32 oneof_1667 = 1667; * @return The oneof1667. */ int getOneof1667(); + /** + * int32 oneof_1668 = 1668; + * @return Whether the oneof1668 field is set. + */ + boolean hasOneof1668(); /** * int32 oneof_1668 = 1668; * @return The oneof1668. */ int getOneof1668(); + /** + * int32 oneof_1669 = 1669; + * @return Whether the oneof1669 field is set. + */ + boolean hasOneof1669(); /** * int32 oneof_1669 = 1669; * @return The oneof1669. */ int getOneof1669(); + /** + * int32 oneof_1670 = 1670; + * @return Whether the oneof1670 field is set. + */ + boolean hasOneof1670(); /** * int32 oneof_1670 = 1670; * @return The oneof1670. */ int getOneof1670(); + /** + * int32 oneof_1671 = 1671; + * @return Whether the oneof1671 field is set. + */ + boolean hasOneof1671(); /** * int32 oneof_1671 = 1671; * @return The oneof1671. */ int getOneof1671(); + /** + * int32 oneof_1672 = 1672; + * @return Whether the oneof1672 field is set. + */ + boolean hasOneof1672(); /** * int32 oneof_1672 = 1672; * @return The oneof1672. */ int getOneof1672(); + /** + * int32 oneof_1673 = 1673; + * @return Whether the oneof1673 field is set. + */ + boolean hasOneof1673(); /** * int32 oneof_1673 = 1673; * @return The oneof1673. */ int getOneof1673(); + /** + * int32 oneof_1674 = 1674; + * @return Whether the oneof1674 field is set. + */ + boolean hasOneof1674(); /** * int32 oneof_1674 = 1674; * @return The oneof1674. */ int getOneof1674(); + /** + * int32 oneof_1675 = 1675; + * @return Whether the oneof1675 field is set. + */ + boolean hasOneof1675(); /** * int32 oneof_1675 = 1675; * @return The oneof1675. */ int getOneof1675(); + /** + * int32 oneof_1676 = 1676; + * @return Whether the oneof1676 field is set. + */ + boolean hasOneof1676(); /** * int32 oneof_1676 = 1676; * @return The oneof1676. */ int getOneof1676(); + /** + * int32 oneof_1677 = 1677; + * @return Whether the oneof1677 field is set. + */ + boolean hasOneof1677(); /** * int32 oneof_1677 = 1677; * @return The oneof1677. */ int getOneof1677(); + /** + * int32 oneof_1678 = 1678; + * @return Whether the oneof1678 field is set. + */ + boolean hasOneof1678(); /** * int32 oneof_1678 = 1678; * @return The oneof1678. */ int getOneof1678(); + /** + * int32 oneof_1679 = 1679; + * @return Whether the oneof1679 field is set. + */ + boolean hasOneof1679(); /** * int32 oneof_1679 = 1679; * @return The oneof1679. */ int getOneof1679(); + /** + * int32 oneof_1680 = 1680; + * @return Whether the oneof1680 field is set. + */ + boolean hasOneof1680(); /** * int32 oneof_1680 = 1680; * @return The oneof1680. */ int getOneof1680(); + /** + * int32 oneof_1681 = 1681; + * @return Whether the oneof1681 field is set. + */ + boolean hasOneof1681(); /** * int32 oneof_1681 = 1681; * @return The oneof1681. */ int getOneof1681(); + /** + * int32 oneof_1682 = 1682; + * @return Whether the oneof1682 field is set. + */ + boolean hasOneof1682(); /** * int32 oneof_1682 = 1682; * @return The oneof1682. */ int getOneof1682(); + /** + * int32 oneof_1683 = 1683; + * @return Whether the oneof1683 field is set. + */ + boolean hasOneof1683(); /** * int32 oneof_1683 = 1683; * @return The oneof1683. */ int getOneof1683(); + /** + * int32 oneof_1684 = 1684; + * @return Whether the oneof1684 field is set. + */ + boolean hasOneof1684(); /** * int32 oneof_1684 = 1684; * @return The oneof1684. */ int getOneof1684(); + /** + * int32 oneof_1685 = 1685; + * @return Whether the oneof1685 field is set. + */ + boolean hasOneof1685(); /** * int32 oneof_1685 = 1685; * @return The oneof1685. */ int getOneof1685(); + /** + * int32 oneof_1686 = 1686; + * @return Whether the oneof1686 field is set. + */ + boolean hasOneof1686(); /** * int32 oneof_1686 = 1686; * @return The oneof1686. */ int getOneof1686(); + /** + * int32 oneof_1687 = 1687; + * @return Whether the oneof1687 field is set. + */ + boolean hasOneof1687(); /** * int32 oneof_1687 = 1687; * @return The oneof1687. */ int getOneof1687(); + /** + * int32 oneof_1688 = 1688; + * @return Whether the oneof1688 field is set. + */ + boolean hasOneof1688(); /** * int32 oneof_1688 = 1688; * @return The oneof1688. */ int getOneof1688(); + /** + * int32 oneof_1689 = 1689; + * @return Whether the oneof1689 field is set. + */ + boolean hasOneof1689(); /** * int32 oneof_1689 = 1689; * @return The oneof1689. */ int getOneof1689(); + /** + * int32 oneof_1690 = 1690; + * @return Whether the oneof1690 field is set. + */ + boolean hasOneof1690(); /** * int32 oneof_1690 = 1690; * @return The oneof1690. */ int getOneof1690(); + /** + * int32 oneof_1691 = 1691; + * @return Whether the oneof1691 field is set. + */ + boolean hasOneof1691(); /** * int32 oneof_1691 = 1691; * @return The oneof1691. */ int getOneof1691(); + /** + * int32 oneof_1692 = 1692; + * @return Whether the oneof1692 field is set. + */ + boolean hasOneof1692(); /** * int32 oneof_1692 = 1692; * @return The oneof1692. */ int getOneof1692(); + /** + * int32 oneof_1693 = 1693; + * @return Whether the oneof1693 field is set. + */ + boolean hasOneof1693(); /** * int32 oneof_1693 = 1693; * @return The oneof1693. */ int getOneof1693(); + /** + * int32 oneof_1694 = 1694; + * @return Whether the oneof1694 field is set. + */ + boolean hasOneof1694(); /** * int32 oneof_1694 = 1694; * @return The oneof1694. */ int getOneof1694(); + /** + * int32 oneof_1695 = 1695; + * @return Whether the oneof1695 field is set. + */ + boolean hasOneof1695(); /** * int32 oneof_1695 = 1695; * @return The oneof1695. */ int getOneof1695(); + /** + * int32 oneof_1696 = 1696; + * @return Whether the oneof1696 field is set. + */ + boolean hasOneof1696(); /** * int32 oneof_1696 = 1696; * @return The oneof1696. */ int getOneof1696(); + /** + * int32 oneof_1697 = 1697; + * @return Whether the oneof1697 field is set. + */ + boolean hasOneof1697(); /** * int32 oneof_1697 = 1697; * @return The oneof1697. */ int getOneof1697(); + /** + * int32 oneof_1698 = 1698; + * @return Whether the oneof1698 field is set. + */ + boolean hasOneof1698(); /** * int32 oneof_1698 = 1698; * @return The oneof1698. */ int getOneof1698(); + /** + * int32 oneof_1699 = 1699; + * @return Whether the oneof1699 field is set. + */ + boolean hasOneof1699(); /** * int32 oneof_1699 = 1699; * @return The oneof1699. */ int getOneof1699(); + /** + * int32 oneof_1700 = 1700; + * @return Whether the oneof1700 field is set. + */ + boolean hasOneof1700(); /** * int32 oneof_1700 = 1700; * @return The oneof1700. */ int getOneof1700(); + /** + * int32 oneof_1701 = 1701; + * @return Whether the oneof1701 field is set. + */ + boolean hasOneof1701(); /** * int32 oneof_1701 = 1701; * @return The oneof1701. */ int getOneof1701(); + /** + * int32 oneof_1702 = 1702; + * @return Whether the oneof1702 field is set. + */ + boolean hasOneof1702(); /** * int32 oneof_1702 = 1702; * @return The oneof1702. */ int getOneof1702(); + /** + * int32 oneof_1703 = 1703; + * @return Whether the oneof1703 field is set. + */ + boolean hasOneof1703(); /** * int32 oneof_1703 = 1703; * @return The oneof1703. */ int getOneof1703(); + /** + * int32 oneof_1704 = 1704; + * @return Whether the oneof1704 field is set. + */ + boolean hasOneof1704(); /** * int32 oneof_1704 = 1704; * @return The oneof1704. */ int getOneof1704(); + /** + * int32 oneof_1705 = 1705; + * @return Whether the oneof1705 field is set. + */ + boolean hasOneof1705(); /** * int32 oneof_1705 = 1705; * @return The oneof1705. */ int getOneof1705(); + /** + * int32 oneof_1706 = 1706; + * @return Whether the oneof1706 field is set. + */ + boolean hasOneof1706(); /** * int32 oneof_1706 = 1706; * @return The oneof1706. */ int getOneof1706(); + /** + * int32 oneof_1707 = 1707; + * @return Whether the oneof1707 field is set. + */ + boolean hasOneof1707(); /** * int32 oneof_1707 = 1707; * @return The oneof1707. */ int getOneof1707(); + /** + * int32 oneof_1708 = 1708; + * @return Whether the oneof1708 field is set. + */ + boolean hasOneof1708(); /** * int32 oneof_1708 = 1708; * @return The oneof1708. */ int getOneof1708(); + /** + * int32 oneof_1709 = 1709; + * @return Whether the oneof1709 field is set. + */ + boolean hasOneof1709(); /** * int32 oneof_1709 = 1709; * @return The oneof1709. */ int getOneof1709(); + /** + * int32 oneof_1710 = 1710; + * @return Whether the oneof1710 field is set. + */ + boolean hasOneof1710(); /** * int32 oneof_1710 = 1710; * @return The oneof1710. */ int getOneof1710(); + /** + * int32 oneof_1711 = 1711; + * @return Whether the oneof1711 field is set. + */ + boolean hasOneof1711(); /** * int32 oneof_1711 = 1711; * @return The oneof1711. */ int getOneof1711(); + /** + * int32 oneof_1712 = 1712; + * @return Whether the oneof1712 field is set. + */ + boolean hasOneof1712(); /** * int32 oneof_1712 = 1712; * @return The oneof1712. */ int getOneof1712(); + /** + * int32 oneof_1713 = 1713; + * @return Whether the oneof1713 field is set. + */ + boolean hasOneof1713(); /** * int32 oneof_1713 = 1713; * @return The oneof1713. */ int getOneof1713(); + /** + * int32 oneof_1714 = 1714; + * @return Whether the oneof1714 field is set. + */ + boolean hasOneof1714(); /** * int32 oneof_1714 = 1714; * @return The oneof1714. */ int getOneof1714(); + /** + * int32 oneof_1715 = 1715; + * @return Whether the oneof1715 field is set. + */ + boolean hasOneof1715(); /** * int32 oneof_1715 = 1715; * @return The oneof1715. */ int getOneof1715(); + /** + * int32 oneof_1716 = 1716; + * @return Whether the oneof1716 field is set. + */ + boolean hasOneof1716(); /** * int32 oneof_1716 = 1716; * @return The oneof1716. */ int getOneof1716(); + /** + * int32 oneof_1717 = 1717; + * @return Whether the oneof1717 field is set. + */ + boolean hasOneof1717(); /** * int32 oneof_1717 = 1717; * @return The oneof1717. */ int getOneof1717(); + /** + * int32 oneof_1718 = 1718; + * @return Whether the oneof1718 field is set. + */ + boolean hasOneof1718(); /** * int32 oneof_1718 = 1718; * @return The oneof1718. */ int getOneof1718(); + /** + * int32 oneof_1719 = 1719; + * @return Whether the oneof1719 field is set. + */ + boolean hasOneof1719(); /** * int32 oneof_1719 = 1719; * @return The oneof1719. */ int getOneof1719(); + /** + * int32 oneof_1720 = 1720; + * @return Whether the oneof1720 field is set. + */ + boolean hasOneof1720(); /** * int32 oneof_1720 = 1720; * @return The oneof1720. */ int getOneof1720(); + /** + * int32 oneof_1721 = 1721; + * @return Whether the oneof1721 field is set. + */ + boolean hasOneof1721(); /** * int32 oneof_1721 = 1721; * @return The oneof1721. */ int getOneof1721(); + /** + * int32 oneof_1722 = 1722; + * @return Whether the oneof1722 field is set. + */ + boolean hasOneof1722(); /** * int32 oneof_1722 = 1722; * @return The oneof1722. */ int getOneof1722(); + /** + * int32 oneof_1723 = 1723; + * @return Whether the oneof1723 field is set. + */ + boolean hasOneof1723(); /** * int32 oneof_1723 = 1723; * @return The oneof1723. */ int getOneof1723(); + /** + * int32 oneof_1724 = 1724; + * @return Whether the oneof1724 field is set. + */ + boolean hasOneof1724(); /** * int32 oneof_1724 = 1724; * @return The oneof1724. */ int getOneof1724(); + /** + * int32 oneof_1725 = 1725; + * @return Whether the oneof1725 field is set. + */ + boolean hasOneof1725(); /** * int32 oneof_1725 = 1725; * @return The oneof1725. */ int getOneof1725(); + /** + * int32 oneof_1726 = 1726; + * @return Whether the oneof1726 field is set. + */ + boolean hasOneof1726(); /** * int32 oneof_1726 = 1726; * @return The oneof1726. */ int getOneof1726(); + /** + * int32 oneof_1727 = 1727; + * @return Whether the oneof1727 field is set. + */ + boolean hasOneof1727(); /** * int32 oneof_1727 = 1727; * @return The oneof1727. */ int getOneof1727(); + /** + * int32 oneof_1728 = 1728; + * @return Whether the oneof1728 field is set. + */ + boolean hasOneof1728(); /** * int32 oneof_1728 = 1728; * @return The oneof1728. */ int getOneof1728(); + /** + * int32 oneof_1729 = 1729; + * @return Whether the oneof1729 field is set. + */ + boolean hasOneof1729(); /** * int32 oneof_1729 = 1729; * @return The oneof1729. */ int getOneof1729(); + /** + * int32 oneof_1730 = 1730; + * @return Whether the oneof1730 field is set. + */ + boolean hasOneof1730(); /** * int32 oneof_1730 = 1730; * @return The oneof1730. */ int getOneof1730(); + /** + * int32 oneof_1731 = 1731; + * @return Whether the oneof1731 field is set. + */ + boolean hasOneof1731(); /** * int32 oneof_1731 = 1731; * @return The oneof1731. */ int getOneof1731(); + /** + * int32 oneof_1732 = 1732; + * @return Whether the oneof1732 field is set. + */ + boolean hasOneof1732(); /** * int32 oneof_1732 = 1732; * @return The oneof1732. */ int getOneof1732(); + /** + * int32 oneof_1733 = 1733; + * @return Whether the oneof1733 field is set. + */ + boolean hasOneof1733(); /** * int32 oneof_1733 = 1733; * @return The oneof1733. */ int getOneof1733(); + /** + * int32 oneof_1734 = 1734; + * @return Whether the oneof1734 field is set. + */ + boolean hasOneof1734(); /** * int32 oneof_1734 = 1734; * @return The oneof1734. */ int getOneof1734(); + /** + * int32 oneof_1735 = 1735; + * @return Whether the oneof1735 field is set. + */ + boolean hasOneof1735(); /** * int32 oneof_1735 = 1735; * @return The oneof1735. */ int getOneof1735(); + /** + * int32 oneof_1736 = 1736; + * @return Whether the oneof1736 field is set. + */ + boolean hasOneof1736(); /** * int32 oneof_1736 = 1736; * @return The oneof1736. */ int getOneof1736(); + /** + * int32 oneof_1737 = 1737; + * @return Whether the oneof1737 field is set. + */ + boolean hasOneof1737(); /** * int32 oneof_1737 = 1737; * @return The oneof1737. */ int getOneof1737(); + /** + * int32 oneof_1738 = 1738; + * @return Whether the oneof1738 field is set. + */ + boolean hasOneof1738(); /** * int32 oneof_1738 = 1738; * @return The oneof1738. */ int getOneof1738(); + /** + * int32 oneof_1739 = 1739; + * @return Whether the oneof1739 field is set. + */ + boolean hasOneof1739(); /** * int32 oneof_1739 = 1739; * @return The oneof1739. */ int getOneof1739(); + /** + * int32 oneof_1740 = 1740; + * @return Whether the oneof1740 field is set. + */ + boolean hasOneof1740(); /** * int32 oneof_1740 = 1740; * @return The oneof1740. */ int getOneof1740(); + /** + * int32 oneof_1741 = 1741; + * @return Whether the oneof1741 field is set. + */ + boolean hasOneof1741(); /** * int32 oneof_1741 = 1741; * @return The oneof1741. */ int getOneof1741(); + /** + * int32 oneof_1742 = 1742; + * @return Whether the oneof1742 field is set. + */ + boolean hasOneof1742(); /** * int32 oneof_1742 = 1742; * @return The oneof1742. */ int getOneof1742(); + /** + * int32 oneof_1743 = 1743; + * @return Whether the oneof1743 field is set. + */ + boolean hasOneof1743(); /** * int32 oneof_1743 = 1743; * @return The oneof1743. */ int getOneof1743(); + /** + * int32 oneof_1744 = 1744; + * @return Whether the oneof1744 field is set. + */ + boolean hasOneof1744(); /** * int32 oneof_1744 = 1744; * @return The oneof1744. */ int getOneof1744(); + /** + * int32 oneof_1745 = 1745; + * @return Whether the oneof1745 field is set. + */ + boolean hasOneof1745(); /** * int32 oneof_1745 = 1745; * @return The oneof1745. */ int getOneof1745(); + /** + * int32 oneof_1746 = 1746; + * @return Whether the oneof1746 field is set. + */ + boolean hasOneof1746(); /** * int32 oneof_1746 = 1746; * @return The oneof1746. */ int getOneof1746(); + /** + * int32 oneof_1747 = 1747; + * @return Whether the oneof1747 field is set. + */ + boolean hasOneof1747(); /** * int32 oneof_1747 = 1747; * @return The oneof1747. */ int getOneof1747(); + /** + * int32 oneof_1748 = 1748; + * @return Whether the oneof1748 field is set. + */ + boolean hasOneof1748(); /** * int32 oneof_1748 = 1748; * @return The oneof1748. */ int getOneof1748(); + /** + * int32 oneof_1749 = 1749; + * @return Whether the oneof1749 field is set. + */ + boolean hasOneof1749(); /** * int32 oneof_1749 = 1749; * @return The oneof1749. */ int getOneof1749(); + /** + * int32 oneof_1750 = 1750; + * @return Whether the oneof1750 field is set. + */ + boolean hasOneof1750(); /** * int32 oneof_1750 = 1750; * @return The oneof1750. */ int getOneof1750(); + /** + * int32 oneof_1751 = 1751; + * @return Whether the oneof1751 field is set. + */ + boolean hasOneof1751(); /** * int32 oneof_1751 = 1751; * @return The oneof1751. */ int getOneof1751(); + /** + * int32 oneof_1752 = 1752; + * @return Whether the oneof1752 field is set. + */ + boolean hasOneof1752(); /** * int32 oneof_1752 = 1752; * @return The oneof1752. */ int getOneof1752(); + /** + * int32 oneof_1753 = 1753; + * @return Whether the oneof1753 field is set. + */ + boolean hasOneof1753(); /** * int32 oneof_1753 = 1753; * @return The oneof1753. */ int getOneof1753(); + /** + * int32 oneof_1754 = 1754; + * @return Whether the oneof1754 field is set. + */ + boolean hasOneof1754(); /** * int32 oneof_1754 = 1754; * @return The oneof1754. */ int getOneof1754(); + /** + * int32 oneof_1755 = 1755; + * @return Whether the oneof1755 field is set. + */ + boolean hasOneof1755(); /** * int32 oneof_1755 = 1755; * @return The oneof1755. */ int getOneof1755(); + /** + * int32 oneof_1756 = 1756; + * @return Whether the oneof1756 field is set. + */ + boolean hasOneof1756(); /** * int32 oneof_1756 = 1756; * @return The oneof1756. */ int getOneof1756(); + /** + * int32 oneof_1757 = 1757; + * @return Whether the oneof1757 field is set. + */ + boolean hasOneof1757(); /** * int32 oneof_1757 = 1757; * @return The oneof1757. */ int getOneof1757(); + /** + * int32 oneof_1758 = 1758; + * @return Whether the oneof1758 field is set. + */ + boolean hasOneof1758(); /** * int32 oneof_1758 = 1758; * @return The oneof1758. */ int getOneof1758(); + /** + * int32 oneof_1759 = 1759; + * @return Whether the oneof1759 field is set. + */ + boolean hasOneof1759(); /** * int32 oneof_1759 = 1759; * @return The oneof1759. */ int getOneof1759(); + /** + * int32 oneof_1760 = 1760; + * @return Whether the oneof1760 field is set. + */ + boolean hasOneof1760(); /** * int32 oneof_1760 = 1760; * @return The oneof1760. */ int getOneof1760(); + /** + * int32 oneof_1761 = 1761; + * @return Whether the oneof1761 field is set. + */ + boolean hasOneof1761(); /** * int32 oneof_1761 = 1761; * @return The oneof1761. */ int getOneof1761(); + /** + * int32 oneof_1762 = 1762; + * @return Whether the oneof1762 field is set. + */ + boolean hasOneof1762(); /** * int32 oneof_1762 = 1762; * @return The oneof1762. */ int getOneof1762(); + /** + * int32 oneof_1763 = 1763; + * @return Whether the oneof1763 field is set. + */ + boolean hasOneof1763(); /** * int32 oneof_1763 = 1763; * @return The oneof1763. */ int getOneof1763(); + /** + * int32 oneof_1764 = 1764; + * @return Whether the oneof1764 field is set. + */ + boolean hasOneof1764(); /** * int32 oneof_1764 = 1764; * @return The oneof1764. */ int getOneof1764(); + /** + * int32 oneof_1765 = 1765; + * @return Whether the oneof1765 field is set. + */ + boolean hasOneof1765(); /** * int32 oneof_1765 = 1765; * @return The oneof1765. */ int getOneof1765(); + /** + * int32 oneof_1766 = 1766; + * @return Whether the oneof1766 field is set. + */ + boolean hasOneof1766(); /** * int32 oneof_1766 = 1766; * @return The oneof1766. */ int getOneof1766(); + /** + * int32 oneof_1767 = 1767; + * @return Whether the oneof1767 field is set. + */ + boolean hasOneof1767(); /** * int32 oneof_1767 = 1767; * @return The oneof1767. */ int getOneof1767(); + /** + * int32 oneof_1768 = 1768; + * @return Whether the oneof1768 field is set. + */ + boolean hasOneof1768(); /** * int32 oneof_1768 = 1768; * @return The oneof1768. */ int getOneof1768(); + /** + * int32 oneof_1769 = 1769; + * @return Whether the oneof1769 field is set. + */ + boolean hasOneof1769(); /** * int32 oneof_1769 = 1769; * @return The oneof1769. */ int getOneof1769(); + /** + * int32 oneof_1770 = 1770; + * @return Whether the oneof1770 field is set. + */ + boolean hasOneof1770(); /** * int32 oneof_1770 = 1770; * @return The oneof1770. */ int getOneof1770(); + /** + * int32 oneof_1771 = 1771; + * @return Whether the oneof1771 field is set. + */ + boolean hasOneof1771(); /** * int32 oneof_1771 = 1771; * @return The oneof1771. */ int getOneof1771(); + /** + * int32 oneof_1772 = 1772; + * @return Whether the oneof1772 field is set. + */ + boolean hasOneof1772(); /** * int32 oneof_1772 = 1772; * @return The oneof1772. */ int getOneof1772(); + /** + * int32 oneof_1773 = 1773; + * @return Whether the oneof1773 field is set. + */ + boolean hasOneof1773(); /** * int32 oneof_1773 = 1773; * @return The oneof1773. */ int getOneof1773(); + /** + * int32 oneof_1774 = 1774; + * @return Whether the oneof1774 field is set. + */ + boolean hasOneof1774(); /** * int32 oneof_1774 = 1774; * @return The oneof1774. */ int getOneof1774(); + /** + * int32 oneof_1775 = 1775; + * @return Whether the oneof1775 field is set. + */ + boolean hasOneof1775(); /** * int32 oneof_1775 = 1775; * @return The oneof1775. */ int getOneof1775(); + /** + * int32 oneof_1776 = 1776; + * @return Whether the oneof1776 field is set. + */ + boolean hasOneof1776(); /** * int32 oneof_1776 = 1776; * @return The oneof1776. */ int getOneof1776(); + /** + * int32 oneof_1777 = 1777; + * @return Whether the oneof1777 field is set. + */ + boolean hasOneof1777(); /** * int32 oneof_1777 = 1777; * @return The oneof1777. */ int getOneof1777(); + /** + * int32 oneof_1778 = 1778; + * @return Whether the oneof1778 field is set. + */ + boolean hasOneof1778(); /** * int32 oneof_1778 = 1778; * @return The oneof1778. */ int getOneof1778(); + /** + * int32 oneof_1779 = 1779; + * @return Whether the oneof1779 field is set. + */ + boolean hasOneof1779(); /** * int32 oneof_1779 = 1779; * @return The oneof1779. */ int getOneof1779(); + /** + * int32 oneof_1780 = 1780; + * @return Whether the oneof1780 field is set. + */ + boolean hasOneof1780(); /** * int32 oneof_1780 = 1780; * @return The oneof1780. */ int getOneof1780(); + /** + * int32 oneof_1781 = 1781; + * @return Whether the oneof1781 field is set. + */ + boolean hasOneof1781(); /** * int32 oneof_1781 = 1781; * @return The oneof1781. */ int getOneof1781(); + /** + * int32 oneof_1782 = 1782; + * @return Whether the oneof1782 field is set. + */ + boolean hasOneof1782(); /** * int32 oneof_1782 = 1782; * @return The oneof1782. */ int getOneof1782(); + /** + * int32 oneof_1783 = 1783; + * @return Whether the oneof1783 field is set. + */ + boolean hasOneof1783(); /** * int32 oneof_1783 = 1783; * @return The oneof1783. */ int getOneof1783(); + /** + * int32 oneof_1784 = 1784; + * @return Whether the oneof1784 field is set. + */ + boolean hasOneof1784(); /** * int32 oneof_1784 = 1784; * @return The oneof1784. */ int getOneof1784(); + /** + * int32 oneof_1785 = 1785; + * @return Whether the oneof1785 field is set. + */ + boolean hasOneof1785(); /** * int32 oneof_1785 = 1785; * @return The oneof1785. */ int getOneof1785(); + /** + * int32 oneof_1786 = 1786; + * @return Whether the oneof1786 field is set. + */ + boolean hasOneof1786(); /** * int32 oneof_1786 = 1786; * @return The oneof1786. */ int getOneof1786(); + /** + * int32 oneof_1787 = 1787; + * @return Whether the oneof1787 field is set. + */ + boolean hasOneof1787(); /** * int32 oneof_1787 = 1787; * @return The oneof1787. */ int getOneof1787(); + /** + * int32 oneof_1788 = 1788; + * @return Whether the oneof1788 field is set. + */ + boolean hasOneof1788(); /** * int32 oneof_1788 = 1788; * @return The oneof1788. */ int getOneof1788(); + /** + * int32 oneof_1789 = 1789; + * @return Whether the oneof1789 field is set. + */ + boolean hasOneof1789(); /** * int32 oneof_1789 = 1789; * @return The oneof1789. */ int getOneof1789(); + /** + * int32 oneof_1790 = 1790; + * @return Whether the oneof1790 field is set. + */ + boolean hasOneof1790(); /** * int32 oneof_1790 = 1790; * @return The oneof1790. */ int getOneof1790(); + /** + * int32 oneof_1791 = 1791; + * @return Whether the oneof1791 field is set. + */ + boolean hasOneof1791(); /** * int32 oneof_1791 = 1791; * @return The oneof1791. */ int getOneof1791(); + /** + * int32 oneof_1792 = 1792; + * @return Whether the oneof1792 field is set. + */ + boolean hasOneof1792(); /** * int32 oneof_1792 = 1792; * @return The oneof1792. */ int getOneof1792(); + /** + * int32 oneof_1793 = 1793; + * @return Whether the oneof1793 field is set. + */ + boolean hasOneof1793(); /** * int32 oneof_1793 = 1793; * @return The oneof1793. */ int getOneof1793(); + /** + * int32 oneof_1794 = 1794; + * @return Whether the oneof1794 field is set. + */ + boolean hasOneof1794(); /** * int32 oneof_1794 = 1794; * @return The oneof1794. */ int getOneof1794(); + /** + * int32 oneof_1795 = 1795; + * @return Whether the oneof1795 field is set. + */ + boolean hasOneof1795(); /** * int32 oneof_1795 = 1795; * @return The oneof1795. */ int getOneof1795(); + /** + * int32 oneof_1796 = 1796; + * @return Whether the oneof1796 field is set. + */ + boolean hasOneof1796(); /** * int32 oneof_1796 = 1796; * @return The oneof1796. */ int getOneof1796(); + /** + * int32 oneof_1797 = 1797; + * @return Whether the oneof1797 field is set. + */ + boolean hasOneof1797(); /** * int32 oneof_1797 = 1797; * @return The oneof1797. */ int getOneof1797(); + /** + * int32 oneof_1798 = 1798; + * @return Whether the oneof1798 field is set. + */ + boolean hasOneof1798(); /** * int32 oneof_1798 = 1798; * @return The oneof1798. */ int getOneof1798(); + /** + * int32 oneof_1799 = 1799; + * @return Whether the oneof1799 field is set. + */ + boolean hasOneof1799(); /** * int32 oneof_1799 = 1799; * @return The oneof1799. */ int getOneof1799(); + /** + * int32 oneof_1800 = 1800; + * @return Whether the oneof1800 field is set. + */ + boolean hasOneof1800(); /** * int32 oneof_1800 = 1800; * @return The oneof1800. */ int getOneof1800(); + /** + * int32 oneof_1801 = 1801; + * @return Whether the oneof1801 field is set. + */ + boolean hasOneof1801(); /** * int32 oneof_1801 = 1801; * @return The oneof1801. */ int getOneof1801(); + /** + * int32 oneof_1802 = 1802; + * @return Whether the oneof1802 field is set. + */ + boolean hasOneof1802(); /** * int32 oneof_1802 = 1802; * @return The oneof1802. */ int getOneof1802(); + /** + * int32 oneof_1803 = 1803; + * @return Whether the oneof1803 field is set. + */ + boolean hasOneof1803(); /** * int32 oneof_1803 = 1803; * @return The oneof1803. */ int getOneof1803(); + /** + * int32 oneof_1804 = 1804; + * @return Whether the oneof1804 field is set. + */ + boolean hasOneof1804(); /** * int32 oneof_1804 = 1804; * @return The oneof1804. */ int getOneof1804(); + /** + * int32 oneof_1805 = 1805; + * @return Whether the oneof1805 field is set. + */ + boolean hasOneof1805(); /** * int32 oneof_1805 = 1805; * @return The oneof1805. */ int getOneof1805(); + /** + * int32 oneof_1806 = 1806; + * @return Whether the oneof1806 field is set. + */ + boolean hasOneof1806(); /** * int32 oneof_1806 = 1806; * @return The oneof1806. */ int getOneof1806(); + /** + * int32 oneof_1807 = 1807; + * @return Whether the oneof1807 field is set. + */ + boolean hasOneof1807(); /** * int32 oneof_1807 = 1807; * @return The oneof1807. */ int getOneof1807(); + /** + * int32 oneof_1808 = 1808; + * @return Whether the oneof1808 field is set. + */ + boolean hasOneof1808(); /** * int32 oneof_1808 = 1808; * @return The oneof1808. */ int getOneof1808(); + /** + * int32 oneof_1809 = 1809; + * @return Whether the oneof1809 field is set. + */ + boolean hasOneof1809(); /** * int32 oneof_1809 = 1809; * @return The oneof1809. */ int getOneof1809(); + /** + * int32 oneof_1810 = 1810; + * @return Whether the oneof1810 field is set. + */ + boolean hasOneof1810(); /** * int32 oneof_1810 = 1810; * @return The oneof1810. */ int getOneof1810(); + /** + * int32 oneof_1811 = 1811; + * @return Whether the oneof1811 field is set. + */ + boolean hasOneof1811(); /** * int32 oneof_1811 = 1811; * @return The oneof1811. */ int getOneof1811(); + /** + * int32 oneof_1812 = 1812; + * @return Whether the oneof1812 field is set. + */ + boolean hasOneof1812(); /** * int32 oneof_1812 = 1812; * @return The oneof1812. */ int getOneof1812(); + /** + * int32 oneof_1813 = 1813; + * @return Whether the oneof1813 field is set. + */ + boolean hasOneof1813(); /** * int32 oneof_1813 = 1813; * @return The oneof1813. */ int getOneof1813(); + /** + * int32 oneof_1814 = 1814; + * @return Whether the oneof1814 field is set. + */ + boolean hasOneof1814(); /** * int32 oneof_1814 = 1814; * @return The oneof1814. */ int getOneof1814(); + /** + * int32 oneof_1815 = 1815; + * @return Whether the oneof1815 field is set. + */ + boolean hasOneof1815(); /** * int32 oneof_1815 = 1815; * @return The oneof1815. */ int getOneof1815(); + /** + * int32 oneof_1816 = 1816; + * @return Whether the oneof1816 field is set. + */ + boolean hasOneof1816(); /** * int32 oneof_1816 = 1816; * @return The oneof1816. */ int getOneof1816(); + /** + * int32 oneof_1817 = 1817; + * @return Whether the oneof1817 field is set. + */ + boolean hasOneof1817(); /** * int32 oneof_1817 = 1817; * @return The oneof1817. */ int getOneof1817(); + /** + * int32 oneof_1818 = 1818; + * @return Whether the oneof1818 field is set. + */ + boolean hasOneof1818(); /** * int32 oneof_1818 = 1818; * @return The oneof1818. */ int getOneof1818(); + /** + * int32 oneof_1819 = 1819; + * @return Whether the oneof1819 field is set. + */ + boolean hasOneof1819(); /** * int32 oneof_1819 = 1819; * @return The oneof1819. */ int getOneof1819(); + /** + * int32 oneof_1820 = 1820; + * @return Whether the oneof1820 field is set. + */ + boolean hasOneof1820(); /** * int32 oneof_1820 = 1820; * @return The oneof1820. */ int getOneof1820(); + /** + * int32 oneof_1821 = 1821; + * @return Whether the oneof1821 field is set. + */ + boolean hasOneof1821(); /** * int32 oneof_1821 = 1821; * @return The oneof1821. */ int getOneof1821(); + /** + * int32 oneof_1822 = 1822; + * @return Whether the oneof1822 field is set. + */ + boolean hasOneof1822(); /** * int32 oneof_1822 = 1822; * @return The oneof1822. */ int getOneof1822(); + /** + * int32 oneof_1823 = 1823; + * @return Whether the oneof1823 field is set. + */ + boolean hasOneof1823(); /** * int32 oneof_1823 = 1823; * @return The oneof1823. */ int getOneof1823(); + /** + * int32 oneof_1824 = 1824; + * @return Whether the oneof1824 field is set. + */ + boolean hasOneof1824(); /** * int32 oneof_1824 = 1824; * @return The oneof1824. */ int getOneof1824(); + /** + * int32 oneof_1825 = 1825; + * @return Whether the oneof1825 field is set. + */ + boolean hasOneof1825(); /** * int32 oneof_1825 = 1825; * @return The oneof1825. */ int getOneof1825(); + /** + * int32 oneof_1826 = 1826; + * @return Whether the oneof1826 field is set. + */ + boolean hasOneof1826(); /** * int32 oneof_1826 = 1826; * @return The oneof1826. */ int getOneof1826(); + /** + * int32 oneof_1827 = 1827; + * @return Whether the oneof1827 field is set. + */ + boolean hasOneof1827(); /** * int32 oneof_1827 = 1827; * @return The oneof1827. */ int getOneof1827(); + /** + * int32 oneof_1828 = 1828; + * @return Whether the oneof1828 field is set. + */ + boolean hasOneof1828(); /** * int32 oneof_1828 = 1828; * @return The oneof1828. */ int getOneof1828(); + /** + * int32 oneof_1829 = 1829; + * @return Whether the oneof1829 field is set. + */ + boolean hasOneof1829(); /** * int32 oneof_1829 = 1829; * @return The oneof1829. */ int getOneof1829(); + /** + * int32 oneof_1830 = 1830; + * @return Whether the oneof1830 field is set. + */ + boolean hasOneof1830(); /** * int32 oneof_1830 = 1830; * @return The oneof1830. */ int getOneof1830(); + /** + * int32 oneof_1831 = 1831; + * @return Whether the oneof1831 field is set. + */ + boolean hasOneof1831(); /** * int32 oneof_1831 = 1831; * @return The oneof1831. */ int getOneof1831(); + /** + * int32 oneof_1832 = 1832; + * @return Whether the oneof1832 field is set. + */ + boolean hasOneof1832(); /** * int32 oneof_1832 = 1832; * @return The oneof1832. */ int getOneof1832(); + /** + * int32 oneof_1833 = 1833; + * @return Whether the oneof1833 field is set. + */ + boolean hasOneof1833(); /** * int32 oneof_1833 = 1833; * @return The oneof1833. */ int getOneof1833(); + /** + * int32 oneof_1834 = 1834; + * @return Whether the oneof1834 field is set. + */ + boolean hasOneof1834(); /** * int32 oneof_1834 = 1834; * @return The oneof1834. */ int getOneof1834(); + /** + * int32 oneof_1835 = 1835; + * @return Whether the oneof1835 field is set. + */ + boolean hasOneof1835(); /** * int32 oneof_1835 = 1835; * @return The oneof1835. */ int getOneof1835(); + /** + * int32 oneof_1836 = 1836; + * @return Whether the oneof1836 field is set. + */ + boolean hasOneof1836(); /** * int32 oneof_1836 = 1836; * @return The oneof1836. */ int getOneof1836(); + /** + * int32 oneof_1837 = 1837; + * @return Whether the oneof1837 field is set. + */ + boolean hasOneof1837(); /** * int32 oneof_1837 = 1837; * @return The oneof1837. */ int getOneof1837(); + /** + * int32 oneof_1838 = 1838; + * @return Whether the oneof1838 field is set. + */ + boolean hasOneof1838(); /** * int32 oneof_1838 = 1838; * @return The oneof1838. */ int getOneof1838(); + /** + * int32 oneof_1839 = 1839; + * @return Whether the oneof1839 field is set. + */ + boolean hasOneof1839(); /** * int32 oneof_1839 = 1839; * @return The oneof1839. */ int getOneof1839(); + /** + * int32 oneof_1840 = 1840; + * @return Whether the oneof1840 field is set. + */ + boolean hasOneof1840(); /** * int32 oneof_1840 = 1840; * @return The oneof1840. */ int getOneof1840(); + /** + * int32 oneof_1841 = 1841; + * @return Whether the oneof1841 field is set. + */ + boolean hasOneof1841(); /** * int32 oneof_1841 = 1841; * @return The oneof1841. */ int getOneof1841(); + /** + * int32 oneof_1842 = 1842; + * @return Whether the oneof1842 field is set. + */ + boolean hasOneof1842(); /** * int32 oneof_1842 = 1842; * @return The oneof1842. */ int getOneof1842(); + /** + * int32 oneof_1843 = 1843; + * @return Whether the oneof1843 field is set. + */ + boolean hasOneof1843(); /** * int32 oneof_1843 = 1843; * @return The oneof1843. */ int getOneof1843(); + /** + * int32 oneof_1844 = 1844; + * @return Whether the oneof1844 field is set. + */ + boolean hasOneof1844(); /** * int32 oneof_1844 = 1844; * @return The oneof1844. */ int getOneof1844(); + /** + * int32 oneof_1845 = 1845; + * @return Whether the oneof1845 field is set. + */ + boolean hasOneof1845(); /** * int32 oneof_1845 = 1845; * @return The oneof1845. */ int getOneof1845(); + /** + * int32 oneof_1846 = 1846; + * @return Whether the oneof1846 field is set. + */ + boolean hasOneof1846(); /** * int32 oneof_1846 = 1846; * @return The oneof1846. */ int getOneof1846(); + /** + * int32 oneof_1847 = 1847; + * @return Whether the oneof1847 field is set. + */ + boolean hasOneof1847(); /** * int32 oneof_1847 = 1847; * @return The oneof1847. */ int getOneof1847(); + /** + * int32 oneof_1848 = 1848; + * @return Whether the oneof1848 field is set. + */ + boolean hasOneof1848(); /** * int32 oneof_1848 = 1848; * @return The oneof1848. */ int getOneof1848(); + /** + * int32 oneof_1849 = 1849; + * @return Whether the oneof1849 field is set. + */ + boolean hasOneof1849(); /** * int32 oneof_1849 = 1849; * @return The oneof1849. */ int getOneof1849(); + /** + * int32 oneof_1850 = 1850; + * @return Whether the oneof1850 field is set. + */ + boolean hasOneof1850(); /** * int32 oneof_1850 = 1850; * @return The oneof1850. */ int getOneof1850(); + /** + * int32 oneof_1851 = 1851; + * @return Whether the oneof1851 field is set. + */ + boolean hasOneof1851(); /** * int32 oneof_1851 = 1851; * @return The oneof1851. */ int getOneof1851(); + /** + * int32 oneof_1852 = 1852; + * @return Whether the oneof1852 field is set. + */ + boolean hasOneof1852(); /** * int32 oneof_1852 = 1852; * @return The oneof1852. */ int getOneof1852(); + /** + * int32 oneof_1853 = 1853; + * @return Whether the oneof1853 field is set. + */ + boolean hasOneof1853(); /** * int32 oneof_1853 = 1853; * @return The oneof1853. */ int getOneof1853(); + /** + * int32 oneof_1854 = 1854; + * @return Whether the oneof1854 field is set. + */ + boolean hasOneof1854(); /** * int32 oneof_1854 = 1854; * @return The oneof1854. */ int getOneof1854(); + /** + * int32 oneof_1855 = 1855; + * @return Whether the oneof1855 field is set. + */ + boolean hasOneof1855(); /** * int32 oneof_1855 = 1855; * @return The oneof1855. */ int getOneof1855(); + /** + * int32 oneof_1856 = 1856; + * @return Whether the oneof1856 field is set. + */ + boolean hasOneof1856(); /** * int32 oneof_1856 = 1856; * @return The oneof1856. */ int getOneof1856(); + /** + * int32 oneof_1857 = 1857; + * @return Whether the oneof1857 field is set. + */ + boolean hasOneof1857(); /** * int32 oneof_1857 = 1857; * @return The oneof1857. */ int getOneof1857(); + /** + * int32 oneof_1858 = 1858; + * @return Whether the oneof1858 field is set. + */ + boolean hasOneof1858(); /** * int32 oneof_1858 = 1858; * @return The oneof1858. */ int getOneof1858(); + /** + * int32 oneof_1859 = 1859; + * @return Whether the oneof1859 field is set. + */ + boolean hasOneof1859(); /** * int32 oneof_1859 = 1859; * @return The oneof1859. */ int getOneof1859(); + /** + * int32 oneof_1860 = 1860; + * @return Whether the oneof1860 field is set. + */ + boolean hasOneof1860(); /** * int32 oneof_1860 = 1860; * @return The oneof1860. */ int getOneof1860(); + /** + * int32 oneof_1861 = 1861; + * @return Whether the oneof1861 field is set. + */ + boolean hasOneof1861(); /** * int32 oneof_1861 = 1861; * @return The oneof1861. */ int getOneof1861(); + /** + * int32 oneof_1862 = 1862; + * @return Whether the oneof1862 field is set. + */ + boolean hasOneof1862(); /** * int32 oneof_1862 = 1862; * @return The oneof1862. */ int getOneof1862(); + /** + * int32 oneof_1863 = 1863; + * @return Whether the oneof1863 field is set. + */ + boolean hasOneof1863(); /** * int32 oneof_1863 = 1863; * @return The oneof1863. */ int getOneof1863(); + /** + * int32 oneof_1864 = 1864; + * @return Whether the oneof1864 field is set. + */ + boolean hasOneof1864(); /** * int32 oneof_1864 = 1864; * @return The oneof1864. */ int getOneof1864(); + /** + * int32 oneof_1865 = 1865; + * @return Whether the oneof1865 field is set. + */ + boolean hasOneof1865(); /** * int32 oneof_1865 = 1865; * @return The oneof1865. */ int getOneof1865(); + /** + * int32 oneof_1866 = 1866; + * @return Whether the oneof1866 field is set. + */ + boolean hasOneof1866(); /** * int32 oneof_1866 = 1866; * @return The oneof1866. */ int getOneof1866(); + /** + * int32 oneof_1867 = 1867; + * @return Whether the oneof1867 field is set. + */ + boolean hasOneof1867(); /** * int32 oneof_1867 = 1867; * @return The oneof1867. */ int getOneof1867(); + /** + * int32 oneof_1868 = 1868; + * @return Whether the oneof1868 field is set. + */ + boolean hasOneof1868(); /** * int32 oneof_1868 = 1868; * @return The oneof1868. */ int getOneof1868(); + /** + * int32 oneof_1869 = 1869; + * @return Whether the oneof1869 field is set. + */ + boolean hasOneof1869(); /** * int32 oneof_1869 = 1869; * @return The oneof1869. */ int getOneof1869(); + /** + * int32 oneof_1870 = 1870; + * @return Whether the oneof1870 field is set. + */ + boolean hasOneof1870(); /** * int32 oneof_1870 = 1870; * @return The oneof1870. */ int getOneof1870(); + /** + * int32 oneof_1871 = 1871; + * @return Whether the oneof1871 field is set. + */ + boolean hasOneof1871(); /** * int32 oneof_1871 = 1871; * @return The oneof1871. */ int getOneof1871(); + /** + * int32 oneof_1872 = 1872; + * @return Whether the oneof1872 field is set. + */ + boolean hasOneof1872(); /** * int32 oneof_1872 = 1872; * @return The oneof1872. */ int getOneof1872(); + /** + * int32 oneof_1873 = 1873; + * @return Whether the oneof1873 field is set. + */ + boolean hasOneof1873(); /** * int32 oneof_1873 = 1873; * @return The oneof1873. */ int getOneof1873(); + /** + * int32 oneof_1874 = 1874; + * @return Whether the oneof1874 field is set. + */ + boolean hasOneof1874(); /** * int32 oneof_1874 = 1874; * @return The oneof1874. */ int getOneof1874(); + /** + * int32 oneof_1875 = 1875; + * @return Whether the oneof1875 field is set. + */ + boolean hasOneof1875(); /** * int32 oneof_1875 = 1875; * @return The oneof1875. */ int getOneof1875(); + /** + * int32 oneof_1876 = 1876; + * @return Whether the oneof1876 field is set. + */ + boolean hasOneof1876(); /** * int32 oneof_1876 = 1876; * @return The oneof1876. */ int getOneof1876(); + /** + * int32 oneof_1877 = 1877; + * @return Whether the oneof1877 field is set. + */ + boolean hasOneof1877(); /** * int32 oneof_1877 = 1877; * @return The oneof1877. */ int getOneof1877(); + /** + * int32 oneof_1878 = 1878; + * @return Whether the oneof1878 field is set. + */ + boolean hasOneof1878(); /** * int32 oneof_1878 = 1878; * @return The oneof1878. */ int getOneof1878(); + /** + * int32 oneof_1879 = 1879; + * @return Whether the oneof1879 field is set. + */ + boolean hasOneof1879(); /** * int32 oneof_1879 = 1879; * @return The oneof1879. */ int getOneof1879(); + /** + * int32 oneof_1880 = 1880; + * @return Whether the oneof1880 field is set. + */ + boolean hasOneof1880(); /** * int32 oneof_1880 = 1880; * @return The oneof1880. */ int getOneof1880(); + /** + * int32 oneof_1881 = 1881; + * @return Whether the oneof1881 field is set. + */ + boolean hasOneof1881(); /** * int32 oneof_1881 = 1881; * @return The oneof1881. */ int getOneof1881(); + /** + * int32 oneof_1882 = 1882; + * @return Whether the oneof1882 field is set. + */ + boolean hasOneof1882(); /** * int32 oneof_1882 = 1882; * @return The oneof1882. */ int getOneof1882(); + /** + * int32 oneof_1883 = 1883; + * @return Whether the oneof1883 field is set. + */ + boolean hasOneof1883(); /** * int32 oneof_1883 = 1883; * @return The oneof1883. */ int getOneof1883(); + /** + * int32 oneof_1884 = 1884; + * @return Whether the oneof1884 field is set. + */ + boolean hasOneof1884(); /** * int32 oneof_1884 = 1884; * @return The oneof1884. */ int getOneof1884(); + /** + * int32 oneof_1885 = 1885; + * @return Whether the oneof1885 field is set. + */ + boolean hasOneof1885(); /** * int32 oneof_1885 = 1885; * @return The oneof1885. */ int getOneof1885(); + /** + * int32 oneof_1886 = 1886; + * @return Whether the oneof1886 field is set. + */ + boolean hasOneof1886(); /** * int32 oneof_1886 = 1886; * @return The oneof1886. */ int getOneof1886(); + /** + * int32 oneof_1887 = 1887; + * @return Whether the oneof1887 field is set. + */ + boolean hasOneof1887(); /** * int32 oneof_1887 = 1887; * @return The oneof1887. */ int getOneof1887(); + /** + * int32 oneof_1888 = 1888; + * @return Whether the oneof1888 field is set. + */ + boolean hasOneof1888(); /** * int32 oneof_1888 = 1888; * @return The oneof1888. */ int getOneof1888(); + /** + * int32 oneof_1889 = 1889; + * @return Whether the oneof1889 field is set. + */ + boolean hasOneof1889(); /** * int32 oneof_1889 = 1889; * @return The oneof1889. */ int getOneof1889(); + /** + * int32 oneof_1890 = 1890; + * @return Whether the oneof1890 field is set. + */ + boolean hasOneof1890(); /** * int32 oneof_1890 = 1890; * @return The oneof1890. */ int getOneof1890(); + /** + * int32 oneof_1891 = 1891; + * @return Whether the oneof1891 field is set. + */ + boolean hasOneof1891(); /** * int32 oneof_1891 = 1891; * @return The oneof1891. */ int getOneof1891(); + /** + * int32 oneof_1892 = 1892; + * @return Whether the oneof1892 field is set. + */ + boolean hasOneof1892(); /** * int32 oneof_1892 = 1892; * @return The oneof1892. */ int getOneof1892(); + /** + * int32 oneof_1893 = 1893; + * @return Whether the oneof1893 field is set. + */ + boolean hasOneof1893(); /** * int32 oneof_1893 = 1893; * @return The oneof1893. */ int getOneof1893(); + /** + * int32 oneof_1894 = 1894; + * @return Whether the oneof1894 field is set. + */ + boolean hasOneof1894(); /** * int32 oneof_1894 = 1894; * @return The oneof1894. */ int getOneof1894(); + /** + * int32 oneof_1895 = 1895; + * @return Whether the oneof1895 field is set. + */ + boolean hasOneof1895(); /** * int32 oneof_1895 = 1895; * @return The oneof1895. */ int getOneof1895(); + /** + * int32 oneof_1896 = 1896; + * @return Whether the oneof1896 field is set. + */ + boolean hasOneof1896(); /** * int32 oneof_1896 = 1896; * @return The oneof1896. */ int getOneof1896(); + /** + * int32 oneof_1897 = 1897; + * @return Whether the oneof1897 field is set. + */ + boolean hasOneof1897(); /** * int32 oneof_1897 = 1897; * @return The oneof1897. */ int getOneof1897(); + /** + * int32 oneof_1898 = 1898; + * @return Whether the oneof1898 field is set. + */ + boolean hasOneof1898(); /** * int32 oneof_1898 = 1898; * @return The oneof1898. */ int getOneof1898(); + /** + * int32 oneof_1899 = 1899; + * @return Whether the oneof1899 field is set. + */ + boolean hasOneof1899(); /** * int32 oneof_1899 = 1899; * @return The oneof1899. */ int getOneof1899(); + /** + * int32 oneof_1900 = 1900; + * @return Whether the oneof1900 field is set. + */ + boolean hasOneof1900(); /** * int32 oneof_1900 = 1900; * @return The oneof1900. */ int getOneof1900(); + /** + * int32 oneof_1901 = 1901; + * @return Whether the oneof1901 field is set. + */ + boolean hasOneof1901(); /** * int32 oneof_1901 = 1901; * @return The oneof1901. */ int getOneof1901(); + /** + * int32 oneof_1902 = 1902; + * @return Whether the oneof1902 field is set. + */ + boolean hasOneof1902(); /** * int32 oneof_1902 = 1902; * @return The oneof1902. */ int getOneof1902(); + /** + * int32 oneof_1903 = 1903; + * @return Whether the oneof1903 field is set. + */ + boolean hasOneof1903(); /** * int32 oneof_1903 = 1903; * @return The oneof1903. */ int getOneof1903(); + /** + * int32 oneof_1904 = 1904; + * @return Whether the oneof1904 field is set. + */ + boolean hasOneof1904(); /** * int32 oneof_1904 = 1904; * @return The oneof1904. */ int getOneof1904(); + /** + * int32 oneof_1905 = 1905; + * @return Whether the oneof1905 field is set. + */ + boolean hasOneof1905(); /** * int32 oneof_1905 = 1905; * @return The oneof1905. */ int getOneof1905(); + /** + * int32 oneof_1906 = 1906; + * @return Whether the oneof1906 field is set. + */ + boolean hasOneof1906(); /** * int32 oneof_1906 = 1906; * @return The oneof1906. */ int getOneof1906(); + /** + * int32 oneof_1907 = 1907; + * @return Whether the oneof1907 field is set. + */ + boolean hasOneof1907(); /** * int32 oneof_1907 = 1907; * @return The oneof1907. */ int getOneof1907(); + /** + * int32 oneof_1908 = 1908; + * @return Whether the oneof1908 field is set. + */ + boolean hasOneof1908(); /** * int32 oneof_1908 = 1908; * @return The oneof1908. */ int getOneof1908(); + /** + * int32 oneof_1909 = 1909; + * @return Whether the oneof1909 field is set. + */ + boolean hasOneof1909(); /** * int32 oneof_1909 = 1909; * @return The oneof1909. */ int getOneof1909(); + /** + * int32 oneof_1910 = 1910; + * @return Whether the oneof1910 field is set. + */ + boolean hasOneof1910(); /** * int32 oneof_1910 = 1910; * @return The oneof1910. */ int getOneof1910(); + /** + * int32 oneof_1911 = 1911; + * @return Whether the oneof1911 field is set. + */ + boolean hasOneof1911(); /** * int32 oneof_1911 = 1911; * @return The oneof1911. */ int getOneof1911(); + /** + * int32 oneof_1912 = 1912; + * @return Whether the oneof1912 field is set. + */ + boolean hasOneof1912(); /** * int32 oneof_1912 = 1912; * @return The oneof1912. */ int getOneof1912(); + /** + * int32 oneof_1913 = 1913; + * @return Whether the oneof1913 field is set. + */ + boolean hasOneof1913(); /** * int32 oneof_1913 = 1913; * @return The oneof1913. */ int getOneof1913(); + /** + * int32 oneof_1914 = 1914; + * @return Whether the oneof1914 field is set. + */ + boolean hasOneof1914(); /** * int32 oneof_1914 = 1914; * @return The oneof1914. */ int getOneof1914(); + /** + * int32 oneof_1915 = 1915; + * @return Whether the oneof1915 field is set. + */ + boolean hasOneof1915(); /** * int32 oneof_1915 = 1915; * @return The oneof1915. */ int getOneof1915(); + /** + * int32 oneof_1916 = 1916; + * @return Whether the oneof1916 field is set. + */ + boolean hasOneof1916(); /** * int32 oneof_1916 = 1916; * @return The oneof1916. */ int getOneof1916(); + /** + * int32 oneof_1917 = 1917; + * @return Whether the oneof1917 field is set. + */ + boolean hasOneof1917(); /** * int32 oneof_1917 = 1917; * @return The oneof1917. */ int getOneof1917(); + /** + * int32 oneof_1918 = 1918; + * @return Whether the oneof1918 field is set. + */ + boolean hasOneof1918(); /** * int32 oneof_1918 = 1918; * @return The oneof1918. */ int getOneof1918(); + /** + * int32 oneof_1919 = 1919; + * @return Whether the oneof1919 field is set. + */ + boolean hasOneof1919(); /** * int32 oneof_1919 = 1919; * @return The oneof1919. */ int getOneof1919(); + /** + * int32 oneof_1920 = 1920; + * @return Whether the oneof1920 field is set. + */ + boolean hasOneof1920(); /** * int32 oneof_1920 = 1920; * @return The oneof1920. */ int getOneof1920(); + /** + * int32 oneof_1921 = 1921; + * @return Whether the oneof1921 field is set. + */ + boolean hasOneof1921(); /** * int32 oneof_1921 = 1921; * @return The oneof1921. */ int getOneof1921(); + /** + * int32 oneof_1922 = 1922; + * @return Whether the oneof1922 field is set. + */ + boolean hasOneof1922(); /** * int32 oneof_1922 = 1922; * @return The oneof1922. */ int getOneof1922(); + /** + * int32 oneof_1923 = 1923; + * @return Whether the oneof1923 field is set. + */ + boolean hasOneof1923(); /** * int32 oneof_1923 = 1923; * @return The oneof1923. */ int getOneof1923(); + /** + * int32 oneof_1924 = 1924; + * @return Whether the oneof1924 field is set. + */ + boolean hasOneof1924(); /** * int32 oneof_1924 = 1924; * @return The oneof1924. */ int getOneof1924(); + /** + * int32 oneof_1925 = 1925; + * @return Whether the oneof1925 field is set. + */ + boolean hasOneof1925(); /** * int32 oneof_1925 = 1925; * @return The oneof1925. */ int getOneof1925(); + /** + * int32 oneof_1926 = 1926; + * @return Whether the oneof1926 field is set. + */ + boolean hasOneof1926(); /** * int32 oneof_1926 = 1926; * @return The oneof1926. */ int getOneof1926(); + /** + * int32 oneof_1927 = 1927; + * @return Whether the oneof1927 field is set. + */ + boolean hasOneof1927(); /** * int32 oneof_1927 = 1927; * @return The oneof1927. */ int getOneof1927(); + /** + * int32 oneof_1928 = 1928; + * @return Whether the oneof1928 field is set. + */ + boolean hasOneof1928(); /** * int32 oneof_1928 = 1928; * @return The oneof1928. */ int getOneof1928(); + /** + * int32 oneof_1929 = 1929; + * @return Whether the oneof1929 field is set. + */ + boolean hasOneof1929(); /** * int32 oneof_1929 = 1929; * @return The oneof1929. */ int getOneof1929(); + /** + * int32 oneof_1930 = 1930; + * @return Whether the oneof1930 field is set. + */ + boolean hasOneof1930(); /** * int32 oneof_1930 = 1930; * @return The oneof1930. */ int getOneof1930(); + /** + * int32 oneof_1931 = 1931; + * @return Whether the oneof1931 field is set. + */ + boolean hasOneof1931(); /** * int32 oneof_1931 = 1931; * @return The oneof1931. */ int getOneof1931(); + /** + * int32 oneof_1932 = 1932; + * @return Whether the oneof1932 field is set. + */ + boolean hasOneof1932(); /** * int32 oneof_1932 = 1932; * @return The oneof1932. */ int getOneof1932(); + /** + * int32 oneof_1933 = 1933; + * @return Whether the oneof1933 field is set. + */ + boolean hasOneof1933(); /** * int32 oneof_1933 = 1933; * @return The oneof1933. */ int getOneof1933(); + /** + * int32 oneof_1934 = 1934; + * @return Whether the oneof1934 field is set. + */ + boolean hasOneof1934(); /** * int32 oneof_1934 = 1934; * @return The oneof1934. */ int getOneof1934(); + /** + * int32 oneof_1935 = 1935; + * @return Whether the oneof1935 field is set. + */ + boolean hasOneof1935(); /** * int32 oneof_1935 = 1935; * @return The oneof1935. */ int getOneof1935(); + /** + * int32 oneof_1936 = 1936; + * @return Whether the oneof1936 field is set. + */ + boolean hasOneof1936(); /** * int32 oneof_1936 = 1936; * @return The oneof1936. */ int getOneof1936(); + /** + * int32 oneof_1937 = 1937; + * @return Whether the oneof1937 field is set. + */ + boolean hasOneof1937(); /** * int32 oneof_1937 = 1937; * @return The oneof1937. */ int getOneof1937(); + /** + * int32 oneof_1938 = 1938; + * @return Whether the oneof1938 field is set. + */ + boolean hasOneof1938(); /** * int32 oneof_1938 = 1938; * @return The oneof1938. */ int getOneof1938(); + /** + * int32 oneof_1939 = 1939; + * @return Whether the oneof1939 field is set. + */ + boolean hasOneof1939(); /** * int32 oneof_1939 = 1939; * @return The oneof1939. */ int getOneof1939(); + /** + * int32 oneof_1940 = 1940; + * @return Whether the oneof1940 field is set. + */ + boolean hasOneof1940(); /** * int32 oneof_1940 = 1940; * @return The oneof1940. */ int getOneof1940(); + /** + * int32 oneof_1941 = 1941; + * @return Whether the oneof1941 field is set. + */ + boolean hasOneof1941(); /** * int32 oneof_1941 = 1941; * @return The oneof1941. */ int getOneof1941(); + /** + * int32 oneof_1942 = 1942; + * @return Whether the oneof1942 field is set. + */ + boolean hasOneof1942(); /** * int32 oneof_1942 = 1942; * @return The oneof1942. */ int getOneof1942(); + /** + * int32 oneof_1943 = 1943; + * @return Whether the oneof1943 field is set. + */ + boolean hasOneof1943(); /** * int32 oneof_1943 = 1943; * @return The oneof1943. */ int getOneof1943(); + /** + * int32 oneof_1944 = 1944; + * @return Whether the oneof1944 field is set. + */ + boolean hasOneof1944(); /** * int32 oneof_1944 = 1944; * @return The oneof1944. */ int getOneof1944(); + /** + * int32 oneof_1945 = 1945; + * @return Whether the oneof1945 field is set. + */ + boolean hasOneof1945(); /** * int32 oneof_1945 = 1945; * @return The oneof1945. */ int getOneof1945(); + /** + * int32 oneof_1946 = 1946; + * @return Whether the oneof1946 field is set. + */ + boolean hasOneof1946(); /** * int32 oneof_1946 = 1946; * @return The oneof1946. */ int getOneof1946(); + /** + * int32 oneof_1947 = 1947; + * @return Whether the oneof1947 field is set. + */ + boolean hasOneof1947(); /** * int32 oneof_1947 = 1947; * @return The oneof1947. */ int getOneof1947(); + /** + * int32 oneof_1948 = 1948; + * @return Whether the oneof1948 field is set. + */ + boolean hasOneof1948(); /** * int32 oneof_1948 = 1948; * @return The oneof1948. */ int getOneof1948(); + /** + * int32 oneof_1949 = 1949; + * @return Whether the oneof1949 field is set. + */ + boolean hasOneof1949(); /** * int32 oneof_1949 = 1949; * @return The oneof1949. */ int getOneof1949(); + /** + * int32 oneof_1950 = 1950; + * @return Whether the oneof1950 field is set. + */ + boolean hasOneof1950(); /** * int32 oneof_1950 = 1950; * @return The oneof1950. */ int getOneof1950(); + /** + * int32 oneof_1951 = 1951; + * @return Whether the oneof1951 field is set. + */ + boolean hasOneof1951(); /** * int32 oneof_1951 = 1951; * @return The oneof1951. */ int getOneof1951(); + /** + * int32 oneof_1952 = 1952; + * @return Whether the oneof1952 field is set. + */ + boolean hasOneof1952(); /** * int32 oneof_1952 = 1952; * @return The oneof1952. */ int getOneof1952(); + /** + * int32 oneof_1953 = 1953; + * @return Whether the oneof1953 field is set. + */ + boolean hasOneof1953(); /** * int32 oneof_1953 = 1953; * @return The oneof1953. */ int getOneof1953(); + /** + * int32 oneof_1954 = 1954; + * @return Whether the oneof1954 field is set. + */ + boolean hasOneof1954(); /** * int32 oneof_1954 = 1954; * @return The oneof1954. */ int getOneof1954(); + /** + * int32 oneof_1955 = 1955; + * @return Whether the oneof1955 field is set. + */ + boolean hasOneof1955(); /** * int32 oneof_1955 = 1955; * @return The oneof1955. */ int getOneof1955(); + /** + * int32 oneof_1956 = 1956; + * @return Whether the oneof1956 field is set. + */ + boolean hasOneof1956(); /** * int32 oneof_1956 = 1956; * @return The oneof1956. */ int getOneof1956(); + /** + * int32 oneof_1957 = 1957; + * @return Whether the oneof1957 field is set. + */ + boolean hasOneof1957(); /** * int32 oneof_1957 = 1957; * @return The oneof1957. */ int getOneof1957(); + /** + * int32 oneof_1958 = 1958; + * @return Whether the oneof1958 field is set. + */ + boolean hasOneof1958(); /** * int32 oneof_1958 = 1958; * @return The oneof1958. */ int getOneof1958(); + /** + * int32 oneof_1959 = 1959; + * @return Whether the oneof1959 field is set. + */ + boolean hasOneof1959(); /** * int32 oneof_1959 = 1959; * @return The oneof1959. */ int getOneof1959(); + /** + * int32 oneof_1960 = 1960; + * @return Whether the oneof1960 field is set. + */ + boolean hasOneof1960(); /** * int32 oneof_1960 = 1960; * @return The oneof1960. */ int getOneof1960(); + /** + * int32 oneof_1961 = 1961; + * @return Whether the oneof1961 field is set. + */ + boolean hasOneof1961(); /** * int32 oneof_1961 = 1961; * @return The oneof1961. */ int getOneof1961(); + /** + * int32 oneof_1962 = 1962; + * @return Whether the oneof1962 field is set. + */ + boolean hasOneof1962(); /** * int32 oneof_1962 = 1962; * @return The oneof1962. */ int getOneof1962(); + /** + * int32 oneof_1963 = 1963; + * @return Whether the oneof1963 field is set. + */ + boolean hasOneof1963(); /** * int32 oneof_1963 = 1963; * @return The oneof1963. */ int getOneof1963(); + /** + * int32 oneof_1964 = 1964; + * @return Whether the oneof1964 field is set. + */ + boolean hasOneof1964(); /** * int32 oneof_1964 = 1964; * @return The oneof1964. */ int getOneof1964(); + /** + * int32 oneof_1965 = 1965; + * @return Whether the oneof1965 field is set. + */ + boolean hasOneof1965(); /** * int32 oneof_1965 = 1965; * @return The oneof1965. */ int getOneof1965(); + /** + * int32 oneof_1966 = 1966; + * @return Whether the oneof1966 field is set. + */ + boolean hasOneof1966(); /** * int32 oneof_1966 = 1966; * @return The oneof1966. */ int getOneof1966(); + /** + * int32 oneof_1967 = 1967; + * @return Whether the oneof1967 field is set. + */ + boolean hasOneof1967(); /** * int32 oneof_1967 = 1967; * @return The oneof1967. */ int getOneof1967(); + /** + * int32 oneof_1968 = 1968; + * @return Whether the oneof1968 field is set. + */ + boolean hasOneof1968(); /** * int32 oneof_1968 = 1968; * @return The oneof1968. */ int getOneof1968(); + /** + * int32 oneof_1969 = 1969; + * @return Whether the oneof1969 field is set. + */ + boolean hasOneof1969(); /** * int32 oneof_1969 = 1969; * @return The oneof1969. */ int getOneof1969(); + /** + * int32 oneof_1970 = 1970; + * @return Whether the oneof1970 field is set. + */ + boolean hasOneof1970(); /** * int32 oneof_1970 = 1970; * @return The oneof1970. */ int getOneof1970(); + /** + * int32 oneof_1971 = 1971; + * @return Whether the oneof1971 field is set. + */ + boolean hasOneof1971(); /** * int32 oneof_1971 = 1971; * @return The oneof1971. */ int getOneof1971(); + /** + * int32 oneof_1972 = 1972; + * @return Whether the oneof1972 field is set. + */ + boolean hasOneof1972(); /** * int32 oneof_1972 = 1972; * @return The oneof1972. */ int getOneof1972(); + /** + * int32 oneof_1973 = 1973; + * @return Whether the oneof1973 field is set. + */ + boolean hasOneof1973(); /** * int32 oneof_1973 = 1973; * @return The oneof1973. */ int getOneof1973(); + /** + * int32 oneof_1974 = 1974; + * @return Whether the oneof1974 field is set. + */ + boolean hasOneof1974(); /** * int32 oneof_1974 = 1974; * @return The oneof1974. */ int getOneof1974(); + /** + * int32 oneof_1975 = 1975; + * @return Whether the oneof1975 field is set. + */ + boolean hasOneof1975(); /** * int32 oneof_1975 = 1975; * @return The oneof1975. */ int getOneof1975(); + /** + * int32 oneof_1976 = 1976; + * @return Whether the oneof1976 field is set. + */ + boolean hasOneof1976(); /** * int32 oneof_1976 = 1976; * @return The oneof1976. */ - int getOneof1976(); - + int getOneof1976(); + + /** + * int32 oneof_1977 = 1977; + * @return Whether the oneof1977 field is set. + */ + boolean hasOneof1977(); /** * int32 oneof_1977 = 1977; * @return The oneof1977. */ int getOneof1977(); + /** + * int32 oneof_1978 = 1978; + * @return Whether the oneof1978 field is set. + */ + boolean hasOneof1978(); /** * int32 oneof_1978 = 1978; * @return The oneof1978. */ int getOneof1978(); + /** + * int32 oneof_1979 = 1979; + * @return Whether the oneof1979 field is set. + */ + boolean hasOneof1979(); /** * int32 oneof_1979 = 1979; * @return The oneof1979. */ int getOneof1979(); + /** + * int32 oneof_1980 = 1980; + * @return Whether the oneof1980 field is set. + */ + boolean hasOneof1980(); /** * int32 oneof_1980 = 1980; * @return The oneof1980. */ int getOneof1980(); + /** + * int32 oneof_1981 = 1981; + * @return Whether the oneof1981 field is set. + */ + boolean hasOneof1981(); /** * int32 oneof_1981 = 1981; * @return The oneof1981. */ int getOneof1981(); + /** + * int32 oneof_1982 = 1982; + * @return Whether the oneof1982 field is set. + */ + boolean hasOneof1982(); /** * int32 oneof_1982 = 1982; * @return The oneof1982. */ int getOneof1982(); + /** + * int32 oneof_1983 = 1983; + * @return Whether the oneof1983 field is set. + */ + boolean hasOneof1983(); /** * int32 oneof_1983 = 1983; * @return The oneof1983. */ int getOneof1983(); + /** + * int32 oneof_1984 = 1984; + * @return Whether the oneof1984 field is set. + */ + boolean hasOneof1984(); /** * int32 oneof_1984 = 1984; * @return The oneof1984. */ int getOneof1984(); + /** + * int32 oneof_1985 = 1985; + * @return Whether the oneof1985 field is set. + */ + boolean hasOneof1985(); /** * int32 oneof_1985 = 1985; * @return The oneof1985. */ int getOneof1985(); + /** + * int32 oneof_1986 = 1986; + * @return Whether the oneof1986 field is set. + */ + boolean hasOneof1986(); /** * int32 oneof_1986 = 1986; * @return The oneof1986. */ int getOneof1986(); + /** + * int32 oneof_1987 = 1987; + * @return Whether the oneof1987 field is set. + */ + boolean hasOneof1987(); /** * int32 oneof_1987 = 1987; * @return The oneof1987. */ int getOneof1987(); + /** + * int32 oneof_1988 = 1988; + * @return Whether the oneof1988 field is set. + */ + boolean hasOneof1988(); /** * int32 oneof_1988 = 1988; * @return The oneof1988. */ int getOneof1988(); + /** + * int32 oneof_1989 = 1989; + * @return Whether the oneof1989 field is set. + */ + boolean hasOneof1989(); /** * int32 oneof_1989 = 1989; * @return The oneof1989. */ int getOneof1989(); + /** + * int32 oneof_1990 = 1990; + * @return Whether the oneof1990 field is set. + */ + boolean hasOneof1990(); /** * int32 oneof_1990 = 1990; * @return The oneof1990. */ int getOneof1990(); + /** + * int32 oneof_1991 = 1991; + * @return Whether the oneof1991 field is set. + */ + boolean hasOneof1991(); /** * int32 oneof_1991 = 1991; * @return The oneof1991. */ int getOneof1991(); + /** + * int32 oneof_1992 = 1992; + * @return Whether the oneof1992 field is set. + */ + boolean hasOneof1992(); /** * int32 oneof_1992 = 1992; * @return The oneof1992. */ int getOneof1992(); + /** + * int32 oneof_1993 = 1993; + * @return Whether the oneof1993 field is set. + */ + boolean hasOneof1993(); /** * int32 oneof_1993 = 1993; * @return The oneof1993. */ int getOneof1993(); + /** + * int32 oneof_1994 = 1994; + * @return Whether the oneof1994 field is set. + */ + boolean hasOneof1994(); /** * int32 oneof_1994 = 1994; * @return The oneof1994. */ int getOneof1994(); + /** + * int32 oneof_1995 = 1995; + * @return Whether the oneof1995 field is set. + */ + boolean hasOneof1995(); /** * int32 oneof_1995 = 1995; * @return The oneof1995. */ int getOneof1995(); + /** + * int32 oneof_1996 = 1996; + * @return Whether the oneof1996 field is set. + */ + boolean hasOneof1996(); /** * int32 oneof_1996 = 1996; * @return The oneof1996. */ int getOneof1996(); + /** + * int32 oneof_1997 = 1997; + * @return Whether the oneof1997 field is set. + */ + boolean hasOneof1997(); /** * int32 oneof_1997 = 1997; * @return The oneof1997. */ int getOneof1997(); + /** + * int32 oneof_1998 = 1998; + * @return Whether the oneof1998 field is set. + */ + boolean hasOneof1998(); /** * int32 oneof_1998 = 1998; * @return The oneof1998. */ int getOneof1998(); + /** + * int32 oneof_1999 = 1999; + * @return Whether the oneof1999 field is set. + */ + boolean hasOneof1999(); /** * int32 oneof_1999 = 1999; * @return The oneof1999. */ int getOneof1999(); + /** + * int32 oneof_2000 = 2000; + * @return Whether the oneof2000 field is set. + */ + boolean hasOneof2000(); /** * int32 oneof_2000 = 2000; * @return The oneof2000. */ int getOneof2000(); + /** + * int32 oneof_2001 = 2001; + * @return Whether the oneof2001 field is set. + */ + boolean hasOneof2001(); /** * int32 oneof_2001 = 2001; * @return The oneof2001. */ int getOneof2001(); + /** + * int32 oneof_2002 = 2002; + * @return Whether the oneof2002 field is set. + */ + boolean hasOneof2002(); /** * int32 oneof_2002 = 2002; * @return The oneof2002. */ int getOneof2002(); + /** + * int32 oneof_2003 = 2003; + * @return Whether the oneof2003 field is set. + */ + boolean hasOneof2003(); /** * int32 oneof_2003 = 2003; * @return The oneof2003. */ int getOneof2003(); + /** + * int32 oneof_2004 = 2004; + * @return Whether the oneof2004 field is set. + */ + boolean hasOneof2004(); /** * int32 oneof_2004 = 2004; * @return The oneof2004. */ int getOneof2004(); + /** + * int32 oneof_2005 = 2005; + * @return Whether the oneof2005 field is set. + */ + boolean hasOneof2005(); /** * int32 oneof_2005 = 2005; * @return The oneof2005. */ int getOneof2005(); + /** + * int32 oneof_2006 = 2006; + * @return Whether the oneof2006 field is set. + */ + boolean hasOneof2006(); /** * int32 oneof_2006 = 2006; * @return The oneof2006. */ int getOneof2006(); + /** + * int32 oneof_2007 = 2007; + * @return Whether the oneof2007 field is set. + */ + boolean hasOneof2007(); /** * int32 oneof_2007 = 2007; * @return The oneof2007. */ int getOneof2007(); + /** + * int32 oneof_2008 = 2008; + * @return Whether the oneof2008 field is set. + */ + boolean hasOneof2008(); /** * int32 oneof_2008 = 2008; * @return The oneof2008. */ int getOneof2008(); + /** + * int32 oneof_2009 = 2009; + * @return Whether the oneof2009 field is set. + */ + boolean hasOneof2009(); /** * int32 oneof_2009 = 2009; * @return The oneof2009. */ int getOneof2009(); + /** + * int32 oneof_2010 = 2010; + * @return Whether the oneof2010 field is set. + */ + boolean hasOneof2010(); /** * int32 oneof_2010 = 2010; * @return The oneof2010. */ int getOneof2010(); + /** + * int32 oneof_2011 = 2011; + * @return Whether the oneof2011 field is set. + */ + boolean hasOneof2011(); /** * int32 oneof_2011 = 2011; * @return The oneof2011. */ int getOneof2011(); + /** + * int32 oneof_2012 = 2012; + * @return Whether the oneof2012 field is set. + */ + boolean hasOneof2012(); /** * int32 oneof_2012 = 2012; * @return The oneof2012. */ int getOneof2012(); + /** + * int32 oneof_2013 = 2013; + * @return Whether the oneof2013 field is set. + */ + boolean hasOneof2013(); /** * int32 oneof_2013 = 2013; * @return The oneof2013. */ int getOneof2013(); + /** + * int32 oneof_2014 = 2014; + * @return Whether the oneof2014 field is set. + */ + boolean hasOneof2014(); /** * int32 oneof_2014 = 2014; * @return The oneof2014. */ int getOneof2014(); + /** + * int32 oneof_2015 = 2015; + * @return Whether the oneof2015 field is set. + */ + boolean hasOneof2015(); /** * int32 oneof_2015 = 2015; * @return The oneof2015. */ int getOneof2015(); + /** + * int32 oneof_2016 = 2016; + * @return Whether the oneof2016 field is set. + */ + boolean hasOneof2016(); /** * int32 oneof_2016 = 2016; * @return The oneof2016. */ int getOneof2016(); + /** + * int32 oneof_2017 = 2017; + * @return Whether the oneof2017 field is set. + */ + boolean hasOneof2017(); /** * int32 oneof_2017 = 2017; * @return The oneof2017. */ int getOneof2017(); + /** + * int32 oneof_2018 = 2018; + * @return Whether the oneof2018 field is set. + */ + boolean hasOneof2018(); /** * int32 oneof_2018 = 2018; * @return The oneof2018. */ int getOneof2018(); + /** + * int32 oneof_2019 = 2019; + * @return Whether the oneof2019 field is set. + */ + boolean hasOneof2019(); /** * int32 oneof_2019 = 2019; * @return The oneof2019. */ int getOneof2019(); + /** + * int32 oneof_2020 = 2020; + * @return Whether the oneof2020 field is set. + */ + boolean hasOneof2020(); /** * int32 oneof_2020 = 2020; * @return The oneof2020. */ int getOneof2020(); + /** + * int32 oneof_2021 = 2021; + * @return Whether the oneof2021 field is set. + */ + boolean hasOneof2021(); /** * int32 oneof_2021 = 2021; * @return The oneof2021. */ int getOneof2021(); + /** + * int32 oneof_2022 = 2022; + * @return Whether the oneof2022 field is set. + */ + boolean hasOneof2022(); /** * int32 oneof_2022 = 2022; * @return The oneof2022. */ int getOneof2022(); + /** + * int32 oneof_2023 = 2023; + * @return Whether the oneof2023 field is set. + */ + boolean hasOneof2023(); /** * int32 oneof_2023 = 2023; * @return The oneof2023. */ int getOneof2023(); + /** + * int32 oneof_2024 = 2024; + * @return Whether the oneof2024 field is set. + */ + boolean hasOneof2024(); /** * int32 oneof_2024 = 2024; * @return The oneof2024. */ int getOneof2024(); + /** + * int32 oneof_2025 = 2025; + * @return Whether the oneof2025 field is set. + */ + boolean hasOneof2025(); /** * int32 oneof_2025 = 2025; * @return The oneof2025. */ int getOneof2025(); + /** + * int32 oneof_2026 = 2026; + * @return Whether the oneof2026 field is set. + */ + boolean hasOneof2026(); /** * int32 oneof_2026 = 2026; * @return The oneof2026. */ int getOneof2026(); + /** + * int32 oneof_2027 = 2027; + * @return Whether the oneof2027 field is set. + */ + boolean hasOneof2027(); /** * int32 oneof_2027 = 2027; * @return The oneof2027. */ int getOneof2027(); + /** + * int32 oneof_2028 = 2028; + * @return Whether the oneof2028 field is set. + */ + boolean hasOneof2028(); /** * int32 oneof_2028 = 2028; * @return The oneof2028. */ int getOneof2028(); + /** + * int32 oneof_2029 = 2029; + * @return Whether the oneof2029 field is set. + */ + boolean hasOneof2029(); /** * int32 oneof_2029 = 2029; * @return The oneof2029. */ int getOneof2029(); + /** + * int32 oneof_2030 = 2030; + * @return Whether the oneof2030 field is set. + */ + boolean hasOneof2030(); /** * int32 oneof_2030 = 2030; * @return The oneof2030. */ int getOneof2030(); + /** + * int32 oneof_2031 = 2031; + * @return Whether the oneof2031 field is set. + */ + boolean hasOneof2031(); /** * int32 oneof_2031 = 2031; * @return The oneof2031. */ int getOneof2031(); + /** + * int32 oneof_2032 = 2032; + * @return Whether the oneof2032 field is set. + */ + boolean hasOneof2032(); /** * int32 oneof_2032 = 2032; * @return The oneof2032. */ int getOneof2032(); + /** + * int32 oneof_2033 = 2033; + * @return Whether the oneof2033 field is set. + */ + boolean hasOneof2033(); /** * int32 oneof_2033 = 2033; * @return The oneof2033. */ int getOneof2033(); + /** + * int32 oneof_2034 = 2034; + * @return Whether the oneof2034 field is set. + */ + boolean hasOneof2034(); /** * int32 oneof_2034 = 2034; * @return The oneof2034. */ int getOneof2034(); + /** + * int32 oneof_2035 = 2035; + * @return Whether the oneof2035 field is set. + */ + boolean hasOneof2035(); /** * int32 oneof_2035 = 2035; * @return The oneof2035. */ int getOneof2035(); + /** + * int32 oneof_2036 = 2036; + * @return Whether the oneof2036 field is set. + */ + boolean hasOneof2036(); /** * int32 oneof_2036 = 2036; * @return The oneof2036. */ int getOneof2036(); + /** + * int32 oneof_2037 = 2037; + * @return Whether the oneof2037 field is set. + */ + boolean hasOneof2037(); /** * int32 oneof_2037 = 2037; * @return The oneof2037. */ int getOneof2037(); + /** + * int32 oneof_2038 = 2038; + * @return Whether the oneof2038 field is set. + */ + boolean hasOneof2038(); /** * int32 oneof_2038 = 2038; * @return The oneof2038. */ int getOneof2038(); + /** + * int32 oneof_2039 = 2039; + * @return Whether the oneof2039 field is set. + */ + boolean hasOneof2039(); /** * int32 oneof_2039 = 2039; * @return The oneof2039. */ int getOneof2039(); + /** + * int32 oneof_2040 = 2040; + * @return Whether the oneof2040 field is set. + */ + boolean hasOneof2040(); /** * int32 oneof_2040 = 2040; * @return The oneof2040. */ int getOneof2040(); + /** + * int32 oneof_2041 = 2041; + * @return Whether the oneof2041 field is set. + */ + boolean hasOneof2041(); /** * int32 oneof_2041 = 2041; * @return The oneof2041. */ int getOneof2041(); + /** + * int32 oneof_2042 = 2042; + * @return Whether the oneof2042 field is set. + */ + boolean hasOneof2042(); /** * int32 oneof_2042 = 2042; * @return The oneof2042. */ int getOneof2042(); + /** + * int32 oneof_2043 = 2043; + * @return Whether the oneof2043 field is set. + */ + boolean hasOneof2043(); /** * int32 oneof_2043 = 2043; * @return The oneof2043. */ int getOneof2043(); + /** + * int32 oneof_2044 = 2044; + * @return Whether the oneof2044 field is set. + */ + boolean hasOneof2044(); /** * int32 oneof_2044 = 2044; * @return The oneof2044. */ int getOneof2044(); + /** + * int32 oneof_2045 = 2045; + * @return Whether the oneof2045 field is set. + */ + boolean hasOneof2045(); /** * int32 oneof_2045 = 2045; * @return The oneof2045. */ int getOneof2045(); + /** + * int32 oneof_2046 = 2046; + * @return Whether the oneof2046 field is set. + */ + boolean hasOneof2046(); /** * int32 oneof_2046 = 2046; * @return The oneof2046. */ int getOneof2046(); + /** + * int32 oneof_2047 = 2047; + * @return Whether the oneof2047 field is set. + */ + boolean hasOneof2047(); /** * int32 oneof_2047 = 2047; * @return The oneof2047. */ int getOneof2047(); + /** + * int32 oneof_2048 = 2048; + * @return Whether the oneof2048 field is set. + */ + boolean hasOneof2048(); /** * int32 oneof_2048 = 2048; * @return The oneof2048. */ int getOneof2048(); + /** + * int32 oneof_2049 = 2049; + * @return Whether the oneof2049 field is set. + */ + boolean hasOneof2049(); /** * int32 oneof_2049 = 2049; * @return The oneof2049. */ int getOneof2049(); + /** + * int32 oneof_2050 = 2050; + * @return Whether the oneof2050 field is set. + */ + boolean hasOneof2050(); /** * int32 oneof_2050 = 2050; * @return The oneof2050. */ int getOneof2050(); + /** + * int32 oneof_2051 = 2051; + * @return Whether the oneof2051 field is set. + */ + boolean hasOneof2051(); /** * int32 oneof_2051 = 2051; * @return The oneof2051. */ int getOneof2051(); + /** + * int32 oneof_2052 = 2052; + * @return Whether the oneof2052 field is set. + */ + boolean hasOneof2052(); /** * int32 oneof_2052 = 2052; * @return The oneof2052. */ int getOneof2052(); + /** + * int32 oneof_2053 = 2053; + * @return Whether the oneof2053 field is set. + */ + boolean hasOneof2053(); /** * int32 oneof_2053 = 2053; * @return The oneof2053. */ int getOneof2053(); + /** + * int32 oneof_2054 = 2054; + * @return Whether the oneof2054 field is set. + */ + boolean hasOneof2054(); /** * int32 oneof_2054 = 2054; * @return The oneof2054. */ int getOneof2054(); + /** + * int32 oneof_2055 = 2055; + * @return Whether the oneof2055 field is set. + */ + boolean hasOneof2055(); /** * int32 oneof_2055 = 2055; * @return The oneof2055. */ int getOneof2055(); + /** + * int32 oneof_2056 = 2056; + * @return Whether the oneof2056 field is set. + */ + boolean hasOneof2056(); /** * int32 oneof_2056 = 2056; * @return The oneof2056. */ int getOneof2056(); + /** + * int32 oneof_2057 = 2057; + * @return Whether the oneof2057 field is set. + */ + boolean hasOneof2057(); /** * int32 oneof_2057 = 2057; * @return The oneof2057. */ int getOneof2057(); + /** + * int32 oneof_2058 = 2058; + * @return Whether the oneof2058 field is set. + */ + boolean hasOneof2058(); /** * int32 oneof_2058 = 2058; * @return The oneof2058. */ int getOneof2058(); + /** + * int32 oneof_2059 = 2059; + * @return Whether the oneof2059 field is set. + */ + boolean hasOneof2059(); /** * int32 oneof_2059 = 2059; * @return The oneof2059. */ int getOneof2059(); + /** + * int32 oneof_2060 = 2060; + * @return Whether the oneof2060 field is set. + */ + boolean hasOneof2060(); /** * int32 oneof_2060 = 2060; * @return The oneof2060. */ int getOneof2060(); + /** + * int32 oneof_2061 = 2061; + * @return Whether the oneof2061 field is set. + */ + boolean hasOneof2061(); /** * int32 oneof_2061 = 2061; * @return The oneof2061. */ int getOneof2061(); + /** + * int32 oneof_2062 = 2062; + * @return Whether the oneof2062 field is set. + */ + boolean hasOneof2062(); /** * int32 oneof_2062 = 2062; * @return The oneof2062. */ int getOneof2062(); + /** + * int32 oneof_2063 = 2063; + * @return Whether the oneof2063 field is set. + */ + boolean hasOneof2063(); /** * int32 oneof_2063 = 2063; * @return The oneof2063. */ int getOneof2063(); + /** + * int32 oneof_2064 = 2064; + * @return Whether the oneof2064 field is set. + */ + boolean hasOneof2064(); /** * int32 oneof_2064 = 2064; * @return The oneof2064. */ int getOneof2064(); + /** + * int32 oneof_2065 = 2065; + * @return Whether the oneof2065 field is set. + */ + boolean hasOneof2065(); /** * int32 oneof_2065 = 2065; * @return The oneof2065. */ int getOneof2065(); + /** + * int32 oneof_2066 = 2066; + * @return Whether the oneof2066 field is set. + */ + boolean hasOneof2066(); /** * int32 oneof_2066 = 2066; * @return The oneof2066. */ int getOneof2066(); + /** + * int32 oneof_2067 = 2067; + * @return Whether the oneof2067 field is set. + */ + boolean hasOneof2067(); /** * int32 oneof_2067 = 2067; * @return The oneof2067. */ int getOneof2067(); + /** + * int32 oneof_2068 = 2068; + * @return Whether the oneof2068 field is set. + */ + boolean hasOneof2068(); /** * int32 oneof_2068 = 2068; * @return The oneof2068. */ int getOneof2068(); + /** + * int32 oneof_2069 = 2069; + * @return Whether the oneof2069 field is set. + */ + boolean hasOneof2069(); /** * int32 oneof_2069 = 2069; * @return The oneof2069. */ int getOneof2069(); + /** + * int32 oneof_2070 = 2070; + * @return Whether the oneof2070 field is set. + */ + boolean hasOneof2070(); /** * int32 oneof_2070 = 2070; * @return The oneof2070. */ int getOneof2070(); + /** + * int32 oneof_2071 = 2071; + * @return Whether the oneof2071 field is set. + */ + boolean hasOneof2071(); /** * int32 oneof_2071 = 2071; * @return The oneof2071. */ int getOneof2071(); + /** + * int32 oneof_2072 = 2072; + * @return Whether the oneof2072 field is set. + */ + boolean hasOneof2072(); /** * int32 oneof_2072 = 2072; * @return The oneof2072. */ int getOneof2072(); + /** + * int32 oneof_2073 = 2073; + * @return Whether the oneof2073 field is set. + */ + boolean hasOneof2073(); /** * int32 oneof_2073 = 2073; * @return The oneof2073. */ int getOneof2073(); + /** + * int32 oneof_2074 = 2074; + * @return Whether the oneof2074 field is set. + */ + boolean hasOneof2074(); /** * int32 oneof_2074 = 2074; * @return The oneof2074. */ int getOneof2074(); + /** + * int32 oneof_2075 = 2075; + * @return Whether the oneof2075 field is set. + */ + boolean hasOneof2075(); /** * int32 oneof_2075 = 2075; * @return The oneof2075. */ int getOneof2075(); + /** + * int32 oneof_2076 = 2076; + * @return Whether the oneof2076 field is set. + */ + boolean hasOneof2076(); /** * int32 oneof_2076 = 2076; * @return The oneof2076. */ int getOneof2076(); + /** + * int32 oneof_2077 = 2077; + * @return Whether the oneof2077 field is set. + */ + boolean hasOneof2077(); /** * int32 oneof_2077 = 2077; * @return The oneof2077. */ int getOneof2077(); + /** + * int32 oneof_2078 = 2078; + * @return Whether the oneof2078 field is set. + */ + boolean hasOneof2078(); /** * int32 oneof_2078 = 2078; * @return The oneof2078. */ int getOneof2078(); + /** + * int32 oneof_2079 = 2079; + * @return Whether the oneof2079 field is set. + */ + boolean hasOneof2079(); /** * int32 oneof_2079 = 2079; * @return The oneof2079. */ int getOneof2079(); + /** + * int32 oneof_2080 = 2080; + * @return Whether the oneof2080 field is set. + */ + boolean hasOneof2080(); /** * int32 oneof_2080 = 2080; * @return The oneof2080. */ int getOneof2080(); + /** + * int32 oneof_2081 = 2081; + * @return Whether the oneof2081 field is set. + */ + boolean hasOneof2081(); /** * int32 oneof_2081 = 2081; * @return The oneof2081. */ int getOneof2081(); + /** + * int32 oneof_2082 = 2082; + * @return Whether the oneof2082 field is set. + */ + boolean hasOneof2082(); /** * int32 oneof_2082 = 2082; * @return The oneof2082. */ int getOneof2082(); + /** + * int32 oneof_2083 = 2083; + * @return Whether the oneof2083 field is set. + */ + boolean hasOneof2083(); /** * int32 oneof_2083 = 2083; * @return The oneof2083. */ int getOneof2083(); + /** + * int32 oneof_2084 = 2084; + * @return Whether the oneof2084 field is set. + */ + boolean hasOneof2084(); /** * int32 oneof_2084 = 2084; * @return The oneof2084. */ int getOneof2084(); + /** + * int32 oneof_2085 = 2085; + * @return Whether the oneof2085 field is set. + */ + boolean hasOneof2085(); /** * int32 oneof_2085 = 2085; * @return The oneof2085. */ int getOneof2085(); + /** + * int32 oneof_2086 = 2086; + * @return Whether the oneof2086 field is set. + */ + boolean hasOneof2086(); /** * int32 oneof_2086 = 2086; * @return The oneof2086. */ int getOneof2086(); + /** + * int32 oneof_2087 = 2087; + * @return Whether the oneof2087 field is set. + */ + boolean hasOneof2087(); /** * int32 oneof_2087 = 2087; * @return The oneof2087. */ int getOneof2087(); + /** + * int32 oneof_2088 = 2088; + * @return Whether the oneof2088 field is set. + */ + boolean hasOneof2088(); /** * int32 oneof_2088 = 2088; * @return The oneof2088. */ int getOneof2088(); + /** + * int32 oneof_2089 = 2089; + * @return Whether the oneof2089 field is set. + */ + boolean hasOneof2089(); /** * int32 oneof_2089 = 2089; * @return The oneof2089. */ int getOneof2089(); + /** + * int32 oneof_2090 = 2090; + * @return Whether the oneof2090 field is set. + */ + boolean hasOneof2090(); /** * int32 oneof_2090 = 2090; * @return The oneof2090. */ int getOneof2090(); + /** + * int32 oneof_2091 = 2091; + * @return Whether the oneof2091 field is set. + */ + boolean hasOneof2091(); /** * int32 oneof_2091 = 2091; * @return The oneof2091. */ int getOneof2091(); + /** + * int32 oneof_2092 = 2092; + * @return Whether the oneof2092 field is set. + */ + boolean hasOneof2092(); /** * int32 oneof_2092 = 2092; * @return The oneof2092. */ int getOneof2092(); + /** + * int32 oneof_2093 = 2093; + * @return Whether the oneof2093 field is set. + */ + boolean hasOneof2093(); /** * int32 oneof_2093 = 2093; * @return The oneof2093. */ int getOneof2093(); + /** + * int32 oneof_2094 = 2094; + * @return Whether the oneof2094 field is set. + */ + boolean hasOneof2094(); /** * int32 oneof_2094 = 2094; * @return The oneof2094. */ int getOneof2094(); + /** + * int32 oneof_2095 = 2095; + * @return Whether the oneof2095 field is set. + */ + boolean hasOneof2095(); /** * int32 oneof_2095 = 2095; * @return The oneof2095. */ int getOneof2095(); + /** + * int32 oneof_2096 = 2096; + * @return Whether the oneof2096 field is set. + */ + boolean hasOneof2096(); /** * int32 oneof_2096 = 2096; * @return The oneof2096. */ int getOneof2096(); + /** + * int32 oneof_2097 = 2097; + * @return Whether the oneof2097 field is set. + */ + boolean hasOneof2097(); /** * int32 oneof_2097 = 2097; * @return The oneof2097. */ int getOneof2097(); + /** + * int32 oneof_2098 = 2098; + * @return Whether the oneof2098 field is set. + */ + boolean hasOneof2098(); /** * int32 oneof_2098 = 2098; * @return The oneof2098. */ int getOneof2098(); + /** + * int32 oneof_2099 = 2099; + * @return Whether the oneof2099 field is set. + */ + boolean hasOneof2099(); /** * int32 oneof_2099 = 2099; * @return The oneof2099. */ int getOneof2099(); + /** + * int32 oneof_2100 = 2100; + * @return Whether the oneof2100 field is set. + */ + boolean hasOneof2100(); /** * int32 oneof_2100 = 2100; * @return The oneof2100. */ int getOneof2100(); + /** + * int32 oneof_2101 = 2101; + * @return Whether the oneof2101 field is set. + */ + boolean hasOneof2101(); /** * int32 oneof_2101 = 2101; * @return The oneof2101. */ int getOneof2101(); + /** + * int32 oneof_2102 = 2102; + * @return Whether the oneof2102 field is set. + */ + boolean hasOneof2102(); /** * int32 oneof_2102 = 2102; * @return The oneof2102. */ int getOneof2102(); + /** + * int32 oneof_2103 = 2103; + * @return Whether the oneof2103 field is set. + */ + boolean hasOneof2103(); /** * int32 oneof_2103 = 2103; * @return The oneof2103. */ int getOneof2103(); + /** + * int32 oneof_2104 = 2104; + * @return Whether the oneof2104 field is set. + */ + boolean hasOneof2104(); /** * int32 oneof_2104 = 2104; * @return The oneof2104. */ int getOneof2104(); + /** + * int32 oneof_2105 = 2105; + * @return Whether the oneof2105 field is set. + */ + boolean hasOneof2105(); /** * int32 oneof_2105 = 2105; * @return The oneof2105. */ int getOneof2105(); + /** + * int32 oneof_2106 = 2106; + * @return Whether the oneof2106 field is set. + */ + boolean hasOneof2106(); /** * int32 oneof_2106 = 2106; * @return The oneof2106. */ int getOneof2106(); + /** + * int32 oneof_2107 = 2107; + * @return Whether the oneof2107 field is set. + */ + boolean hasOneof2107(); /** * int32 oneof_2107 = 2107; * @return The oneof2107. */ int getOneof2107(); + /** + * int32 oneof_2108 = 2108; + * @return Whether the oneof2108 field is set. + */ + boolean hasOneof2108(); /** * int32 oneof_2108 = 2108; * @return The oneof2108. */ int getOneof2108(); + /** + * int32 oneof_2109 = 2109; + * @return Whether the oneof2109 field is set. + */ + boolean hasOneof2109(); /** * int32 oneof_2109 = 2109; * @return The oneof2109. */ int getOneof2109(); + /** + * int32 oneof_2110 = 2110; + * @return Whether the oneof2110 field is set. + */ + boolean hasOneof2110(); /** * int32 oneof_2110 = 2110; * @return The oneof2110. */ int getOneof2110(); + /** + * int32 oneof_2111 = 2111; + * @return Whether the oneof2111 field is set. + */ + boolean hasOneof2111(); /** * int32 oneof_2111 = 2111; * @return The oneof2111. */ int getOneof2111(); + /** + * int32 oneof_2112 = 2112; + * @return Whether the oneof2112 field is set. + */ + boolean hasOneof2112(); /** * int32 oneof_2112 = 2112; * @return The oneof2112. */ int getOneof2112(); + /** + * int32 oneof_2113 = 2113; + * @return Whether the oneof2113 field is set. + */ + boolean hasOneof2113(); /** * int32 oneof_2113 = 2113; * @return The oneof2113. */ int getOneof2113(); + /** + * int32 oneof_2114 = 2114; + * @return Whether the oneof2114 field is set. + */ + boolean hasOneof2114(); /** * int32 oneof_2114 = 2114; * @return The oneof2114. */ int getOneof2114(); + /** + * int32 oneof_2115 = 2115; + * @return Whether the oneof2115 field is set. + */ + boolean hasOneof2115(); /** * int32 oneof_2115 = 2115; * @return The oneof2115. */ int getOneof2115(); + /** + * int32 oneof_2116 = 2116; + * @return Whether the oneof2116 field is set. + */ + boolean hasOneof2116(); /** * int32 oneof_2116 = 2116; * @return The oneof2116. */ int getOneof2116(); + /** + * int32 oneof_2117 = 2117; + * @return Whether the oneof2117 field is set. + */ + boolean hasOneof2117(); /** * int32 oneof_2117 = 2117; * @return The oneof2117. */ int getOneof2117(); + /** + * int32 oneof_2118 = 2118; + * @return Whether the oneof2118 field is set. + */ + boolean hasOneof2118(); /** * int32 oneof_2118 = 2118; * @return The oneof2118. */ int getOneof2118(); + /** + * int32 oneof_2119 = 2119; + * @return Whether the oneof2119 field is set. + */ + boolean hasOneof2119(); /** * int32 oneof_2119 = 2119; * @return The oneof2119. */ int getOneof2119(); + /** + * int32 oneof_2120 = 2120; + * @return Whether the oneof2120 field is set. + */ + boolean hasOneof2120(); /** * int32 oneof_2120 = 2120; * @return The oneof2120. */ int getOneof2120(); + /** + * int32 oneof_2121 = 2121; + * @return Whether the oneof2121 field is set. + */ + boolean hasOneof2121(); /** * int32 oneof_2121 = 2121; * @return The oneof2121. */ int getOneof2121(); + /** + * int32 oneof_2122 = 2122; + * @return Whether the oneof2122 field is set. + */ + boolean hasOneof2122(); /** * int32 oneof_2122 = 2122; * @return The oneof2122. */ int getOneof2122(); + /** + * int32 oneof_2123 = 2123; + * @return Whether the oneof2123 field is set. + */ + boolean hasOneof2123(); /** * int32 oneof_2123 = 2123; * @return The oneof2123. */ int getOneof2123(); + /** + * int32 oneof_2124 = 2124; + * @return Whether the oneof2124 field is set. + */ + boolean hasOneof2124(); /** * int32 oneof_2124 = 2124; * @return The oneof2124. */ int getOneof2124(); + /** + * int32 oneof_2125 = 2125; + * @return Whether the oneof2125 field is set. + */ + boolean hasOneof2125(); /** * int32 oneof_2125 = 2125; * @return The oneof2125. */ int getOneof2125(); + /** + * int32 oneof_2126 = 2126; + * @return Whether the oneof2126 field is set. + */ + boolean hasOneof2126(); /** * int32 oneof_2126 = 2126; * @return The oneof2126. */ int getOneof2126(); + /** + * int32 oneof_2127 = 2127; + * @return Whether the oneof2127 field is set. + */ + boolean hasOneof2127(); /** * int32 oneof_2127 = 2127; * @return The oneof2127. */ int getOneof2127(); + /** + * int32 oneof_2128 = 2128; + * @return Whether the oneof2128 field is set. + */ + boolean hasOneof2128(); /** * int32 oneof_2128 = 2128; * @return The oneof2128. */ int getOneof2128(); + /** + * int32 oneof_2129 = 2129; + * @return Whether the oneof2129 field is set. + */ + boolean hasOneof2129(); /** * int32 oneof_2129 = 2129; * @return The oneof2129. */ int getOneof2129(); + /** + * int32 oneof_2130 = 2130; + * @return Whether the oneof2130 field is set. + */ + boolean hasOneof2130(); /** * int32 oneof_2130 = 2130; * @return The oneof2130. */ int getOneof2130(); + /** + * int32 oneof_2131 = 2131; + * @return Whether the oneof2131 field is set. + */ + boolean hasOneof2131(); /** * int32 oneof_2131 = 2131; * @return The oneof2131. */ int getOneof2131(); + /** + * int32 oneof_2132 = 2132; + * @return Whether the oneof2132 field is set. + */ + boolean hasOneof2132(); /** * int32 oneof_2132 = 2132; * @return The oneof2132. */ int getOneof2132(); + /** + * int32 oneof_2133 = 2133; + * @return Whether the oneof2133 field is set. + */ + boolean hasOneof2133(); /** * int32 oneof_2133 = 2133; * @return The oneof2133. */ int getOneof2133(); + /** + * int32 oneof_2134 = 2134; + * @return Whether the oneof2134 field is set. + */ + boolean hasOneof2134(); /** * int32 oneof_2134 = 2134; * @return The oneof2134. */ int getOneof2134(); + /** + * int32 oneof_2135 = 2135; + * @return Whether the oneof2135 field is set. + */ + boolean hasOneof2135(); /** * int32 oneof_2135 = 2135; * @return The oneof2135. */ int getOneof2135(); + /** + * int32 oneof_2136 = 2136; + * @return Whether the oneof2136 field is set. + */ + boolean hasOneof2136(); /** * int32 oneof_2136 = 2136; * @return The oneof2136. */ int getOneof2136(); + /** + * int32 oneof_2137 = 2137; + * @return Whether the oneof2137 field is set. + */ + boolean hasOneof2137(); /** * int32 oneof_2137 = 2137; * @return The oneof2137. */ int getOneof2137(); + /** + * int32 oneof_2138 = 2138; + * @return Whether the oneof2138 field is set. + */ + boolean hasOneof2138(); /** * int32 oneof_2138 = 2138; * @return The oneof2138. */ int getOneof2138(); + /** + * int32 oneof_2139 = 2139; + * @return Whether the oneof2139 field is set. + */ + boolean hasOneof2139(); /** * int32 oneof_2139 = 2139; * @return The oneof2139. */ int getOneof2139(); + /** + * int32 oneof_2140 = 2140; + * @return Whether the oneof2140 field is set. + */ + boolean hasOneof2140(); /** * int32 oneof_2140 = 2140; * @return The oneof2140. */ int getOneof2140(); + /** + * int32 oneof_2141 = 2141; + * @return Whether the oneof2141 field is set. + */ + boolean hasOneof2141(); /** * int32 oneof_2141 = 2141; * @return The oneof2141. */ int getOneof2141(); + /** + * int32 oneof_2142 = 2142; + * @return Whether the oneof2142 field is set. + */ + boolean hasOneof2142(); /** * int32 oneof_2142 = 2142; * @return The oneof2142. */ int getOneof2142(); + /** + * int32 oneof_2143 = 2143; + * @return Whether the oneof2143 field is set. + */ + boolean hasOneof2143(); /** * int32 oneof_2143 = 2143; * @return The oneof2143. */ int getOneof2143(); + /** + * int32 oneof_2144 = 2144; + * @return Whether the oneof2144 field is set. + */ + boolean hasOneof2144(); /** * int32 oneof_2144 = 2144; * @return The oneof2144. */ int getOneof2144(); + /** + * int32 oneof_2145 = 2145; + * @return Whether the oneof2145 field is set. + */ + boolean hasOneof2145(); /** * int32 oneof_2145 = 2145; * @return The oneof2145. */ int getOneof2145(); + /** + * int32 oneof_2146 = 2146; + * @return Whether the oneof2146 field is set. + */ + boolean hasOneof2146(); /** * int32 oneof_2146 = 2146; * @return The oneof2146. */ int getOneof2146(); + /** + * int32 oneof_2147 = 2147; + * @return Whether the oneof2147 field is set. + */ + boolean hasOneof2147(); /** * int32 oneof_2147 = 2147; * @return The oneof2147. */ int getOneof2147(); + /** + * int32 oneof_2148 = 2148; + * @return Whether the oneof2148 field is set. + */ + boolean hasOneof2148(); /** * int32 oneof_2148 = 2148; * @return The oneof2148. */ int getOneof2148(); + /** + * int32 oneof_2149 = 2149; + * @return Whether the oneof2149 field is set. + */ + boolean hasOneof2149(); /** * int32 oneof_2149 = 2149; * @return The oneof2149. */ int getOneof2149(); + /** + * int32 oneof_2150 = 2150; + * @return Whether the oneof2150 field is set. + */ + boolean hasOneof2150(); /** * int32 oneof_2150 = 2150; * @return The oneof2150. */ int getOneof2150(); + /** + * int32 oneof_2151 = 2151; + * @return Whether the oneof2151 field is set. + */ + boolean hasOneof2151(); /** * int32 oneof_2151 = 2151; * @return The oneof2151. */ int getOneof2151(); + /** + * int32 oneof_2152 = 2152; + * @return Whether the oneof2152 field is set. + */ + boolean hasOneof2152(); /** * int32 oneof_2152 = 2152; * @return The oneof2152. */ int getOneof2152(); + /** + * int32 oneof_2153 = 2153; + * @return Whether the oneof2153 field is set. + */ + boolean hasOneof2153(); /** * int32 oneof_2153 = 2153; * @return The oneof2153. */ int getOneof2153(); + /** + * int32 oneof_2154 = 2154; + * @return Whether the oneof2154 field is set. + */ + boolean hasOneof2154(); /** * int32 oneof_2154 = 2154; * @return The oneof2154. */ int getOneof2154(); + /** + * int32 oneof_2155 = 2155; + * @return Whether the oneof2155 field is set. + */ + boolean hasOneof2155(); /** * int32 oneof_2155 = 2155; * @return The oneof2155. */ int getOneof2155(); + /** + * int32 oneof_2156 = 2156; + * @return Whether the oneof2156 field is set. + */ + boolean hasOneof2156(); /** * int32 oneof_2156 = 2156; * @return The oneof2156. */ int getOneof2156(); + /** + * int32 oneof_2157 = 2157; + * @return Whether the oneof2157 field is set. + */ + boolean hasOneof2157(); /** * int32 oneof_2157 = 2157; * @return The oneof2157. */ int getOneof2157(); + /** + * int32 oneof_2158 = 2158; + * @return Whether the oneof2158 field is set. + */ + boolean hasOneof2158(); /** * int32 oneof_2158 = 2158; * @return The oneof2158. */ int getOneof2158(); + /** + * int32 oneof_2159 = 2159; + * @return Whether the oneof2159 field is set. + */ + boolean hasOneof2159(); /** * int32 oneof_2159 = 2159; * @return The oneof2159. */ int getOneof2159(); + /** + * int32 oneof_2160 = 2160; + * @return Whether the oneof2160 field is set. + */ + boolean hasOneof2160(); /** * int32 oneof_2160 = 2160; * @return The oneof2160. */ int getOneof2160(); + /** + * int32 oneof_2161 = 2161; + * @return Whether the oneof2161 field is set. + */ + boolean hasOneof2161(); /** * int32 oneof_2161 = 2161; * @return The oneof2161. */ int getOneof2161(); + /** + * int32 oneof_2162 = 2162; + * @return Whether the oneof2162 field is set. + */ + boolean hasOneof2162(); /** * int32 oneof_2162 = 2162; * @return The oneof2162. */ int getOneof2162(); + /** + * int32 oneof_2163 = 2163; + * @return Whether the oneof2163 field is set. + */ + boolean hasOneof2163(); /** * int32 oneof_2163 = 2163; * @return The oneof2163. */ int getOneof2163(); + /** + * int32 oneof_2164 = 2164; + * @return Whether the oneof2164 field is set. + */ + boolean hasOneof2164(); /** * int32 oneof_2164 = 2164; * @return The oneof2164. */ int getOneof2164(); + /** + * int32 oneof_2165 = 2165; + * @return Whether the oneof2165 field is set. + */ + boolean hasOneof2165(); /** * int32 oneof_2165 = 2165; * @return The oneof2165. */ int getOneof2165(); + /** + * int32 oneof_2166 = 2166; + * @return Whether the oneof2166 field is set. + */ + boolean hasOneof2166(); /** * int32 oneof_2166 = 2166; * @return The oneof2166. */ int getOneof2166(); + /** + * int32 oneof_2167 = 2167; + * @return Whether the oneof2167 field is set. + */ + boolean hasOneof2167(); /** * int32 oneof_2167 = 2167; * @return The oneof2167. */ int getOneof2167(); + /** + * int32 oneof_2168 = 2168; + * @return Whether the oneof2168 field is set. + */ + boolean hasOneof2168(); /** * int32 oneof_2168 = 2168; * @return The oneof2168. */ int getOneof2168(); + /** + * int32 oneof_2169 = 2169; + * @return Whether the oneof2169 field is set. + */ + boolean hasOneof2169(); /** * int32 oneof_2169 = 2169; * @return The oneof2169. */ int getOneof2169(); + /** + * int32 oneof_2170 = 2170; + * @return Whether the oneof2170 field is set. + */ + boolean hasOneof2170(); /** * int32 oneof_2170 = 2170; * @return The oneof2170. */ int getOneof2170(); + /** + * int32 oneof_2171 = 2171; + * @return Whether the oneof2171 field is set. + */ + boolean hasOneof2171(); /** * int32 oneof_2171 = 2171; * @return The oneof2171. */ int getOneof2171(); + /** + * int32 oneof_2172 = 2172; + * @return Whether the oneof2172 field is set. + */ + boolean hasOneof2172(); /** * int32 oneof_2172 = 2172; * @return The oneof2172. */ int getOneof2172(); + /** + * int32 oneof_2173 = 2173; + * @return Whether the oneof2173 field is set. + */ + boolean hasOneof2173(); /** * int32 oneof_2173 = 2173; * @return The oneof2173. */ int getOneof2173(); + /** + * int32 oneof_2174 = 2174; + * @return Whether the oneof2174 field is set. + */ + boolean hasOneof2174(); /** * int32 oneof_2174 = 2174; * @return The oneof2174. */ int getOneof2174(); + /** + * int32 oneof_2175 = 2175; + * @return Whether the oneof2175 field is set. + */ + boolean hasOneof2175(); /** * int32 oneof_2175 = 2175; * @return The oneof2175. */ int getOneof2175(); + /** + * int32 oneof_2176 = 2176; + * @return Whether the oneof2176 field is set. + */ + boolean hasOneof2176(); /** * int32 oneof_2176 = 2176; * @return The oneof2176. */ int getOneof2176(); + /** + * int32 oneof_2177 = 2177; + * @return Whether the oneof2177 field is set. + */ + boolean hasOneof2177(); /** * int32 oneof_2177 = 2177; * @return The oneof2177. */ int getOneof2177(); + /** + * int32 oneof_2178 = 2178; + * @return Whether the oneof2178 field is set. + */ + boolean hasOneof2178(); /** * int32 oneof_2178 = 2178; * @return The oneof2178. */ int getOneof2178(); + /** + * int32 oneof_2179 = 2179; + * @return Whether the oneof2179 field is set. + */ + boolean hasOneof2179(); /** * int32 oneof_2179 = 2179; * @return The oneof2179. */ int getOneof2179(); + /** + * int32 oneof_2180 = 2180; + * @return Whether the oneof2180 field is set. + */ + boolean hasOneof2180(); /** * int32 oneof_2180 = 2180; * @return The oneof2180. */ int getOneof2180(); + /** + * int32 oneof_2181 = 2181; + * @return Whether the oneof2181 field is set. + */ + boolean hasOneof2181(); /** * int32 oneof_2181 = 2181; * @return The oneof2181. */ int getOneof2181(); + /** + * int32 oneof_2182 = 2182; + * @return Whether the oneof2182 field is set. + */ + boolean hasOneof2182(); /** * int32 oneof_2182 = 2182; * @return The oneof2182. */ int getOneof2182(); + /** + * int32 oneof_2183 = 2183; + * @return Whether the oneof2183 field is set. + */ + boolean hasOneof2183(); /** * int32 oneof_2183 = 2183; * @return The oneof2183. */ int getOneof2183(); + /** + * int32 oneof_2184 = 2184; + * @return Whether the oneof2184 field is set. + */ + boolean hasOneof2184(); /** * int32 oneof_2184 = 2184; * @return The oneof2184. */ int getOneof2184(); + /** + * int32 oneof_2185 = 2185; + * @return Whether the oneof2185 field is set. + */ + boolean hasOneof2185(); /** * int32 oneof_2185 = 2185; * @return The oneof2185. */ int getOneof2185(); + /** + * int32 oneof_2186 = 2186; + * @return Whether the oneof2186 field is set. + */ + boolean hasOneof2186(); /** * int32 oneof_2186 = 2186; * @return The oneof2186. */ int getOneof2186(); + /** + * int32 oneof_2187 = 2187; + * @return Whether the oneof2187 field is set. + */ + boolean hasOneof2187(); /** * int32 oneof_2187 = 2187; * @return The oneof2187. */ int getOneof2187(); + /** + * int32 oneof_2188 = 2188; + * @return Whether the oneof2188 field is set. + */ + boolean hasOneof2188(); /** * int32 oneof_2188 = 2188; * @return The oneof2188. */ int getOneof2188(); + /** + * int32 oneof_2189 = 2189; + * @return Whether the oneof2189 field is set. + */ + boolean hasOneof2189(); /** * int32 oneof_2189 = 2189; * @return The oneof2189. */ int getOneof2189(); + /** + * int32 oneof_2190 = 2190; + * @return Whether the oneof2190 field is set. + */ + boolean hasOneof2190(); /** * int32 oneof_2190 = 2190; * @return The oneof2190. */ int getOneof2190(); + /** + * int32 oneof_2191 = 2191; + * @return Whether the oneof2191 field is set. + */ + boolean hasOneof2191(); /** * int32 oneof_2191 = 2191; * @return The oneof2191. */ int getOneof2191(); + /** + * int32 oneof_2192 = 2192; + * @return Whether the oneof2192 field is set. + */ + boolean hasOneof2192(); /** * int32 oneof_2192 = 2192; * @return The oneof2192. */ int getOneof2192(); + /** + * int32 oneof_2193 = 2193; + * @return Whether the oneof2193 field is set. + */ + boolean hasOneof2193(); /** * int32 oneof_2193 = 2193; * @return The oneof2193. */ int getOneof2193(); + /** + * int32 oneof_2194 = 2194; + * @return Whether the oneof2194 field is set. + */ + boolean hasOneof2194(); /** * int32 oneof_2194 = 2194; * @return The oneof2194. */ int getOneof2194(); + /** + * int32 oneof_2195 = 2195; + * @return Whether the oneof2195 field is set. + */ + boolean hasOneof2195(); /** * int32 oneof_2195 = 2195; * @return The oneof2195. */ int getOneof2195(); + /** + * int32 oneof_2196 = 2196; + * @return Whether the oneof2196 field is set. + */ + boolean hasOneof2196(); /** * int32 oneof_2196 = 2196; * @return The oneof2196. */ int getOneof2196(); + /** + * int32 oneof_2197 = 2197; + * @return Whether the oneof2197 field is set. + */ + boolean hasOneof2197(); /** * int32 oneof_2197 = 2197; * @return The oneof2197. */ int getOneof2197(); + /** + * int32 oneof_2198 = 2198; + * @return Whether the oneof2198 field is set. + */ + boolean hasOneof2198(); /** * int32 oneof_2198 = 2198; * @return The oneof2198. */ int getOneof2198(); + /** + * int32 oneof_2199 = 2199; + * @return Whether the oneof2199 field is set. + */ + boolean hasOneof2199(); /** * int32 oneof_2199 = 2199; * @return The oneof2199. */ int getOneof2199(); + /** + * int32 oneof_2200 = 2200; + * @return Whether the oneof2200 field is set. + */ + boolean hasOneof2200(); /** * int32 oneof_2200 = 2200; * @return The oneof2200. */ int getOneof2200(); + /** + * int32 oneof_2201 = 2201; + * @return Whether the oneof2201 field is set. + */ + boolean hasOneof2201(); /** * int32 oneof_2201 = 2201; * @return The oneof2201. */ int getOneof2201(); + /** + * int32 oneof_2202 = 2202; + * @return Whether the oneof2202 field is set. + */ + boolean hasOneof2202(); /** * int32 oneof_2202 = 2202; * @return The oneof2202. */ int getOneof2202(); + /** + * int32 oneof_2203 = 2203; + * @return Whether the oneof2203 field is set. + */ + boolean hasOneof2203(); /** * int32 oneof_2203 = 2203; * @return The oneof2203. */ int getOneof2203(); + /** + * int32 oneof_2204 = 2204; + * @return Whether the oneof2204 field is set. + */ + boolean hasOneof2204(); /** * int32 oneof_2204 = 2204; * @return The oneof2204. */ int getOneof2204(); + /** + * int32 oneof_2205 = 2205; + * @return Whether the oneof2205 field is set. + */ + boolean hasOneof2205(); /** * int32 oneof_2205 = 2205; * @return The oneof2205. */ int getOneof2205(); + /** + * int32 oneof_2206 = 2206; + * @return Whether the oneof2206 field is set. + */ + boolean hasOneof2206(); /** * int32 oneof_2206 = 2206; * @return The oneof2206. */ int getOneof2206(); + /** + * int32 oneof_2207 = 2207; + * @return Whether the oneof2207 field is set. + */ + boolean hasOneof2207(); /** * int32 oneof_2207 = 2207; * @return The oneof2207. */ int getOneof2207(); + /** + * int32 oneof_2208 = 2208; + * @return Whether the oneof2208 field is set. + */ + boolean hasOneof2208(); /** * int32 oneof_2208 = 2208; * @return The oneof2208. */ int getOneof2208(); + /** + * int32 oneof_2209 = 2209; + * @return Whether the oneof2209 field is set. + */ + boolean hasOneof2209(); /** * int32 oneof_2209 = 2209; * @return The oneof2209. */ int getOneof2209(); + /** + * int32 oneof_2210 = 2210; + * @return Whether the oneof2210 field is set. + */ + boolean hasOneof2210(); /** * int32 oneof_2210 = 2210; * @return The oneof2210. */ int getOneof2210(); + /** + * int32 oneof_2211 = 2211; + * @return Whether the oneof2211 field is set. + */ + boolean hasOneof2211(); /** * int32 oneof_2211 = 2211; * @return The oneof2211. */ int getOneof2211(); + /** + * int32 oneof_2212 = 2212; + * @return Whether the oneof2212 field is set. + */ + boolean hasOneof2212(); /** * int32 oneof_2212 = 2212; * @return The oneof2212. */ int getOneof2212(); + /** + * int32 oneof_2213 = 2213; + * @return Whether the oneof2213 field is set. + */ + boolean hasOneof2213(); /** * int32 oneof_2213 = 2213; * @return The oneof2213. */ int getOneof2213(); + /** + * int32 oneof_2214 = 2214; + * @return Whether the oneof2214 field is set. + */ + boolean hasOneof2214(); /** * int32 oneof_2214 = 2214; * @return The oneof2214. */ int getOneof2214(); + /** + * int32 oneof_2215 = 2215; + * @return Whether the oneof2215 field is set. + */ + boolean hasOneof2215(); /** * int32 oneof_2215 = 2215; * @return The oneof2215. */ int getOneof2215(); + /** + * int32 oneof_2216 = 2216; + * @return Whether the oneof2216 field is set. + */ + boolean hasOneof2216(); /** * int32 oneof_2216 = 2216; * @return The oneof2216. */ int getOneof2216(); + /** + * int32 oneof_2217 = 2217; + * @return Whether the oneof2217 field is set. + */ + boolean hasOneof2217(); /** * int32 oneof_2217 = 2217; * @return The oneof2217. */ int getOneof2217(); + /** + * int32 oneof_2218 = 2218; + * @return Whether the oneof2218 field is set. + */ + boolean hasOneof2218(); /** * int32 oneof_2218 = 2218; * @return The oneof2218. */ int getOneof2218(); + /** + * int32 oneof_2219 = 2219; + * @return Whether the oneof2219 field is set. + */ + boolean hasOneof2219(); /** * int32 oneof_2219 = 2219; * @return The oneof2219. */ int getOneof2219(); + /** + * int32 oneof_2220 = 2220; + * @return Whether the oneof2220 field is set. + */ + boolean hasOneof2220(); /** * int32 oneof_2220 = 2220; * @return The oneof2220. */ int getOneof2220(); + /** + * int32 oneof_2221 = 2221; + * @return Whether the oneof2221 field is set. + */ + boolean hasOneof2221(); /** * int32 oneof_2221 = 2221; * @return The oneof2221. */ int getOneof2221(); + /** + * int32 oneof_2222 = 2222; + * @return Whether the oneof2222 field is set. + */ + boolean hasOneof2222(); /** * int32 oneof_2222 = 2222; * @return The oneof2222. */ int getOneof2222(); + /** + * int32 oneof_2223 = 2223; + * @return Whether the oneof2223 field is set. + */ + boolean hasOneof2223(); /** * int32 oneof_2223 = 2223; * @return The oneof2223. */ int getOneof2223(); + /** + * int32 oneof_2224 = 2224; + * @return Whether the oneof2224 field is set. + */ + boolean hasOneof2224(); /** * int32 oneof_2224 = 2224; * @return The oneof2224. */ int getOneof2224(); + /** + * int32 oneof_2225 = 2225; + * @return Whether the oneof2225 field is set. + */ + boolean hasOneof2225(); /** * int32 oneof_2225 = 2225; * @return The oneof2225. */ int getOneof2225(); + /** + * int32 oneof_2226 = 2226; + * @return Whether the oneof2226 field is set. + */ + boolean hasOneof2226(); /** * int32 oneof_2226 = 2226; * @return The oneof2226. */ int getOneof2226(); + /** + * int32 oneof_2227 = 2227; + * @return Whether the oneof2227 field is set. + */ + boolean hasOneof2227(); /** * int32 oneof_2227 = 2227; * @return The oneof2227. */ int getOneof2227(); + /** + * int32 oneof_2228 = 2228; + * @return Whether the oneof2228 field is set. + */ + boolean hasOneof2228(); /** * int32 oneof_2228 = 2228; * @return The oneof2228. */ int getOneof2228(); + /** + * int32 oneof_2229 = 2229; + * @return Whether the oneof2229 field is set. + */ + boolean hasOneof2229(); /** * int32 oneof_2229 = 2229; * @return The oneof2229. */ int getOneof2229(); + /** + * int32 oneof_2230 = 2230; + * @return Whether the oneof2230 field is set. + */ + boolean hasOneof2230(); /** * int32 oneof_2230 = 2230; * @return The oneof2230. */ int getOneof2230(); + /** + * int32 oneof_2231 = 2231; + * @return Whether the oneof2231 field is set. + */ + boolean hasOneof2231(); /** * int32 oneof_2231 = 2231; * @return The oneof2231. */ int getOneof2231(); + /** + * int32 oneof_2232 = 2232; + * @return Whether the oneof2232 field is set. + */ + boolean hasOneof2232(); /** * int32 oneof_2232 = 2232; * @return The oneof2232. */ int getOneof2232(); + /** + * int32 oneof_2233 = 2233; + * @return Whether the oneof2233 field is set. + */ + boolean hasOneof2233(); /** * int32 oneof_2233 = 2233; * @return The oneof2233. */ int getOneof2233(); + /** + * int32 oneof_2234 = 2234; + * @return Whether the oneof2234 field is set. + */ + boolean hasOneof2234(); /** * int32 oneof_2234 = 2234; * @return The oneof2234. */ int getOneof2234(); + /** + * int32 oneof_2235 = 2235; + * @return Whether the oneof2235 field is set. + */ + boolean hasOneof2235(); /** * int32 oneof_2235 = 2235; * @return The oneof2235. */ int getOneof2235(); + /** + * int32 oneof_2236 = 2236; + * @return Whether the oneof2236 field is set. + */ + boolean hasOneof2236(); /** * int32 oneof_2236 = 2236; * @return The oneof2236. */ int getOneof2236(); + /** + * int32 oneof_2237 = 2237; + * @return Whether the oneof2237 field is set. + */ + boolean hasOneof2237(); /** * int32 oneof_2237 = 2237; * @return The oneof2237. */ int getOneof2237(); + /** + * int32 oneof_2238 = 2238; + * @return Whether the oneof2238 field is set. + */ + boolean hasOneof2238(); /** * int32 oneof_2238 = 2238; * @return The oneof2238. */ int getOneof2238(); + /** + * int32 oneof_2239 = 2239; + * @return Whether the oneof2239 field is set. + */ + boolean hasOneof2239(); /** * int32 oneof_2239 = 2239; * @return The oneof2239. */ int getOneof2239(); + /** + * int32 oneof_2240 = 2240; + * @return Whether the oneof2240 field is set. + */ + boolean hasOneof2240(); /** * int32 oneof_2240 = 2240; * @return The oneof2240. */ int getOneof2240(); + /** + * int32 oneof_2241 = 2241; + * @return Whether the oneof2241 field is set. + */ + boolean hasOneof2241(); /** * int32 oneof_2241 = 2241; * @return The oneof2241. */ int getOneof2241(); + /** + * int32 oneof_2242 = 2242; + * @return Whether the oneof2242 field is set. + */ + boolean hasOneof2242(); /** * int32 oneof_2242 = 2242; * @return The oneof2242. */ int getOneof2242(); + /** + * int32 oneof_2243 = 2243; + * @return Whether the oneof2243 field is set. + */ + boolean hasOneof2243(); /** * int32 oneof_2243 = 2243; * @return The oneof2243. */ int getOneof2243(); + /** + * int32 oneof_2244 = 2244; + * @return Whether the oneof2244 field is set. + */ + boolean hasOneof2244(); /** * int32 oneof_2244 = 2244; * @return The oneof2244. */ int getOneof2244(); + /** + * int32 oneof_2245 = 2245; + * @return Whether the oneof2245 field is set. + */ + boolean hasOneof2245(); /** * int32 oneof_2245 = 2245; * @return The oneof2245. */ int getOneof2245(); + /** + * int32 oneof_2246 = 2246; + * @return Whether the oneof2246 field is set. + */ + boolean hasOneof2246(); /** * int32 oneof_2246 = 2246; * @return The oneof2246. */ int getOneof2246(); + /** + * int32 oneof_2247 = 2247; + * @return Whether the oneof2247 field is set. + */ + boolean hasOneof2247(); /** * int32 oneof_2247 = 2247; * @return The oneof2247. */ int getOneof2247(); + /** + * int32 oneof_2248 = 2248; + * @return Whether the oneof2248 field is set. + */ + boolean hasOneof2248(); /** * int32 oneof_2248 = 2248; * @return The oneof2248. */ int getOneof2248(); + /** + * int32 oneof_2249 = 2249; + * @return Whether the oneof2249 field is set. + */ + boolean hasOneof2249(); /** * int32 oneof_2249 = 2249; * @return The oneof2249. */ int getOneof2249(); + /** + * int32 oneof_2250 = 2250; + * @return Whether the oneof2250 field is set. + */ + boolean hasOneof2250(); /** * int32 oneof_2250 = 2250; * @return The oneof2250. */ int getOneof2250(); + /** + * int32 oneof_2251 = 2251; + * @return Whether the oneof2251 field is set. + */ + boolean hasOneof2251(); /** * int32 oneof_2251 = 2251; * @return The oneof2251. */ int getOneof2251(); + /** + * int32 oneof_2252 = 2252; + * @return Whether the oneof2252 field is set. + */ + boolean hasOneof2252(); /** * int32 oneof_2252 = 2252; * @return The oneof2252. */ int getOneof2252(); + /** + * int32 oneof_2253 = 2253; + * @return Whether the oneof2253 field is set. + */ + boolean hasOneof2253(); /** * int32 oneof_2253 = 2253; * @return The oneof2253. */ int getOneof2253(); + /** + * int32 oneof_2254 = 2254; + * @return Whether the oneof2254 field is set. + */ + boolean hasOneof2254(); /** * int32 oneof_2254 = 2254; * @return The oneof2254. */ int getOneof2254(); + /** + * int32 oneof_2255 = 2255; + * @return Whether the oneof2255 field is set. + */ + boolean hasOneof2255(); /** * int32 oneof_2255 = 2255; * @return The oneof2255. */ int getOneof2255(); + /** + * int32 oneof_2256 = 2256; + * @return Whether the oneof2256 field is set. + */ + boolean hasOneof2256(); /** * int32 oneof_2256 = 2256; * @return The oneof2256. */ int getOneof2256(); + /** + * int32 oneof_2257 = 2257; + * @return Whether the oneof2257 field is set. + */ + boolean hasOneof2257(); /** * int32 oneof_2257 = 2257; * @return The oneof2257. */ int getOneof2257(); + /** + * int32 oneof_2258 = 2258; + * @return Whether the oneof2258 field is set. + */ + boolean hasOneof2258(); /** * int32 oneof_2258 = 2258; * @return The oneof2258. */ int getOneof2258(); + /** + * int32 oneof_2259 = 2259; + * @return Whether the oneof2259 field is set. + */ + boolean hasOneof2259(); /** * int32 oneof_2259 = 2259; * @return The oneof2259. */ int getOneof2259(); + /** + * int32 oneof_2260 = 2260; + * @return Whether the oneof2260 field is set. + */ + boolean hasOneof2260(); /** * int32 oneof_2260 = 2260; * @return The oneof2260. */ int getOneof2260(); + /** + * int32 oneof_2261 = 2261; + * @return Whether the oneof2261 field is set. + */ + boolean hasOneof2261(); /** * int32 oneof_2261 = 2261; * @return The oneof2261. */ int getOneof2261(); + /** + * int32 oneof_2262 = 2262; + * @return Whether the oneof2262 field is set. + */ + boolean hasOneof2262(); /** * int32 oneof_2262 = 2262; * @return The oneof2262. */ int getOneof2262(); + /** + * int32 oneof_2263 = 2263; + * @return Whether the oneof2263 field is set. + */ + boolean hasOneof2263(); /** * int32 oneof_2263 = 2263; * @return The oneof2263. */ int getOneof2263(); + /** + * int32 oneof_2264 = 2264; + * @return Whether the oneof2264 field is set. + */ + boolean hasOneof2264(); /** * int32 oneof_2264 = 2264; * @return The oneof2264. */ int getOneof2264(); + /** + * int32 oneof_2265 = 2265; + * @return Whether the oneof2265 field is set. + */ + boolean hasOneof2265(); /** * int32 oneof_2265 = 2265; * @return The oneof2265. */ int getOneof2265(); + /** + * int32 oneof_2266 = 2266; + * @return Whether the oneof2266 field is set. + */ + boolean hasOneof2266(); /** * int32 oneof_2266 = 2266; * @return The oneof2266. */ int getOneof2266(); + /** + * int32 oneof_2267 = 2267; + * @return Whether the oneof2267 field is set. + */ + boolean hasOneof2267(); /** * int32 oneof_2267 = 2267; * @return The oneof2267. */ int getOneof2267(); + /** + * int32 oneof_2268 = 2268; + * @return Whether the oneof2268 field is set. + */ + boolean hasOneof2268(); /** * int32 oneof_2268 = 2268; * @return The oneof2268. */ int getOneof2268(); + /** + * int32 oneof_2269 = 2269; + * @return Whether the oneof2269 field is set. + */ + boolean hasOneof2269(); /** * int32 oneof_2269 = 2269; * @return The oneof2269. */ int getOneof2269(); + /** + * int32 oneof_2270 = 2270; + * @return Whether the oneof2270 field is set. + */ + boolean hasOneof2270(); /** * int32 oneof_2270 = 2270; * @return The oneof2270. */ int getOneof2270(); + /** + * int32 oneof_2271 = 2271; + * @return Whether the oneof2271 field is set. + */ + boolean hasOneof2271(); /** * int32 oneof_2271 = 2271; * @return The oneof2271. */ int getOneof2271(); + /** + * int32 oneof_2272 = 2272; + * @return Whether the oneof2272 field is set. + */ + boolean hasOneof2272(); /** * int32 oneof_2272 = 2272; * @return The oneof2272. */ int getOneof2272(); + /** + * int32 oneof_2273 = 2273; + * @return Whether the oneof2273 field is set. + */ + boolean hasOneof2273(); /** * int32 oneof_2273 = 2273; * @return The oneof2273. */ int getOneof2273(); + /** + * int32 oneof_2274 = 2274; + * @return Whether the oneof2274 field is set. + */ + boolean hasOneof2274(); /** * int32 oneof_2274 = 2274; * @return The oneof2274. */ int getOneof2274(); + /** + * int32 oneof_2275 = 2275; + * @return Whether the oneof2275 field is set. + */ + boolean hasOneof2275(); /** * int32 oneof_2275 = 2275; * @return The oneof2275. */ int getOneof2275(); + /** + * int32 oneof_2276 = 2276; + * @return Whether the oneof2276 field is set. + */ + boolean hasOneof2276(); /** * int32 oneof_2276 = 2276; * @return The oneof2276. */ int getOneof2276(); + /** + * int32 oneof_2277 = 2277; + * @return Whether the oneof2277 field is set. + */ + boolean hasOneof2277(); /** * int32 oneof_2277 = 2277; * @return The oneof2277. */ int getOneof2277(); + /** + * int32 oneof_2278 = 2278; + * @return Whether the oneof2278 field is set. + */ + boolean hasOneof2278(); /** * int32 oneof_2278 = 2278; * @return The oneof2278. */ int getOneof2278(); + /** + * int32 oneof_2279 = 2279; + * @return Whether the oneof2279 field is set. + */ + boolean hasOneof2279(); /** * int32 oneof_2279 = 2279; * @return The oneof2279. */ int getOneof2279(); + /** + * int32 oneof_2280 = 2280; + * @return Whether the oneof2280 field is set. + */ + boolean hasOneof2280(); /** * int32 oneof_2280 = 2280; * @return The oneof2280. */ int getOneof2280(); + /** + * int32 oneof_2281 = 2281; + * @return Whether the oneof2281 field is set. + */ + boolean hasOneof2281(); /** * int32 oneof_2281 = 2281; * @return The oneof2281. */ int getOneof2281(); + /** + * int32 oneof_2282 = 2282; + * @return Whether the oneof2282 field is set. + */ + boolean hasOneof2282(); /** * int32 oneof_2282 = 2282; * @return The oneof2282. */ int getOneof2282(); + /** + * int32 oneof_2283 = 2283; + * @return Whether the oneof2283 field is set. + */ + boolean hasOneof2283(); /** * int32 oneof_2283 = 2283; * @return The oneof2283. */ int getOneof2283(); + /** + * int32 oneof_2284 = 2284; + * @return Whether the oneof2284 field is set. + */ + boolean hasOneof2284(); /** * int32 oneof_2284 = 2284; * @return The oneof2284. */ int getOneof2284(); + /** + * int32 oneof_2285 = 2285; + * @return Whether the oneof2285 field is set. + */ + boolean hasOneof2285(); /** * int32 oneof_2285 = 2285; * @return The oneof2285. */ int getOneof2285(); + /** + * int32 oneof_2286 = 2286; + * @return Whether the oneof2286 field is set. + */ + boolean hasOneof2286(); /** * int32 oneof_2286 = 2286; * @return The oneof2286. */ int getOneof2286(); + /** + * int32 oneof_2287 = 2287; + * @return Whether the oneof2287 field is set. + */ + boolean hasOneof2287(); /** * int32 oneof_2287 = 2287; * @return The oneof2287. */ int getOneof2287(); + /** + * int32 oneof_2288 = 2288; + * @return Whether the oneof2288 field is set. + */ + boolean hasOneof2288(); /** * int32 oneof_2288 = 2288; * @return The oneof2288. */ int getOneof2288(); + /** + * int32 oneof_2289 = 2289; + * @return Whether the oneof2289 field is set. + */ + boolean hasOneof2289(); /** * int32 oneof_2289 = 2289; * @return The oneof2289. */ int getOneof2289(); + /** + * int32 oneof_2290 = 2290; + * @return Whether the oneof2290 field is set. + */ + boolean hasOneof2290(); /** * int32 oneof_2290 = 2290; * @return The oneof2290. */ int getOneof2290(); + /** + * int32 oneof_2291 = 2291; + * @return Whether the oneof2291 field is set. + */ + boolean hasOneof2291(); /** * int32 oneof_2291 = 2291; * @return The oneof2291. */ int getOneof2291(); + /** + * int32 oneof_2292 = 2292; + * @return Whether the oneof2292 field is set. + */ + boolean hasOneof2292(); /** * int32 oneof_2292 = 2292; * @return The oneof2292. */ int getOneof2292(); + /** + * int32 oneof_2293 = 2293; + * @return Whether the oneof2293 field is set. + */ + boolean hasOneof2293(); /** * int32 oneof_2293 = 2293; * @return The oneof2293. */ int getOneof2293(); + /** + * int32 oneof_2294 = 2294; + * @return Whether the oneof2294 field is set. + */ + boolean hasOneof2294(); /** * int32 oneof_2294 = 2294; * @return The oneof2294. */ int getOneof2294(); + /** + * int32 oneof_2295 = 2295; + * @return Whether the oneof2295 field is set. + */ + boolean hasOneof2295(); /** * int32 oneof_2295 = 2295; * @return The oneof2295. */ int getOneof2295(); + /** + * int32 oneof_2296 = 2296; + * @return Whether the oneof2296 field is set. + */ + boolean hasOneof2296(); /** * int32 oneof_2296 = 2296; * @return The oneof2296. */ int getOneof2296(); + /** + * int32 oneof_2297 = 2297; + * @return Whether the oneof2297 field is set. + */ + boolean hasOneof2297(); /** * int32 oneof_2297 = 2297; * @return The oneof2297. */ int getOneof2297(); + /** + * int32 oneof_2298 = 2298; + * @return Whether the oneof2298 field is set. + */ + boolean hasOneof2298(); /** * int32 oneof_2298 = 2298; * @return The oneof2298. */ int getOneof2298(); + /** + * int32 oneof_2299 = 2299; + * @return Whether the oneof2299 field is set. + */ + boolean hasOneof2299(); /** * int32 oneof_2299 = 2299; * @return The oneof2299. */ int getOneof2299(); + /** + * int32 oneof_2300 = 2300; + * @return Whether the oneof2300 field is set. + */ + boolean hasOneof2300(); /** * int32 oneof_2300 = 2300; * @return The oneof2300. */ int getOneof2300(); + /** + * int32 oneof_2301 = 2301; + * @return Whether the oneof2301 field is set. + */ + boolean hasOneof2301(); /** * int32 oneof_2301 = 2301; * @return The oneof2301. */ int getOneof2301(); + /** + * int32 oneof_2302 = 2302; + * @return Whether the oneof2302 field is set. + */ + boolean hasOneof2302(); /** * int32 oneof_2302 = 2302; * @return The oneof2302. */ int getOneof2302(); + /** + * int32 oneof_2303 = 2303; + * @return Whether the oneof2303 field is set. + */ + boolean hasOneof2303(); /** * int32 oneof_2303 = 2303; * @return The oneof2303. */ int getOneof2303(); + /** + * int32 oneof_2304 = 2304; + * @return Whether the oneof2304 field is set. + */ + boolean hasOneof2304(); /** * int32 oneof_2304 = 2304; * @return The oneof2304. */ int getOneof2304(); + /** + * int32 oneof_2305 = 2305; + * @return Whether the oneof2305 field is set. + */ + boolean hasOneof2305(); /** * int32 oneof_2305 = 2305; * @return The oneof2305. */ int getOneof2305(); + /** + * int32 oneof_2306 = 2306; + * @return Whether the oneof2306 field is set. + */ + boolean hasOneof2306(); /** * int32 oneof_2306 = 2306; * @return The oneof2306. */ int getOneof2306(); + /** + * int32 oneof_2307 = 2307; + * @return Whether the oneof2307 field is set. + */ + boolean hasOneof2307(); /** * int32 oneof_2307 = 2307; * @return The oneof2307. */ int getOneof2307(); + /** + * int32 oneof_2308 = 2308; + * @return Whether the oneof2308 field is set. + */ + boolean hasOneof2308(); /** * int32 oneof_2308 = 2308; * @return The oneof2308. */ int getOneof2308(); + /** + * int32 oneof_2309 = 2309; + * @return Whether the oneof2309 field is set. + */ + boolean hasOneof2309(); /** * int32 oneof_2309 = 2309; * @return The oneof2309. */ int getOneof2309(); + /** + * int32 oneof_2310 = 2310; + * @return Whether the oneof2310 field is set. + */ + boolean hasOneof2310(); /** * int32 oneof_2310 = 2310; * @return The oneof2310. */ int getOneof2310(); + /** + * int32 oneof_2311 = 2311; + * @return Whether the oneof2311 field is set. + */ + boolean hasOneof2311(); /** * int32 oneof_2311 = 2311; * @return The oneof2311. */ int getOneof2311(); + /** + * int32 oneof_2312 = 2312; + * @return Whether the oneof2312 field is set. + */ + boolean hasOneof2312(); /** * int32 oneof_2312 = 2312; * @return The oneof2312. */ int getOneof2312(); + /** + * int32 oneof_2313 = 2313; + * @return Whether the oneof2313 field is set. + */ + boolean hasOneof2313(); /** * int32 oneof_2313 = 2313; * @return The oneof2313. */ int getOneof2313(); + /** + * int32 oneof_2314 = 2314; + * @return Whether the oneof2314 field is set. + */ + boolean hasOneof2314(); /** * int32 oneof_2314 = 2314; * @return The oneof2314. */ int getOneof2314(); + /** + * int32 oneof_2315 = 2315; + * @return Whether the oneof2315 field is set. + */ + boolean hasOneof2315(); /** * int32 oneof_2315 = 2315; * @return The oneof2315. */ int getOneof2315(); + /** + * int32 oneof_2316 = 2316; + * @return Whether the oneof2316 field is set. + */ + boolean hasOneof2316(); /** * int32 oneof_2316 = 2316; * @return The oneof2316. */ - int getOneof2316(); - + int getOneof2316(); + + /** + * int32 oneof_2317 = 2317; + * @return Whether the oneof2317 field is set. + */ + boolean hasOneof2317(); /** * int32 oneof_2317 = 2317; * @return The oneof2317. */ int getOneof2317(); + /** + * int32 oneof_2318 = 2318; + * @return Whether the oneof2318 field is set. + */ + boolean hasOneof2318(); /** * int32 oneof_2318 = 2318; * @return The oneof2318. */ int getOneof2318(); + /** + * int32 oneof_2319 = 2319; + * @return Whether the oneof2319 field is set. + */ + boolean hasOneof2319(); /** * int32 oneof_2319 = 2319; * @return The oneof2319. */ int getOneof2319(); + /** + * int32 oneof_2320 = 2320; + * @return Whether the oneof2320 field is set. + */ + boolean hasOneof2320(); /** * int32 oneof_2320 = 2320; * @return The oneof2320. */ int getOneof2320(); + /** + * int32 oneof_2321 = 2321; + * @return Whether the oneof2321 field is set. + */ + boolean hasOneof2321(); /** * int32 oneof_2321 = 2321; * @return The oneof2321. */ int getOneof2321(); + /** + * int32 oneof_2322 = 2322; + * @return Whether the oneof2322 field is set. + */ + boolean hasOneof2322(); /** * int32 oneof_2322 = 2322; * @return The oneof2322. */ int getOneof2322(); + /** + * int32 oneof_2323 = 2323; + * @return Whether the oneof2323 field is set. + */ + boolean hasOneof2323(); /** * int32 oneof_2323 = 2323; * @return The oneof2323. */ int getOneof2323(); + /** + * int32 oneof_2324 = 2324; + * @return Whether the oneof2324 field is set. + */ + boolean hasOneof2324(); /** * int32 oneof_2324 = 2324; * @return The oneof2324. */ int getOneof2324(); + /** + * int32 oneof_2325 = 2325; + * @return Whether the oneof2325 field is set. + */ + boolean hasOneof2325(); /** * int32 oneof_2325 = 2325; * @return The oneof2325. */ int getOneof2325(); + /** + * int32 oneof_2326 = 2326; + * @return Whether the oneof2326 field is set. + */ + boolean hasOneof2326(); /** * int32 oneof_2326 = 2326; * @return The oneof2326. */ int getOneof2326(); + /** + * int32 oneof_2327 = 2327; + * @return Whether the oneof2327 field is set. + */ + boolean hasOneof2327(); /** * int32 oneof_2327 = 2327; * @return The oneof2327. */ int getOneof2327(); + /** + * int32 oneof_2328 = 2328; + * @return Whether the oneof2328 field is set. + */ + boolean hasOneof2328(); /** * int32 oneof_2328 = 2328; * @return The oneof2328. */ int getOneof2328(); + /** + * int32 oneof_2329 = 2329; + * @return Whether the oneof2329 field is set. + */ + boolean hasOneof2329(); /** * int32 oneof_2329 = 2329; * @return The oneof2329. */ int getOneof2329(); + /** + * int32 oneof_2330 = 2330; + * @return Whether the oneof2330 field is set. + */ + boolean hasOneof2330(); /** * int32 oneof_2330 = 2330; * @return The oneof2330. */ int getOneof2330(); + /** + * int32 oneof_2331 = 2331; + * @return Whether the oneof2331 field is set. + */ + boolean hasOneof2331(); /** * int32 oneof_2331 = 2331; * @return The oneof2331. */ int getOneof2331(); + /** + * int32 oneof_2332 = 2332; + * @return Whether the oneof2332 field is set. + */ + boolean hasOneof2332(); /** * int32 oneof_2332 = 2332; * @return The oneof2332. */ int getOneof2332(); + /** + * int32 oneof_2333 = 2333; + * @return Whether the oneof2333 field is set. + */ + boolean hasOneof2333(); /** * int32 oneof_2333 = 2333; * @return The oneof2333. */ int getOneof2333(); + /** + * int32 oneof_2334 = 2334; + * @return Whether the oneof2334 field is set. + */ + boolean hasOneof2334(); /** * int32 oneof_2334 = 2334; * @return The oneof2334. */ int getOneof2334(); + /** + * int32 oneof_2335 = 2335; + * @return Whether the oneof2335 field is set. + */ + boolean hasOneof2335(); /** * int32 oneof_2335 = 2335; * @return The oneof2335. */ int getOneof2335(); + /** + * int32 oneof_2336 = 2336; + * @return Whether the oneof2336 field is set. + */ + boolean hasOneof2336(); /** * int32 oneof_2336 = 2336; * @return The oneof2336. */ int getOneof2336(); + /** + * int32 oneof_2337 = 2337; + * @return Whether the oneof2337 field is set. + */ + boolean hasOneof2337(); /** * int32 oneof_2337 = 2337; * @return The oneof2337. */ int getOneof2337(); + /** + * int32 oneof_2338 = 2338; + * @return Whether the oneof2338 field is set. + */ + boolean hasOneof2338(); /** * int32 oneof_2338 = 2338; * @return The oneof2338. */ int getOneof2338(); + /** + * int32 oneof_2339 = 2339; + * @return Whether the oneof2339 field is set. + */ + boolean hasOneof2339(); /** * int32 oneof_2339 = 2339; * @return The oneof2339. */ int getOneof2339(); + /** + * int32 oneof_2340 = 2340; + * @return Whether the oneof2340 field is set. + */ + boolean hasOneof2340(); /** * int32 oneof_2340 = 2340; * @return The oneof2340. */ int getOneof2340(); + /** + * int32 oneof_2341 = 2341; + * @return Whether the oneof2341 field is set. + */ + boolean hasOneof2341(); /** * int32 oneof_2341 = 2341; * @return The oneof2341. */ int getOneof2341(); + /** + * int32 oneof_2342 = 2342; + * @return Whether the oneof2342 field is set. + */ + boolean hasOneof2342(); /** * int32 oneof_2342 = 2342; * @return The oneof2342. */ int getOneof2342(); + /** + * int32 oneof_2343 = 2343; + * @return Whether the oneof2343 field is set. + */ + boolean hasOneof2343(); /** * int32 oneof_2343 = 2343; * @return The oneof2343. */ int getOneof2343(); + /** + * int32 oneof_2344 = 2344; + * @return Whether the oneof2344 field is set. + */ + boolean hasOneof2344(); /** * int32 oneof_2344 = 2344; * @return The oneof2344. */ int getOneof2344(); + /** + * int32 oneof_2345 = 2345; + * @return Whether the oneof2345 field is set. + */ + boolean hasOneof2345(); /** * int32 oneof_2345 = 2345; * @return The oneof2345. */ int getOneof2345(); + /** + * int32 oneof_2346 = 2346; + * @return Whether the oneof2346 field is set. + */ + boolean hasOneof2346(); /** * int32 oneof_2346 = 2346; * @return The oneof2346. */ int getOneof2346(); + /** + * int32 oneof_2347 = 2347; + * @return Whether the oneof2347 field is set. + */ + boolean hasOneof2347(); /** * int32 oneof_2347 = 2347; * @return The oneof2347. */ int getOneof2347(); + /** + * int32 oneof_2348 = 2348; + * @return Whether the oneof2348 field is set. + */ + boolean hasOneof2348(); /** * int32 oneof_2348 = 2348; * @return The oneof2348. */ int getOneof2348(); + /** + * int32 oneof_2349 = 2349; + * @return Whether the oneof2349 field is set. + */ + boolean hasOneof2349(); /** * int32 oneof_2349 = 2349; * @return The oneof2349. */ int getOneof2349(); + /** + * int32 oneof_2350 = 2350; + * @return Whether the oneof2350 field is set. + */ + boolean hasOneof2350(); /** * int32 oneof_2350 = 2350; * @return The oneof2350. */ int getOneof2350(); + /** + * int32 oneof_2351 = 2351; + * @return Whether the oneof2351 field is set. + */ + boolean hasOneof2351(); /** * int32 oneof_2351 = 2351; * @return The oneof2351. */ int getOneof2351(); + /** + * int32 oneof_2352 = 2352; + * @return Whether the oneof2352 field is set. + */ + boolean hasOneof2352(); /** * int32 oneof_2352 = 2352; * @return The oneof2352. */ int getOneof2352(); + /** + * int32 oneof_2353 = 2353; + * @return Whether the oneof2353 field is set. + */ + boolean hasOneof2353(); /** * int32 oneof_2353 = 2353; * @return The oneof2353. */ int getOneof2353(); + /** + * int32 oneof_2354 = 2354; + * @return Whether the oneof2354 field is set. + */ + boolean hasOneof2354(); /** * int32 oneof_2354 = 2354; * @return The oneof2354. */ int getOneof2354(); + /** + * int32 oneof_2355 = 2355; + * @return Whether the oneof2355 field is set. + */ + boolean hasOneof2355(); /** * int32 oneof_2355 = 2355; * @return The oneof2355. */ int getOneof2355(); + /** + * int32 oneof_2356 = 2356; + * @return Whether the oneof2356 field is set. + */ + boolean hasOneof2356(); /** * int32 oneof_2356 = 2356; * @return The oneof2356. */ int getOneof2356(); + /** + * int32 oneof_2357 = 2357; + * @return Whether the oneof2357 field is set. + */ + boolean hasOneof2357(); /** * int32 oneof_2357 = 2357; * @return The oneof2357. */ int getOneof2357(); + /** + * int32 oneof_2358 = 2358; + * @return Whether the oneof2358 field is set. + */ + boolean hasOneof2358(); /** * int32 oneof_2358 = 2358; * @return The oneof2358. */ int getOneof2358(); + /** + * int32 oneof_2359 = 2359; + * @return Whether the oneof2359 field is set. + */ + boolean hasOneof2359(); /** * int32 oneof_2359 = 2359; * @return The oneof2359. */ int getOneof2359(); + /** + * int32 oneof_2360 = 2360; + * @return Whether the oneof2360 field is set. + */ + boolean hasOneof2360(); /** * int32 oneof_2360 = 2360; * @return The oneof2360. */ int getOneof2360(); + /** + * int32 oneof_2361 = 2361; + * @return Whether the oneof2361 field is set. + */ + boolean hasOneof2361(); /** * int32 oneof_2361 = 2361; * @return The oneof2361. */ int getOneof2361(); + /** + * int32 oneof_2362 = 2362; + * @return Whether the oneof2362 field is set. + */ + boolean hasOneof2362(); /** * int32 oneof_2362 = 2362; * @return The oneof2362. */ int getOneof2362(); + /** + * int32 oneof_2363 = 2363; + * @return Whether the oneof2363 field is set. + */ + boolean hasOneof2363(); /** * int32 oneof_2363 = 2363; * @return The oneof2363. */ int getOneof2363(); + /** + * int32 oneof_2364 = 2364; + * @return Whether the oneof2364 field is set. + */ + boolean hasOneof2364(); /** * int32 oneof_2364 = 2364; * @return The oneof2364. */ int getOneof2364(); + /** + * int32 oneof_2365 = 2365; + * @return Whether the oneof2365 field is set. + */ + boolean hasOneof2365(); /** * int32 oneof_2365 = 2365; * @return The oneof2365. */ int getOneof2365(); + /** + * int32 oneof_2366 = 2366; + * @return Whether the oneof2366 field is set. + */ + boolean hasOneof2366(); /** * int32 oneof_2366 = 2366; * @return The oneof2366. */ int getOneof2366(); + /** + * int32 oneof_2367 = 2367; + * @return Whether the oneof2367 field is set. + */ + boolean hasOneof2367(); /** * int32 oneof_2367 = 2367; * @return The oneof2367. */ int getOneof2367(); + /** + * int32 oneof_2368 = 2368; + * @return Whether the oneof2368 field is set. + */ + boolean hasOneof2368(); /** * int32 oneof_2368 = 2368; * @return The oneof2368. */ int getOneof2368(); + /** + * int32 oneof_2369 = 2369; + * @return Whether the oneof2369 field is set. + */ + boolean hasOneof2369(); /** * int32 oneof_2369 = 2369; * @return The oneof2369. */ int getOneof2369(); + /** + * int32 oneof_2370 = 2370; + * @return Whether the oneof2370 field is set. + */ + boolean hasOneof2370(); /** * int32 oneof_2370 = 2370; * @return The oneof2370. */ int getOneof2370(); + /** + * int32 oneof_2371 = 2371; + * @return Whether the oneof2371 field is set. + */ + boolean hasOneof2371(); /** * int32 oneof_2371 = 2371; * @return The oneof2371. */ int getOneof2371(); + /** + * int32 oneof_2372 = 2372; + * @return Whether the oneof2372 field is set. + */ + boolean hasOneof2372(); /** * int32 oneof_2372 = 2372; * @return The oneof2372. */ int getOneof2372(); + /** + * int32 oneof_2373 = 2373; + * @return Whether the oneof2373 field is set. + */ + boolean hasOneof2373(); /** * int32 oneof_2373 = 2373; * @return The oneof2373. */ int getOneof2373(); + /** + * int32 oneof_2374 = 2374; + * @return Whether the oneof2374 field is set. + */ + boolean hasOneof2374(); /** * int32 oneof_2374 = 2374; * @return The oneof2374. */ int getOneof2374(); + /** + * int32 oneof_2375 = 2375; + * @return Whether the oneof2375 field is set. + */ + boolean hasOneof2375(); /** * int32 oneof_2375 = 2375; * @return The oneof2375. */ int getOneof2375(); + /** + * int32 oneof_2376 = 2376; + * @return Whether the oneof2376 field is set. + */ + boolean hasOneof2376(); /** * int32 oneof_2376 = 2376; * @return The oneof2376. */ int getOneof2376(); + /** + * int32 oneof_2377 = 2377; + * @return Whether the oneof2377 field is set. + */ + boolean hasOneof2377(); /** * int32 oneof_2377 = 2377; * @return The oneof2377. */ int getOneof2377(); + /** + * int32 oneof_2378 = 2378; + * @return Whether the oneof2378 field is set. + */ + boolean hasOneof2378(); /** * int32 oneof_2378 = 2378; * @return The oneof2378. */ int getOneof2378(); + /** + * int32 oneof_2379 = 2379; + * @return Whether the oneof2379 field is set. + */ + boolean hasOneof2379(); /** * int32 oneof_2379 = 2379; * @return The oneof2379. */ int getOneof2379(); + /** + * int32 oneof_2380 = 2380; + * @return Whether the oneof2380 field is set. + */ + boolean hasOneof2380(); /** * int32 oneof_2380 = 2380; * @return The oneof2380. */ int getOneof2380(); + /** + * int32 oneof_2381 = 2381; + * @return Whether the oneof2381 field is set. + */ + boolean hasOneof2381(); /** * int32 oneof_2381 = 2381; * @return The oneof2381. */ int getOneof2381(); + /** + * int32 oneof_2382 = 2382; + * @return Whether the oneof2382 field is set. + */ + boolean hasOneof2382(); /** * int32 oneof_2382 = 2382; * @return The oneof2382. */ int getOneof2382(); + /** + * int32 oneof_2383 = 2383; + * @return Whether the oneof2383 field is set. + */ + boolean hasOneof2383(); /** * int32 oneof_2383 = 2383; * @return The oneof2383. */ int getOneof2383(); + /** + * int32 oneof_2384 = 2384; + * @return Whether the oneof2384 field is set. + */ + boolean hasOneof2384(); /** * int32 oneof_2384 = 2384; * @return The oneof2384. */ int getOneof2384(); + /** + * int32 oneof_2385 = 2385; + * @return Whether the oneof2385 field is set. + */ + boolean hasOneof2385(); /** * int32 oneof_2385 = 2385; * @return The oneof2385. */ int getOneof2385(); + /** + * int32 oneof_2386 = 2386; + * @return Whether the oneof2386 field is set. + */ + boolean hasOneof2386(); /** * int32 oneof_2386 = 2386; * @return The oneof2386. */ int getOneof2386(); + /** + * int32 oneof_2387 = 2387; + * @return Whether the oneof2387 field is set. + */ + boolean hasOneof2387(); /** * int32 oneof_2387 = 2387; * @return The oneof2387. */ int getOneof2387(); + /** + * int32 oneof_2388 = 2388; + * @return Whether the oneof2388 field is set. + */ + boolean hasOneof2388(); /** * int32 oneof_2388 = 2388; * @return The oneof2388. */ int getOneof2388(); + /** + * int32 oneof_2389 = 2389; + * @return Whether the oneof2389 field is set. + */ + boolean hasOneof2389(); /** * int32 oneof_2389 = 2389; * @return The oneof2389. */ int getOneof2389(); + /** + * int32 oneof_2390 = 2390; + * @return Whether the oneof2390 field is set. + */ + boolean hasOneof2390(); /** * int32 oneof_2390 = 2390; * @return The oneof2390. */ int getOneof2390(); + /** + * int32 oneof_2391 = 2391; + * @return Whether the oneof2391 field is set. + */ + boolean hasOneof2391(); /** * int32 oneof_2391 = 2391; * @return The oneof2391. */ int getOneof2391(); + /** + * int32 oneof_2392 = 2392; + * @return Whether the oneof2392 field is set. + */ + boolean hasOneof2392(); /** * int32 oneof_2392 = 2392; * @return The oneof2392. */ int getOneof2392(); + /** + * int32 oneof_2393 = 2393; + * @return Whether the oneof2393 field is set. + */ + boolean hasOneof2393(); /** * int32 oneof_2393 = 2393; * @return The oneof2393. */ int getOneof2393(); + /** + * int32 oneof_2394 = 2394; + * @return Whether the oneof2394 field is set. + */ + boolean hasOneof2394(); /** * int32 oneof_2394 = 2394; * @return The oneof2394. */ int getOneof2394(); + /** + * int32 oneof_2395 = 2395; + * @return Whether the oneof2395 field is set. + */ + boolean hasOneof2395(); /** * int32 oneof_2395 = 2395; * @return The oneof2395. */ int getOneof2395(); + /** + * int32 oneof_2396 = 2396; + * @return Whether the oneof2396 field is set. + */ + boolean hasOneof2396(); /** * int32 oneof_2396 = 2396; * @return The oneof2396. */ int getOneof2396(); + /** + * int32 oneof_2397 = 2397; + * @return Whether the oneof2397 field is set. + */ + boolean hasOneof2397(); /** * int32 oneof_2397 = 2397; * @return The oneof2397. */ int getOneof2397(); + /** + * int32 oneof_2398 = 2398; + * @return Whether the oneof2398 field is set. + */ + boolean hasOneof2398(); /** * int32 oneof_2398 = 2398; * @return The oneof2398. */ int getOneof2398(); + /** + * int32 oneof_2399 = 2399; + * @return Whether the oneof2399 field is set. + */ + boolean hasOneof2399(); /** * int32 oneof_2399 = 2399; * @return The oneof2399. */ int getOneof2399(); + /** + * int32 oneof_2400 = 2400; + * @return Whether the oneof2400 field is set. + */ + boolean hasOneof2400(); /** * int32 oneof_2400 = 2400; * @return The oneof2400. */ int getOneof2400(); + /** + * int32 oneof_2401 = 2401; + * @return Whether the oneof2401 field is set. + */ + boolean hasOneof2401(); /** * int32 oneof_2401 = 2401; * @return The oneof2401. */ int getOneof2401(); + /** + * int32 oneof_2402 = 2402; + * @return Whether the oneof2402 field is set. + */ + boolean hasOneof2402(); /** * int32 oneof_2402 = 2402; * @return The oneof2402. */ int getOneof2402(); + /** + * int32 oneof_2403 = 2403; + * @return Whether the oneof2403 field is set. + */ + boolean hasOneof2403(); /** * int32 oneof_2403 = 2403; * @return The oneof2403. */ int getOneof2403(); + /** + * int32 oneof_2404 = 2404; + * @return Whether the oneof2404 field is set. + */ + boolean hasOneof2404(); /** * int32 oneof_2404 = 2404; * @return The oneof2404. */ int getOneof2404(); + /** + * int32 oneof_2405 = 2405; + * @return Whether the oneof2405 field is set. + */ + boolean hasOneof2405(); /** * int32 oneof_2405 = 2405; * @return The oneof2405. */ int getOneof2405(); + /** + * int32 oneof_2406 = 2406; + * @return Whether the oneof2406 field is set. + */ + boolean hasOneof2406(); /** * int32 oneof_2406 = 2406; * @return The oneof2406. */ int getOneof2406(); + /** + * int32 oneof_2407 = 2407; + * @return Whether the oneof2407 field is set. + */ + boolean hasOneof2407(); /** * int32 oneof_2407 = 2407; * @return The oneof2407. */ int getOneof2407(); + /** + * int32 oneof_2408 = 2408; + * @return Whether the oneof2408 field is set. + */ + boolean hasOneof2408(); /** * int32 oneof_2408 = 2408; * @return The oneof2408. */ int getOneof2408(); + /** + * int32 oneof_2409 = 2409; + * @return Whether the oneof2409 field is set. + */ + boolean hasOneof2409(); /** * int32 oneof_2409 = 2409; * @return The oneof2409. */ int getOneof2409(); + /** + * int32 oneof_2410 = 2410; + * @return Whether the oneof2410 field is set. + */ + boolean hasOneof2410(); /** * int32 oneof_2410 = 2410; * @return The oneof2410. */ int getOneof2410(); + /** + * int32 oneof_2411 = 2411; + * @return Whether the oneof2411 field is set. + */ + boolean hasOneof2411(); /** * int32 oneof_2411 = 2411; * @return The oneof2411. */ int getOneof2411(); + /** + * int32 oneof_2412 = 2412; + * @return Whether the oneof2412 field is set. + */ + boolean hasOneof2412(); /** * int32 oneof_2412 = 2412; * @return The oneof2412. */ int getOneof2412(); + /** + * int32 oneof_2413 = 2413; + * @return Whether the oneof2413 field is set. + */ + boolean hasOneof2413(); /** * int32 oneof_2413 = 2413; * @return The oneof2413. */ int getOneof2413(); + /** + * int32 oneof_2414 = 2414; + * @return Whether the oneof2414 field is set. + */ + boolean hasOneof2414(); /** * int32 oneof_2414 = 2414; * @return The oneof2414. */ int getOneof2414(); + /** + * int32 oneof_2415 = 2415; + * @return Whether the oneof2415 field is set. + */ + boolean hasOneof2415(); /** * int32 oneof_2415 = 2415; * @return The oneof2415. */ int getOneof2415(); + /** + * int32 oneof_2416 = 2416; + * @return Whether the oneof2416 field is set. + */ + boolean hasOneof2416(); /** * int32 oneof_2416 = 2416; * @return The oneof2416. */ int getOneof2416(); + /** + * int32 oneof_2417 = 2417; + * @return Whether the oneof2417 field is set. + */ + boolean hasOneof2417(); /** * int32 oneof_2417 = 2417; * @return The oneof2417. */ int getOneof2417(); + /** + * int32 oneof_2418 = 2418; + * @return Whether the oneof2418 field is set. + */ + boolean hasOneof2418(); /** * int32 oneof_2418 = 2418; * @return The oneof2418. */ int getOneof2418(); + /** + * int32 oneof_2419 = 2419; + * @return Whether the oneof2419 field is set. + */ + boolean hasOneof2419(); /** * int32 oneof_2419 = 2419; * @return The oneof2419. */ int getOneof2419(); + /** + * int32 oneof_2420 = 2420; + * @return Whether the oneof2420 field is set. + */ + boolean hasOneof2420(); /** * int32 oneof_2420 = 2420; * @return The oneof2420. */ int getOneof2420(); + /** + * int32 oneof_2421 = 2421; + * @return Whether the oneof2421 field is set. + */ + boolean hasOneof2421(); /** * int32 oneof_2421 = 2421; * @return The oneof2421. */ int getOneof2421(); + /** + * int32 oneof_2422 = 2422; + * @return Whether the oneof2422 field is set. + */ + boolean hasOneof2422(); /** * int32 oneof_2422 = 2422; * @return The oneof2422. */ int getOneof2422(); + /** + * int32 oneof_2423 = 2423; + * @return Whether the oneof2423 field is set. + */ + boolean hasOneof2423(); /** * int32 oneof_2423 = 2423; * @return The oneof2423. */ int getOneof2423(); + /** + * int32 oneof_2424 = 2424; + * @return Whether the oneof2424 field is set. + */ + boolean hasOneof2424(); /** * int32 oneof_2424 = 2424; * @return The oneof2424. */ int getOneof2424(); + /** + * int32 oneof_2425 = 2425; + * @return Whether the oneof2425 field is set. + */ + boolean hasOneof2425(); /** * int32 oneof_2425 = 2425; * @return The oneof2425. */ int getOneof2425(); + /** + * int32 oneof_2426 = 2426; + * @return Whether the oneof2426 field is set. + */ + boolean hasOneof2426(); /** * int32 oneof_2426 = 2426; * @return The oneof2426. */ int getOneof2426(); + /** + * int32 oneof_2427 = 2427; + * @return Whether the oneof2427 field is set. + */ + boolean hasOneof2427(); /** * int32 oneof_2427 = 2427; * @return The oneof2427. */ int getOneof2427(); + /** + * int32 oneof_2428 = 2428; + * @return Whether the oneof2428 field is set. + */ + boolean hasOneof2428(); /** * int32 oneof_2428 = 2428; * @return The oneof2428. */ int getOneof2428(); + /** + * int32 oneof_2429 = 2429; + * @return Whether the oneof2429 field is set. + */ + boolean hasOneof2429(); /** * int32 oneof_2429 = 2429; * @return The oneof2429. */ int getOneof2429(); + /** + * int32 oneof_2430 = 2430; + * @return Whether the oneof2430 field is set. + */ + boolean hasOneof2430(); /** * int32 oneof_2430 = 2430; * @return The oneof2430. */ int getOneof2430(); + /** + * int32 oneof_2431 = 2431; + * @return Whether the oneof2431 field is set. + */ + boolean hasOneof2431(); /** * int32 oneof_2431 = 2431; * @return The oneof2431. */ int getOneof2431(); + /** + * int32 oneof_2432 = 2432; + * @return Whether the oneof2432 field is set. + */ + boolean hasOneof2432(); /** * int32 oneof_2432 = 2432; * @return The oneof2432. */ int getOneof2432(); + /** + * int32 oneof_2433 = 2433; + * @return Whether the oneof2433 field is set. + */ + boolean hasOneof2433(); /** * int32 oneof_2433 = 2433; * @return The oneof2433. */ int getOneof2433(); + /** + * int32 oneof_2434 = 2434; + * @return Whether the oneof2434 field is set. + */ + boolean hasOneof2434(); /** * int32 oneof_2434 = 2434; * @return The oneof2434. */ int getOneof2434(); + /** + * int32 oneof_2435 = 2435; + * @return Whether the oneof2435 field is set. + */ + boolean hasOneof2435(); /** * int32 oneof_2435 = 2435; * @return The oneof2435. */ int getOneof2435(); + /** + * int32 oneof_2436 = 2436; + * @return Whether the oneof2436 field is set. + */ + boolean hasOneof2436(); /** * int32 oneof_2436 = 2436; * @return The oneof2436. */ int getOneof2436(); + /** + * int32 oneof_2437 = 2437; + * @return Whether the oneof2437 field is set. + */ + boolean hasOneof2437(); /** * int32 oneof_2437 = 2437; * @return The oneof2437. */ int getOneof2437(); + /** + * int32 oneof_2438 = 2438; + * @return Whether the oneof2438 field is set. + */ + boolean hasOneof2438(); /** * int32 oneof_2438 = 2438; * @return The oneof2438. */ int getOneof2438(); + /** + * int32 oneof_2439 = 2439; + * @return Whether the oneof2439 field is set. + */ + boolean hasOneof2439(); /** * int32 oneof_2439 = 2439; * @return The oneof2439. */ int getOneof2439(); + /** + * int32 oneof_2440 = 2440; + * @return Whether the oneof2440 field is set. + */ + boolean hasOneof2440(); /** * int32 oneof_2440 = 2440; * @return The oneof2440. */ int getOneof2440(); + /** + * int32 oneof_2441 = 2441; + * @return Whether the oneof2441 field is set. + */ + boolean hasOneof2441(); /** * int32 oneof_2441 = 2441; * @return The oneof2441. */ int getOneof2441(); + /** + * int32 oneof_2442 = 2442; + * @return Whether the oneof2442 field is set. + */ + boolean hasOneof2442(); /** * int32 oneof_2442 = 2442; * @return The oneof2442. */ int getOneof2442(); + /** + * int32 oneof_2443 = 2443; + * @return Whether the oneof2443 field is set. + */ + boolean hasOneof2443(); /** * int32 oneof_2443 = 2443; * @return The oneof2443. */ int getOneof2443(); + /** + * int32 oneof_2444 = 2444; + * @return Whether the oneof2444 field is set. + */ + boolean hasOneof2444(); /** * int32 oneof_2444 = 2444; * @return The oneof2444. */ int getOneof2444(); + /** + * int32 oneof_2445 = 2445; + * @return Whether the oneof2445 field is set. + */ + boolean hasOneof2445(); /** * int32 oneof_2445 = 2445; * @return The oneof2445. */ int getOneof2445(); + /** + * int32 oneof_2446 = 2446; + * @return Whether the oneof2446 field is set. + */ + boolean hasOneof2446(); /** * int32 oneof_2446 = 2446; * @return The oneof2446. */ int getOneof2446(); + /** + * int32 oneof_2447 = 2447; + * @return Whether the oneof2447 field is set. + */ + boolean hasOneof2447(); /** * int32 oneof_2447 = 2447; * @return The oneof2447. */ int getOneof2447(); + /** + * int32 oneof_2448 = 2448; + * @return Whether the oneof2448 field is set. + */ + boolean hasOneof2448(); /** * int32 oneof_2448 = 2448; * @return The oneof2448. */ int getOneof2448(); + /** + * int32 oneof_2449 = 2449; + * @return Whether the oneof2449 field is set. + */ + boolean hasOneof2449(); /** * int32 oneof_2449 = 2449; * @return The oneof2449. */ int getOneof2449(); + /** + * int32 oneof_2450 = 2450; + * @return Whether the oneof2450 field is set. + */ + boolean hasOneof2450(); /** * int32 oneof_2450 = 2450; * @return The oneof2450. */ int getOneof2450(); + /** + * int32 oneof_2451 = 2451; + * @return Whether the oneof2451 field is set. + */ + boolean hasOneof2451(); /** * int32 oneof_2451 = 2451; * @return The oneof2451. */ int getOneof2451(); + /** + * int32 oneof_2452 = 2452; + * @return Whether the oneof2452 field is set. + */ + boolean hasOneof2452(); /** * int32 oneof_2452 = 2452; * @return The oneof2452. */ int getOneof2452(); + /** + * int32 oneof_2453 = 2453; + * @return Whether the oneof2453 field is set. + */ + boolean hasOneof2453(); /** * int32 oneof_2453 = 2453; * @return The oneof2453. */ int getOneof2453(); + /** + * int32 oneof_2454 = 2454; + * @return Whether the oneof2454 field is set. + */ + boolean hasOneof2454(); /** * int32 oneof_2454 = 2454; * @return The oneof2454. */ int getOneof2454(); + /** + * int32 oneof_2455 = 2455; + * @return Whether the oneof2455 field is set. + */ + boolean hasOneof2455(); /** * int32 oneof_2455 = 2455; * @return The oneof2455. */ int getOneof2455(); + /** + * int32 oneof_2456 = 2456; + * @return Whether the oneof2456 field is set. + */ + boolean hasOneof2456(); /** * int32 oneof_2456 = 2456; * @return The oneof2456. */ int getOneof2456(); + /** + * int32 oneof_2457 = 2457; + * @return Whether the oneof2457 field is set. + */ + boolean hasOneof2457(); /** * int32 oneof_2457 = 2457; * @return The oneof2457. */ int getOneof2457(); + /** + * int32 oneof_2458 = 2458; + * @return Whether the oneof2458 field is set. + */ + boolean hasOneof2458(); /** * int32 oneof_2458 = 2458; * @return The oneof2458. */ int getOneof2458(); + /** + * int32 oneof_2459 = 2459; + * @return Whether the oneof2459 field is set. + */ + boolean hasOneof2459(); /** * int32 oneof_2459 = 2459; * @return The oneof2459. */ int getOneof2459(); + /** + * int32 oneof_2460 = 2460; + * @return Whether the oneof2460 field is set. + */ + boolean hasOneof2460(); /** * int32 oneof_2460 = 2460; * @return The oneof2460. */ int getOneof2460(); + /** + * int32 oneof_2461 = 2461; + * @return Whether the oneof2461 field is set. + */ + boolean hasOneof2461(); /** * int32 oneof_2461 = 2461; * @return The oneof2461. */ int getOneof2461(); + /** + * int32 oneof_2462 = 2462; + * @return Whether the oneof2462 field is set. + */ + boolean hasOneof2462(); /** * int32 oneof_2462 = 2462; * @return The oneof2462. */ int getOneof2462(); + /** + * int32 oneof_2463 = 2463; + * @return Whether the oneof2463 field is set. + */ + boolean hasOneof2463(); /** * int32 oneof_2463 = 2463; * @return The oneof2463. */ int getOneof2463(); + /** + * int32 oneof_2464 = 2464; + * @return Whether the oneof2464 field is set. + */ + boolean hasOneof2464(); /** * int32 oneof_2464 = 2464; * @return The oneof2464. */ int getOneof2464(); + /** + * int32 oneof_2465 = 2465; + * @return Whether the oneof2465 field is set. + */ + boolean hasOneof2465(); /** * int32 oneof_2465 = 2465; * @return The oneof2465. */ int getOneof2465(); + /** + * int32 oneof_2466 = 2466; + * @return Whether the oneof2466 field is set. + */ + boolean hasOneof2466(); /** * int32 oneof_2466 = 2466; * @return The oneof2466. */ int getOneof2466(); + /** + * int32 oneof_2467 = 2467; + * @return Whether the oneof2467 field is set. + */ + boolean hasOneof2467(); /** * int32 oneof_2467 = 2467; * @return The oneof2467. */ int getOneof2467(); + /** + * int32 oneof_2468 = 2468; + * @return Whether the oneof2468 field is set. + */ + boolean hasOneof2468(); /** * int32 oneof_2468 = 2468; * @return The oneof2468. */ int getOneof2468(); + /** + * int32 oneof_2469 = 2469; + * @return Whether the oneof2469 field is set. + */ + boolean hasOneof2469(); /** * int32 oneof_2469 = 2469; * @return The oneof2469. */ int getOneof2469(); + /** + * int32 oneof_2470 = 2470; + * @return Whether the oneof2470 field is set. + */ + boolean hasOneof2470(); /** * int32 oneof_2470 = 2470; * @return The oneof2470. */ int getOneof2470(); + /** + * int32 oneof_2471 = 2471; + * @return Whether the oneof2471 field is set. + */ + boolean hasOneof2471(); /** * int32 oneof_2471 = 2471; * @return The oneof2471. */ int getOneof2471(); + /** + * int32 oneof_2472 = 2472; + * @return Whether the oneof2472 field is set. + */ + boolean hasOneof2472(); /** * int32 oneof_2472 = 2472; * @return The oneof2472. */ int getOneof2472(); + /** + * int32 oneof_2473 = 2473; + * @return Whether the oneof2473 field is set. + */ + boolean hasOneof2473(); /** * int32 oneof_2473 = 2473; * @return The oneof2473. */ int getOneof2473(); + /** + * int32 oneof_2474 = 2474; + * @return Whether the oneof2474 field is set. + */ + boolean hasOneof2474(); /** * int32 oneof_2474 = 2474; * @return The oneof2474. */ int getOneof2474(); + /** + * int32 oneof_2475 = 2475; + * @return Whether the oneof2475 field is set. + */ + boolean hasOneof2475(); /** * int32 oneof_2475 = 2475; * @return The oneof2475. */ int getOneof2475(); + /** + * int32 oneof_2476 = 2476; + * @return Whether the oneof2476 field is set. + */ + boolean hasOneof2476(); /** * int32 oneof_2476 = 2476; * @return The oneof2476. */ int getOneof2476(); + /** + * int32 oneof_2477 = 2477; + * @return Whether the oneof2477 field is set. + */ + boolean hasOneof2477(); /** * int32 oneof_2477 = 2477; * @return The oneof2477. */ int getOneof2477(); + /** + * int32 oneof_2478 = 2478; + * @return Whether the oneof2478 field is set. + */ + boolean hasOneof2478(); /** * int32 oneof_2478 = 2478; * @return The oneof2478. */ int getOneof2478(); + /** + * int32 oneof_2479 = 2479; + * @return Whether the oneof2479 field is set. + */ + boolean hasOneof2479(); /** * int32 oneof_2479 = 2479; * @return The oneof2479. */ int getOneof2479(); + /** + * int32 oneof_2480 = 2480; + * @return Whether the oneof2480 field is set. + */ + boolean hasOneof2480(); /** * int32 oneof_2480 = 2480; * @return The oneof2480. */ int getOneof2480(); + /** + * int32 oneof_2481 = 2481; + * @return Whether the oneof2481 field is set. + */ + boolean hasOneof2481(); /** * int32 oneof_2481 = 2481; * @return The oneof2481. */ int getOneof2481(); + /** + * int32 oneof_2482 = 2482; + * @return Whether the oneof2482 field is set. + */ + boolean hasOneof2482(); /** * int32 oneof_2482 = 2482; * @return The oneof2482. */ int getOneof2482(); + /** + * int32 oneof_2483 = 2483; + * @return Whether the oneof2483 field is set. + */ + boolean hasOneof2483(); /** * int32 oneof_2483 = 2483; * @return The oneof2483. */ int getOneof2483(); + /** + * int32 oneof_2484 = 2484; + * @return Whether the oneof2484 field is set. + */ + boolean hasOneof2484(); /** * int32 oneof_2484 = 2484; * @return The oneof2484. */ int getOneof2484(); + /** + * int32 oneof_2485 = 2485; + * @return Whether the oneof2485 field is set. + */ + boolean hasOneof2485(); /** * int32 oneof_2485 = 2485; * @return The oneof2485. */ int getOneof2485(); + /** + * int32 oneof_2486 = 2486; + * @return Whether the oneof2486 field is set. + */ + boolean hasOneof2486(); /** * int32 oneof_2486 = 2486; * @return The oneof2486. */ int getOneof2486(); + /** + * int32 oneof_2487 = 2487; + * @return Whether the oneof2487 field is set. + */ + boolean hasOneof2487(); /** * int32 oneof_2487 = 2487; * @return The oneof2487. */ int getOneof2487(); + /** + * int32 oneof_2488 = 2488; + * @return Whether the oneof2488 field is set. + */ + boolean hasOneof2488(); /** * int32 oneof_2488 = 2488; * @return The oneof2488. */ int getOneof2488(); + /** + * int32 oneof_2489 = 2489; + * @return Whether the oneof2489 field is set. + */ + boolean hasOneof2489(); /** * int32 oneof_2489 = 2489; * @return The oneof2489. */ int getOneof2489(); + /** + * int32 oneof_2490 = 2490; + * @return Whether the oneof2490 field is set. + */ + boolean hasOneof2490(); /** * int32 oneof_2490 = 2490; * @return The oneof2490. */ int getOneof2490(); + /** + * int32 oneof_2491 = 2491; + * @return Whether the oneof2491 field is set. + */ + boolean hasOneof2491(); /** * int32 oneof_2491 = 2491; * @return The oneof2491. */ int getOneof2491(); + /** + * int32 oneof_2492 = 2492; + * @return Whether the oneof2492 field is set. + */ + boolean hasOneof2492(); /** * int32 oneof_2492 = 2492; * @return The oneof2492. */ int getOneof2492(); + /** + * int32 oneof_2493 = 2493; + * @return Whether the oneof2493 field is set. + */ + boolean hasOneof2493(); /** * int32 oneof_2493 = 2493; * @return The oneof2493. */ int getOneof2493(); + /** + * int32 oneof_2494 = 2494; + * @return Whether the oneof2494 field is set. + */ + boolean hasOneof2494(); /** * int32 oneof_2494 = 2494; * @return The oneof2494. */ int getOneof2494(); + /** + * int32 oneof_2495 = 2495; + * @return Whether the oneof2495 field is set. + */ + boolean hasOneof2495(); /** * int32 oneof_2495 = 2495; * @return The oneof2495. */ int getOneof2495(); + /** + * int32 oneof_2496 = 2496; + * @return Whether the oneof2496 field is set. + */ + boolean hasOneof2496(); /** * int32 oneof_2496 = 2496; * @return The oneof2496. */ int getOneof2496(); + /** + * int32 oneof_2497 = 2497; + * @return Whether the oneof2497 field is set. + */ + boolean hasOneof2497(); /** * int32 oneof_2497 = 2497; * @return The oneof2497. */ int getOneof2497(); + /** + * int32 oneof_2498 = 2498; + * @return Whether the oneof2498 field is set. + */ + boolean hasOneof2498(); /** * int32 oneof_2498 = 2498; * @return The oneof2498. */ int getOneof2498(); + /** + * int32 oneof_2499 = 2499; + * @return Whether the oneof2499 field is set. + */ + boolean hasOneof2499(); /** * int32 oneof_2499 = 2499; * @return The oneof2499. */ int getOneof2499(); + /** + * int32 oneof_2500 = 2500; + * @return Whether the oneof2500 field is set. + */ + boolean hasOneof2500(); /** * int32 oneof_2500 = 2500; * @return The oneof2500. */ int getOneof2500(); + /** + * int32 oneof_2501 = 2501; + * @return Whether the oneof2501 field is set. + */ + boolean hasOneof2501(); /** * int32 oneof_2501 = 2501; * @return The oneof2501. */ int getOneof2501(); + /** + * int32 oneof_2502 = 2502; + * @return Whether the oneof2502 field is set. + */ + boolean hasOneof2502(); /** * int32 oneof_2502 = 2502; * @return The oneof2502. */ int getOneof2502(); + /** + * int32 oneof_2503 = 2503; + * @return Whether the oneof2503 field is set. + */ + boolean hasOneof2503(); /** * int32 oneof_2503 = 2503; * @return The oneof2503. */ int getOneof2503(); + /** + * int32 oneof_2504 = 2504; + * @return Whether the oneof2504 field is set. + */ + boolean hasOneof2504(); /** * int32 oneof_2504 = 2504; * @return The oneof2504. */ int getOneof2504(); + /** + * int32 oneof_2505 = 2505; + * @return Whether the oneof2505 field is set. + */ + boolean hasOneof2505(); /** * int32 oneof_2505 = 2505; * @return The oneof2505. */ int getOneof2505(); + /** + * int32 oneof_2506 = 2506; + * @return Whether the oneof2506 field is set. + */ + boolean hasOneof2506(); /** * int32 oneof_2506 = 2506; * @return The oneof2506. */ int getOneof2506(); + /** + * int32 oneof_2507 = 2507; + * @return Whether the oneof2507 field is set. + */ + boolean hasOneof2507(); /** * int32 oneof_2507 = 2507; * @return The oneof2507. */ int getOneof2507(); + /** + * int32 oneof_2508 = 2508; + * @return Whether the oneof2508 field is set. + */ + boolean hasOneof2508(); /** * int32 oneof_2508 = 2508; * @return The oneof2508. */ int getOneof2508(); + /** + * int32 oneof_2509 = 2509; + * @return Whether the oneof2509 field is set. + */ + boolean hasOneof2509(); /** * int32 oneof_2509 = 2509; * @return The oneof2509. */ int getOneof2509(); + /** + * int32 oneof_2510 = 2510; + * @return Whether the oneof2510 field is set. + */ + boolean hasOneof2510(); /** * int32 oneof_2510 = 2510; * @return The oneof2510. */ int getOneof2510(); + /** + * int32 oneof_2511 = 2511; + * @return Whether the oneof2511 field is set. + */ + boolean hasOneof2511(); /** * int32 oneof_2511 = 2511; * @return The oneof2511. */ int getOneof2511(); + /** + * int32 oneof_2512 = 2512; + * @return Whether the oneof2512 field is set. + */ + boolean hasOneof2512(); /** * int32 oneof_2512 = 2512; * @return The oneof2512. */ int getOneof2512(); + /** + * int32 oneof_2513 = 2513; + * @return Whether the oneof2513 field is set. + */ + boolean hasOneof2513(); /** * int32 oneof_2513 = 2513; * @return The oneof2513. */ int getOneof2513(); + /** + * int32 oneof_2514 = 2514; + * @return Whether the oneof2514 field is set. + */ + boolean hasOneof2514(); /** * int32 oneof_2514 = 2514; * @return The oneof2514. */ int getOneof2514(); + /** + * int32 oneof_2515 = 2515; + * @return Whether the oneof2515 field is set. + */ + boolean hasOneof2515(); /** * int32 oneof_2515 = 2515; * @return The oneof2515. */ int getOneof2515(); + /** + * int32 oneof_2516 = 2516; + * @return Whether the oneof2516 field is set. + */ + boolean hasOneof2516(); /** * int32 oneof_2516 = 2516; * @return The oneof2516. */ int getOneof2516(); + /** + * int32 oneof_2517 = 2517; + * @return Whether the oneof2517 field is set. + */ + boolean hasOneof2517(); /** * int32 oneof_2517 = 2517; * @return The oneof2517. */ int getOneof2517(); + /** + * int32 oneof_2518 = 2518; + * @return Whether the oneof2518 field is set. + */ + boolean hasOneof2518(); /** * int32 oneof_2518 = 2518; * @return The oneof2518. */ int getOneof2518(); + /** + * int32 oneof_2519 = 2519; + * @return Whether the oneof2519 field is set. + */ + boolean hasOneof2519(); /** * int32 oneof_2519 = 2519; * @return The oneof2519. */ int getOneof2519(); + /** + * int32 oneof_2520 = 2520; + * @return Whether the oneof2520 field is set. + */ + boolean hasOneof2520(); /** * int32 oneof_2520 = 2520; * @return The oneof2520. */ int getOneof2520(); + /** + * int32 oneof_2521 = 2521; + * @return Whether the oneof2521 field is set. + */ + boolean hasOneof2521(); /** * int32 oneof_2521 = 2521; * @return The oneof2521. */ int getOneof2521(); + /** + * int32 oneof_2522 = 2522; + * @return Whether the oneof2522 field is set. + */ + boolean hasOneof2522(); /** * int32 oneof_2522 = 2522; * @return The oneof2522. */ int getOneof2522(); + /** + * int32 oneof_2523 = 2523; + * @return Whether the oneof2523 field is set. + */ + boolean hasOneof2523(); /** * int32 oneof_2523 = 2523; * @return The oneof2523. */ int getOneof2523(); + /** + * int32 oneof_2524 = 2524; + * @return Whether the oneof2524 field is set. + */ + boolean hasOneof2524(); /** * int32 oneof_2524 = 2524; * @return The oneof2524. */ int getOneof2524(); + /** + * int32 oneof_2525 = 2525; + * @return Whether the oneof2525 field is set. + */ + boolean hasOneof2525(); /** * int32 oneof_2525 = 2525; * @return The oneof2525. */ int getOneof2525(); + /** + * int32 oneof_2526 = 2526; + * @return Whether the oneof2526 field is set. + */ + boolean hasOneof2526(); /** * int32 oneof_2526 = 2526; * @return The oneof2526. */ int getOneof2526(); + /** + * int32 oneof_2527 = 2527; + * @return Whether the oneof2527 field is set. + */ + boolean hasOneof2527(); /** * int32 oneof_2527 = 2527; * @return The oneof2527. */ int getOneof2527(); + /** + * int32 oneof_2528 = 2528; + * @return Whether the oneof2528 field is set. + */ + boolean hasOneof2528(); /** * int32 oneof_2528 = 2528; * @return The oneof2528. */ int getOneof2528(); + /** + * int32 oneof_2529 = 2529; + * @return Whether the oneof2529 field is set. + */ + boolean hasOneof2529(); /** * int32 oneof_2529 = 2529; * @return The oneof2529. */ int getOneof2529(); + /** + * int32 oneof_2530 = 2530; + * @return Whether the oneof2530 field is set. + */ + boolean hasOneof2530(); /** * int32 oneof_2530 = 2530; * @return The oneof2530. */ int getOneof2530(); + /** + * int32 oneof_2531 = 2531; + * @return Whether the oneof2531 field is set. + */ + boolean hasOneof2531(); /** * int32 oneof_2531 = 2531; * @return The oneof2531. */ int getOneof2531(); + /** + * int32 oneof_2532 = 2532; + * @return Whether the oneof2532 field is set. + */ + boolean hasOneof2532(); /** * int32 oneof_2532 = 2532; * @return The oneof2532. */ int getOneof2532(); + /** + * int32 oneof_2533 = 2533; + * @return Whether the oneof2533 field is set. + */ + boolean hasOneof2533(); /** * int32 oneof_2533 = 2533; * @return The oneof2533. */ int getOneof2533(); + /** + * int32 oneof_2534 = 2534; + * @return Whether the oneof2534 field is set. + */ + boolean hasOneof2534(); /** * int32 oneof_2534 = 2534; * @return The oneof2534. */ int getOneof2534(); + /** + * int32 oneof_2535 = 2535; + * @return Whether the oneof2535 field is set. + */ + boolean hasOneof2535(); /** * int32 oneof_2535 = 2535; * @return The oneof2535. */ int getOneof2535(); + /** + * int32 oneof_2536 = 2536; + * @return Whether the oneof2536 field is set. + */ + boolean hasOneof2536(); /** * int32 oneof_2536 = 2536; * @return The oneof2536. */ int getOneof2536(); + /** + * int32 oneof_2537 = 2537; + * @return Whether the oneof2537 field is set. + */ + boolean hasOneof2537(); /** * int32 oneof_2537 = 2537; * @return The oneof2537. */ int getOneof2537(); + /** + * int32 oneof_2538 = 2538; + * @return Whether the oneof2538 field is set. + */ + boolean hasOneof2538(); /** * int32 oneof_2538 = 2538; * @return The oneof2538. */ int getOneof2538(); + /** + * int32 oneof_2539 = 2539; + * @return Whether the oneof2539 field is set. + */ + boolean hasOneof2539(); /** * int32 oneof_2539 = 2539; * @return The oneof2539. */ int getOneof2539(); + /** + * int32 oneof_2540 = 2540; + * @return Whether the oneof2540 field is set. + */ + boolean hasOneof2540(); /** * int32 oneof_2540 = 2540; * @return The oneof2540. */ int getOneof2540(); + /** + * int32 oneof_2541 = 2541; + * @return Whether the oneof2541 field is set. + */ + boolean hasOneof2541(); /** * int32 oneof_2541 = 2541; * @return The oneof2541. */ int getOneof2541(); + /** + * int32 oneof_2542 = 2542; + * @return Whether the oneof2542 field is set. + */ + boolean hasOneof2542(); /** * int32 oneof_2542 = 2542; * @return The oneof2542. */ int getOneof2542(); + /** + * int32 oneof_2543 = 2543; + * @return Whether the oneof2543 field is set. + */ + boolean hasOneof2543(); /** * int32 oneof_2543 = 2543; * @return The oneof2543. */ int getOneof2543(); + /** + * int32 oneof_2544 = 2544; + * @return Whether the oneof2544 field is set. + */ + boolean hasOneof2544(); /** * int32 oneof_2544 = 2544; * @return The oneof2544. */ int getOneof2544(); + /** + * int32 oneof_2545 = 2545; + * @return Whether the oneof2545 field is set. + */ + boolean hasOneof2545(); /** * int32 oneof_2545 = 2545; * @return The oneof2545. */ int getOneof2545(); + /** + * int32 oneof_2546 = 2546; + * @return Whether the oneof2546 field is set. + */ + boolean hasOneof2546(); /** * int32 oneof_2546 = 2546; * @return The oneof2546. */ int getOneof2546(); + /** + * int32 oneof_2547 = 2547; + * @return Whether the oneof2547 field is set. + */ + boolean hasOneof2547(); /** * int32 oneof_2547 = 2547; * @return The oneof2547. */ int getOneof2547(); + /** + * int32 oneof_2548 = 2548; + * @return Whether the oneof2548 field is set. + */ + boolean hasOneof2548(); /** * int32 oneof_2548 = 2548; * @return The oneof2548. */ int getOneof2548(); + /** + * int32 oneof_2549 = 2549; + * @return Whether the oneof2549 field is set. + */ + boolean hasOneof2549(); /** * int32 oneof_2549 = 2549; * @return The oneof2549. */ int getOneof2549(); + /** + * int32 oneof_2550 = 2550; + * @return Whether the oneof2550 field is set. + */ + boolean hasOneof2550(); /** * int32 oneof_2550 = 2550; * @return The oneof2550. */ int getOneof2550(); + /** + * int32 oneof_2551 = 2551; + * @return Whether the oneof2551 field is set. + */ + boolean hasOneof2551(); /** * int32 oneof_2551 = 2551; * @return The oneof2551. */ int getOneof2551(); + /** + * int32 oneof_2552 = 2552; + * @return Whether the oneof2552 field is set. + */ + boolean hasOneof2552(); /** * int32 oneof_2552 = 2552; * @return The oneof2552. */ int getOneof2552(); + /** + * int32 oneof_2553 = 2553; + * @return Whether the oneof2553 field is set. + */ + boolean hasOneof2553(); /** * int32 oneof_2553 = 2553; * @return The oneof2553. */ int getOneof2553(); + /** + * int32 oneof_2554 = 2554; + * @return Whether the oneof2554 field is set. + */ + boolean hasOneof2554(); /** * int32 oneof_2554 = 2554; * @return The oneof2554. */ int getOneof2554(); + /** + * int32 oneof_2555 = 2555; + * @return Whether the oneof2555 field is set. + */ + boolean hasOneof2555(); /** * int32 oneof_2555 = 2555; * @return The oneof2555. */ int getOneof2555(); + /** + * int32 oneof_2556 = 2556; + * @return Whether the oneof2556 field is set. + */ + boolean hasOneof2556(); /** * int32 oneof_2556 = 2556; * @return The oneof2556. */ int getOneof2556(); + /** + * int32 oneof_2557 = 2557; + * @return Whether the oneof2557 field is set. + */ + boolean hasOneof2557(); /** * int32 oneof_2557 = 2557; * @return The oneof2557. */ int getOneof2557(); + /** + * int32 oneof_2558 = 2558; + * @return Whether the oneof2558 field is set. + */ + boolean hasOneof2558(); /** * int32 oneof_2558 = 2558; * @return The oneof2558. */ int getOneof2558(); + /** + * int32 oneof_2559 = 2559; + * @return Whether the oneof2559 field is set. + */ + boolean hasOneof2559(); /** * int32 oneof_2559 = 2559; * @return The oneof2559. */ int getOneof2559(); + /** + * int32 oneof_2560 = 2560; + * @return Whether the oneof2560 field is set. + */ + boolean hasOneof2560(); /** * int32 oneof_2560 = 2560; * @return The oneof2560. */ int getOneof2560(); + /** + * int32 oneof_2561 = 2561; + * @return Whether the oneof2561 field is set. + */ + boolean hasOneof2561(); /** * int32 oneof_2561 = 2561; * @return The oneof2561. */ int getOneof2561(); + /** + * int32 oneof_2562 = 2562; + * @return Whether the oneof2562 field is set. + */ + boolean hasOneof2562(); /** * int32 oneof_2562 = 2562; * @return The oneof2562. */ int getOneof2562(); + /** + * int32 oneof_2563 = 2563; + * @return Whether the oneof2563 field is set. + */ + boolean hasOneof2563(); /** * int32 oneof_2563 = 2563; * @return The oneof2563. */ int getOneof2563(); + /** + * int32 oneof_2564 = 2564; + * @return Whether the oneof2564 field is set. + */ + boolean hasOneof2564(); /** * int32 oneof_2564 = 2564; * @return The oneof2564. */ int getOneof2564(); + /** + * int32 oneof_2565 = 2565; + * @return Whether the oneof2565 field is set. + */ + boolean hasOneof2565(); /** * int32 oneof_2565 = 2565; * @return The oneof2565. */ int getOneof2565(); + /** + * int32 oneof_2566 = 2566; + * @return Whether the oneof2566 field is set. + */ + boolean hasOneof2566(); /** * int32 oneof_2566 = 2566; * @return The oneof2566. */ int getOneof2566(); + /** + * int32 oneof_2567 = 2567; + * @return Whether the oneof2567 field is set. + */ + boolean hasOneof2567(); /** * int32 oneof_2567 = 2567; * @return The oneof2567. */ int getOneof2567(); + /** + * int32 oneof_2568 = 2568; + * @return Whether the oneof2568 field is set. + */ + boolean hasOneof2568(); /** * int32 oneof_2568 = 2568; * @return The oneof2568. */ int getOneof2568(); + /** + * int32 oneof_2569 = 2569; + * @return Whether the oneof2569 field is set. + */ + boolean hasOneof2569(); /** * int32 oneof_2569 = 2569; * @return The oneof2569. */ int getOneof2569(); + /** + * int32 oneof_2570 = 2570; + * @return Whether the oneof2570 field is set. + */ + boolean hasOneof2570(); /** * int32 oneof_2570 = 2570; * @return The oneof2570. */ int getOneof2570(); + /** + * int32 oneof_2571 = 2571; + * @return Whether the oneof2571 field is set. + */ + boolean hasOneof2571(); /** * int32 oneof_2571 = 2571; * @return The oneof2571. */ int getOneof2571(); + /** + * int32 oneof_2572 = 2572; + * @return Whether the oneof2572 field is set. + */ + boolean hasOneof2572(); /** * int32 oneof_2572 = 2572; * @return The oneof2572. */ int getOneof2572(); + /** + * int32 oneof_2573 = 2573; + * @return Whether the oneof2573 field is set. + */ + boolean hasOneof2573(); /** * int32 oneof_2573 = 2573; * @return The oneof2573. */ int getOneof2573(); + /** + * int32 oneof_2574 = 2574; + * @return Whether the oneof2574 field is set. + */ + boolean hasOneof2574(); /** * int32 oneof_2574 = 2574; * @return The oneof2574. */ int getOneof2574(); + /** + * int32 oneof_2575 = 2575; + * @return Whether the oneof2575 field is set. + */ + boolean hasOneof2575(); /** * int32 oneof_2575 = 2575; * @return The oneof2575. */ int getOneof2575(); + /** + * int32 oneof_2576 = 2576; + * @return Whether the oneof2576 field is set. + */ + boolean hasOneof2576(); /** * int32 oneof_2576 = 2576; * @return The oneof2576. */ int getOneof2576(); + /** + * int32 oneof_2577 = 2577; + * @return Whether the oneof2577 field is set. + */ + boolean hasOneof2577(); /** * int32 oneof_2577 = 2577; * @return The oneof2577. */ int getOneof2577(); + /** + * int32 oneof_2578 = 2578; + * @return Whether the oneof2578 field is set. + */ + boolean hasOneof2578(); /** * int32 oneof_2578 = 2578; * @return The oneof2578. */ int getOneof2578(); + /** + * int32 oneof_2579 = 2579; + * @return Whether the oneof2579 field is set. + */ + boolean hasOneof2579(); /** * int32 oneof_2579 = 2579; * @return The oneof2579. */ int getOneof2579(); + /** + * int32 oneof_2580 = 2580; + * @return Whether the oneof2580 field is set. + */ + boolean hasOneof2580(); /** * int32 oneof_2580 = 2580; * @return The oneof2580. */ int getOneof2580(); + /** + * int32 oneof_2581 = 2581; + * @return Whether the oneof2581 field is set. + */ + boolean hasOneof2581(); /** * int32 oneof_2581 = 2581; * @return The oneof2581. */ int getOneof2581(); + /** + * int32 oneof_2582 = 2582; + * @return Whether the oneof2582 field is set. + */ + boolean hasOneof2582(); /** * int32 oneof_2582 = 2582; * @return The oneof2582. */ int getOneof2582(); + /** + * int32 oneof_2583 = 2583; + * @return Whether the oneof2583 field is set. + */ + boolean hasOneof2583(); /** * int32 oneof_2583 = 2583; * @return The oneof2583. */ int getOneof2583(); + /** + * int32 oneof_2584 = 2584; + * @return Whether the oneof2584 field is set. + */ + boolean hasOneof2584(); /** * int32 oneof_2584 = 2584; * @return The oneof2584. */ int getOneof2584(); + /** + * int32 oneof_2585 = 2585; + * @return Whether the oneof2585 field is set. + */ + boolean hasOneof2585(); /** * int32 oneof_2585 = 2585; * @return The oneof2585. */ int getOneof2585(); + /** + * int32 oneof_2586 = 2586; + * @return Whether the oneof2586 field is set. + */ + boolean hasOneof2586(); /** * int32 oneof_2586 = 2586; * @return The oneof2586. */ int getOneof2586(); + /** + * int32 oneof_2587 = 2587; + * @return Whether the oneof2587 field is set. + */ + boolean hasOneof2587(); /** * int32 oneof_2587 = 2587; * @return The oneof2587. */ int getOneof2587(); + /** + * int32 oneof_2588 = 2588; + * @return Whether the oneof2588 field is set. + */ + boolean hasOneof2588(); /** * int32 oneof_2588 = 2588; * @return The oneof2588. */ int getOneof2588(); + /** + * int32 oneof_2589 = 2589; + * @return Whether the oneof2589 field is set. + */ + boolean hasOneof2589(); /** * int32 oneof_2589 = 2589; * @return The oneof2589. */ int getOneof2589(); + /** + * int32 oneof_2590 = 2590; + * @return Whether the oneof2590 field is set. + */ + boolean hasOneof2590(); /** * int32 oneof_2590 = 2590; * @return The oneof2590. */ int getOneof2590(); + /** + * int32 oneof_2591 = 2591; + * @return Whether the oneof2591 field is set. + */ + boolean hasOneof2591(); /** * int32 oneof_2591 = 2591; * @return The oneof2591. */ int getOneof2591(); + /** + * int32 oneof_2592 = 2592; + * @return Whether the oneof2592 field is set. + */ + boolean hasOneof2592(); /** * int32 oneof_2592 = 2592; * @return The oneof2592. */ int getOneof2592(); + /** + * int32 oneof_2593 = 2593; + * @return Whether the oneof2593 field is set. + */ + boolean hasOneof2593(); /** * int32 oneof_2593 = 2593; * @return The oneof2593. */ int getOneof2593(); + /** + * int32 oneof_2594 = 2594; + * @return Whether the oneof2594 field is set. + */ + boolean hasOneof2594(); /** * int32 oneof_2594 = 2594; * @return The oneof2594. */ int getOneof2594(); + /** + * int32 oneof_2595 = 2595; + * @return Whether the oneof2595 field is set. + */ + boolean hasOneof2595(); /** * int32 oneof_2595 = 2595; * @return The oneof2595. */ int getOneof2595(); + /** + * int32 oneof_2596 = 2596; + * @return Whether the oneof2596 field is set. + */ + boolean hasOneof2596(); /** * int32 oneof_2596 = 2596; * @return The oneof2596. */ int getOneof2596(); + /** + * int32 oneof_2597 = 2597; + * @return Whether the oneof2597 field is set. + */ + boolean hasOneof2597(); /** * int32 oneof_2597 = 2597; * @return The oneof2597. */ int getOneof2597(); + /** + * int32 oneof_2598 = 2598; + * @return Whether the oneof2598 field is set. + */ + boolean hasOneof2598(); /** * int32 oneof_2598 = 2598; * @return The oneof2598. */ int getOneof2598(); + /** + * int32 oneof_2599 = 2599; + * @return Whether the oneof2599 field is set. + */ + boolean hasOneof2599(); /** * int32 oneof_2599 = 2599; * @return The oneof2599. */ int getOneof2599(); + /** + * int32 oneof_2600 = 2600; + * @return Whether the oneof2600 field is set. + */ + boolean hasOneof2600(); /** * int32 oneof_2600 = 2600; * @return The oneof2600. */ int getOneof2600(); + /** + * int32 oneof_2601 = 2601; + * @return Whether the oneof2601 field is set. + */ + boolean hasOneof2601(); /** * int32 oneof_2601 = 2601; * @return The oneof2601. */ int getOneof2601(); + /** + * int32 oneof_2602 = 2602; + * @return Whether the oneof2602 field is set. + */ + boolean hasOneof2602(); /** * int32 oneof_2602 = 2602; * @return The oneof2602. */ int getOneof2602(); + /** + * int32 oneof_2603 = 2603; + * @return Whether the oneof2603 field is set. + */ + boolean hasOneof2603(); /** * int32 oneof_2603 = 2603; * @return The oneof2603. */ int getOneof2603(); + /** + * int32 oneof_2604 = 2604; + * @return Whether the oneof2604 field is set. + */ + boolean hasOneof2604(); /** * int32 oneof_2604 = 2604; * @return The oneof2604. */ int getOneof2604(); + /** + * int32 oneof_2605 = 2605; + * @return Whether the oneof2605 field is set. + */ + boolean hasOneof2605(); /** * int32 oneof_2605 = 2605; * @return The oneof2605. */ int getOneof2605(); + /** + * int32 oneof_2606 = 2606; + * @return Whether the oneof2606 field is set. + */ + boolean hasOneof2606(); /** * int32 oneof_2606 = 2606; * @return The oneof2606. */ int getOneof2606(); + /** + * int32 oneof_2607 = 2607; + * @return Whether the oneof2607 field is set. + */ + boolean hasOneof2607(); /** * int32 oneof_2607 = 2607; * @return The oneof2607. */ int getOneof2607(); + /** + * int32 oneof_2608 = 2608; + * @return Whether the oneof2608 field is set. + */ + boolean hasOneof2608(); /** * int32 oneof_2608 = 2608; * @return The oneof2608. */ int getOneof2608(); + /** + * int32 oneof_2609 = 2609; + * @return Whether the oneof2609 field is set. + */ + boolean hasOneof2609(); /** * int32 oneof_2609 = 2609; * @return The oneof2609. */ int getOneof2609(); + /** + * int32 oneof_2610 = 2610; + * @return Whether the oneof2610 field is set. + */ + boolean hasOneof2610(); /** * int32 oneof_2610 = 2610; * @return The oneof2610. */ int getOneof2610(); + /** + * int32 oneof_2611 = 2611; + * @return Whether the oneof2611 field is set. + */ + boolean hasOneof2611(); /** * int32 oneof_2611 = 2611; * @return The oneof2611. */ int getOneof2611(); + /** + * int32 oneof_2612 = 2612; + * @return Whether the oneof2612 field is set. + */ + boolean hasOneof2612(); /** * int32 oneof_2612 = 2612; * @return The oneof2612. */ int getOneof2612(); + /** + * int32 oneof_2613 = 2613; + * @return Whether the oneof2613 field is set. + */ + boolean hasOneof2613(); /** * int32 oneof_2613 = 2613; * @return The oneof2613. */ int getOneof2613(); + /** + * int32 oneof_2614 = 2614; + * @return Whether the oneof2614 field is set. + */ + boolean hasOneof2614(); /** * int32 oneof_2614 = 2614; * @return The oneof2614. */ int getOneof2614(); + /** + * int32 oneof_2615 = 2615; + * @return Whether the oneof2615 field is set. + */ + boolean hasOneof2615(); /** * int32 oneof_2615 = 2615; * @return The oneof2615. */ int getOneof2615(); + /** + * int32 oneof_2616 = 2616; + * @return Whether the oneof2616 field is set. + */ + boolean hasOneof2616(); /** * int32 oneof_2616 = 2616; * @return The oneof2616. */ int getOneof2616(); + /** + * int32 oneof_2617 = 2617; + * @return Whether the oneof2617 field is set. + */ + boolean hasOneof2617(); /** * int32 oneof_2617 = 2617; * @return The oneof2617. */ int getOneof2617(); + /** + * int32 oneof_2618 = 2618; + * @return Whether the oneof2618 field is set. + */ + boolean hasOneof2618(); /** * int32 oneof_2618 = 2618; * @return The oneof2618. */ int getOneof2618(); + /** + * int32 oneof_2619 = 2619; + * @return Whether the oneof2619 field is set. + */ + boolean hasOneof2619(); /** * int32 oneof_2619 = 2619; * @return The oneof2619. */ int getOneof2619(); + /** + * int32 oneof_2620 = 2620; + * @return Whether the oneof2620 field is set. + */ + boolean hasOneof2620(); /** * int32 oneof_2620 = 2620; * @return The oneof2620. */ int getOneof2620(); + /** + * int32 oneof_2621 = 2621; + * @return Whether the oneof2621 field is set. + */ + boolean hasOneof2621(); /** * int32 oneof_2621 = 2621; * @return The oneof2621. */ int getOneof2621(); + /** + * int32 oneof_2622 = 2622; + * @return Whether the oneof2622 field is set. + */ + boolean hasOneof2622(); /** * int32 oneof_2622 = 2622; * @return The oneof2622. */ int getOneof2622(); + /** + * int32 oneof_2623 = 2623; + * @return Whether the oneof2623 field is set. + */ + boolean hasOneof2623(); /** * int32 oneof_2623 = 2623; * @return The oneof2623. */ int getOneof2623(); + /** + * int32 oneof_2624 = 2624; + * @return Whether the oneof2624 field is set. + */ + boolean hasOneof2624(); /** * int32 oneof_2624 = 2624; * @return The oneof2624. */ int getOneof2624(); + /** + * int32 oneof_2625 = 2625; + * @return Whether the oneof2625 field is set. + */ + boolean hasOneof2625(); /** * int32 oneof_2625 = 2625; * @return The oneof2625. */ int getOneof2625(); + /** + * int32 oneof_2626 = 2626; + * @return Whether the oneof2626 field is set. + */ + boolean hasOneof2626(); /** * int32 oneof_2626 = 2626; * @return The oneof2626. */ int getOneof2626(); + /** + * int32 oneof_2627 = 2627; + * @return Whether the oneof2627 field is set. + */ + boolean hasOneof2627(); /** * int32 oneof_2627 = 2627; * @return The oneof2627. */ int getOneof2627(); + /** + * int32 oneof_2628 = 2628; + * @return Whether the oneof2628 field is set. + */ + boolean hasOneof2628(); /** * int32 oneof_2628 = 2628; * @return The oneof2628. */ int getOneof2628(); + /** + * int32 oneof_2629 = 2629; + * @return Whether the oneof2629 field is set. + */ + boolean hasOneof2629(); /** * int32 oneof_2629 = 2629; * @return The oneof2629. */ int getOneof2629(); + /** + * int32 oneof_2630 = 2630; + * @return Whether the oneof2630 field is set. + */ + boolean hasOneof2630(); /** * int32 oneof_2630 = 2630; * @return The oneof2630. */ int getOneof2630(); + /** + * int32 oneof_2631 = 2631; + * @return Whether the oneof2631 field is set. + */ + boolean hasOneof2631(); /** * int32 oneof_2631 = 2631; * @return The oneof2631. */ int getOneof2631(); + /** + * int32 oneof_2632 = 2632; + * @return Whether the oneof2632 field is set. + */ + boolean hasOneof2632(); /** * int32 oneof_2632 = 2632; * @return The oneof2632. */ int getOneof2632(); + /** + * int32 oneof_2633 = 2633; + * @return Whether the oneof2633 field is set. + */ + boolean hasOneof2633(); /** * int32 oneof_2633 = 2633; * @return The oneof2633. */ int getOneof2633(); + /** + * int32 oneof_2634 = 2634; + * @return Whether the oneof2634 field is set. + */ + boolean hasOneof2634(); /** * int32 oneof_2634 = 2634; * @return The oneof2634. */ int getOneof2634(); + /** + * int32 oneof_2635 = 2635; + * @return Whether the oneof2635 field is set. + */ + boolean hasOneof2635(); /** * int32 oneof_2635 = 2635; * @return The oneof2635. */ int getOneof2635(); + /** + * int32 oneof_2636 = 2636; + * @return Whether the oneof2636 field is set. + */ + boolean hasOneof2636(); /** * int32 oneof_2636 = 2636; * @return The oneof2636. */ int getOneof2636(); + /** + * int32 oneof_2637 = 2637; + * @return Whether the oneof2637 field is set. + */ + boolean hasOneof2637(); /** * int32 oneof_2637 = 2637; * @return The oneof2637. */ int getOneof2637(); + /** + * int32 oneof_2638 = 2638; + * @return Whether the oneof2638 field is set. + */ + boolean hasOneof2638(); /** * int32 oneof_2638 = 2638; * @return The oneof2638. */ int getOneof2638(); + /** + * int32 oneof_2639 = 2639; + * @return Whether the oneof2639 field is set. + */ + boolean hasOneof2639(); /** * int32 oneof_2639 = 2639; * @return The oneof2639. */ int getOneof2639(); + /** + * int32 oneof_2640 = 2640; + * @return Whether the oneof2640 field is set. + */ + boolean hasOneof2640(); /** * int32 oneof_2640 = 2640; * @return The oneof2640. */ int getOneof2640(); + /** + * int32 oneof_2641 = 2641; + * @return Whether the oneof2641 field is set. + */ + boolean hasOneof2641(); /** * int32 oneof_2641 = 2641; * @return The oneof2641. */ int getOneof2641(); + /** + * int32 oneof_2642 = 2642; + * @return Whether the oneof2642 field is set. + */ + boolean hasOneof2642(); /** * int32 oneof_2642 = 2642; * @return The oneof2642. */ int getOneof2642(); + /** + * int32 oneof_2643 = 2643; + * @return Whether the oneof2643 field is set. + */ + boolean hasOneof2643(); /** * int32 oneof_2643 = 2643; * @return The oneof2643. */ int getOneof2643(); + /** + * int32 oneof_2644 = 2644; + * @return Whether the oneof2644 field is set. + */ + boolean hasOneof2644(); /** * int32 oneof_2644 = 2644; * @return The oneof2644. */ int getOneof2644(); + /** + * int32 oneof_2645 = 2645; + * @return Whether the oneof2645 field is set. + */ + boolean hasOneof2645(); /** * int32 oneof_2645 = 2645; * @return The oneof2645. */ int getOneof2645(); + /** + * int32 oneof_2646 = 2646; + * @return Whether the oneof2646 field is set. + */ + boolean hasOneof2646(); /** * int32 oneof_2646 = 2646; * @return The oneof2646. */ int getOneof2646(); + /** + * int32 oneof_2647 = 2647; + * @return Whether the oneof2647 field is set. + */ + boolean hasOneof2647(); /** * int32 oneof_2647 = 2647; * @return The oneof2647. */ int getOneof2647(); + /** + * int32 oneof_2648 = 2648; + * @return Whether the oneof2648 field is set. + */ + boolean hasOneof2648(); /** * int32 oneof_2648 = 2648; * @return The oneof2648. */ int getOneof2648(); + /** + * int32 oneof_2649 = 2649; + * @return Whether the oneof2649 field is set. + */ + boolean hasOneof2649(); /** * int32 oneof_2649 = 2649; * @return The oneof2649. */ int getOneof2649(); + /** + * int32 oneof_2650 = 2650; + * @return Whether the oneof2650 field is set. + */ + boolean hasOneof2650(); /** * int32 oneof_2650 = 2650; * @return The oneof2650. */ int getOneof2650(); + /** + * int32 oneof_2651 = 2651; + * @return Whether the oneof2651 field is set. + */ + boolean hasOneof2651(); /** * int32 oneof_2651 = 2651; * @return The oneof2651. */ int getOneof2651(); + /** + * int32 oneof_2652 = 2652; + * @return Whether the oneof2652 field is set. + */ + boolean hasOneof2652(); /** * int32 oneof_2652 = 2652; * @return The oneof2652. */ int getOneof2652(); + /** + * int32 oneof_2653 = 2653; + * @return Whether the oneof2653 field is set. + */ + boolean hasOneof2653(); /** * int32 oneof_2653 = 2653; * @return The oneof2653. */ int getOneof2653(); + /** + * int32 oneof_2654 = 2654; + * @return Whether the oneof2654 field is set. + */ + boolean hasOneof2654(); /** * int32 oneof_2654 = 2654; * @return The oneof2654. */ int getOneof2654(); + /** + * int32 oneof_2655 = 2655; + * @return Whether the oneof2655 field is set. + */ + boolean hasOneof2655(); /** * int32 oneof_2655 = 2655; * @return The oneof2655. */ int getOneof2655(); + /** + * int32 oneof_2656 = 2656; + * @return Whether the oneof2656 field is set. + */ + boolean hasOneof2656(); /** * int32 oneof_2656 = 2656; * @return The oneof2656. */ int getOneof2656(); + /** + * int32 oneof_2657 = 2657; + * @return Whether the oneof2657 field is set. + */ + boolean hasOneof2657(); /** * int32 oneof_2657 = 2657; * @return The oneof2657. */ int getOneof2657(); + /** + * int32 oneof_2658 = 2658; + * @return Whether the oneof2658 field is set. + */ + boolean hasOneof2658(); /** * int32 oneof_2658 = 2658; * @return The oneof2658. */ int getOneof2658(); + /** + * int32 oneof_2659 = 2659; + * @return Whether the oneof2659 field is set. + */ + boolean hasOneof2659(); /** * int32 oneof_2659 = 2659; * @return The oneof2659. */ int getOneof2659(); + /** + * int32 oneof_2660 = 2660; + * @return Whether the oneof2660 field is set. + */ + boolean hasOneof2660(); /** * int32 oneof_2660 = 2660; * @return The oneof2660. */ int getOneof2660(); + /** + * int32 oneof_2661 = 2661; + * @return Whether the oneof2661 field is set. + */ + boolean hasOneof2661(); /** * int32 oneof_2661 = 2661; * @return The oneof2661. */ int getOneof2661(); + /** + * int32 oneof_2662 = 2662; + * @return Whether the oneof2662 field is set. + */ + boolean hasOneof2662(); /** * int32 oneof_2662 = 2662; * @return The oneof2662. */ int getOneof2662(); + /** + * int32 oneof_2663 = 2663; + * @return Whether the oneof2663 field is set. + */ + boolean hasOneof2663(); /** * int32 oneof_2663 = 2663; * @return The oneof2663. */ int getOneof2663(); + /** + * int32 oneof_2664 = 2664; + * @return Whether the oneof2664 field is set. + */ + boolean hasOneof2664(); /** * int32 oneof_2664 = 2664; * @return The oneof2664. */ int getOneof2664(); + /** + * int32 oneof_2665 = 2665; + * @return Whether the oneof2665 field is set. + */ + boolean hasOneof2665(); /** * int32 oneof_2665 = 2665; * @return The oneof2665. */ int getOneof2665(); + /** + * int32 oneof_2666 = 2666; + * @return Whether the oneof2666 field is set. + */ + boolean hasOneof2666(); /** * int32 oneof_2666 = 2666; * @return The oneof2666. */ int getOneof2666(); + /** + * int32 oneof_2667 = 2667; + * @return Whether the oneof2667 field is set. + */ + boolean hasOneof2667(); /** * int32 oneof_2667 = 2667; * @return The oneof2667. */ int getOneof2667(); + /** + * int32 oneof_2668 = 2668; + * @return Whether the oneof2668 field is set. + */ + boolean hasOneof2668(); /** * int32 oneof_2668 = 2668; * @return The oneof2668. */ int getOneof2668(); + /** + * int32 oneof_2669 = 2669; + * @return Whether the oneof2669 field is set. + */ + boolean hasOneof2669(); /** * int32 oneof_2669 = 2669; * @return The oneof2669. */ int getOneof2669(); + /** + * int32 oneof_2670 = 2670; + * @return Whether the oneof2670 field is set. + */ + boolean hasOneof2670(); /** * int32 oneof_2670 = 2670; * @return The oneof2670. */ int getOneof2670(); + /** + * int32 oneof_2671 = 2671; + * @return Whether the oneof2671 field is set. + */ + boolean hasOneof2671(); /** * int32 oneof_2671 = 2671; * @return The oneof2671. */ int getOneof2671(); + /** + * int32 oneof_2672 = 2672; + * @return Whether the oneof2672 field is set. + */ + boolean hasOneof2672(); /** * int32 oneof_2672 = 2672; * @return The oneof2672. */ int getOneof2672(); + /** + * int32 oneof_2673 = 2673; + * @return Whether the oneof2673 field is set. + */ + boolean hasOneof2673(); /** * int32 oneof_2673 = 2673; * @return The oneof2673. */ int getOneof2673(); + /** + * int32 oneof_2674 = 2674; + * @return Whether the oneof2674 field is set. + */ + boolean hasOneof2674(); /** * int32 oneof_2674 = 2674; * @return The oneof2674. */ int getOneof2674(); + /** + * int32 oneof_2675 = 2675; + * @return Whether the oneof2675 field is set. + */ + boolean hasOneof2675(); /** * int32 oneof_2675 = 2675; * @return The oneof2675. */ int getOneof2675(); + /** + * int32 oneof_2676 = 2676; + * @return Whether the oneof2676 field is set. + */ + boolean hasOneof2676(); /** * int32 oneof_2676 = 2676; * @return The oneof2676. */ int getOneof2676(); + /** + * int32 oneof_2677 = 2677; + * @return Whether the oneof2677 field is set. + */ + boolean hasOneof2677(); /** * int32 oneof_2677 = 2677; * @return The oneof2677. */ int getOneof2677(); + /** + * int32 oneof_2678 = 2678; + * @return Whether the oneof2678 field is set. + */ + boolean hasOneof2678(); /** * int32 oneof_2678 = 2678; * @return The oneof2678. */ int getOneof2678(); + /** + * int32 oneof_2679 = 2679; + * @return Whether the oneof2679 field is set. + */ + boolean hasOneof2679(); /** * int32 oneof_2679 = 2679; * @return The oneof2679. */ int getOneof2679(); + /** + * int32 oneof_2680 = 2680; + * @return Whether the oneof2680 field is set. + */ + boolean hasOneof2680(); /** * int32 oneof_2680 = 2680; * @return The oneof2680. */ int getOneof2680(); + /** + * int32 oneof_2681 = 2681; + * @return Whether the oneof2681 field is set. + */ + boolean hasOneof2681(); /** * int32 oneof_2681 = 2681; * @return The oneof2681. */ int getOneof2681(); + /** + * int32 oneof_2682 = 2682; + * @return Whether the oneof2682 field is set. + */ + boolean hasOneof2682(); /** * int32 oneof_2682 = 2682; * @return The oneof2682. */ int getOneof2682(); + /** + * int32 oneof_2683 = 2683; + * @return Whether the oneof2683 field is set. + */ + boolean hasOneof2683(); /** * int32 oneof_2683 = 2683; * @return The oneof2683. */ int getOneof2683(); + /** + * int32 oneof_2684 = 2684; + * @return Whether the oneof2684 field is set. + */ + boolean hasOneof2684(); /** * int32 oneof_2684 = 2684; * @return The oneof2684. */ int getOneof2684(); + /** + * int32 oneof_2685 = 2685; + * @return Whether the oneof2685 field is set. + */ + boolean hasOneof2685(); /** * int32 oneof_2685 = 2685; * @return The oneof2685. */ int getOneof2685(); + /** + * int32 oneof_2686 = 2686; + * @return Whether the oneof2686 field is set. + */ + boolean hasOneof2686(); /** * int32 oneof_2686 = 2686; * @return The oneof2686. */ int getOneof2686(); + /** + * int32 oneof_2687 = 2687; + * @return Whether the oneof2687 field is set. + */ + boolean hasOneof2687(); /** * int32 oneof_2687 = 2687; * @return The oneof2687. */ int getOneof2687(); + /** + * int32 oneof_2688 = 2688; + * @return Whether the oneof2688 field is set. + */ + boolean hasOneof2688(); /** * int32 oneof_2688 = 2688; * @return The oneof2688. */ int getOneof2688(); + /** + * int32 oneof_2689 = 2689; + * @return Whether the oneof2689 field is set. + */ + boolean hasOneof2689(); /** * int32 oneof_2689 = 2689; * @return The oneof2689. */ int getOneof2689(); + /** + * int32 oneof_2690 = 2690; + * @return Whether the oneof2690 field is set. + */ + boolean hasOneof2690(); /** * int32 oneof_2690 = 2690; * @return The oneof2690. */ int getOneof2690(); + /** + * int32 oneof_2691 = 2691; + * @return Whether the oneof2691 field is set. + */ + boolean hasOneof2691(); /** * int32 oneof_2691 = 2691; * @return The oneof2691. */ int getOneof2691(); + /** + * int32 oneof_2692 = 2692; + * @return Whether the oneof2692 field is set. + */ + boolean hasOneof2692(); /** * int32 oneof_2692 = 2692; * @return The oneof2692. */ int getOneof2692(); + /** + * int32 oneof_2693 = 2693; + * @return Whether the oneof2693 field is set. + */ + boolean hasOneof2693(); /** * int32 oneof_2693 = 2693; * @return The oneof2693. */ int getOneof2693(); + /** + * int32 oneof_2694 = 2694; + * @return Whether the oneof2694 field is set. + */ + boolean hasOneof2694(); /** * int32 oneof_2694 = 2694; * @return The oneof2694. */ int getOneof2694(); + /** + * int32 oneof_2695 = 2695; + * @return Whether the oneof2695 field is set. + */ + boolean hasOneof2695(); /** * int32 oneof_2695 = 2695; * @return The oneof2695. */ int getOneof2695(); + /** + * int32 oneof_2696 = 2696; + * @return Whether the oneof2696 field is set. + */ + boolean hasOneof2696(); /** * int32 oneof_2696 = 2696; * @return The oneof2696. */ int getOneof2696(); + /** + * int32 oneof_2697 = 2697; + * @return Whether the oneof2697 field is set. + */ + boolean hasOneof2697(); /** * int32 oneof_2697 = 2697; * @return The oneof2697. */ int getOneof2697(); + /** + * int32 oneof_2698 = 2698; + * @return Whether the oneof2698 field is set. + */ + boolean hasOneof2698(); /** * int32 oneof_2698 = 2698; * @return The oneof2698. */ int getOneof2698(); + /** + * int32 oneof_2699 = 2699; + * @return Whether the oneof2699 field is set. + */ + boolean hasOneof2699(); /** * int32 oneof_2699 = 2699; * @return The oneof2699. */ int getOneof2699(); + /** + * int32 oneof_2700 = 2700; + * @return Whether the oneof2700 field is set. + */ + boolean hasOneof2700(); /** * int32 oneof_2700 = 2700; * @return The oneof2700. */ int getOneof2700(); + /** + * int32 oneof_2701 = 2701; + * @return Whether the oneof2701 field is set. + */ + boolean hasOneof2701(); /** * int32 oneof_2701 = 2701; * @return The oneof2701. */ int getOneof2701(); + /** + * int32 oneof_2702 = 2702; + * @return Whether the oneof2702 field is set. + */ + boolean hasOneof2702(); /** * int32 oneof_2702 = 2702; * @return The oneof2702. */ int getOneof2702(); + /** + * int32 oneof_2703 = 2703; + * @return Whether the oneof2703 field is set. + */ + boolean hasOneof2703(); /** * int32 oneof_2703 = 2703; * @return The oneof2703. */ int getOneof2703(); + /** + * int32 oneof_2704 = 2704; + * @return Whether the oneof2704 field is set. + */ + boolean hasOneof2704(); /** * int32 oneof_2704 = 2704; * @return The oneof2704. */ int getOneof2704(); + /** + * int32 oneof_2705 = 2705; + * @return Whether the oneof2705 field is set. + */ + boolean hasOneof2705(); /** * int32 oneof_2705 = 2705; * @return The oneof2705. */ int getOneof2705(); + /** + * int32 oneof_2706 = 2706; + * @return Whether the oneof2706 field is set. + */ + boolean hasOneof2706(); /** * int32 oneof_2706 = 2706; * @return The oneof2706. */ int getOneof2706(); + /** + * int32 oneof_2707 = 2707; + * @return Whether the oneof2707 field is set. + */ + boolean hasOneof2707(); /** * int32 oneof_2707 = 2707; * @return The oneof2707. */ int getOneof2707(); + /** + * int32 oneof_2708 = 2708; + * @return Whether the oneof2708 field is set. + */ + boolean hasOneof2708(); /** * int32 oneof_2708 = 2708; * @return The oneof2708. */ int getOneof2708(); + /** + * int32 oneof_2709 = 2709; + * @return Whether the oneof2709 field is set. + */ + boolean hasOneof2709(); /** * int32 oneof_2709 = 2709; * @return The oneof2709. */ int getOneof2709(); + /** + * int32 oneof_2710 = 2710; + * @return Whether the oneof2710 field is set. + */ + boolean hasOneof2710(); /** * int32 oneof_2710 = 2710; * @return The oneof2710. */ int getOneof2710(); + /** + * int32 oneof_2711 = 2711; + * @return Whether the oneof2711 field is set. + */ + boolean hasOneof2711(); /** * int32 oneof_2711 = 2711; * @return The oneof2711. */ int getOneof2711(); + /** + * int32 oneof_2712 = 2712; + * @return Whether the oneof2712 field is set. + */ + boolean hasOneof2712(); /** * int32 oneof_2712 = 2712; * @return The oneof2712. */ int getOneof2712(); + /** + * int32 oneof_2713 = 2713; + * @return Whether the oneof2713 field is set. + */ + boolean hasOneof2713(); /** * int32 oneof_2713 = 2713; * @return The oneof2713. */ int getOneof2713(); + /** + * int32 oneof_2714 = 2714; + * @return Whether the oneof2714 field is set. + */ + boolean hasOneof2714(); /** * int32 oneof_2714 = 2714; * @return The oneof2714. */ int getOneof2714(); + /** + * int32 oneof_2715 = 2715; + * @return Whether the oneof2715 field is set. + */ + boolean hasOneof2715(); /** * int32 oneof_2715 = 2715; * @return The oneof2715. */ int getOneof2715(); + /** + * int32 oneof_2716 = 2716; + * @return Whether the oneof2716 field is set. + */ + boolean hasOneof2716(); /** * int32 oneof_2716 = 2716; * @return The oneof2716. */ int getOneof2716(); + /** + * int32 oneof_2717 = 2717; + * @return Whether the oneof2717 field is set. + */ + boolean hasOneof2717(); /** * int32 oneof_2717 = 2717; * @return The oneof2717. */ int getOneof2717(); + /** + * int32 oneof_2718 = 2718; + * @return Whether the oneof2718 field is set. + */ + boolean hasOneof2718(); /** * int32 oneof_2718 = 2718; * @return The oneof2718. */ int getOneof2718(); + /** + * int32 oneof_2719 = 2719; + * @return Whether the oneof2719 field is set. + */ + boolean hasOneof2719(); /** * int32 oneof_2719 = 2719; * @return The oneof2719. */ int getOneof2719(); + /** + * int32 oneof_2720 = 2720; + * @return Whether the oneof2720 field is set. + */ + boolean hasOneof2720(); /** * int32 oneof_2720 = 2720; * @return The oneof2720. */ int getOneof2720(); + /** + * int32 oneof_2721 = 2721; + * @return Whether the oneof2721 field is set. + */ + boolean hasOneof2721(); /** * int32 oneof_2721 = 2721; * @return The oneof2721. */ int getOneof2721(); + /** + * int32 oneof_2722 = 2722; + * @return Whether the oneof2722 field is set. + */ + boolean hasOneof2722(); /** * int32 oneof_2722 = 2722; * @return The oneof2722. */ int getOneof2722(); + /** + * int32 oneof_2723 = 2723; + * @return Whether the oneof2723 field is set. + */ + boolean hasOneof2723(); /** * int32 oneof_2723 = 2723; * @return The oneof2723. */ int getOneof2723(); + /** + * int32 oneof_2724 = 2724; + * @return Whether the oneof2724 field is set. + */ + boolean hasOneof2724(); /** * int32 oneof_2724 = 2724; * @return The oneof2724. */ int getOneof2724(); + /** + * int32 oneof_2725 = 2725; + * @return Whether the oneof2725 field is set. + */ + boolean hasOneof2725(); /** * int32 oneof_2725 = 2725; * @return The oneof2725. */ int getOneof2725(); + /** + * int32 oneof_2726 = 2726; + * @return Whether the oneof2726 field is set. + */ + boolean hasOneof2726(); /** * int32 oneof_2726 = 2726; * @return The oneof2726. */ int getOneof2726(); + /** + * int32 oneof_2727 = 2727; + * @return Whether the oneof2727 field is set. + */ + boolean hasOneof2727(); /** * int32 oneof_2727 = 2727; * @return The oneof2727. */ int getOneof2727(); + /** + * int32 oneof_2728 = 2728; + * @return Whether the oneof2728 field is set. + */ + boolean hasOneof2728(); /** * int32 oneof_2728 = 2728; * @return The oneof2728. */ int getOneof2728(); + /** + * int32 oneof_2729 = 2729; + * @return Whether the oneof2729 field is set. + */ + boolean hasOneof2729(); /** * int32 oneof_2729 = 2729; * @return The oneof2729. */ int getOneof2729(); + /** + * int32 oneof_2730 = 2730; + * @return Whether the oneof2730 field is set. + */ + boolean hasOneof2730(); /** * int32 oneof_2730 = 2730; * @return The oneof2730. */ int getOneof2730(); + /** + * int32 oneof_2731 = 2731; + * @return Whether the oneof2731 field is set. + */ + boolean hasOneof2731(); /** * int32 oneof_2731 = 2731; * @return The oneof2731. */ int getOneof2731(); + /** + * int32 oneof_2732 = 2732; + * @return Whether the oneof2732 field is set. + */ + boolean hasOneof2732(); /** * int32 oneof_2732 = 2732; * @return The oneof2732. */ int getOneof2732(); + /** + * int32 oneof_2733 = 2733; + * @return Whether the oneof2733 field is set. + */ + boolean hasOneof2733(); /** * int32 oneof_2733 = 2733; * @return The oneof2733. */ int getOneof2733(); + /** + * int32 oneof_2734 = 2734; + * @return Whether the oneof2734 field is set. + */ + boolean hasOneof2734(); /** * int32 oneof_2734 = 2734; * @return The oneof2734. */ int getOneof2734(); + /** + * int32 oneof_2735 = 2735; + * @return Whether the oneof2735 field is set. + */ + boolean hasOneof2735(); /** * int32 oneof_2735 = 2735; * @return The oneof2735. */ int getOneof2735(); + /** + * int32 oneof_2736 = 2736; + * @return Whether the oneof2736 field is set. + */ + boolean hasOneof2736(); /** * int32 oneof_2736 = 2736; * @return The oneof2736. */ int getOneof2736(); + /** + * int32 oneof_2737 = 2737; + * @return Whether the oneof2737 field is set. + */ + boolean hasOneof2737(); /** * int32 oneof_2737 = 2737; * @return The oneof2737. */ int getOneof2737(); + /** + * int32 oneof_2738 = 2738; + * @return Whether the oneof2738 field is set. + */ + boolean hasOneof2738(); /** * int32 oneof_2738 = 2738; * @return The oneof2738. */ int getOneof2738(); + /** + * int32 oneof_2739 = 2739; + * @return Whether the oneof2739 field is set. + */ + boolean hasOneof2739(); /** * int32 oneof_2739 = 2739; * @return The oneof2739. */ int getOneof2739(); + /** + * int32 oneof_2740 = 2740; + * @return Whether the oneof2740 field is set. + */ + boolean hasOneof2740(); /** * int32 oneof_2740 = 2740; * @return The oneof2740. */ int getOneof2740(); + /** + * int32 oneof_2741 = 2741; + * @return Whether the oneof2741 field is set. + */ + boolean hasOneof2741(); /** * int32 oneof_2741 = 2741; * @return The oneof2741. */ int getOneof2741(); + /** + * int32 oneof_2742 = 2742; + * @return Whether the oneof2742 field is set. + */ + boolean hasOneof2742(); /** * int32 oneof_2742 = 2742; * @return The oneof2742. */ int getOneof2742(); + /** + * int32 oneof_2743 = 2743; + * @return Whether the oneof2743 field is set. + */ + boolean hasOneof2743(); /** * int32 oneof_2743 = 2743; * @return The oneof2743. */ int getOneof2743(); + /** + * int32 oneof_2744 = 2744; + * @return Whether the oneof2744 field is set. + */ + boolean hasOneof2744(); /** * int32 oneof_2744 = 2744; * @return The oneof2744. */ int getOneof2744(); + /** + * int32 oneof_2745 = 2745; + * @return Whether the oneof2745 field is set. + */ + boolean hasOneof2745(); /** * int32 oneof_2745 = 2745; * @return The oneof2745. */ int getOneof2745(); + /** + * int32 oneof_2746 = 2746; + * @return Whether the oneof2746 field is set. + */ + boolean hasOneof2746(); /** * int32 oneof_2746 = 2746; * @return The oneof2746. */ int getOneof2746(); + /** + * int32 oneof_2747 = 2747; + * @return Whether the oneof2747 field is set. + */ + boolean hasOneof2747(); /** * int32 oneof_2747 = 2747; * @return The oneof2747. */ int getOneof2747(); + /** + * int32 oneof_2748 = 2748; + * @return Whether the oneof2748 field is set. + */ + boolean hasOneof2748(); /** * int32 oneof_2748 = 2748; * @return The oneof2748. */ int getOneof2748(); + /** + * int32 oneof_2749 = 2749; + * @return Whether the oneof2749 field is set. + */ + boolean hasOneof2749(); /** * int32 oneof_2749 = 2749; * @return The oneof2749. */ int getOneof2749(); + /** + * int32 oneof_2750 = 2750; + * @return Whether the oneof2750 field is set. + */ + boolean hasOneof2750(); /** * int32 oneof_2750 = 2750; * @return The oneof2750. */ int getOneof2750(); + /** + * int32 oneof_2751 = 2751; + * @return Whether the oneof2751 field is set. + */ + boolean hasOneof2751(); /** * int32 oneof_2751 = 2751; * @return The oneof2751. */ int getOneof2751(); + /** + * int32 oneof_2752 = 2752; + * @return Whether the oneof2752 field is set. + */ + boolean hasOneof2752(); /** * int32 oneof_2752 = 2752; * @return The oneof2752. */ int getOneof2752(); + /** + * int32 oneof_2753 = 2753; + * @return Whether the oneof2753 field is set. + */ + boolean hasOneof2753(); /** * int32 oneof_2753 = 2753; * @return The oneof2753. */ int getOneof2753(); + /** + * int32 oneof_2754 = 2754; + * @return Whether the oneof2754 field is set. + */ + boolean hasOneof2754(); /** * int32 oneof_2754 = 2754; * @return The oneof2754. */ int getOneof2754(); + /** + * int32 oneof_2755 = 2755; + * @return Whether the oneof2755 field is set. + */ + boolean hasOneof2755(); /** * int32 oneof_2755 = 2755; * @return The oneof2755. */ int getOneof2755(); + /** + * int32 oneof_2756 = 2756; + * @return Whether the oneof2756 field is set. + */ + boolean hasOneof2756(); /** * int32 oneof_2756 = 2756; * @return The oneof2756. */ int getOneof2756(); + /** + * int32 oneof_2757 = 2757; + * @return Whether the oneof2757 field is set. + */ + boolean hasOneof2757(); /** * int32 oneof_2757 = 2757; * @return The oneof2757. */ int getOneof2757(); + /** + * int32 oneof_2758 = 2758; + * @return Whether the oneof2758 field is set. + */ + boolean hasOneof2758(); /** * int32 oneof_2758 = 2758; * @return The oneof2758. */ int getOneof2758(); + /** + * int32 oneof_2759 = 2759; + * @return Whether the oneof2759 field is set. + */ + boolean hasOneof2759(); /** * int32 oneof_2759 = 2759; * @return The oneof2759. */ int getOneof2759(); + /** + * int32 oneof_2760 = 2760; + * @return Whether the oneof2760 field is set. + */ + boolean hasOneof2760(); /** * int32 oneof_2760 = 2760; * @return The oneof2760. */ int getOneof2760(); + /** + * int32 oneof_2761 = 2761; + * @return Whether the oneof2761 field is set. + */ + boolean hasOneof2761(); /** * int32 oneof_2761 = 2761; * @return The oneof2761. */ int getOneof2761(); + /** + * int32 oneof_2762 = 2762; + * @return Whether the oneof2762 field is set. + */ + boolean hasOneof2762(); /** * int32 oneof_2762 = 2762; * @return The oneof2762. */ int getOneof2762(); + /** + * int32 oneof_2763 = 2763; + * @return Whether the oneof2763 field is set. + */ + boolean hasOneof2763(); /** * int32 oneof_2763 = 2763; * @return The oneof2763. */ int getOneof2763(); + /** + * int32 oneof_2764 = 2764; + * @return Whether the oneof2764 field is set. + */ + boolean hasOneof2764(); /** * int32 oneof_2764 = 2764; * @return The oneof2764. */ int getOneof2764(); + /** + * int32 oneof_2765 = 2765; + * @return Whether the oneof2765 field is set. + */ + boolean hasOneof2765(); /** * int32 oneof_2765 = 2765; * @return The oneof2765. */ int getOneof2765(); + /** + * int32 oneof_2766 = 2766; + * @return Whether the oneof2766 field is set. + */ + boolean hasOneof2766(); /** * int32 oneof_2766 = 2766; * @return The oneof2766. */ int getOneof2766(); + /** + * int32 oneof_2767 = 2767; + * @return Whether the oneof2767 field is set. + */ + boolean hasOneof2767(); /** * int32 oneof_2767 = 2767; * @return The oneof2767. */ int getOneof2767(); + /** + * int32 oneof_2768 = 2768; + * @return Whether the oneof2768 field is set. + */ + boolean hasOneof2768(); /** * int32 oneof_2768 = 2768; * @return The oneof2768. */ int getOneof2768(); + /** + * int32 oneof_2769 = 2769; + * @return Whether the oneof2769 field is set. + */ + boolean hasOneof2769(); /** * int32 oneof_2769 = 2769; * @return The oneof2769. */ int getOneof2769(); + /** + * int32 oneof_2770 = 2770; + * @return Whether the oneof2770 field is set. + */ + boolean hasOneof2770(); /** * int32 oneof_2770 = 2770; * @return The oneof2770. */ int getOneof2770(); + /** + * int32 oneof_2771 = 2771; + * @return Whether the oneof2771 field is set. + */ + boolean hasOneof2771(); /** * int32 oneof_2771 = 2771; * @return The oneof2771. */ int getOneof2771(); + /** + * int32 oneof_2772 = 2772; + * @return Whether the oneof2772 field is set. + */ + boolean hasOneof2772(); /** * int32 oneof_2772 = 2772; * @return The oneof2772. */ int getOneof2772(); + /** + * int32 oneof_2773 = 2773; + * @return Whether the oneof2773 field is set. + */ + boolean hasOneof2773(); /** * int32 oneof_2773 = 2773; * @return The oneof2773. */ int getOneof2773(); + /** + * int32 oneof_2774 = 2774; + * @return Whether the oneof2774 field is set. + */ + boolean hasOneof2774(); /** * int32 oneof_2774 = 2774; * @return The oneof2774. */ int getOneof2774(); + /** + * int32 oneof_2775 = 2775; + * @return Whether the oneof2775 field is set. + */ + boolean hasOneof2775(); /** * int32 oneof_2775 = 2775; * @return The oneof2775. */ int getOneof2775(); + /** + * int32 oneof_2776 = 2776; + * @return Whether the oneof2776 field is set. + */ + boolean hasOneof2776(); /** * int32 oneof_2776 = 2776; * @return The oneof2776. */ int getOneof2776(); + /** + * int32 oneof_2777 = 2777; + * @return Whether the oneof2777 field is set. + */ + boolean hasOneof2777(); /** * int32 oneof_2777 = 2777; * @return The oneof2777. */ int getOneof2777(); + /** + * int32 oneof_2778 = 2778; + * @return Whether the oneof2778 field is set. + */ + boolean hasOneof2778(); /** * int32 oneof_2778 = 2778; * @return The oneof2778. */ int getOneof2778(); + /** + * int32 oneof_2779 = 2779; + * @return Whether the oneof2779 field is set. + */ + boolean hasOneof2779(); /** * int32 oneof_2779 = 2779; * @return The oneof2779. */ int getOneof2779(); + /** + * int32 oneof_2780 = 2780; + * @return Whether the oneof2780 field is set. + */ + boolean hasOneof2780(); /** * int32 oneof_2780 = 2780; * @return The oneof2780. */ int getOneof2780(); + /** + * int32 oneof_2781 = 2781; + * @return Whether the oneof2781 field is set. + */ + boolean hasOneof2781(); /** * int32 oneof_2781 = 2781; * @return The oneof2781. */ int getOneof2781(); + /** + * int32 oneof_2782 = 2782; + * @return Whether the oneof2782 field is set. + */ + boolean hasOneof2782(); /** * int32 oneof_2782 = 2782; * @return The oneof2782. */ int getOneof2782(); + /** + * int32 oneof_2783 = 2783; + * @return Whether the oneof2783 field is set. + */ + boolean hasOneof2783(); /** * int32 oneof_2783 = 2783; * @return The oneof2783. */ int getOneof2783(); + /** + * int32 oneof_2784 = 2784; + * @return Whether the oneof2784 field is set. + */ + boolean hasOneof2784(); /** * int32 oneof_2784 = 2784; * @return The oneof2784. */ int getOneof2784(); + /** + * int32 oneof_2785 = 2785; + * @return Whether the oneof2785 field is set. + */ + boolean hasOneof2785(); /** * int32 oneof_2785 = 2785; * @return The oneof2785. */ int getOneof2785(); + /** + * int32 oneof_2786 = 2786; + * @return Whether the oneof2786 field is set. + */ + boolean hasOneof2786(); /** * int32 oneof_2786 = 2786; * @return The oneof2786. */ int getOneof2786(); + /** + * int32 oneof_2787 = 2787; + * @return Whether the oneof2787 field is set. + */ + boolean hasOneof2787(); /** * int32 oneof_2787 = 2787; * @return The oneof2787. */ int getOneof2787(); + /** + * int32 oneof_2788 = 2788; + * @return Whether the oneof2788 field is set. + */ + boolean hasOneof2788(); /** * int32 oneof_2788 = 2788; * @return The oneof2788. */ int getOneof2788(); + /** + * int32 oneof_2789 = 2789; + * @return Whether the oneof2789 field is set. + */ + boolean hasOneof2789(); /** * int32 oneof_2789 = 2789; * @return The oneof2789. */ int getOneof2789(); + /** + * int32 oneof_2790 = 2790; + * @return Whether the oneof2790 field is set. + */ + boolean hasOneof2790(); /** * int32 oneof_2790 = 2790; * @return The oneof2790. */ int getOneof2790(); + /** + * int32 oneof_2791 = 2791; + * @return Whether the oneof2791 field is set. + */ + boolean hasOneof2791(); /** * int32 oneof_2791 = 2791; * @return The oneof2791. */ int getOneof2791(); + /** + * int32 oneof_2792 = 2792; + * @return Whether the oneof2792 field is set. + */ + boolean hasOneof2792(); /** * int32 oneof_2792 = 2792; * @return The oneof2792. */ int getOneof2792(); + /** + * int32 oneof_2793 = 2793; + * @return Whether the oneof2793 field is set. + */ + boolean hasOneof2793(); /** * int32 oneof_2793 = 2793; * @return The oneof2793. */ int getOneof2793(); + /** + * int32 oneof_2794 = 2794; + * @return Whether the oneof2794 field is set. + */ + boolean hasOneof2794(); /** * int32 oneof_2794 = 2794; * @return The oneof2794. */ int getOneof2794(); + /** + * int32 oneof_2795 = 2795; + * @return Whether the oneof2795 field is set. + */ + boolean hasOneof2795(); /** * int32 oneof_2795 = 2795; * @return The oneof2795. */ int getOneof2795(); + /** + * int32 oneof_2796 = 2796; + * @return Whether the oneof2796 field is set. + */ + boolean hasOneof2796(); /** * int32 oneof_2796 = 2796; * @return The oneof2796. */ int getOneof2796(); + /** + * int32 oneof_2797 = 2797; + * @return Whether the oneof2797 field is set. + */ + boolean hasOneof2797(); /** * int32 oneof_2797 = 2797; * @return The oneof2797. */ int getOneof2797(); + /** + * int32 oneof_2798 = 2798; + * @return Whether the oneof2798 field is set. + */ + boolean hasOneof2798(); /** * int32 oneof_2798 = 2798; * @return The oneof2798. */ int getOneof2798(); + /** + * int32 oneof_2799 = 2799; + * @return Whether the oneof2799 field is set. + */ + boolean hasOneof2799(); /** * int32 oneof_2799 = 2799; * @return The oneof2799. */ int getOneof2799(); + /** + * int32 oneof_2800 = 2800; + * @return Whether the oneof2800 field is set. + */ + boolean hasOneof2800(); /** * int32 oneof_2800 = 2800; * @return The oneof2800. */ int getOneof2800(); + /** + * int32 oneof_2801 = 2801; + * @return Whether the oneof2801 field is set. + */ + boolean hasOneof2801(); /** * int32 oneof_2801 = 2801; * @return The oneof2801. */ int getOneof2801(); + /** + * int32 oneof_2802 = 2802; + * @return Whether the oneof2802 field is set. + */ + boolean hasOneof2802(); /** * int32 oneof_2802 = 2802; * @return The oneof2802. */ int getOneof2802(); + /** + * int32 oneof_2803 = 2803; + * @return Whether the oneof2803 field is set. + */ + boolean hasOneof2803(); /** * int32 oneof_2803 = 2803; * @return The oneof2803. */ int getOneof2803(); + /** + * int32 oneof_2804 = 2804; + * @return Whether the oneof2804 field is set. + */ + boolean hasOneof2804(); /** * int32 oneof_2804 = 2804; * @return The oneof2804. */ int getOneof2804(); + /** + * int32 oneof_2805 = 2805; + * @return Whether the oneof2805 field is set. + */ + boolean hasOneof2805(); /** * int32 oneof_2805 = 2805; * @return The oneof2805. */ int getOneof2805(); + /** + * int32 oneof_2806 = 2806; + * @return Whether the oneof2806 field is set. + */ + boolean hasOneof2806(); /** * int32 oneof_2806 = 2806; * @return The oneof2806. */ int getOneof2806(); + /** + * int32 oneof_2807 = 2807; + * @return Whether the oneof2807 field is set. + */ + boolean hasOneof2807(); /** * int32 oneof_2807 = 2807; * @return The oneof2807. */ int getOneof2807(); + /** + * int32 oneof_2808 = 2808; + * @return Whether the oneof2808 field is set. + */ + boolean hasOneof2808(); /** * int32 oneof_2808 = 2808; * @return The oneof2808. */ int getOneof2808(); + /** + * int32 oneof_2809 = 2809; + * @return Whether the oneof2809 field is set. + */ + boolean hasOneof2809(); /** * int32 oneof_2809 = 2809; * @return The oneof2809. */ int getOneof2809(); + /** + * int32 oneof_2810 = 2810; + * @return Whether the oneof2810 field is set. + */ + boolean hasOneof2810(); /** * int32 oneof_2810 = 2810; * @return The oneof2810. */ int getOneof2810(); + /** + * int32 oneof_2811 = 2811; + * @return Whether the oneof2811 field is set. + */ + boolean hasOneof2811(); /** * int32 oneof_2811 = 2811; * @return The oneof2811. */ int getOneof2811(); + /** + * int32 oneof_2812 = 2812; + * @return Whether the oneof2812 field is set. + */ + boolean hasOneof2812(); /** * int32 oneof_2812 = 2812; * @return The oneof2812. */ int getOneof2812(); + /** + * int32 oneof_2813 = 2813; + * @return Whether the oneof2813 field is set. + */ + boolean hasOneof2813(); /** * int32 oneof_2813 = 2813; * @return The oneof2813. */ int getOneof2813(); + /** + * int32 oneof_2814 = 2814; + * @return Whether the oneof2814 field is set. + */ + boolean hasOneof2814(); /** * int32 oneof_2814 = 2814; * @return The oneof2814. */ int getOneof2814(); + /** + * int32 oneof_2815 = 2815; + * @return Whether the oneof2815 field is set. + */ + boolean hasOneof2815(); /** * int32 oneof_2815 = 2815; * @return The oneof2815. */ int getOneof2815(); + /** + * int32 oneof_2816 = 2816; + * @return Whether the oneof2816 field is set. + */ + boolean hasOneof2816(); /** * int32 oneof_2816 = 2816; * @return The oneof2816. */ int getOneof2816(); + /** + * int32 oneof_2817 = 2817; + * @return Whether the oneof2817 field is set. + */ + boolean hasOneof2817(); /** * int32 oneof_2817 = 2817; * @return The oneof2817. */ int getOneof2817(); + /** + * int32 oneof_2818 = 2818; + * @return Whether the oneof2818 field is set. + */ + boolean hasOneof2818(); /** * int32 oneof_2818 = 2818; * @return The oneof2818. */ int getOneof2818(); + /** + * int32 oneof_2819 = 2819; + * @return Whether the oneof2819 field is set. + */ + boolean hasOneof2819(); /** * int32 oneof_2819 = 2819; * @return The oneof2819. */ int getOneof2819(); + /** + * int32 oneof_2820 = 2820; + * @return Whether the oneof2820 field is set. + */ + boolean hasOneof2820(); /** * int32 oneof_2820 = 2820; * @return The oneof2820. */ int getOneof2820(); + /** + * int32 oneof_2821 = 2821; + * @return Whether the oneof2821 field is set. + */ + boolean hasOneof2821(); /** * int32 oneof_2821 = 2821; * @return The oneof2821. */ int getOneof2821(); + /** + * int32 oneof_2822 = 2822; + * @return Whether the oneof2822 field is set. + */ + boolean hasOneof2822(); /** * int32 oneof_2822 = 2822; * @return The oneof2822. */ int getOneof2822(); + /** + * int32 oneof_2823 = 2823; + * @return Whether the oneof2823 field is set. + */ + boolean hasOneof2823(); /** * int32 oneof_2823 = 2823; * @return The oneof2823. */ int getOneof2823(); + /** + * int32 oneof_2824 = 2824; + * @return Whether the oneof2824 field is set. + */ + boolean hasOneof2824(); /** * int32 oneof_2824 = 2824; * @return The oneof2824. */ int getOneof2824(); + /** + * int32 oneof_2825 = 2825; + * @return Whether the oneof2825 field is set. + */ + boolean hasOneof2825(); /** * int32 oneof_2825 = 2825; * @return The oneof2825. */ int getOneof2825(); + /** + * int32 oneof_2826 = 2826; + * @return Whether the oneof2826 field is set. + */ + boolean hasOneof2826(); /** * int32 oneof_2826 = 2826; * @return The oneof2826. */ int getOneof2826(); + /** + * int32 oneof_2827 = 2827; + * @return Whether the oneof2827 field is set. + */ + boolean hasOneof2827(); /** * int32 oneof_2827 = 2827; * @return The oneof2827. */ int getOneof2827(); + /** + * int32 oneof_2828 = 2828; + * @return Whether the oneof2828 field is set. + */ + boolean hasOneof2828(); /** * int32 oneof_2828 = 2828; * @return The oneof2828. */ int getOneof2828(); + /** + * int32 oneof_2829 = 2829; + * @return Whether the oneof2829 field is set. + */ + boolean hasOneof2829(); /** * int32 oneof_2829 = 2829; * @return The oneof2829. */ int getOneof2829(); + /** + * int32 oneof_2830 = 2830; + * @return Whether the oneof2830 field is set. + */ + boolean hasOneof2830(); /** * int32 oneof_2830 = 2830; * @return The oneof2830. */ int getOneof2830(); + /** + * int32 oneof_2831 = 2831; + * @return Whether the oneof2831 field is set. + */ + boolean hasOneof2831(); /** * int32 oneof_2831 = 2831; * @return The oneof2831. */ int getOneof2831(); + /** + * int32 oneof_2832 = 2832; + * @return Whether the oneof2832 field is set. + */ + boolean hasOneof2832(); /** * int32 oneof_2832 = 2832; * @return The oneof2832. */ int getOneof2832(); + /** + * int32 oneof_2833 = 2833; + * @return Whether the oneof2833 field is set. + */ + boolean hasOneof2833(); /** * int32 oneof_2833 = 2833; * @return The oneof2833. */ int getOneof2833(); + /** + * int32 oneof_2834 = 2834; + * @return Whether the oneof2834 field is set. + */ + boolean hasOneof2834(); /** * int32 oneof_2834 = 2834; * @return The oneof2834. */ int getOneof2834(); + /** + * int32 oneof_2835 = 2835; + * @return Whether the oneof2835 field is set. + */ + boolean hasOneof2835(); /** * int32 oneof_2835 = 2835; * @return The oneof2835. */ int getOneof2835(); + /** + * int32 oneof_2836 = 2836; + * @return Whether the oneof2836 field is set. + */ + boolean hasOneof2836(); /** * int32 oneof_2836 = 2836; * @return The oneof2836. */ int getOneof2836(); + /** + * int32 oneof_2837 = 2837; + * @return Whether the oneof2837 field is set. + */ + boolean hasOneof2837(); /** * int32 oneof_2837 = 2837; * @return The oneof2837. */ int getOneof2837(); + /** + * int32 oneof_2838 = 2838; + * @return Whether the oneof2838 field is set. + */ + boolean hasOneof2838(); /** * int32 oneof_2838 = 2838; * @return The oneof2838. */ int getOneof2838(); + /** + * int32 oneof_2839 = 2839; + * @return Whether the oneof2839 field is set. + */ + boolean hasOneof2839(); /** * int32 oneof_2839 = 2839; * @return The oneof2839. */ int getOneof2839(); + /** + * int32 oneof_2840 = 2840; + * @return Whether the oneof2840 field is set. + */ + boolean hasOneof2840(); /** * int32 oneof_2840 = 2840; * @return The oneof2840. */ int getOneof2840(); + /** + * int32 oneof_2841 = 2841; + * @return Whether the oneof2841 field is set. + */ + boolean hasOneof2841(); /** * int32 oneof_2841 = 2841; * @return The oneof2841. */ int getOneof2841(); + /** + * int32 oneof_2842 = 2842; + * @return Whether the oneof2842 field is set. + */ + boolean hasOneof2842(); /** * int32 oneof_2842 = 2842; * @return The oneof2842. */ int getOneof2842(); + /** + * int32 oneof_2843 = 2843; + * @return Whether the oneof2843 field is set. + */ + boolean hasOneof2843(); /** * int32 oneof_2843 = 2843; * @return The oneof2843. */ int getOneof2843(); + /** + * int32 oneof_2844 = 2844; + * @return Whether the oneof2844 field is set. + */ + boolean hasOneof2844(); /** * int32 oneof_2844 = 2844; * @return The oneof2844. */ int getOneof2844(); + /** + * int32 oneof_2845 = 2845; + * @return Whether the oneof2845 field is set. + */ + boolean hasOneof2845(); /** * int32 oneof_2845 = 2845; * @return The oneof2845. */ int getOneof2845(); + /** + * int32 oneof_2846 = 2846; + * @return Whether the oneof2846 field is set. + */ + boolean hasOneof2846(); /** * int32 oneof_2846 = 2846; * @return The oneof2846. */ int getOneof2846(); + /** + * int32 oneof_2847 = 2847; + * @return Whether the oneof2847 field is set. + */ + boolean hasOneof2847(); /** * int32 oneof_2847 = 2847; * @return The oneof2847. */ int getOneof2847(); + /** + * int32 oneof_2848 = 2848; + * @return Whether the oneof2848 field is set. + */ + boolean hasOneof2848(); /** * int32 oneof_2848 = 2848; * @return The oneof2848. */ int getOneof2848(); + /** + * int32 oneof_2849 = 2849; + * @return Whether the oneof2849 field is set. + */ + boolean hasOneof2849(); /** * int32 oneof_2849 = 2849; * @return The oneof2849. */ int getOneof2849(); + /** + * int32 oneof_2850 = 2850; + * @return Whether the oneof2850 field is set. + */ + boolean hasOneof2850(); /** * int32 oneof_2850 = 2850; * @return The oneof2850. */ int getOneof2850(); + /** + * int32 oneof_2851 = 2851; + * @return Whether the oneof2851 field is set. + */ + boolean hasOneof2851(); /** * int32 oneof_2851 = 2851; * @return The oneof2851. */ int getOneof2851(); + /** + * int32 oneof_2852 = 2852; + * @return Whether the oneof2852 field is set. + */ + boolean hasOneof2852(); /** * int32 oneof_2852 = 2852; * @return The oneof2852. */ int getOneof2852(); + /** + * int32 oneof_2853 = 2853; + * @return Whether the oneof2853 field is set. + */ + boolean hasOneof2853(); /** * int32 oneof_2853 = 2853; * @return The oneof2853. */ int getOneof2853(); + /** + * int32 oneof_2854 = 2854; + * @return Whether the oneof2854 field is set. + */ + boolean hasOneof2854(); /** * int32 oneof_2854 = 2854; * @return The oneof2854. */ int getOneof2854(); + /** + * int32 oneof_2855 = 2855; + * @return Whether the oneof2855 field is set. + */ + boolean hasOneof2855(); /** * int32 oneof_2855 = 2855; * @return The oneof2855. */ int getOneof2855(); + /** + * int32 oneof_2856 = 2856; + * @return Whether the oneof2856 field is set. + */ + boolean hasOneof2856(); /** * int32 oneof_2856 = 2856; * @return The oneof2856. */ int getOneof2856(); + /** + * int32 oneof_2857 = 2857; + * @return Whether the oneof2857 field is set. + */ + boolean hasOneof2857(); /** * int32 oneof_2857 = 2857; * @return The oneof2857. */ int getOneof2857(); + /** + * int32 oneof_2858 = 2858; + * @return Whether the oneof2858 field is set. + */ + boolean hasOneof2858(); /** * int32 oneof_2858 = 2858; * @return The oneof2858. */ int getOneof2858(); + /** + * int32 oneof_2859 = 2859; + * @return Whether the oneof2859 field is set. + */ + boolean hasOneof2859(); /** * int32 oneof_2859 = 2859; * @return The oneof2859. */ int getOneof2859(); + /** + * int32 oneof_2860 = 2860; + * @return Whether the oneof2860 field is set. + */ + boolean hasOneof2860(); /** * int32 oneof_2860 = 2860; * @return The oneof2860. */ int getOneof2860(); + /** + * int32 oneof_2861 = 2861; + * @return Whether the oneof2861 field is set. + */ + boolean hasOneof2861(); /** * int32 oneof_2861 = 2861; * @return The oneof2861. */ int getOneof2861(); + /** + * int32 oneof_2862 = 2862; + * @return Whether the oneof2862 field is set. + */ + boolean hasOneof2862(); /** * int32 oneof_2862 = 2862; * @return The oneof2862. */ int getOneof2862(); + /** + * int32 oneof_2863 = 2863; + * @return Whether the oneof2863 field is set. + */ + boolean hasOneof2863(); /** * int32 oneof_2863 = 2863; * @return The oneof2863. */ int getOneof2863(); + /** + * int32 oneof_2864 = 2864; + * @return Whether the oneof2864 field is set. + */ + boolean hasOneof2864(); /** * int32 oneof_2864 = 2864; * @return The oneof2864. */ int getOneof2864(); + /** + * int32 oneof_2865 = 2865; + * @return Whether the oneof2865 field is set. + */ + boolean hasOneof2865(); /** * int32 oneof_2865 = 2865; * @return The oneof2865. */ int getOneof2865(); + /** + * int32 oneof_2866 = 2866; + * @return Whether the oneof2866 field is set. + */ + boolean hasOneof2866(); /** * int32 oneof_2866 = 2866; * @return The oneof2866. */ int getOneof2866(); + /** + * int32 oneof_2867 = 2867; + * @return Whether the oneof2867 field is set. + */ + boolean hasOneof2867(); /** * int32 oneof_2867 = 2867; * @return The oneof2867. */ int getOneof2867(); + /** + * int32 oneof_2868 = 2868; + * @return Whether the oneof2868 field is set. + */ + boolean hasOneof2868(); /** * int32 oneof_2868 = 2868; * @return The oneof2868. */ int getOneof2868(); + /** + * int32 oneof_2869 = 2869; + * @return Whether the oneof2869 field is set. + */ + boolean hasOneof2869(); /** * int32 oneof_2869 = 2869; * @return The oneof2869. */ int getOneof2869(); + /** + * int32 oneof_2870 = 2870; + * @return Whether the oneof2870 field is set. + */ + boolean hasOneof2870(); /** * int32 oneof_2870 = 2870; * @return The oneof2870. */ int getOneof2870(); + /** + * int32 oneof_2871 = 2871; + * @return Whether the oneof2871 field is set. + */ + boolean hasOneof2871(); /** * int32 oneof_2871 = 2871; * @return The oneof2871. */ int getOneof2871(); + /** + * int32 oneof_2872 = 2872; + * @return Whether the oneof2872 field is set. + */ + boolean hasOneof2872(); /** * int32 oneof_2872 = 2872; * @return The oneof2872. */ int getOneof2872(); + /** + * int32 oneof_2873 = 2873; + * @return Whether the oneof2873 field is set. + */ + boolean hasOneof2873(); /** * int32 oneof_2873 = 2873; * @return The oneof2873. */ int getOneof2873(); + /** + * int32 oneof_2874 = 2874; + * @return Whether the oneof2874 field is set. + */ + boolean hasOneof2874(); /** * int32 oneof_2874 = 2874; * @return The oneof2874. */ int getOneof2874(); + /** + * int32 oneof_2875 = 2875; + * @return Whether the oneof2875 field is set. + */ + boolean hasOneof2875(); /** * int32 oneof_2875 = 2875; * @return The oneof2875. */ int getOneof2875(); + /** + * int32 oneof_2876 = 2876; + * @return Whether the oneof2876 field is set. + */ + boolean hasOneof2876(); /** * int32 oneof_2876 = 2876; * @return The oneof2876. */ int getOneof2876(); + /** + * int32 oneof_2877 = 2877; + * @return Whether the oneof2877 field is set. + */ + boolean hasOneof2877(); /** * int32 oneof_2877 = 2877; * @return The oneof2877. */ int getOneof2877(); + /** + * int32 oneof_2878 = 2878; + * @return Whether the oneof2878 field is set. + */ + boolean hasOneof2878(); /** * int32 oneof_2878 = 2878; * @return The oneof2878. */ int getOneof2878(); + /** + * int32 oneof_2879 = 2879; + * @return Whether the oneof2879 field is set. + */ + boolean hasOneof2879(); /** * int32 oneof_2879 = 2879; * @return The oneof2879. */ int getOneof2879(); + /** + * int32 oneof_2880 = 2880; + * @return Whether the oneof2880 field is set. + */ + boolean hasOneof2880(); /** * int32 oneof_2880 = 2880; * @return The oneof2880. */ int getOneof2880(); + /** + * int32 oneof_2881 = 2881; + * @return Whether the oneof2881 field is set. + */ + boolean hasOneof2881(); /** * int32 oneof_2881 = 2881; * @return The oneof2881. */ int getOneof2881(); + /** + * int32 oneof_2882 = 2882; + * @return Whether the oneof2882 field is set. + */ + boolean hasOneof2882(); /** * int32 oneof_2882 = 2882; * @return The oneof2882. */ int getOneof2882(); + /** + * int32 oneof_2883 = 2883; + * @return Whether the oneof2883 field is set. + */ + boolean hasOneof2883(); /** * int32 oneof_2883 = 2883; * @return The oneof2883. */ int getOneof2883(); + /** + * int32 oneof_2884 = 2884; + * @return Whether the oneof2884 field is set. + */ + boolean hasOneof2884(); /** * int32 oneof_2884 = 2884; * @return The oneof2884. */ int getOneof2884(); + /** + * int32 oneof_2885 = 2885; + * @return Whether the oneof2885 field is set. + */ + boolean hasOneof2885(); /** * int32 oneof_2885 = 2885; * @return The oneof2885. */ int getOneof2885(); + /** + * int32 oneof_2886 = 2886; + * @return Whether the oneof2886 field is set. + */ + boolean hasOneof2886(); /** * int32 oneof_2886 = 2886; * @return The oneof2886. */ int getOneof2886(); + /** + * int32 oneof_2887 = 2887; + * @return Whether the oneof2887 field is set. + */ + boolean hasOneof2887(); /** * int32 oneof_2887 = 2887; * @return The oneof2887. */ int getOneof2887(); + /** + * int32 oneof_2888 = 2888; + * @return Whether the oneof2888 field is set. + */ + boolean hasOneof2888(); /** * int32 oneof_2888 = 2888; * @return The oneof2888. */ int getOneof2888(); + /** + * int32 oneof_2889 = 2889; + * @return Whether the oneof2889 field is set. + */ + boolean hasOneof2889(); /** * int32 oneof_2889 = 2889; * @return The oneof2889. */ int getOneof2889(); + /** + * int32 oneof_2890 = 2890; + * @return Whether the oneof2890 field is set. + */ + boolean hasOneof2890(); /** * int32 oneof_2890 = 2890; * @return The oneof2890. */ int getOneof2890(); + /** + * int32 oneof_2891 = 2891; + * @return Whether the oneof2891 field is set. + */ + boolean hasOneof2891(); /** * int32 oneof_2891 = 2891; * @return The oneof2891. */ int getOneof2891(); + /** + * int32 oneof_2892 = 2892; + * @return Whether the oneof2892 field is set. + */ + boolean hasOneof2892(); /** * int32 oneof_2892 = 2892; * @return The oneof2892. */ int getOneof2892(); + /** + * int32 oneof_2893 = 2893; + * @return Whether the oneof2893 field is set. + */ + boolean hasOneof2893(); /** * int32 oneof_2893 = 2893; * @return The oneof2893. */ int getOneof2893(); + /** + * int32 oneof_2894 = 2894; + * @return Whether the oneof2894 field is set. + */ + boolean hasOneof2894(); /** * int32 oneof_2894 = 2894; * @return The oneof2894. */ int getOneof2894(); + /** + * int32 oneof_2895 = 2895; + * @return Whether the oneof2895 field is set. + */ + boolean hasOneof2895(); /** * int32 oneof_2895 = 2895; * @return The oneof2895. */ int getOneof2895(); + /** + * int32 oneof_2896 = 2896; + * @return Whether the oneof2896 field is set. + */ + boolean hasOneof2896(); /** * int32 oneof_2896 = 2896; * @return The oneof2896. */ int getOneof2896(); + /** + * int32 oneof_2897 = 2897; + * @return Whether the oneof2897 field is set. + */ + boolean hasOneof2897(); /** * int32 oneof_2897 = 2897; * @return The oneof2897. */ int getOneof2897(); + /** + * int32 oneof_2898 = 2898; + * @return Whether the oneof2898 field is set. + */ + boolean hasOneof2898(); /** * int32 oneof_2898 = 2898; * @return The oneof2898. */ int getOneof2898(); + /** + * int32 oneof_2899 = 2899; + * @return Whether the oneof2899 field is set. + */ + boolean hasOneof2899(); /** * int32 oneof_2899 = 2899; * @return The oneof2899. */ int getOneof2899(); + /** + * int32 oneof_2900 = 2900; + * @return Whether the oneof2900 field is set. + */ + boolean hasOneof2900(); /** * int32 oneof_2900 = 2900; * @return The oneof2900. */ int getOneof2900(); + /** + * int32 oneof_2901 = 2901; + * @return Whether the oneof2901 field is set. + */ + boolean hasOneof2901(); /** * int32 oneof_2901 = 2901; * @return The oneof2901. */ int getOneof2901(); + /** + * int32 oneof_2902 = 2902; + * @return Whether the oneof2902 field is set. + */ + boolean hasOneof2902(); /** * int32 oneof_2902 = 2902; * @return The oneof2902. */ int getOneof2902(); + /** + * int32 oneof_2903 = 2903; + * @return Whether the oneof2903 field is set. + */ + boolean hasOneof2903(); /** * int32 oneof_2903 = 2903; * @return The oneof2903. */ int getOneof2903(); + /** + * int32 oneof_2904 = 2904; + * @return Whether the oneof2904 field is set. + */ + boolean hasOneof2904(); /** * int32 oneof_2904 = 2904; * @return The oneof2904. */ int getOneof2904(); + /** + * int32 oneof_2905 = 2905; + * @return Whether the oneof2905 field is set. + */ + boolean hasOneof2905(); /** * int32 oneof_2905 = 2905; * @return The oneof2905. */ int getOneof2905(); + /** + * int32 oneof_2906 = 2906; + * @return Whether the oneof2906 field is set. + */ + boolean hasOneof2906(); /** * int32 oneof_2906 = 2906; * @return The oneof2906. */ int getOneof2906(); + /** + * int32 oneof_2907 = 2907; + * @return Whether the oneof2907 field is set. + */ + boolean hasOneof2907(); /** * int32 oneof_2907 = 2907; * @return The oneof2907. */ int getOneof2907(); + /** + * int32 oneof_2908 = 2908; + * @return Whether the oneof2908 field is set. + */ + boolean hasOneof2908(); /** * int32 oneof_2908 = 2908; * @return The oneof2908. */ int getOneof2908(); + /** + * int32 oneof_2909 = 2909; + * @return Whether the oneof2909 field is set. + */ + boolean hasOneof2909(); /** * int32 oneof_2909 = 2909; * @return The oneof2909. */ int getOneof2909(); + /** + * int32 oneof_2910 = 2910; + * @return Whether the oneof2910 field is set. + */ + boolean hasOneof2910(); /** * int32 oneof_2910 = 2910; * @return The oneof2910. */ int getOneof2910(); + /** + * int32 oneof_2911 = 2911; + * @return Whether the oneof2911 field is set. + */ + boolean hasOneof2911(); /** * int32 oneof_2911 = 2911; * @return The oneof2911. */ int getOneof2911(); + /** + * int32 oneof_2912 = 2912; + * @return Whether the oneof2912 field is set. + */ + boolean hasOneof2912(); /** * int32 oneof_2912 = 2912; * @return The oneof2912. */ int getOneof2912(); + /** + * int32 oneof_2913 = 2913; + * @return Whether the oneof2913 field is set. + */ + boolean hasOneof2913(); /** * int32 oneof_2913 = 2913; * @return The oneof2913. */ int getOneof2913(); + /** + * int32 oneof_2914 = 2914; + * @return Whether the oneof2914 field is set. + */ + boolean hasOneof2914(); /** * int32 oneof_2914 = 2914; * @return The oneof2914. */ int getOneof2914(); + /** + * int32 oneof_2915 = 2915; + * @return Whether the oneof2915 field is set. + */ + boolean hasOneof2915(); /** * int32 oneof_2915 = 2915; * @return The oneof2915. */ int getOneof2915(); + /** + * int32 oneof_2916 = 2916; + * @return Whether the oneof2916 field is set. + */ + boolean hasOneof2916(); /** * int32 oneof_2916 = 2916; * @return The oneof2916. */ int getOneof2916(); + /** + * int32 oneof_2917 = 2917; + * @return Whether the oneof2917 field is set. + */ + boolean hasOneof2917(); /** * int32 oneof_2917 = 2917; * @return The oneof2917. */ int getOneof2917(); + /** + * int32 oneof_2918 = 2918; + * @return Whether the oneof2918 field is set. + */ + boolean hasOneof2918(); /** * int32 oneof_2918 = 2918; * @return The oneof2918. */ int getOneof2918(); + /** + * int32 oneof_2919 = 2919; + * @return Whether the oneof2919 field is set. + */ + boolean hasOneof2919(); /** * int32 oneof_2919 = 2919; * @return The oneof2919. */ int getOneof2919(); + /** + * int32 oneof_2920 = 2920; + * @return Whether the oneof2920 field is set. + */ + boolean hasOneof2920(); /** * int32 oneof_2920 = 2920; * @return The oneof2920. */ int getOneof2920(); + /** + * int32 oneof_2921 = 2921; + * @return Whether the oneof2921 field is set. + */ + boolean hasOneof2921(); /** * int32 oneof_2921 = 2921; * @return The oneof2921. */ int getOneof2921(); + /** + * int32 oneof_2922 = 2922; + * @return Whether the oneof2922 field is set. + */ + boolean hasOneof2922(); /** * int32 oneof_2922 = 2922; * @return The oneof2922. */ int getOneof2922(); + /** + * int32 oneof_2923 = 2923; + * @return Whether the oneof2923 field is set. + */ + boolean hasOneof2923(); /** * int32 oneof_2923 = 2923; * @return The oneof2923. */ int getOneof2923(); + /** + * int32 oneof_2924 = 2924; + * @return Whether the oneof2924 field is set. + */ + boolean hasOneof2924(); /** * int32 oneof_2924 = 2924; * @return The oneof2924. */ int getOneof2924(); + /** + * int32 oneof_2925 = 2925; + * @return Whether the oneof2925 field is set. + */ + boolean hasOneof2925(); /** * int32 oneof_2925 = 2925; * @return The oneof2925. */ int getOneof2925(); + /** + * int32 oneof_2926 = 2926; + * @return Whether the oneof2926 field is set. + */ + boolean hasOneof2926(); /** * int32 oneof_2926 = 2926; * @return The oneof2926. */ int getOneof2926(); + /** + * int32 oneof_2927 = 2927; + * @return Whether the oneof2927 field is set. + */ + boolean hasOneof2927(); /** * int32 oneof_2927 = 2927; * @return The oneof2927. */ int getOneof2927(); + /** + * int32 oneof_2928 = 2928; + * @return Whether the oneof2928 field is set. + */ + boolean hasOneof2928(); /** * int32 oneof_2928 = 2928; * @return The oneof2928. */ int getOneof2928(); + /** + * int32 oneof_2929 = 2929; + * @return Whether the oneof2929 field is set. + */ + boolean hasOneof2929(); /** * int32 oneof_2929 = 2929; * @return The oneof2929. */ int getOneof2929(); + /** + * int32 oneof_2930 = 2930; + * @return Whether the oneof2930 field is set. + */ + boolean hasOneof2930(); /** * int32 oneof_2930 = 2930; * @return The oneof2930. */ int getOneof2930(); + /** + * int32 oneof_2931 = 2931; + * @return Whether the oneof2931 field is set. + */ + boolean hasOneof2931(); /** * int32 oneof_2931 = 2931; * @return The oneof2931. */ int getOneof2931(); + /** + * int32 oneof_2932 = 2932; + * @return Whether the oneof2932 field is set. + */ + boolean hasOneof2932(); /** * int32 oneof_2932 = 2932; * @return The oneof2932. */ int getOneof2932(); + /** + * int32 oneof_2933 = 2933; + * @return Whether the oneof2933 field is set. + */ + boolean hasOneof2933(); /** * int32 oneof_2933 = 2933; * @return The oneof2933. */ int getOneof2933(); + /** + * int32 oneof_2934 = 2934; + * @return Whether the oneof2934 field is set. + */ + boolean hasOneof2934(); /** * int32 oneof_2934 = 2934; * @return The oneof2934. */ int getOneof2934(); + /** + * int32 oneof_2935 = 2935; + * @return Whether the oneof2935 field is set. + */ + boolean hasOneof2935(); /** * int32 oneof_2935 = 2935; * @return The oneof2935. */ int getOneof2935(); + /** + * int32 oneof_2936 = 2936; + * @return Whether the oneof2936 field is set. + */ + boolean hasOneof2936(); /** * int32 oneof_2936 = 2936; * @return The oneof2936. */ int getOneof2936(); + /** + * int32 oneof_2937 = 2937; + * @return Whether the oneof2937 field is set. + */ + boolean hasOneof2937(); /** * int32 oneof_2937 = 2937; * @return The oneof2937. */ int getOneof2937(); + /** + * int32 oneof_2938 = 2938; + * @return Whether the oneof2938 field is set. + */ + boolean hasOneof2938(); /** * int32 oneof_2938 = 2938; * @return The oneof2938. */ int getOneof2938(); + /** + * int32 oneof_2939 = 2939; + * @return Whether the oneof2939 field is set. + */ + boolean hasOneof2939(); /** * int32 oneof_2939 = 2939; * @return The oneof2939. */ int getOneof2939(); + /** + * int32 oneof_2940 = 2940; + * @return Whether the oneof2940 field is set. + */ + boolean hasOneof2940(); /** * int32 oneof_2940 = 2940; * @return The oneof2940. */ int getOneof2940(); + /** + * int32 oneof_2941 = 2941; + * @return Whether the oneof2941 field is set. + */ + boolean hasOneof2941(); /** * int32 oneof_2941 = 2941; * @return The oneof2941. */ int getOneof2941(); + /** + * int32 oneof_2942 = 2942; + * @return Whether the oneof2942 field is set. + */ + boolean hasOneof2942(); /** * int32 oneof_2942 = 2942; * @return The oneof2942. */ int getOneof2942(); + /** + * int32 oneof_2943 = 2943; + * @return Whether the oneof2943 field is set. + */ + boolean hasOneof2943(); /** * int32 oneof_2943 = 2943; * @return The oneof2943. */ int getOneof2943(); + /** + * int32 oneof_2944 = 2944; + * @return Whether the oneof2944 field is set. + */ + boolean hasOneof2944(); /** * int32 oneof_2944 = 2944; * @return The oneof2944. */ int getOneof2944(); + /** + * int32 oneof_2945 = 2945; + * @return Whether the oneof2945 field is set. + */ + boolean hasOneof2945(); /** * int32 oneof_2945 = 2945; * @return The oneof2945. */ int getOneof2945(); + /** + * int32 oneof_2946 = 2946; + * @return Whether the oneof2946 field is set. + */ + boolean hasOneof2946(); /** * int32 oneof_2946 = 2946; * @return The oneof2946. */ int getOneof2946(); + /** + * int32 oneof_2947 = 2947; + * @return Whether the oneof2947 field is set. + */ + boolean hasOneof2947(); /** * int32 oneof_2947 = 2947; * @return The oneof2947. */ int getOneof2947(); + /** + * int32 oneof_2948 = 2948; + * @return Whether the oneof2948 field is set. + */ + boolean hasOneof2948(); /** * int32 oneof_2948 = 2948; * @return The oneof2948. */ int getOneof2948(); + /** + * int32 oneof_2949 = 2949; + * @return Whether the oneof2949 field is set. + */ + boolean hasOneof2949(); /** * int32 oneof_2949 = 2949; * @return The oneof2949. */ int getOneof2949(); + /** + * int32 oneof_2950 = 2950; + * @return Whether the oneof2950 field is set. + */ + boolean hasOneof2950(); /** * int32 oneof_2950 = 2950; * @return The oneof2950. */ int getOneof2950(); + /** + * int32 oneof_2951 = 2951; + * @return Whether the oneof2951 field is set. + */ + boolean hasOneof2951(); /** * int32 oneof_2951 = 2951; * @return The oneof2951. */ int getOneof2951(); + /** + * int32 oneof_2952 = 2952; + * @return Whether the oneof2952 field is set. + */ + boolean hasOneof2952(); /** * int32 oneof_2952 = 2952; * @return The oneof2952. */ int getOneof2952(); + /** + * int32 oneof_2953 = 2953; + * @return Whether the oneof2953 field is set. + */ + boolean hasOneof2953(); /** * int32 oneof_2953 = 2953; * @return The oneof2953. */ int getOneof2953(); + /** + * int32 oneof_2954 = 2954; + * @return Whether the oneof2954 field is set. + */ + boolean hasOneof2954(); /** * int32 oneof_2954 = 2954; * @return The oneof2954. */ int getOneof2954(); + /** + * int32 oneof_2955 = 2955; + * @return Whether the oneof2955 field is set. + */ + boolean hasOneof2955(); /** * int32 oneof_2955 = 2955; * @return The oneof2955. */ int getOneof2955(); + /** + * int32 oneof_2956 = 2956; + * @return Whether the oneof2956 field is set. + */ + boolean hasOneof2956(); /** * int32 oneof_2956 = 2956; * @return The oneof2956. */ int getOneof2956(); + /** + * int32 oneof_2957 = 2957; + * @return Whether the oneof2957 field is set. + */ + boolean hasOneof2957(); /** * int32 oneof_2957 = 2957; * @return The oneof2957. */ int getOneof2957(); + /** + * int32 oneof_2958 = 2958; + * @return Whether the oneof2958 field is set. + */ + boolean hasOneof2958(); /** * int32 oneof_2958 = 2958; * @return The oneof2958. */ int getOneof2958(); + /** + * int32 oneof_2959 = 2959; + * @return Whether the oneof2959 field is set. + */ + boolean hasOneof2959(); /** * int32 oneof_2959 = 2959; * @return The oneof2959. */ int getOneof2959(); + /** + * int32 oneof_2960 = 2960; + * @return Whether the oneof2960 field is set. + */ + boolean hasOneof2960(); /** * int32 oneof_2960 = 2960; * @return The oneof2960. */ int getOneof2960(); + /** + * int32 oneof_2961 = 2961; + * @return Whether the oneof2961 field is set. + */ + boolean hasOneof2961(); /** * int32 oneof_2961 = 2961; * @return The oneof2961. */ int getOneof2961(); + /** + * int32 oneof_2962 = 2962; + * @return Whether the oneof2962 field is set. + */ + boolean hasOneof2962(); /** * int32 oneof_2962 = 2962; * @return The oneof2962. */ int getOneof2962(); + /** + * int32 oneof_2963 = 2963; + * @return Whether the oneof2963 field is set. + */ + boolean hasOneof2963(); /** * int32 oneof_2963 = 2963; * @return The oneof2963. */ int getOneof2963(); + /** + * int32 oneof_2964 = 2964; + * @return Whether the oneof2964 field is set. + */ + boolean hasOneof2964(); /** * int32 oneof_2964 = 2964; * @return The oneof2964. */ int getOneof2964(); + /** + * int32 oneof_2965 = 2965; + * @return Whether the oneof2965 field is set. + */ + boolean hasOneof2965(); /** * int32 oneof_2965 = 2965; * @return The oneof2965. */ int getOneof2965(); + /** + * int32 oneof_2966 = 2966; + * @return Whether the oneof2966 field is set. + */ + boolean hasOneof2966(); /** * int32 oneof_2966 = 2966; * @return The oneof2966. */ int getOneof2966(); + /** + * int32 oneof_2967 = 2967; + * @return Whether the oneof2967 field is set. + */ + boolean hasOneof2967(); /** * int32 oneof_2967 = 2967; * @return The oneof2967. */ int getOneof2967(); + /** + * int32 oneof_2968 = 2968; + * @return Whether the oneof2968 field is set. + */ + boolean hasOneof2968(); /** * int32 oneof_2968 = 2968; * @return The oneof2968. */ int getOneof2968(); + /** + * int32 oneof_2969 = 2969; + * @return Whether the oneof2969 field is set. + */ + boolean hasOneof2969(); /** * int32 oneof_2969 = 2969; * @return The oneof2969. */ int getOneof2969(); + /** + * int32 oneof_2970 = 2970; + * @return Whether the oneof2970 field is set. + */ + boolean hasOneof2970(); /** * int32 oneof_2970 = 2970; * @return The oneof2970. */ int getOneof2970(); + /** + * int32 oneof_2971 = 2971; + * @return Whether the oneof2971 field is set. + */ + boolean hasOneof2971(); /** * int32 oneof_2971 = 2971; * @return The oneof2971. */ int getOneof2971(); + /** + * int32 oneof_2972 = 2972; + * @return Whether the oneof2972 field is set. + */ + boolean hasOneof2972(); /** * int32 oneof_2972 = 2972; * @return The oneof2972. */ int getOneof2972(); + /** + * int32 oneof_2973 = 2973; + * @return Whether the oneof2973 field is set. + */ + boolean hasOneof2973(); /** * int32 oneof_2973 = 2973; * @return The oneof2973. */ int getOneof2973(); + /** + * int32 oneof_2974 = 2974; + * @return Whether the oneof2974 field is set. + */ + boolean hasOneof2974(); /** * int32 oneof_2974 = 2974; * @return The oneof2974. */ int getOneof2974(); + /** + * int32 oneof_2975 = 2975; + * @return Whether the oneof2975 field is set. + */ + boolean hasOneof2975(); /** * int32 oneof_2975 = 2975; * @return The oneof2975. */ int getOneof2975(); + /** + * int32 oneof_2976 = 2976; + * @return Whether the oneof2976 field is set. + */ + boolean hasOneof2976(); /** * int32 oneof_2976 = 2976; * @return The oneof2976. */ int getOneof2976(); + /** + * int32 oneof_2977 = 2977; + * @return Whether the oneof2977 field is set. + */ + boolean hasOneof2977(); /** * int32 oneof_2977 = 2977; * @return The oneof2977. */ int getOneof2977(); + /** + * int32 oneof_2978 = 2978; + * @return Whether the oneof2978 field is set. + */ + boolean hasOneof2978(); /** * int32 oneof_2978 = 2978; * @return The oneof2978. */ int getOneof2978(); + /** + * int32 oneof_2979 = 2979; + * @return Whether the oneof2979 field is set. + */ + boolean hasOneof2979(); /** * int32 oneof_2979 = 2979; * @return The oneof2979. */ int getOneof2979(); + /** + * int32 oneof_2980 = 2980; + * @return Whether the oneof2980 field is set. + */ + boolean hasOneof2980(); /** * int32 oneof_2980 = 2980; * @return The oneof2980. */ int getOneof2980(); + /** + * int32 oneof_2981 = 2981; + * @return Whether the oneof2981 field is set. + */ + boolean hasOneof2981(); /** * int32 oneof_2981 = 2981; * @return The oneof2981. */ int getOneof2981(); + /** + * int32 oneof_2982 = 2982; + * @return Whether the oneof2982 field is set. + */ + boolean hasOneof2982(); /** * int32 oneof_2982 = 2982; * @return The oneof2982. */ int getOneof2982(); + /** + * int32 oneof_2983 = 2983; + * @return Whether the oneof2983 field is set. + */ + boolean hasOneof2983(); /** * int32 oneof_2983 = 2983; * @return The oneof2983. */ int getOneof2983(); + /** + * int32 oneof_2984 = 2984; + * @return Whether the oneof2984 field is set. + */ + boolean hasOneof2984(); /** * int32 oneof_2984 = 2984; * @return The oneof2984. */ int getOneof2984(); + /** + * int32 oneof_2985 = 2985; + * @return Whether the oneof2985 field is set. + */ + boolean hasOneof2985(); /** * int32 oneof_2985 = 2985; * @return The oneof2985. */ int getOneof2985(); + /** + * int32 oneof_2986 = 2986; + * @return Whether the oneof2986 field is set. + */ + boolean hasOneof2986(); /** * int32 oneof_2986 = 2986; * @return The oneof2986. */ int getOneof2986(); + /** + * int32 oneof_2987 = 2987; + * @return Whether the oneof2987 field is set. + */ + boolean hasOneof2987(); /** * int32 oneof_2987 = 2987; * @return The oneof2987. */ int getOneof2987(); + /** + * int32 oneof_2988 = 2988; + * @return Whether the oneof2988 field is set. + */ + boolean hasOneof2988(); /** * int32 oneof_2988 = 2988; * @return The oneof2988. */ int getOneof2988(); + /** + * int32 oneof_2989 = 2989; + * @return Whether the oneof2989 field is set. + */ + boolean hasOneof2989(); /** * int32 oneof_2989 = 2989; * @return The oneof2989. */ int getOneof2989(); + /** + * int32 oneof_2990 = 2990; + * @return Whether the oneof2990 field is set. + */ + boolean hasOneof2990(); /** * int32 oneof_2990 = 2990; * @return The oneof2990. */ int getOneof2990(); + /** + * int32 oneof_2991 = 2991; + * @return Whether the oneof2991 field is set. + */ + boolean hasOneof2991(); /** * int32 oneof_2991 = 2991; * @return The oneof2991. */ int getOneof2991(); + /** + * int32 oneof_2992 = 2992; + * @return Whether the oneof2992 field is set. + */ + boolean hasOneof2992(); /** * int32 oneof_2992 = 2992; * @return The oneof2992. */ int getOneof2992(); + /** + * int32 oneof_2993 = 2993; + * @return Whether the oneof2993 field is set. + */ + boolean hasOneof2993(); /** * int32 oneof_2993 = 2993; * @return The oneof2993. */ int getOneof2993(); + /** + * int32 oneof_2994 = 2994; + * @return Whether the oneof2994 field is set. + */ + boolean hasOneof2994(); /** * int32 oneof_2994 = 2994; * @return The oneof2994. */ int getOneof2994(); + /** + * int32 oneof_2995 = 2995; + * @return Whether the oneof2995 field is set. + */ + boolean hasOneof2995(); /** * int32 oneof_2995 = 2995; * @return The oneof2995. */ int getOneof2995(); + /** + * int32 oneof_2996 = 2996; + * @return Whether the oneof2996 field is set. + */ + boolean hasOneof2996(); /** * int32 oneof_2996 = 2996; * @return The oneof2996. */ int getOneof2996(); + /** + * int32 oneof_2997 = 2997; + * @return Whether the oneof2997 field is set. + */ + boolean hasOneof2997(); /** * int32 oneof_2997 = 2997; * @return The oneof2997. */ int getOneof2997(); + /** + * int32 oneof_2998 = 2998; + * @return Whether the oneof2998 field is set. + */ + boolean hasOneof2998(); /** * int32 oneof_2998 = 2998; * @return The oneof2998. */ int getOneof2998(); + /** + * int32 oneof_2999 = 2999; + * @return Whether the oneof2999 field is set. + */ + boolean hasOneof2999(); /** * int32 oneof_2999 = 2999; * @return The oneof2999. @@ -169536,7 +181540,7 @@ public interface MessageWithHugeOneofOrBuilder extends /** * Protobuf type {@code pbandk.testpb.MessageWithHugeOneof} */ - public static final class MessageWithHugeOneof extends + public static final class MessageWithHugeOneof extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:pbandk.testpb.MessageWithHugeOneof) MessageWithHugeOneofOrBuilder { @@ -183648,10 +195652,19 @@ public int getNumber() { } public static final int ONEOF_1000_FIELD_NUMBER = 1000; + /** + * int32 oneof_1000 = 1000; + * @return Whether the oneof1000 field is set. + */ + @java.lang.Override + public boolean hasOneof1000() { + return hugeOneofCase_ == 1000; + } /** * int32 oneof_1000 = 1000; * @return The oneof1000. */ + @java.lang.Override public int getOneof1000() { if (hugeOneofCase_ == 1000) { return (java.lang.Integer) hugeOneof_; @@ -183660,10 +195673,19 @@ public int getOneof1000() { } public static final int ONEOF_1001_FIELD_NUMBER = 1001; + /** + * int32 oneof_1001 = 1001; + * @return Whether the oneof1001 field is set. + */ + @java.lang.Override + public boolean hasOneof1001() { + return hugeOneofCase_ == 1001; + } /** * int32 oneof_1001 = 1001; * @return The oneof1001. */ + @java.lang.Override public int getOneof1001() { if (hugeOneofCase_ == 1001) { return (java.lang.Integer) hugeOneof_; @@ -183672,10 +195694,19 @@ public int getOneof1001() { } public static final int ONEOF_1002_FIELD_NUMBER = 1002; + /** + * int32 oneof_1002 = 1002; + * @return Whether the oneof1002 field is set. + */ + @java.lang.Override + public boolean hasOneof1002() { + return hugeOneofCase_ == 1002; + } /** * int32 oneof_1002 = 1002; * @return The oneof1002. */ + @java.lang.Override public int getOneof1002() { if (hugeOneofCase_ == 1002) { return (java.lang.Integer) hugeOneof_; @@ -183684,10 +195715,19 @@ public int getOneof1002() { } public static final int ONEOF_1003_FIELD_NUMBER = 1003; + /** + * int32 oneof_1003 = 1003; + * @return Whether the oneof1003 field is set. + */ + @java.lang.Override + public boolean hasOneof1003() { + return hugeOneofCase_ == 1003; + } /** * int32 oneof_1003 = 1003; * @return The oneof1003. */ + @java.lang.Override public int getOneof1003() { if (hugeOneofCase_ == 1003) { return (java.lang.Integer) hugeOneof_; @@ -183696,10 +195736,19 @@ public int getOneof1003() { } public static final int ONEOF_1004_FIELD_NUMBER = 1004; + /** + * int32 oneof_1004 = 1004; + * @return Whether the oneof1004 field is set. + */ + @java.lang.Override + public boolean hasOneof1004() { + return hugeOneofCase_ == 1004; + } /** * int32 oneof_1004 = 1004; * @return The oneof1004. */ + @java.lang.Override public int getOneof1004() { if (hugeOneofCase_ == 1004) { return (java.lang.Integer) hugeOneof_; @@ -183708,10 +195757,19 @@ public int getOneof1004() { } public static final int ONEOF_1005_FIELD_NUMBER = 1005; + /** + * int32 oneof_1005 = 1005; + * @return Whether the oneof1005 field is set. + */ + @java.lang.Override + public boolean hasOneof1005() { + return hugeOneofCase_ == 1005; + } /** * int32 oneof_1005 = 1005; * @return The oneof1005. */ + @java.lang.Override public int getOneof1005() { if (hugeOneofCase_ == 1005) { return (java.lang.Integer) hugeOneof_; @@ -183720,10 +195778,19 @@ public int getOneof1005() { } public static final int ONEOF_1006_FIELD_NUMBER = 1006; + /** + * int32 oneof_1006 = 1006; + * @return Whether the oneof1006 field is set. + */ + @java.lang.Override + public boolean hasOneof1006() { + return hugeOneofCase_ == 1006; + } /** * int32 oneof_1006 = 1006; * @return The oneof1006. */ + @java.lang.Override public int getOneof1006() { if (hugeOneofCase_ == 1006) { return (java.lang.Integer) hugeOneof_; @@ -183732,10 +195799,19 @@ public int getOneof1006() { } public static final int ONEOF_1007_FIELD_NUMBER = 1007; + /** + * int32 oneof_1007 = 1007; + * @return Whether the oneof1007 field is set. + */ + @java.lang.Override + public boolean hasOneof1007() { + return hugeOneofCase_ == 1007; + } /** * int32 oneof_1007 = 1007; * @return The oneof1007. */ + @java.lang.Override public int getOneof1007() { if (hugeOneofCase_ == 1007) { return (java.lang.Integer) hugeOneof_; @@ -183744,10 +195820,19 @@ public int getOneof1007() { } public static final int ONEOF_1008_FIELD_NUMBER = 1008; + /** + * int32 oneof_1008 = 1008; + * @return Whether the oneof1008 field is set. + */ + @java.lang.Override + public boolean hasOneof1008() { + return hugeOneofCase_ == 1008; + } /** * int32 oneof_1008 = 1008; * @return The oneof1008. */ + @java.lang.Override public int getOneof1008() { if (hugeOneofCase_ == 1008) { return (java.lang.Integer) hugeOneof_; @@ -183756,10 +195841,19 @@ public int getOneof1008() { } public static final int ONEOF_1009_FIELD_NUMBER = 1009; + /** + * int32 oneof_1009 = 1009; + * @return Whether the oneof1009 field is set. + */ + @java.lang.Override + public boolean hasOneof1009() { + return hugeOneofCase_ == 1009; + } /** * int32 oneof_1009 = 1009; * @return The oneof1009. */ + @java.lang.Override public int getOneof1009() { if (hugeOneofCase_ == 1009) { return (java.lang.Integer) hugeOneof_; @@ -183768,10 +195862,19 @@ public int getOneof1009() { } public static final int ONEOF_1010_FIELD_NUMBER = 1010; + /** + * int32 oneof_1010 = 1010; + * @return Whether the oneof1010 field is set. + */ + @java.lang.Override + public boolean hasOneof1010() { + return hugeOneofCase_ == 1010; + } /** * int32 oneof_1010 = 1010; * @return The oneof1010. */ + @java.lang.Override public int getOneof1010() { if (hugeOneofCase_ == 1010) { return (java.lang.Integer) hugeOneof_; @@ -183780,10 +195883,19 @@ public int getOneof1010() { } public static final int ONEOF_1011_FIELD_NUMBER = 1011; + /** + * int32 oneof_1011 = 1011; + * @return Whether the oneof1011 field is set. + */ + @java.lang.Override + public boolean hasOneof1011() { + return hugeOneofCase_ == 1011; + } /** * int32 oneof_1011 = 1011; * @return The oneof1011. */ + @java.lang.Override public int getOneof1011() { if (hugeOneofCase_ == 1011) { return (java.lang.Integer) hugeOneof_; @@ -183792,10 +195904,19 @@ public int getOneof1011() { } public static final int ONEOF_1012_FIELD_NUMBER = 1012; + /** + * int32 oneof_1012 = 1012; + * @return Whether the oneof1012 field is set. + */ + @java.lang.Override + public boolean hasOneof1012() { + return hugeOneofCase_ == 1012; + } /** * int32 oneof_1012 = 1012; * @return The oneof1012. */ + @java.lang.Override public int getOneof1012() { if (hugeOneofCase_ == 1012) { return (java.lang.Integer) hugeOneof_; @@ -183804,10 +195925,19 @@ public int getOneof1012() { } public static final int ONEOF_1013_FIELD_NUMBER = 1013; + /** + * int32 oneof_1013 = 1013; + * @return Whether the oneof1013 field is set. + */ + @java.lang.Override + public boolean hasOneof1013() { + return hugeOneofCase_ == 1013; + } /** * int32 oneof_1013 = 1013; * @return The oneof1013. */ + @java.lang.Override public int getOneof1013() { if (hugeOneofCase_ == 1013) { return (java.lang.Integer) hugeOneof_; @@ -183816,10 +195946,19 @@ public int getOneof1013() { } public static final int ONEOF_1014_FIELD_NUMBER = 1014; + /** + * int32 oneof_1014 = 1014; + * @return Whether the oneof1014 field is set. + */ + @java.lang.Override + public boolean hasOneof1014() { + return hugeOneofCase_ == 1014; + } /** * int32 oneof_1014 = 1014; * @return The oneof1014. */ + @java.lang.Override public int getOneof1014() { if (hugeOneofCase_ == 1014) { return (java.lang.Integer) hugeOneof_; @@ -183828,10 +195967,19 @@ public int getOneof1014() { } public static final int ONEOF_1015_FIELD_NUMBER = 1015; + /** + * int32 oneof_1015 = 1015; + * @return Whether the oneof1015 field is set. + */ + @java.lang.Override + public boolean hasOneof1015() { + return hugeOneofCase_ == 1015; + } /** * int32 oneof_1015 = 1015; * @return The oneof1015. */ + @java.lang.Override public int getOneof1015() { if (hugeOneofCase_ == 1015) { return (java.lang.Integer) hugeOneof_; @@ -183840,10 +195988,19 @@ public int getOneof1015() { } public static final int ONEOF_1016_FIELD_NUMBER = 1016; + /** + * int32 oneof_1016 = 1016; + * @return Whether the oneof1016 field is set. + */ + @java.lang.Override + public boolean hasOneof1016() { + return hugeOneofCase_ == 1016; + } /** * int32 oneof_1016 = 1016; * @return The oneof1016. */ + @java.lang.Override public int getOneof1016() { if (hugeOneofCase_ == 1016) { return (java.lang.Integer) hugeOneof_; @@ -183852,10 +196009,19 @@ public int getOneof1016() { } public static final int ONEOF_1017_FIELD_NUMBER = 1017; + /** + * int32 oneof_1017 = 1017; + * @return Whether the oneof1017 field is set. + */ + @java.lang.Override + public boolean hasOneof1017() { + return hugeOneofCase_ == 1017; + } /** * int32 oneof_1017 = 1017; * @return The oneof1017. */ + @java.lang.Override public int getOneof1017() { if (hugeOneofCase_ == 1017) { return (java.lang.Integer) hugeOneof_; @@ -183864,10 +196030,19 @@ public int getOneof1017() { } public static final int ONEOF_1018_FIELD_NUMBER = 1018; + /** + * int32 oneof_1018 = 1018; + * @return Whether the oneof1018 field is set. + */ + @java.lang.Override + public boolean hasOneof1018() { + return hugeOneofCase_ == 1018; + } /** * int32 oneof_1018 = 1018; * @return The oneof1018. */ + @java.lang.Override public int getOneof1018() { if (hugeOneofCase_ == 1018) { return (java.lang.Integer) hugeOneof_; @@ -183876,10 +196051,19 @@ public int getOneof1018() { } public static final int ONEOF_1019_FIELD_NUMBER = 1019; + /** + * int32 oneof_1019 = 1019; + * @return Whether the oneof1019 field is set. + */ + @java.lang.Override + public boolean hasOneof1019() { + return hugeOneofCase_ == 1019; + } /** * int32 oneof_1019 = 1019; * @return The oneof1019. */ + @java.lang.Override public int getOneof1019() { if (hugeOneofCase_ == 1019) { return (java.lang.Integer) hugeOneof_; @@ -183888,10 +196072,19 @@ public int getOneof1019() { } public static final int ONEOF_1020_FIELD_NUMBER = 1020; + /** + * int32 oneof_1020 = 1020; + * @return Whether the oneof1020 field is set. + */ + @java.lang.Override + public boolean hasOneof1020() { + return hugeOneofCase_ == 1020; + } /** * int32 oneof_1020 = 1020; * @return The oneof1020. */ + @java.lang.Override public int getOneof1020() { if (hugeOneofCase_ == 1020) { return (java.lang.Integer) hugeOneof_; @@ -183900,10 +196093,19 @@ public int getOneof1020() { } public static final int ONEOF_1021_FIELD_NUMBER = 1021; + /** + * int32 oneof_1021 = 1021; + * @return Whether the oneof1021 field is set. + */ + @java.lang.Override + public boolean hasOneof1021() { + return hugeOneofCase_ == 1021; + } /** * int32 oneof_1021 = 1021; * @return The oneof1021. */ + @java.lang.Override public int getOneof1021() { if (hugeOneofCase_ == 1021) { return (java.lang.Integer) hugeOneof_; @@ -183912,10 +196114,19 @@ public int getOneof1021() { } public static final int ONEOF_1022_FIELD_NUMBER = 1022; + /** + * int32 oneof_1022 = 1022; + * @return Whether the oneof1022 field is set. + */ + @java.lang.Override + public boolean hasOneof1022() { + return hugeOneofCase_ == 1022; + } /** * int32 oneof_1022 = 1022; * @return The oneof1022. */ + @java.lang.Override public int getOneof1022() { if (hugeOneofCase_ == 1022) { return (java.lang.Integer) hugeOneof_; @@ -183924,10 +196135,19 @@ public int getOneof1022() { } public static final int ONEOF_1023_FIELD_NUMBER = 1023; + /** + * int32 oneof_1023 = 1023; + * @return Whether the oneof1023 field is set. + */ + @java.lang.Override + public boolean hasOneof1023() { + return hugeOneofCase_ == 1023; + } /** * int32 oneof_1023 = 1023; * @return The oneof1023. */ + @java.lang.Override public int getOneof1023() { if (hugeOneofCase_ == 1023) { return (java.lang.Integer) hugeOneof_; @@ -183936,10 +196156,19 @@ public int getOneof1023() { } public static final int ONEOF_1024_FIELD_NUMBER = 1024; + /** + * int32 oneof_1024 = 1024; + * @return Whether the oneof1024 field is set. + */ + @java.lang.Override + public boolean hasOneof1024() { + return hugeOneofCase_ == 1024; + } /** * int32 oneof_1024 = 1024; * @return The oneof1024. */ + @java.lang.Override public int getOneof1024() { if (hugeOneofCase_ == 1024) { return (java.lang.Integer) hugeOneof_; @@ -183948,10 +196177,19 @@ public int getOneof1024() { } public static final int ONEOF_1025_FIELD_NUMBER = 1025; + /** + * int32 oneof_1025 = 1025; + * @return Whether the oneof1025 field is set. + */ + @java.lang.Override + public boolean hasOneof1025() { + return hugeOneofCase_ == 1025; + } /** * int32 oneof_1025 = 1025; * @return The oneof1025. */ + @java.lang.Override public int getOneof1025() { if (hugeOneofCase_ == 1025) { return (java.lang.Integer) hugeOneof_; @@ -183960,10 +196198,19 @@ public int getOneof1025() { } public static final int ONEOF_1026_FIELD_NUMBER = 1026; + /** + * int32 oneof_1026 = 1026; + * @return Whether the oneof1026 field is set. + */ + @java.lang.Override + public boolean hasOneof1026() { + return hugeOneofCase_ == 1026; + } /** * int32 oneof_1026 = 1026; * @return The oneof1026. */ + @java.lang.Override public int getOneof1026() { if (hugeOneofCase_ == 1026) { return (java.lang.Integer) hugeOneof_; @@ -183972,10 +196219,19 @@ public int getOneof1026() { } public static final int ONEOF_1027_FIELD_NUMBER = 1027; + /** + * int32 oneof_1027 = 1027; + * @return Whether the oneof1027 field is set. + */ + @java.lang.Override + public boolean hasOneof1027() { + return hugeOneofCase_ == 1027; + } /** * int32 oneof_1027 = 1027; * @return The oneof1027. */ + @java.lang.Override public int getOneof1027() { if (hugeOneofCase_ == 1027) { return (java.lang.Integer) hugeOneof_; @@ -183984,10 +196240,19 @@ public int getOneof1027() { } public static final int ONEOF_1028_FIELD_NUMBER = 1028; + /** + * int32 oneof_1028 = 1028; + * @return Whether the oneof1028 field is set. + */ + @java.lang.Override + public boolean hasOneof1028() { + return hugeOneofCase_ == 1028; + } /** * int32 oneof_1028 = 1028; * @return The oneof1028. */ + @java.lang.Override public int getOneof1028() { if (hugeOneofCase_ == 1028) { return (java.lang.Integer) hugeOneof_; @@ -183996,10 +196261,19 @@ public int getOneof1028() { } public static final int ONEOF_1029_FIELD_NUMBER = 1029; + /** + * int32 oneof_1029 = 1029; + * @return Whether the oneof1029 field is set. + */ + @java.lang.Override + public boolean hasOneof1029() { + return hugeOneofCase_ == 1029; + } /** * int32 oneof_1029 = 1029; * @return The oneof1029. */ + @java.lang.Override public int getOneof1029() { if (hugeOneofCase_ == 1029) { return (java.lang.Integer) hugeOneof_; @@ -184008,10 +196282,19 @@ public int getOneof1029() { } public static final int ONEOF_1030_FIELD_NUMBER = 1030; + /** + * int32 oneof_1030 = 1030; + * @return Whether the oneof1030 field is set. + */ + @java.lang.Override + public boolean hasOneof1030() { + return hugeOneofCase_ == 1030; + } /** * int32 oneof_1030 = 1030; * @return The oneof1030. */ + @java.lang.Override public int getOneof1030() { if (hugeOneofCase_ == 1030) { return (java.lang.Integer) hugeOneof_; @@ -184020,10 +196303,19 @@ public int getOneof1030() { } public static final int ONEOF_1031_FIELD_NUMBER = 1031; + /** + * int32 oneof_1031 = 1031; + * @return Whether the oneof1031 field is set. + */ + @java.lang.Override + public boolean hasOneof1031() { + return hugeOneofCase_ == 1031; + } /** * int32 oneof_1031 = 1031; * @return The oneof1031. */ + @java.lang.Override public int getOneof1031() { if (hugeOneofCase_ == 1031) { return (java.lang.Integer) hugeOneof_; @@ -184032,10 +196324,19 @@ public int getOneof1031() { } public static final int ONEOF_1032_FIELD_NUMBER = 1032; + /** + * int32 oneof_1032 = 1032; + * @return Whether the oneof1032 field is set. + */ + @java.lang.Override + public boolean hasOneof1032() { + return hugeOneofCase_ == 1032; + } /** * int32 oneof_1032 = 1032; * @return The oneof1032. */ + @java.lang.Override public int getOneof1032() { if (hugeOneofCase_ == 1032) { return (java.lang.Integer) hugeOneof_; @@ -184044,10 +196345,19 @@ public int getOneof1032() { } public static final int ONEOF_1033_FIELD_NUMBER = 1033; + /** + * int32 oneof_1033 = 1033; + * @return Whether the oneof1033 field is set. + */ + @java.lang.Override + public boolean hasOneof1033() { + return hugeOneofCase_ == 1033; + } /** * int32 oneof_1033 = 1033; * @return The oneof1033. */ + @java.lang.Override public int getOneof1033() { if (hugeOneofCase_ == 1033) { return (java.lang.Integer) hugeOneof_; @@ -184056,10 +196366,19 @@ public int getOneof1033() { } public static final int ONEOF_1034_FIELD_NUMBER = 1034; + /** + * int32 oneof_1034 = 1034; + * @return Whether the oneof1034 field is set. + */ + @java.lang.Override + public boolean hasOneof1034() { + return hugeOneofCase_ == 1034; + } /** * int32 oneof_1034 = 1034; * @return The oneof1034. */ + @java.lang.Override public int getOneof1034() { if (hugeOneofCase_ == 1034) { return (java.lang.Integer) hugeOneof_; @@ -184068,10 +196387,19 @@ public int getOneof1034() { } public static final int ONEOF_1035_FIELD_NUMBER = 1035; + /** + * int32 oneof_1035 = 1035; + * @return Whether the oneof1035 field is set. + */ + @java.lang.Override + public boolean hasOneof1035() { + return hugeOneofCase_ == 1035; + } /** * int32 oneof_1035 = 1035; * @return The oneof1035. */ + @java.lang.Override public int getOneof1035() { if (hugeOneofCase_ == 1035) { return (java.lang.Integer) hugeOneof_; @@ -184080,10 +196408,19 @@ public int getOneof1035() { } public static final int ONEOF_1036_FIELD_NUMBER = 1036; + /** + * int32 oneof_1036 = 1036; + * @return Whether the oneof1036 field is set. + */ + @java.lang.Override + public boolean hasOneof1036() { + return hugeOneofCase_ == 1036; + } /** * int32 oneof_1036 = 1036; * @return The oneof1036. */ + @java.lang.Override public int getOneof1036() { if (hugeOneofCase_ == 1036) { return (java.lang.Integer) hugeOneof_; @@ -184092,10 +196429,19 @@ public int getOneof1036() { } public static final int ONEOF_1037_FIELD_NUMBER = 1037; + /** + * int32 oneof_1037 = 1037; + * @return Whether the oneof1037 field is set. + */ + @java.lang.Override + public boolean hasOneof1037() { + return hugeOneofCase_ == 1037; + } /** * int32 oneof_1037 = 1037; * @return The oneof1037. */ + @java.lang.Override public int getOneof1037() { if (hugeOneofCase_ == 1037) { return (java.lang.Integer) hugeOneof_; @@ -184104,10 +196450,19 @@ public int getOneof1037() { } public static final int ONEOF_1038_FIELD_NUMBER = 1038; + /** + * int32 oneof_1038 = 1038; + * @return Whether the oneof1038 field is set. + */ + @java.lang.Override + public boolean hasOneof1038() { + return hugeOneofCase_ == 1038; + } /** * int32 oneof_1038 = 1038; * @return The oneof1038. */ + @java.lang.Override public int getOneof1038() { if (hugeOneofCase_ == 1038) { return (java.lang.Integer) hugeOneof_; @@ -184116,10 +196471,19 @@ public int getOneof1038() { } public static final int ONEOF_1039_FIELD_NUMBER = 1039; + /** + * int32 oneof_1039 = 1039; + * @return Whether the oneof1039 field is set. + */ + @java.lang.Override + public boolean hasOneof1039() { + return hugeOneofCase_ == 1039; + } /** * int32 oneof_1039 = 1039; * @return The oneof1039. */ + @java.lang.Override public int getOneof1039() { if (hugeOneofCase_ == 1039) { return (java.lang.Integer) hugeOneof_; @@ -184128,10 +196492,19 @@ public int getOneof1039() { } public static final int ONEOF_1040_FIELD_NUMBER = 1040; + /** + * int32 oneof_1040 = 1040; + * @return Whether the oneof1040 field is set. + */ + @java.lang.Override + public boolean hasOneof1040() { + return hugeOneofCase_ == 1040; + } /** * int32 oneof_1040 = 1040; * @return The oneof1040. */ + @java.lang.Override public int getOneof1040() { if (hugeOneofCase_ == 1040) { return (java.lang.Integer) hugeOneof_; @@ -184140,10 +196513,19 @@ public int getOneof1040() { } public static final int ONEOF_1041_FIELD_NUMBER = 1041; + /** + * int32 oneof_1041 = 1041; + * @return Whether the oneof1041 field is set. + */ + @java.lang.Override + public boolean hasOneof1041() { + return hugeOneofCase_ == 1041; + } /** * int32 oneof_1041 = 1041; * @return The oneof1041. */ + @java.lang.Override public int getOneof1041() { if (hugeOneofCase_ == 1041) { return (java.lang.Integer) hugeOneof_; @@ -184152,10 +196534,19 @@ public int getOneof1041() { } public static final int ONEOF_1042_FIELD_NUMBER = 1042; + /** + * int32 oneof_1042 = 1042; + * @return Whether the oneof1042 field is set. + */ + @java.lang.Override + public boolean hasOneof1042() { + return hugeOneofCase_ == 1042; + } /** * int32 oneof_1042 = 1042; * @return The oneof1042. */ + @java.lang.Override public int getOneof1042() { if (hugeOneofCase_ == 1042) { return (java.lang.Integer) hugeOneof_; @@ -184164,10 +196555,19 @@ public int getOneof1042() { } public static final int ONEOF_1043_FIELD_NUMBER = 1043; + /** + * int32 oneof_1043 = 1043; + * @return Whether the oneof1043 field is set. + */ + @java.lang.Override + public boolean hasOneof1043() { + return hugeOneofCase_ == 1043; + } /** * int32 oneof_1043 = 1043; * @return The oneof1043. */ + @java.lang.Override public int getOneof1043() { if (hugeOneofCase_ == 1043) { return (java.lang.Integer) hugeOneof_; @@ -184176,10 +196576,19 @@ public int getOneof1043() { } public static final int ONEOF_1044_FIELD_NUMBER = 1044; + /** + * int32 oneof_1044 = 1044; + * @return Whether the oneof1044 field is set. + */ + @java.lang.Override + public boolean hasOneof1044() { + return hugeOneofCase_ == 1044; + } /** * int32 oneof_1044 = 1044; * @return The oneof1044. */ + @java.lang.Override public int getOneof1044() { if (hugeOneofCase_ == 1044) { return (java.lang.Integer) hugeOneof_; @@ -184188,10 +196597,19 @@ public int getOneof1044() { } public static final int ONEOF_1045_FIELD_NUMBER = 1045; + /** + * int32 oneof_1045 = 1045; + * @return Whether the oneof1045 field is set. + */ + @java.lang.Override + public boolean hasOneof1045() { + return hugeOneofCase_ == 1045; + } /** * int32 oneof_1045 = 1045; * @return The oneof1045. */ + @java.lang.Override public int getOneof1045() { if (hugeOneofCase_ == 1045) { return (java.lang.Integer) hugeOneof_; @@ -184200,10 +196618,19 @@ public int getOneof1045() { } public static final int ONEOF_1046_FIELD_NUMBER = 1046; + /** + * int32 oneof_1046 = 1046; + * @return Whether the oneof1046 field is set. + */ + @java.lang.Override + public boolean hasOneof1046() { + return hugeOneofCase_ == 1046; + } /** * int32 oneof_1046 = 1046; * @return The oneof1046. */ + @java.lang.Override public int getOneof1046() { if (hugeOneofCase_ == 1046) { return (java.lang.Integer) hugeOneof_; @@ -184212,10 +196639,19 @@ public int getOneof1046() { } public static final int ONEOF_1047_FIELD_NUMBER = 1047; + /** + * int32 oneof_1047 = 1047; + * @return Whether the oneof1047 field is set. + */ + @java.lang.Override + public boolean hasOneof1047() { + return hugeOneofCase_ == 1047; + } /** * int32 oneof_1047 = 1047; * @return The oneof1047. */ + @java.lang.Override public int getOneof1047() { if (hugeOneofCase_ == 1047) { return (java.lang.Integer) hugeOneof_; @@ -184224,10 +196660,19 @@ public int getOneof1047() { } public static final int ONEOF_1048_FIELD_NUMBER = 1048; + /** + * int32 oneof_1048 = 1048; + * @return Whether the oneof1048 field is set. + */ + @java.lang.Override + public boolean hasOneof1048() { + return hugeOneofCase_ == 1048; + } /** * int32 oneof_1048 = 1048; * @return The oneof1048. */ + @java.lang.Override public int getOneof1048() { if (hugeOneofCase_ == 1048) { return (java.lang.Integer) hugeOneof_; @@ -184236,10 +196681,19 @@ public int getOneof1048() { } public static final int ONEOF_1049_FIELD_NUMBER = 1049; + /** + * int32 oneof_1049 = 1049; + * @return Whether the oneof1049 field is set. + */ + @java.lang.Override + public boolean hasOneof1049() { + return hugeOneofCase_ == 1049; + } /** * int32 oneof_1049 = 1049; * @return The oneof1049. */ + @java.lang.Override public int getOneof1049() { if (hugeOneofCase_ == 1049) { return (java.lang.Integer) hugeOneof_; @@ -184248,10 +196702,19 @@ public int getOneof1049() { } public static final int ONEOF_1050_FIELD_NUMBER = 1050; + /** + * int32 oneof_1050 = 1050; + * @return Whether the oneof1050 field is set. + */ + @java.lang.Override + public boolean hasOneof1050() { + return hugeOneofCase_ == 1050; + } /** * int32 oneof_1050 = 1050; * @return The oneof1050. */ + @java.lang.Override public int getOneof1050() { if (hugeOneofCase_ == 1050) { return (java.lang.Integer) hugeOneof_; @@ -184260,10 +196723,19 @@ public int getOneof1050() { } public static final int ONEOF_1051_FIELD_NUMBER = 1051; + /** + * int32 oneof_1051 = 1051; + * @return Whether the oneof1051 field is set. + */ + @java.lang.Override + public boolean hasOneof1051() { + return hugeOneofCase_ == 1051; + } /** * int32 oneof_1051 = 1051; * @return The oneof1051. */ + @java.lang.Override public int getOneof1051() { if (hugeOneofCase_ == 1051) { return (java.lang.Integer) hugeOneof_; @@ -184272,10 +196744,19 @@ public int getOneof1051() { } public static final int ONEOF_1052_FIELD_NUMBER = 1052; + /** + * int32 oneof_1052 = 1052; + * @return Whether the oneof1052 field is set. + */ + @java.lang.Override + public boolean hasOneof1052() { + return hugeOneofCase_ == 1052; + } /** * int32 oneof_1052 = 1052; * @return The oneof1052. */ + @java.lang.Override public int getOneof1052() { if (hugeOneofCase_ == 1052) { return (java.lang.Integer) hugeOneof_; @@ -184284,10 +196765,19 @@ public int getOneof1052() { } public static final int ONEOF_1053_FIELD_NUMBER = 1053; + /** + * int32 oneof_1053 = 1053; + * @return Whether the oneof1053 field is set. + */ + @java.lang.Override + public boolean hasOneof1053() { + return hugeOneofCase_ == 1053; + } /** * int32 oneof_1053 = 1053; * @return The oneof1053. */ + @java.lang.Override public int getOneof1053() { if (hugeOneofCase_ == 1053) { return (java.lang.Integer) hugeOneof_; @@ -184296,10 +196786,19 @@ public int getOneof1053() { } public static final int ONEOF_1054_FIELD_NUMBER = 1054; + /** + * int32 oneof_1054 = 1054; + * @return Whether the oneof1054 field is set. + */ + @java.lang.Override + public boolean hasOneof1054() { + return hugeOneofCase_ == 1054; + } /** * int32 oneof_1054 = 1054; * @return The oneof1054. */ + @java.lang.Override public int getOneof1054() { if (hugeOneofCase_ == 1054) { return (java.lang.Integer) hugeOneof_; @@ -184308,10 +196807,19 @@ public int getOneof1054() { } public static final int ONEOF_1055_FIELD_NUMBER = 1055; + /** + * int32 oneof_1055 = 1055; + * @return Whether the oneof1055 field is set. + */ + @java.lang.Override + public boolean hasOneof1055() { + return hugeOneofCase_ == 1055; + } /** * int32 oneof_1055 = 1055; * @return The oneof1055. */ + @java.lang.Override public int getOneof1055() { if (hugeOneofCase_ == 1055) { return (java.lang.Integer) hugeOneof_; @@ -184320,10 +196828,19 @@ public int getOneof1055() { } public static final int ONEOF_1056_FIELD_NUMBER = 1056; + /** + * int32 oneof_1056 = 1056; + * @return Whether the oneof1056 field is set. + */ + @java.lang.Override + public boolean hasOneof1056() { + return hugeOneofCase_ == 1056; + } /** * int32 oneof_1056 = 1056; * @return The oneof1056. */ + @java.lang.Override public int getOneof1056() { if (hugeOneofCase_ == 1056) { return (java.lang.Integer) hugeOneof_; @@ -184332,10 +196849,19 @@ public int getOneof1056() { } public static final int ONEOF_1057_FIELD_NUMBER = 1057; + /** + * int32 oneof_1057 = 1057; + * @return Whether the oneof1057 field is set. + */ + @java.lang.Override + public boolean hasOneof1057() { + return hugeOneofCase_ == 1057; + } /** * int32 oneof_1057 = 1057; * @return The oneof1057. */ + @java.lang.Override public int getOneof1057() { if (hugeOneofCase_ == 1057) { return (java.lang.Integer) hugeOneof_; @@ -184344,10 +196870,19 @@ public int getOneof1057() { } public static final int ONEOF_1058_FIELD_NUMBER = 1058; + /** + * int32 oneof_1058 = 1058; + * @return Whether the oneof1058 field is set. + */ + @java.lang.Override + public boolean hasOneof1058() { + return hugeOneofCase_ == 1058; + } /** * int32 oneof_1058 = 1058; * @return The oneof1058. */ + @java.lang.Override public int getOneof1058() { if (hugeOneofCase_ == 1058) { return (java.lang.Integer) hugeOneof_; @@ -184356,10 +196891,19 @@ public int getOneof1058() { } public static final int ONEOF_1059_FIELD_NUMBER = 1059; + /** + * int32 oneof_1059 = 1059; + * @return Whether the oneof1059 field is set. + */ + @java.lang.Override + public boolean hasOneof1059() { + return hugeOneofCase_ == 1059; + } /** * int32 oneof_1059 = 1059; * @return The oneof1059. */ + @java.lang.Override public int getOneof1059() { if (hugeOneofCase_ == 1059) { return (java.lang.Integer) hugeOneof_; @@ -184368,10 +196912,19 @@ public int getOneof1059() { } public static final int ONEOF_1060_FIELD_NUMBER = 1060; + /** + * int32 oneof_1060 = 1060; + * @return Whether the oneof1060 field is set. + */ + @java.lang.Override + public boolean hasOneof1060() { + return hugeOneofCase_ == 1060; + } /** * int32 oneof_1060 = 1060; * @return The oneof1060. */ + @java.lang.Override public int getOneof1060() { if (hugeOneofCase_ == 1060) { return (java.lang.Integer) hugeOneof_; @@ -184380,10 +196933,19 @@ public int getOneof1060() { } public static final int ONEOF_1061_FIELD_NUMBER = 1061; + /** + * int32 oneof_1061 = 1061; + * @return Whether the oneof1061 field is set. + */ + @java.lang.Override + public boolean hasOneof1061() { + return hugeOneofCase_ == 1061; + } /** * int32 oneof_1061 = 1061; * @return The oneof1061. */ + @java.lang.Override public int getOneof1061() { if (hugeOneofCase_ == 1061) { return (java.lang.Integer) hugeOneof_; @@ -184392,10 +196954,19 @@ public int getOneof1061() { } public static final int ONEOF_1062_FIELD_NUMBER = 1062; + /** + * int32 oneof_1062 = 1062; + * @return Whether the oneof1062 field is set. + */ + @java.lang.Override + public boolean hasOneof1062() { + return hugeOneofCase_ == 1062; + } /** * int32 oneof_1062 = 1062; * @return The oneof1062. */ + @java.lang.Override public int getOneof1062() { if (hugeOneofCase_ == 1062) { return (java.lang.Integer) hugeOneof_; @@ -184404,10 +196975,19 @@ public int getOneof1062() { } public static final int ONEOF_1063_FIELD_NUMBER = 1063; + /** + * int32 oneof_1063 = 1063; + * @return Whether the oneof1063 field is set. + */ + @java.lang.Override + public boolean hasOneof1063() { + return hugeOneofCase_ == 1063; + } /** * int32 oneof_1063 = 1063; * @return The oneof1063. */ + @java.lang.Override public int getOneof1063() { if (hugeOneofCase_ == 1063) { return (java.lang.Integer) hugeOneof_; @@ -184416,10 +196996,19 @@ public int getOneof1063() { } public static final int ONEOF_1064_FIELD_NUMBER = 1064; + /** + * int32 oneof_1064 = 1064; + * @return Whether the oneof1064 field is set. + */ + @java.lang.Override + public boolean hasOneof1064() { + return hugeOneofCase_ == 1064; + } /** * int32 oneof_1064 = 1064; * @return The oneof1064. */ + @java.lang.Override public int getOneof1064() { if (hugeOneofCase_ == 1064) { return (java.lang.Integer) hugeOneof_; @@ -184428,10 +197017,19 @@ public int getOneof1064() { } public static final int ONEOF_1065_FIELD_NUMBER = 1065; + /** + * int32 oneof_1065 = 1065; + * @return Whether the oneof1065 field is set. + */ + @java.lang.Override + public boolean hasOneof1065() { + return hugeOneofCase_ == 1065; + } /** * int32 oneof_1065 = 1065; * @return The oneof1065. */ + @java.lang.Override public int getOneof1065() { if (hugeOneofCase_ == 1065) { return (java.lang.Integer) hugeOneof_; @@ -184440,10 +197038,19 @@ public int getOneof1065() { } public static final int ONEOF_1066_FIELD_NUMBER = 1066; + /** + * int32 oneof_1066 = 1066; + * @return Whether the oneof1066 field is set. + */ + @java.lang.Override + public boolean hasOneof1066() { + return hugeOneofCase_ == 1066; + } /** * int32 oneof_1066 = 1066; * @return The oneof1066. */ + @java.lang.Override public int getOneof1066() { if (hugeOneofCase_ == 1066) { return (java.lang.Integer) hugeOneof_; @@ -184452,10 +197059,19 @@ public int getOneof1066() { } public static final int ONEOF_1067_FIELD_NUMBER = 1067; + /** + * int32 oneof_1067 = 1067; + * @return Whether the oneof1067 field is set. + */ + @java.lang.Override + public boolean hasOneof1067() { + return hugeOneofCase_ == 1067; + } /** * int32 oneof_1067 = 1067; * @return The oneof1067. */ + @java.lang.Override public int getOneof1067() { if (hugeOneofCase_ == 1067) { return (java.lang.Integer) hugeOneof_; @@ -184464,10 +197080,19 @@ public int getOneof1067() { } public static final int ONEOF_1068_FIELD_NUMBER = 1068; + /** + * int32 oneof_1068 = 1068; + * @return Whether the oneof1068 field is set. + */ + @java.lang.Override + public boolean hasOneof1068() { + return hugeOneofCase_ == 1068; + } /** * int32 oneof_1068 = 1068; * @return The oneof1068. */ + @java.lang.Override public int getOneof1068() { if (hugeOneofCase_ == 1068) { return (java.lang.Integer) hugeOneof_; @@ -184476,10 +197101,19 @@ public int getOneof1068() { } public static final int ONEOF_1069_FIELD_NUMBER = 1069; + /** + * int32 oneof_1069 = 1069; + * @return Whether the oneof1069 field is set. + */ + @java.lang.Override + public boolean hasOneof1069() { + return hugeOneofCase_ == 1069; + } /** * int32 oneof_1069 = 1069; * @return The oneof1069. */ + @java.lang.Override public int getOneof1069() { if (hugeOneofCase_ == 1069) { return (java.lang.Integer) hugeOneof_; @@ -184488,10 +197122,19 @@ public int getOneof1069() { } public static final int ONEOF_1070_FIELD_NUMBER = 1070; + /** + * int32 oneof_1070 = 1070; + * @return Whether the oneof1070 field is set. + */ + @java.lang.Override + public boolean hasOneof1070() { + return hugeOneofCase_ == 1070; + } /** * int32 oneof_1070 = 1070; * @return The oneof1070. */ + @java.lang.Override public int getOneof1070() { if (hugeOneofCase_ == 1070) { return (java.lang.Integer) hugeOneof_; @@ -184500,10 +197143,19 @@ public int getOneof1070() { } public static final int ONEOF_1071_FIELD_NUMBER = 1071; + /** + * int32 oneof_1071 = 1071; + * @return Whether the oneof1071 field is set. + */ + @java.lang.Override + public boolean hasOneof1071() { + return hugeOneofCase_ == 1071; + } /** * int32 oneof_1071 = 1071; * @return The oneof1071. */ + @java.lang.Override public int getOneof1071() { if (hugeOneofCase_ == 1071) { return (java.lang.Integer) hugeOneof_; @@ -184512,10 +197164,19 @@ public int getOneof1071() { } public static final int ONEOF_1072_FIELD_NUMBER = 1072; + /** + * int32 oneof_1072 = 1072; + * @return Whether the oneof1072 field is set. + */ + @java.lang.Override + public boolean hasOneof1072() { + return hugeOneofCase_ == 1072; + } /** * int32 oneof_1072 = 1072; * @return The oneof1072. */ + @java.lang.Override public int getOneof1072() { if (hugeOneofCase_ == 1072) { return (java.lang.Integer) hugeOneof_; @@ -184524,10 +197185,19 @@ public int getOneof1072() { } public static final int ONEOF_1073_FIELD_NUMBER = 1073; + /** + * int32 oneof_1073 = 1073; + * @return Whether the oneof1073 field is set. + */ + @java.lang.Override + public boolean hasOneof1073() { + return hugeOneofCase_ == 1073; + } /** * int32 oneof_1073 = 1073; * @return The oneof1073. */ + @java.lang.Override public int getOneof1073() { if (hugeOneofCase_ == 1073) { return (java.lang.Integer) hugeOneof_; @@ -184536,10 +197206,19 @@ public int getOneof1073() { } public static final int ONEOF_1074_FIELD_NUMBER = 1074; + /** + * int32 oneof_1074 = 1074; + * @return Whether the oneof1074 field is set. + */ + @java.lang.Override + public boolean hasOneof1074() { + return hugeOneofCase_ == 1074; + } /** * int32 oneof_1074 = 1074; * @return The oneof1074. */ + @java.lang.Override public int getOneof1074() { if (hugeOneofCase_ == 1074) { return (java.lang.Integer) hugeOneof_; @@ -184548,10 +197227,19 @@ public int getOneof1074() { } public static final int ONEOF_1075_FIELD_NUMBER = 1075; + /** + * int32 oneof_1075 = 1075; + * @return Whether the oneof1075 field is set. + */ + @java.lang.Override + public boolean hasOneof1075() { + return hugeOneofCase_ == 1075; + } /** * int32 oneof_1075 = 1075; * @return The oneof1075. */ + @java.lang.Override public int getOneof1075() { if (hugeOneofCase_ == 1075) { return (java.lang.Integer) hugeOneof_; @@ -184560,10 +197248,19 @@ public int getOneof1075() { } public static final int ONEOF_1076_FIELD_NUMBER = 1076; + /** + * int32 oneof_1076 = 1076; + * @return Whether the oneof1076 field is set. + */ + @java.lang.Override + public boolean hasOneof1076() { + return hugeOneofCase_ == 1076; + } /** * int32 oneof_1076 = 1076; * @return The oneof1076. */ + @java.lang.Override public int getOneof1076() { if (hugeOneofCase_ == 1076) { return (java.lang.Integer) hugeOneof_; @@ -184572,10 +197269,19 @@ public int getOneof1076() { } public static final int ONEOF_1077_FIELD_NUMBER = 1077; + /** + * int32 oneof_1077 = 1077; + * @return Whether the oneof1077 field is set. + */ + @java.lang.Override + public boolean hasOneof1077() { + return hugeOneofCase_ == 1077; + } /** * int32 oneof_1077 = 1077; * @return The oneof1077. */ + @java.lang.Override public int getOneof1077() { if (hugeOneofCase_ == 1077) { return (java.lang.Integer) hugeOneof_; @@ -184584,10 +197290,19 @@ public int getOneof1077() { } public static final int ONEOF_1078_FIELD_NUMBER = 1078; + /** + * int32 oneof_1078 = 1078; + * @return Whether the oneof1078 field is set. + */ + @java.lang.Override + public boolean hasOneof1078() { + return hugeOneofCase_ == 1078; + } /** * int32 oneof_1078 = 1078; * @return The oneof1078. */ + @java.lang.Override public int getOneof1078() { if (hugeOneofCase_ == 1078) { return (java.lang.Integer) hugeOneof_; @@ -184596,10 +197311,19 @@ public int getOneof1078() { } public static final int ONEOF_1079_FIELD_NUMBER = 1079; + /** + * int32 oneof_1079 = 1079; + * @return Whether the oneof1079 field is set. + */ + @java.lang.Override + public boolean hasOneof1079() { + return hugeOneofCase_ == 1079; + } /** * int32 oneof_1079 = 1079; * @return The oneof1079. */ + @java.lang.Override public int getOneof1079() { if (hugeOneofCase_ == 1079) { return (java.lang.Integer) hugeOneof_; @@ -184608,10 +197332,19 @@ public int getOneof1079() { } public static final int ONEOF_1080_FIELD_NUMBER = 1080; + /** + * int32 oneof_1080 = 1080; + * @return Whether the oneof1080 field is set. + */ + @java.lang.Override + public boolean hasOneof1080() { + return hugeOneofCase_ == 1080; + } /** * int32 oneof_1080 = 1080; * @return The oneof1080. */ + @java.lang.Override public int getOneof1080() { if (hugeOneofCase_ == 1080) { return (java.lang.Integer) hugeOneof_; @@ -184620,10 +197353,19 @@ public int getOneof1080() { } public static final int ONEOF_1081_FIELD_NUMBER = 1081; + /** + * int32 oneof_1081 = 1081; + * @return Whether the oneof1081 field is set. + */ + @java.lang.Override + public boolean hasOneof1081() { + return hugeOneofCase_ == 1081; + } /** * int32 oneof_1081 = 1081; * @return The oneof1081. */ + @java.lang.Override public int getOneof1081() { if (hugeOneofCase_ == 1081) { return (java.lang.Integer) hugeOneof_; @@ -184632,10 +197374,19 @@ public int getOneof1081() { } public static final int ONEOF_1082_FIELD_NUMBER = 1082; + /** + * int32 oneof_1082 = 1082; + * @return Whether the oneof1082 field is set. + */ + @java.lang.Override + public boolean hasOneof1082() { + return hugeOneofCase_ == 1082; + } /** * int32 oneof_1082 = 1082; * @return The oneof1082. */ + @java.lang.Override public int getOneof1082() { if (hugeOneofCase_ == 1082) { return (java.lang.Integer) hugeOneof_; @@ -184644,10 +197395,19 @@ public int getOneof1082() { } public static final int ONEOF_1083_FIELD_NUMBER = 1083; + /** + * int32 oneof_1083 = 1083; + * @return Whether the oneof1083 field is set. + */ + @java.lang.Override + public boolean hasOneof1083() { + return hugeOneofCase_ == 1083; + } /** * int32 oneof_1083 = 1083; * @return The oneof1083. */ + @java.lang.Override public int getOneof1083() { if (hugeOneofCase_ == 1083) { return (java.lang.Integer) hugeOneof_; @@ -184656,10 +197416,19 @@ public int getOneof1083() { } public static final int ONEOF_1084_FIELD_NUMBER = 1084; + /** + * int32 oneof_1084 = 1084; + * @return Whether the oneof1084 field is set. + */ + @java.lang.Override + public boolean hasOneof1084() { + return hugeOneofCase_ == 1084; + } /** * int32 oneof_1084 = 1084; * @return The oneof1084. */ + @java.lang.Override public int getOneof1084() { if (hugeOneofCase_ == 1084) { return (java.lang.Integer) hugeOneof_; @@ -184668,10 +197437,19 @@ public int getOneof1084() { } public static final int ONEOF_1085_FIELD_NUMBER = 1085; + /** + * int32 oneof_1085 = 1085; + * @return Whether the oneof1085 field is set. + */ + @java.lang.Override + public boolean hasOneof1085() { + return hugeOneofCase_ == 1085; + } /** * int32 oneof_1085 = 1085; * @return The oneof1085. */ + @java.lang.Override public int getOneof1085() { if (hugeOneofCase_ == 1085) { return (java.lang.Integer) hugeOneof_; @@ -184680,10 +197458,19 @@ public int getOneof1085() { } public static final int ONEOF_1086_FIELD_NUMBER = 1086; + /** + * int32 oneof_1086 = 1086; + * @return Whether the oneof1086 field is set. + */ + @java.lang.Override + public boolean hasOneof1086() { + return hugeOneofCase_ == 1086; + } /** * int32 oneof_1086 = 1086; * @return The oneof1086. */ + @java.lang.Override public int getOneof1086() { if (hugeOneofCase_ == 1086) { return (java.lang.Integer) hugeOneof_; @@ -184692,10 +197479,19 @@ public int getOneof1086() { } public static final int ONEOF_1087_FIELD_NUMBER = 1087; + /** + * int32 oneof_1087 = 1087; + * @return Whether the oneof1087 field is set. + */ + @java.lang.Override + public boolean hasOneof1087() { + return hugeOneofCase_ == 1087; + } /** * int32 oneof_1087 = 1087; * @return The oneof1087. */ + @java.lang.Override public int getOneof1087() { if (hugeOneofCase_ == 1087) { return (java.lang.Integer) hugeOneof_; @@ -184704,10 +197500,19 @@ public int getOneof1087() { } public static final int ONEOF_1088_FIELD_NUMBER = 1088; + /** + * int32 oneof_1088 = 1088; + * @return Whether the oneof1088 field is set. + */ + @java.lang.Override + public boolean hasOneof1088() { + return hugeOneofCase_ == 1088; + } /** * int32 oneof_1088 = 1088; * @return The oneof1088. */ + @java.lang.Override public int getOneof1088() { if (hugeOneofCase_ == 1088) { return (java.lang.Integer) hugeOneof_; @@ -184716,10 +197521,19 @@ public int getOneof1088() { } public static final int ONEOF_1089_FIELD_NUMBER = 1089; + /** + * int32 oneof_1089 = 1089; + * @return Whether the oneof1089 field is set. + */ + @java.lang.Override + public boolean hasOneof1089() { + return hugeOneofCase_ == 1089; + } /** * int32 oneof_1089 = 1089; * @return The oneof1089. */ + @java.lang.Override public int getOneof1089() { if (hugeOneofCase_ == 1089) { return (java.lang.Integer) hugeOneof_; @@ -184728,10 +197542,19 @@ public int getOneof1089() { } public static final int ONEOF_1090_FIELD_NUMBER = 1090; + /** + * int32 oneof_1090 = 1090; + * @return Whether the oneof1090 field is set. + */ + @java.lang.Override + public boolean hasOneof1090() { + return hugeOneofCase_ == 1090; + } /** * int32 oneof_1090 = 1090; * @return The oneof1090. */ + @java.lang.Override public int getOneof1090() { if (hugeOneofCase_ == 1090) { return (java.lang.Integer) hugeOneof_; @@ -184740,10 +197563,19 @@ public int getOneof1090() { } public static final int ONEOF_1091_FIELD_NUMBER = 1091; + /** + * int32 oneof_1091 = 1091; + * @return Whether the oneof1091 field is set. + */ + @java.lang.Override + public boolean hasOneof1091() { + return hugeOneofCase_ == 1091; + } /** * int32 oneof_1091 = 1091; * @return The oneof1091. */ + @java.lang.Override public int getOneof1091() { if (hugeOneofCase_ == 1091) { return (java.lang.Integer) hugeOneof_; @@ -184752,10 +197584,19 @@ public int getOneof1091() { } public static final int ONEOF_1092_FIELD_NUMBER = 1092; + /** + * int32 oneof_1092 = 1092; + * @return Whether the oneof1092 field is set. + */ + @java.lang.Override + public boolean hasOneof1092() { + return hugeOneofCase_ == 1092; + } /** * int32 oneof_1092 = 1092; * @return The oneof1092. */ + @java.lang.Override public int getOneof1092() { if (hugeOneofCase_ == 1092) { return (java.lang.Integer) hugeOneof_; @@ -184764,10 +197605,19 @@ public int getOneof1092() { } public static final int ONEOF_1093_FIELD_NUMBER = 1093; + /** + * int32 oneof_1093 = 1093; + * @return Whether the oneof1093 field is set. + */ + @java.lang.Override + public boolean hasOneof1093() { + return hugeOneofCase_ == 1093; + } /** * int32 oneof_1093 = 1093; * @return The oneof1093. */ + @java.lang.Override public int getOneof1093() { if (hugeOneofCase_ == 1093) { return (java.lang.Integer) hugeOneof_; @@ -184776,10 +197626,19 @@ public int getOneof1093() { } public static final int ONEOF_1094_FIELD_NUMBER = 1094; + /** + * int32 oneof_1094 = 1094; + * @return Whether the oneof1094 field is set. + */ + @java.lang.Override + public boolean hasOneof1094() { + return hugeOneofCase_ == 1094; + } /** * int32 oneof_1094 = 1094; * @return The oneof1094. */ + @java.lang.Override public int getOneof1094() { if (hugeOneofCase_ == 1094) { return (java.lang.Integer) hugeOneof_; @@ -184788,10 +197647,19 @@ public int getOneof1094() { } public static final int ONEOF_1095_FIELD_NUMBER = 1095; + /** + * int32 oneof_1095 = 1095; + * @return Whether the oneof1095 field is set. + */ + @java.lang.Override + public boolean hasOneof1095() { + return hugeOneofCase_ == 1095; + } /** * int32 oneof_1095 = 1095; * @return The oneof1095. */ + @java.lang.Override public int getOneof1095() { if (hugeOneofCase_ == 1095) { return (java.lang.Integer) hugeOneof_; @@ -184800,10 +197668,19 @@ public int getOneof1095() { } public static final int ONEOF_1096_FIELD_NUMBER = 1096; + /** + * int32 oneof_1096 = 1096; + * @return Whether the oneof1096 field is set. + */ + @java.lang.Override + public boolean hasOneof1096() { + return hugeOneofCase_ == 1096; + } /** * int32 oneof_1096 = 1096; * @return The oneof1096. */ + @java.lang.Override public int getOneof1096() { if (hugeOneofCase_ == 1096) { return (java.lang.Integer) hugeOneof_; @@ -184812,10 +197689,19 @@ public int getOneof1096() { } public static final int ONEOF_1097_FIELD_NUMBER = 1097; + /** + * int32 oneof_1097 = 1097; + * @return Whether the oneof1097 field is set. + */ + @java.lang.Override + public boolean hasOneof1097() { + return hugeOneofCase_ == 1097; + } /** * int32 oneof_1097 = 1097; * @return The oneof1097. */ + @java.lang.Override public int getOneof1097() { if (hugeOneofCase_ == 1097) { return (java.lang.Integer) hugeOneof_; @@ -184824,10 +197710,19 @@ public int getOneof1097() { } public static final int ONEOF_1098_FIELD_NUMBER = 1098; + /** + * int32 oneof_1098 = 1098; + * @return Whether the oneof1098 field is set. + */ + @java.lang.Override + public boolean hasOneof1098() { + return hugeOneofCase_ == 1098; + } /** * int32 oneof_1098 = 1098; * @return The oneof1098. */ + @java.lang.Override public int getOneof1098() { if (hugeOneofCase_ == 1098) { return (java.lang.Integer) hugeOneof_; @@ -184836,10 +197731,19 @@ public int getOneof1098() { } public static final int ONEOF_1099_FIELD_NUMBER = 1099; + /** + * int32 oneof_1099 = 1099; + * @return Whether the oneof1099 field is set. + */ + @java.lang.Override + public boolean hasOneof1099() { + return hugeOneofCase_ == 1099; + } /** * int32 oneof_1099 = 1099; * @return The oneof1099. */ + @java.lang.Override public int getOneof1099() { if (hugeOneofCase_ == 1099) { return (java.lang.Integer) hugeOneof_; @@ -184848,10 +197752,19 @@ public int getOneof1099() { } public static final int ONEOF_1100_FIELD_NUMBER = 1100; + /** + * int32 oneof_1100 = 1100; + * @return Whether the oneof1100 field is set. + */ + @java.lang.Override + public boolean hasOneof1100() { + return hugeOneofCase_ == 1100; + } /** * int32 oneof_1100 = 1100; * @return The oneof1100. */ + @java.lang.Override public int getOneof1100() { if (hugeOneofCase_ == 1100) { return (java.lang.Integer) hugeOneof_; @@ -184860,10 +197773,19 @@ public int getOneof1100() { } public static final int ONEOF_1101_FIELD_NUMBER = 1101; + /** + * int32 oneof_1101 = 1101; + * @return Whether the oneof1101 field is set. + */ + @java.lang.Override + public boolean hasOneof1101() { + return hugeOneofCase_ == 1101; + } /** * int32 oneof_1101 = 1101; * @return The oneof1101. */ + @java.lang.Override public int getOneof1101() { if (hugeOneofCase_ == 1101) { return (java.lang.Integer) hugeOneof_; @@ -184872,10 +197794,19 @@ public int getOneof1101() { } public static final int ONEOF_1102_FIELD_NUMBER = 1102; + /** + * int32 oneof_1102 = 1102; + * @return Whether the oneof1102 field is set. + */ + @java.lang.Override + public boolean hasOneof1102() { + return hugeOneofCase_ == 1102; + } /** * int32 oneof_1102 = 1102; * @return The oneof1102. */ + @java.lang.Override public int getOneof1102() { if (hugeOneofCase_ == 1102) { return (java.lang.Integer) hugeOneof_; @@ -184884,10 +197815,19 @@ public int getOneof1102() { } public static final int ONEOF_1103_FIELD_NUMBER = 1103; + /** + * int32 oneof_1103 = 1103; + * @return Whether the oneof1103 field is set. + */ + @java.lang.Override + public boolean hasOneof1103() { + return hugeOneofCase_ == 1103; + } /** * int32 oneof_1103 = 1103; * @return The oneof1103. */ + @java.lang.Override public int getOneof1103() { if (hugeOneofCase_ == 1103) { return (java.lang.Integer) hugeOneof_; @@ -184896,10 +197836,19 @@ public int getOneof1103() { } public static final int ONEOF_1104_FIELD_NUMBER = 1104; + /** + * int32 oneof_1104 = 1104; + * @return Whether the oneof1104 field is set. + */ + @java.lang.Override + public boolean hasOneof1104() { + return hugeOneofCase_ == 1104; + } /** * int32 oneof_1104 = 1104; * @return The oneof1104. */ + @java.lang.Override public int getOneof1104() { if (hugeOneofCase_ == 1104) { return (java.lang.Integer) hugeOneof_; @@ -184908,10 +197857,19 @@ public int getOneof1104() { } public static final int ONEOF_1105_FIELD_NUMBER = 1105; + /** + * int32 oneof_1105 = 1105; + * @return Whether the oneof1105 field is set. + */ + @java.lang.Override + public boolean hasOneof1105() { + return hugeOneofCase_ == 1105; + } /** * int32 oneof_1105 = 1105; * @return The oneof1105. */ + @java.lang.Override public int getOneof1105() { if (hugeOneofCase_ == 1105) { return (java.lang.Integer) hugeOneof_; @@ -184920,10 +197878,19 @@ public int getOneof1105() { } public static final int ONEOF_1106_FIELD_NUMBER = 1106; + /** + * int32 oneof_1106 = 1106; + * @return Whether the oneof1106 field is set. + */ + @java.lang.Override + public boolean hasOneof1106() { + return hugeOneofCase_ == 1106; + } /** * int32 oneof_1106 = 1106; * @return The oneof1106. */ + @java.lang.Override public int getOneof1106() { if (hugeOneofCase_ == 1106) { return (java.lang.Integer) hugeOneof_; @@ -184932,10 +197899,19 @@ public int getOneof1106() { } public static final int ONEOF_1107_FIELD_NUMBER = 1107; + /** + * int32 oneof_1107 = 1107; + * @return Whether the oneof1107 field is set. + */ + @java.lang.Override + public boolean hasOneof1107() { + return hugeOneofCase_ == 1107; + } /** * int32 oneof_1107 = 1107; * @return The oneof1107. */ + @java.lang.Override public int getOneof1107() { if (hugeOneofCase_ == 1107) { return (java.lang.Integer) hugeOneof_; @@ -184944,10 +197920,19 @@ public int getOneof1107() { } public static final int ONEOF_1108_FIELD_NUMBER = 1108; + /** + * int32 oneof_1108 = 1108; + * @return Whether the oneof1108 field is set. + */ + @java.lang.Override + public boolean hasOneof1108() { + return hugeOneofCase_ == 1108; + } /** * int32 oneof_1108 = 1108; * @return The oneof1108. */ + @java.lang.Override public int getOneof1108() { if (hugeOneofCase_ == 1108) { return (java.lang.Integer) hugeOneof_; @@ -184956,10 +197941,19 @@ public int getOneof1108() { } public static final int ONEOF_1109_FIELD_NUMBER = 1109; + /** + * int32 oneof_1109 = 1109; + * @return Whether the oneof1109 field is set. + */ + @java.lang.Override + public boolean hasOneof1109() { + return hugeOneofCase_ == 1109; + } /** * int32 oneof_1109 = 1109; * @return The oneof1109. */ + @java.lang.Override public int getOneof1109() { if (hugeOneofCase_ == 1109) { return (java.lang.Integer) hugeOneof_; @@ -184968,10 +197962,19 @@ public int getOneof1109() { } public static final int ONEOF_1110_FIELD_NUMBER = 1110; + /** + * int32 oneof_1110 = 1110; + * @return Whether the oneof1110 field is set. + */ + @java.lang.Override + public boolean hasOneof1110() { + return hugeOneofCase_ == 1110; + } /** * int32 oneof_1110 = 1110; * @return The oneof1110. */ + @java.lang.Override public int getOneof1110() { if (hugeOneofCase_ == 1110) { return (java.lang.Integer) hugeOneof_; @@ -184980,10 +197983,19 @@ public int getOneof1110() { } public static final int ONEOF_1111_FIELD_NUMBER = 1111; + /** + * int32 oneof_1111 = 1111; + * @return Whether the oneof1111 field is set. + */ + @java.lang.Override + public boolean hasOneof1111() { + return hugeOneofCase_ == 1111; + } /** * int32 oneof_1111 = 1111; * @return The oneof1111. */ + @java.lang.Override public int getOneof1111() { if (hugeOneofCase_ == 1111) { return (java.lang.Integer) hugeOneof_; @@ -184992,10 +198004,19 @@ public int getOneof1111() { } public static final int ONEOF_1112_FIELD_NUMBER = 1112; + /** + * int32 oneof_1112 = 1112; + * @return Whether the oneof1112 field is set. + */ + @java.lang.Override + public boolean hasOneof1112() { + return hugeOneofCase_ == 1112; + } /** * int32 oneof_1112 = 1112; * @return The oneof1112. */ + @java.lang.Override public int getOneof1112() { if (hugeOneofCase_ == 1112) { return (java.lang.Integer) hugeOneof_; @@ -185004,10 +198025,19 @@ public int getOneof1112() { } public static final int ONEOF_1113_FIELD_NUMBER = 1113; + /** + * int32 oneof_1113 = 1113; + * @return Whether the oneof1113 field is set. + */ + @java.lang.Override + public boolean hasOneof1113() { + return hugeOneofCase_ == 1113; + } /** * int32 oneof_1113 = 1113; * @return The oneof1113. */ + @java.lang.Override public int getOneof1113() { if (hugeOneofCase_ == 1113) { return (java.lang.Integer) hugeOneof_; @@ -185016,10 +198046,19 @@ public int getOneof1113() { } public static final int ONEOF_1114_FIELD_NUMBER = 1114; + /** + * int32 oneof_1114 = 1114; + * @return Whether the oneof1114 field is set. + */ + @java.lang.Override + public boolean hasOneof1114() { + return hugeOneofCase_ == 1114; + } /** * int32 oneof_1114 = 1114; * @return The oneof1114. */ + @java.lang.Override public int getOneof1114() { if (hugeOneofCase_ == 1114) { return (java.lang.Integer) hugeOneof_; @@ -185028,10 +198067,19 @@ public int getOneof1114() { } public static final int ONEOF_1115_FIELD_NUMBER = 1115; + /** + * int32 oneof_1115 = 1115; + * @return Whether the oneof1115 field is set. + */ + @java.lang.Override + public boolean hasOneof1115() { + return hugeOneofCase_ == 1115; + } /** * int32 oneof_1115 = 1115; * @return The oneof1115. */ + @java.lang.Override public int getOneof1115() { if (hugeOneofCase_ == 1115) { return (java.lang.Integer) hugeOneof_; @@ -185040,10 +198088,19 @@ public int getOneof1115() { } public static final int ONEOF_1116_FIELD_NUMBER = 1116; + /** + * int32 oneof_1116 = 1116; + * @return Whether the oneof1116 field is set. + */ + @java.lang.Override + public boolean hasOneof1116() { + return hugeOneofCase_ == 1116; + } /** * int32 oneof_1116 = 1116; * @return The oneof1116. */ + @java.lang.Override public int getOneof1116() { if (hugeOneofCase_ == 1116) { return (java.lang.Integer) hugeOneof_; @@ -185052,10 +198109,19 @@ public int getOneof1116() { } public static final int ONEOF_1117_FIELD_NUMBER = 1117; + /** + * int32 oneof_1117 = 1117; + * @return Whether the oneof1117 field is set. + */ + @java.lang.Override + public boolean hasOneof1117() { + return hugeOneofCase_ == 1117; + } /** * int32 oneof_1117 = 1117; * @return The oneof1117. */ + @java.lang.Override public int getOneof1117() { if (hugeOneofCase_ == 1117) { return (java.lang.Integer) hugeOneof_; @@ -185064,10 +198130,19 @@ public int getOneof1117() { } public static final int ONEOF_1118_FIELD_NUMBER = 1118; + /** + * int32 oneof_1118 = 1118; + * @return Whether the oneof1118 field is set. + */ + @java.lang.Override + public boolean hasOneof1118() { + return hugeOneofCase_ == 1118; + } /** * int32 oneof_1118 = 1118; * @return The oneof1118. */ + @java.lang.Override public int getOneof1118() { if (hugeOneofCase_ == 1118) { return (java.lang.Integer) hugeOneof_; @@ -185076,10 +198151,19 @@ public int getOneof1118() { } public static final int ONEOF_1119_FIELD_NUMBER = 1119; + /** + * int32 oneof_1119 = 1119; + * @return Whether the oneof1119 field is set. + */ + @java.lang.Override + public boolean hasOneof1119() { + return hugeOneofCase_ == 1119; + } /** * int32 oneof_1119 = 1119; * @return The oneof1119. */ + @java.lang.Override public int getOneof1119() { if (hugeOneofCase_ == 1119) { return (java.lang.Integer) hugeOneof_; @@ -185088,10 +198172,19 @@ public int getOneof1119() { } public static final int ONEOF_1120_FIELD_NUMBER = 1120; + /** + * int32 oneof_1120 = 1120; + * @return Whether the oneof1120 field is set. + */ + @java.lang.Override + public boolean hasOneof1120() { + return hugeOneofCase_ == 1120; + } /** * int32 oneof_1120 = 1120; * @return The oneof1120. */ + @java.lang.Override public int getOneof1120() { if (hugeOneofCase_ == 1120) { return (java.lang.Integer) hugeOneof_; @@ -185100,10 +198193,19 @@ public int getOneof1120() { } public static final int ONEOF_1121_FIELD_NUMBER = 1121; + /** + * int32 oneof_1121 = 1121; + * @return Whether the oneof1121 field is set. + */ + @java.lang.Override + public boolean hasOneof1121() { + return hugeOneofCase_ == 1121; + } /** * int32 oneof_1121 = 1121; * @return The oneof1121. */ + @java.lang.Override public int getOneof1121() { if (hugeOneofCase_ == 1121) { return (java.lang.Integer) hugeOneof_; @@ -185112,10 +198214,19 @@ public int getOneof1121() { } public static final int ONEOF_1122_FIELD_NUMBER = 1122; + /** + * int32 oneof_1122 = 1122; + * @return Whether the oneof1122 field is set. + */ + @java.lang.Override + public boolean hasOneof1122() { + return hugeOneofCase_ == 1122; + } /** * int32 oneof_1122 = 1122; * @return The oneof1122. */ + @java.lang.Override public int getOneof1122() { if (hugeOneofCase_ == 1122) { return (java.lang.Integer) hugeOneof_; @@ -185124,10 +198235,19 @@ public int getOneof1122() { } public static final int ONEOF_1123_FIELD_NUMBER = 1123; + /** + * int32 oneof_1123 = 1123; + * @return Whether the oneof1123 field is set. + */ + @java.lang.Override + public boolean hasOneof1123() { + return hugeOneofCase_ == 1123; + } /** * int32 oneof_1123 = 1123; * @return The oneof1123. */ + @java.lang.Override public int getOneof1123() { if (hugeOneofCase_ == 1123) { return (java.lang.Integer) hugeOneof_; @@ -185136,10 +198256,19 @@ public int getOneof1123() { } public static final int ONEOF_1124_FIELD_NUMBER = 1124; + /** + * int32 oneof_1124 = 1124; + * @return Whether the oneof1124 field is set. + */ + @java.lang.Override + public boolean hasOneof1124() { + return hugeOneofCase_ == 1124; + } /** * int32 oneof_1124 = 1124; * @return The oneof1124. */ + @java.lang.Override public int getOneof1124() { if (hugeOneofCase_ == 1124) { return (java.lang.Integer) hugeOneof_; @@ -185148,10 +198277,19 @@ public int getOneof1124() { } public static final int ONEOF_1125_FIELD_NUMBER = 1125; + /** + * int32 oneof_1125 = 1125; + * @return Whether the oneof1125 field is set. + */ + @java.lang.Override + public boolean hasOneof1125() { + return hugeOneofCase_ == 1125; + } /** * int32 oneof_1125 = 1125; * @return The oneof1125. */ + @java.lang.Override public int getOneof1125() { if (hugeOneofCase_ == 1125) { return (java.lang.Integer) hugeOneof_; @@ -185160,10 +198298,19 @@ public int getOneof1125() { } public static final int ONEOF_1126_FIELD_NUMBER = 1126; + /** + * int32 oneof_1126 = 1126; + * @return Whether the oneof1126 field is set. + */ + @java.lang.Override + public boolean hasOneof1126() { + return hugeOneofCase_ == 1126; + } /** * int32 oneof_1126 = 1126; * @return The oneof1126. */ + @java.lang.Override public int getOneof1126() { if (hugeOneofCase_ == 1126) { return (java.lang.Integer) hugeOneof_; @@ -185172,10 +198319,19 @@ public int getOneof1126() { } public static final int ONEOF_1127_FIELD_NUMBER = 1127; + /** + * int32 oneof_1127 = 1127; + * @return Whether the oneof1127 field is set. + */ + @java.lang.Override + public boolean hasOneof1127() { + return hugeOneofCase_ == 1127; + } /** * int32 oneof_1127 = 1127; * @return The oneof1127. */ + @java.lang.Override public int getOneof1127() { if (hugeOneofCase_ == 1127) { return (java.lang.Integer) hugeOneof_; @@ -185184,10 +198340,19 @@ public int getOneof1127() { } public static final int ONEOF_1128_FIELD_NUMBER = 1128; + /** + * int32 oneof_1128 = 1128; + * @return Whether the oneof1128 field is set. + */ + @java.lang.Override + public boolean hasOneof1128() { + return hugeOneofCase_ == 1128; + } /** * int32 oneof_1128 = 1128; * @return The oneof1128. */ + @java.lang.Override public int getOneof1128() { if (hugeOneofCase_ == 1128) { return (java.lang.Integer) hugeOneof_; @@ -185196,10 +198361,19 @@ public int getOneof1128() { } public static final int ONEOF_1129_FIELD_NUMBER = 1129; + /** + * int32 oneof_1129 = 1129; + * @return Whether the oneof1129 field is set. + */ + @java.lang.Override + public boolean hasOneof1129() { + return hugeOneofCase_ == 1129; + } /** * int32 oneof_1129 = 1129; * @return The oneof1129. */ + @java.lang.Override public int getOneof1129() { if (hugeOneofCase_ == 1129) { return (java.lang.Integer) hugeOneof_; @@ -185208,10 +198382,19 @@ public int getOneof1129() { } public static final int ONEOF_1130_FIELD_NUMBER = 1130; + /** + * int32 oneof_1130 = 1130; + * @return Whether the oneof1130 field is set. + */ + @java.lang.Override + public boolean hasOneof1130() { + return hugeOneofCase_ == 1130; + } /** * int32 oneof_1130 = 1130; * @return The oneof1130. */ + @java.lang.Override public int getOneof1130() { if (hugeOneofCase_ == 1130) { return (java.lang.Integer) hugeOneof_; @@ -185220,10 +198403,19 @@ public int getOneof1130() { } public static final int ONEOF_1131_FIELD_NUMBER = 1131; + /** + * int32 oneof_1131 = 1131; + * @return Whether the oneof1131 field is set. + */ + @java.lang.Override + public boolean hasOneof1131() { + return hugeOneofCase_ == 1131; + } /** * int32 oneof_1131 = 1131; * @return The oneof1131. */ + @java.lang.Override public int getOneof1131() { if (hugeOneofCase_ == 1131) { return (java.lang.Integer) hugeOneof_; @@ -185232,10 +198424,19 @@ public int getOneof1131() { } public static final int ONEOF_1132_FIELD_NUMBER = 1132; + /** + * int32 oneof_1132 = 1132; + * @return Whether the oneof1132 field is set. + */ + @java.lang.Override + public boolean hasOneof1132() { + return hugeOneofCase_ == 1132; + } /** * int32 oneof_1132 = 1132; * @return The oneof1132. */ + @java.lang.Override public int getOneof1132() { if (hugeOneofCase_ == 1132) { return (java.lang.Integer) hugeOneof_; @@ -185244,10 +198445,19 @@ public int getOneof1132() { } public static final int ONEOF_1133_FIELD_NUMBER = 1133; + /** + * int32 oneof_1133 = 1133; + * @return Whether the oneof1133 field is set. + */ + @java.lang.Override + public boolean hasOneof1133() { + return hugeOneofCase_ == 1133; + } /** * int32 oneof_1133 = 1133; * @return The oneof1133. */ + @java.lang.Override public int getOneof1133() { if (hugeOneofCase_ == 1133) { return (java.lang.Integer) hugeOneof_; @@ -185256,10 +198466,19 @@ public int getOneof1133() { } public static final int ONEOF_1134_FIELD_NUMBER = 1134; + /** + * int32 oneof_1134 = 1134; + * @return Whether the oneof1134 field is set. + */ + @java.lang.Override + public boolean hasOneof1134() { + return hugeOneofCase_ == 1134; + } /** * int32 oneof_1134 = 1134; * @return The oneof1134. */ + @java.lang.Override public int getOneof1134() { if (hugeOneofCase_ == 1134) { return (java.lang.Integer) hugeOneof_; @@ -185268,10 +198487,19 @@ public int getOneof1134() { } public static final int ONEOF_1135_FIELD_NUMBER = 1135; + /** + * int32 oneof_1135 = 1135; + * @return Whether the oneof1135 field is set. + */ + @java.lang.Override + public boolean hasOneof1135() { + return hugeOneofCase_ == 1135; + } /** * int32 oneof_1135 = 1135; * @return The oneof1135. */ + @java.lang.Override public int getOneof1135() { if (hugeOneofCase_ == 1135) { return (java.lang.Integer) hugeOneof_; @@ -185280,10 +198508,19 @@ public int getOneof1135() { } public static final int ONEOF_1136_FIELD_NUMBER = 1136; + /** + * int32 oneof_1136 = 1136; + * @return Whether the oneof1136 field is set. + */ + @java.lang.Override + public boolean hasOneof1136() { + return hugeOneofCase_ == 1136; + } /** * int32 oneof_1136 = 1136; * @return The oneof1136. */ + @java.lang.Override public int getOneof1136() { if (hugeOneofCase_ == 1136) { return (java.lang.Integer) hugeOneof_; @@ -185292,10 +198529,19 @@ public int getOneof1136() { } public static final int ONEOF_1137_FIELD_NUMBER = 1137; + /** + * int32 oneof_1137 = 1137; + * @return Whether the oneof1137 field is set. + */ + @java.lang.Override + public boolean hasOneof1137() { + return hugeOneofCase_ == 1137; + } /** * int32 oneof_1137 = 1137; * @return The oneof1137. */ + @java.lang.Override public int getOneof1137() { if (hugeOneofCase_ == 1137) { return (java.lang.Integer) hugeOneof_; @@ -185304,10 +198550,19 @@ public int getOneof1137() { } public static final int ONEOF_1138_FIELD_NUMBER = 1138; + /** + * int32 oneof_1138 = 1138; + * @return Whether the oneof1138 field is set. + */ + @java.lang.Override + public boolean hasOneof1138() { + return hugeOneofCase_ == 1138; + } /** * int32 oneof_1138 = 1138; * @return The oneof1138. */ + @java.lang.Override public int getOneof1138() { if (hugeOneofCase_ == 1138) { return (java.lang.Integer) hugeOneof_; @@ -185316,10 +198571,19 @@ public int getOneof1138() { } public static final int ONEOF_1139_FIELD_NUMBER = 1139; + /** + * int32 oneof_1139 = 1139; + * @return Whether the oneof1139 field is set. + */ + @java.lang.Override + public boolean hasOneof1139() { + return hugeOneofCase_ == 1139; + } /** * int32 oneof_1139 = 1139; * @return The oneof1139. */ + @java.lang.Override public int getOneof1139() { if (hugeOneofCase_ == 1139) { return (java.lang.Integer) hugeOneof_; @@ -185328,10 +198592,19 @@ public int getOneof1139() { } public static final int ONEOF_1140_FIELD_NUMBER = 1140; + /** + * int32 oneof_1140 = 1140; + * @return Whether the oneof1140 field is set. + */ + @java.lang.Override + public boolean hasOneof1140() { + return hugeOneofCase_ == 1140; + } /** * int32 oneof_1140 = 1140; * @return The oneof1140. */ + @java.lang.Override public int getOneof1140() { if (hugeOneofCase_ == 1140) { return (java.lang.Integer) hugeOneof_; @@ -185340,10 +198613,19 @@ public int getOneof1140() { } public static final int ONEOF_1141_FIELD_NUMBER = 1141; + /** + * int32 oneof_1141 = 1141; + * @return Whether the oneof1141 field is set. + */ + @java.lang.Override + public boolean hasOneof1141() { + return hugeOneofCase_ == 1141; + } /** * int32 oneof_1141 = 1141; * @return The oneof1141. */ + @java.lang.Override public int getOneof1141() { if (hugeOneofCase_ == 1141) { return (java.lang.Integer) hugeOneof_; @@ -185352,10 +198634,19 @@ public int getOneof1141() { } public static final int ONEOF_1142_FIELD_NUMBER = 1142; + /** + * int32 oneof_1142 = 1142; + * @return Whether the oneof1142 field is set. + */ + @java.lang.Override + public boolean hasOneof1142() { + return hugeOneofCase_ == 1142; + } /** * int32 oneof_1142 = 1142; * @return The oneof1142. */ + @java.lang.Override public int getOneof1142() { if (hugeOneofCase_ == 1142) { return (java.lang.Integer) hugeOneof_; @@ -185364,10 +198655,19 @@ public int getOneof1142() { } public static final int ONEOF_1143_FIELD_NUMBER = 1143; + /** + * int32 oneof_1143 = 1143; + * @return Whether the oneof1143 field is set. + */ + @java.lang.Override + public boolean hasOneof1143() { + return hugeOneofCase_ == 1143; + } /** * int32 oneof_1143 = 1143; * @return The oneof1143. */ + @java.lang.Override public int getOneof1143() { if (hugeOneofCase_ == 1143) { return (java.lang.Integer) hugeOneof_; @@ -185376,10 +198676,19 @@ public int getOneof1143() { } public static final int ONEOF_1144_FIELD_NUMBER = 1144; + /** + * int32 oneof_1144 = 1144; + * @return Whether the oneof1144 field is set. + */ + @java.lang.Override + public boolean hasOneof1144() { + return hugeOneofCase_ == 1144; + } /** * int32 oneof_1144 = 1144; * @return The oneof1144. */ + @java.lang.Override public int getOneof1144() { if (hugeOneofCase_ == 1144) { return (java.lang.Integer) hugeOneof_; @@ -185388,10 +198697,19 @@ public int getOneof1144() { } public static final int ONEOF_1145_FIELD_NUMBER = 1145; + /** + * int32 oneof_1145 = 1145; + * @return Whether the oneof1145 field is set. + */ + @java.lang.Override + public boolean hasOneof1145() { + return hugeOneofCase_ == 1145; + } /** * int32 oneof_1145 = 1145; * @return The oneof1145. */ + @java.lang.Override public int getOneof1145() { if (hugeOneofCase_ == 1145) { return (java.lang.Integer) hugeOneof_; @@ -185400,10 +198718,19 @@ public int getOneof1145() { } public static final int ONEOF_1146_FIELD_NUMBER = 1146; + /** + * int32 oneof_1146 = 1146; + * @return Whether the oneof1146 field is set. + */ + @java.lang.Override + public boolean hasOneof1146() { + return hugeOneofCase_ == 1146; + } /** * int32 oneof_1146 = 1146; * @return The oneof1146. */ + @java.lang.Override public int getOneof1146() { if (hugeOneofCase_ == 1146) { return (java.lang.Integer) hugeOneof_; @@ -185412,10 +198739,19 @@ public int getOneof1146() { } public static final int ONEOF_1147_FIELD_NUMBER = 1147; + /** + * int32 oneof_1147 = 1147; + * @return Whether the oneof1147 field is set. + */ + @java.lang.Override + public boolean hasOneof1147() { + return hugeOneofCase_ == 1147; + } /** * int32 oneof_1147 = 1147; * @return The oneof1147. */ + @java.lang.Override public int getOneof1147() { if (hugeOneofCase_ == 1147) { return (java.lang.Integer) hugeOneof_; @@ -185424,10 +198760,19 @@ public int getOneof1147() { } public static final int ONEOF_1148_FIELD_NUMBER = 1148; + /** + * int32 oneof_1148 = 1148; + * @return Whether the oneof1148 field is set. + */ + @java.lang.Override + public boolean hasOneof1148() { + return hugeOneofCase_ == 1148; + } /** * int32 oneof_1148 = 1148; * @return The oneof1148. */ + @java.lang.Override public int getOneof1148() { if (hugeOneofCase_ == 1148) { return (java.lang.Integer) hugeOneof_; @@ -185436,10 +198781,19 @@ public int getOneof1148() { } public static final int ONEOF_1149_FIELD_NUMBER = 1149; + /** + * int32 oneof_1149 = 1149; + * @return Whether the oneof1149 field is set. + */ + @java.lang.Override + public boolean hasOneof1149() { + return hugeOneofCase_ == 1149; + } /** * int32 oneof_1149 = 1149; * @return The oneof1149. */ + @java.lang.Override public int getOneof1149() { if (hugeOneofCase_ == 1149) { return (java.lang.Integer) hugeOneof_; @@ -185448,10 +198802,19 @@ public int getOneof1149() { } public static final int ONEOF_1150_FIELD_NUMBER = 1150; + /** + * int32 oneof_1150 = 1150; + * @return Whether the oneof1150 field is set. + */ + @java.lang.Override + public boolean hasOneof1150() { + return hugeOneofCase_ == 1150; + } /** * int32 oneof_1150 = 1150; * @return The oneof1150. */ + @java.lang.Override public int getOneof1150() { if (hugeOneofCase_ == 1150) { return (java.lang.Integer) hugeOneof_; @@ -185460,10 +198823,19 @@ public int getOneof1150() { } public static final int ONEOF_1151_FIELD_NUMBER = 1151; + /** + * int32 oneof_1151 = 1151; + * @return Whether the oneof1151 field is set. + */ + @java.lang.Override + public boolean hasOneof1151() { + return hugeOneofCase_ == 1151; + } /** * int32 oneof_1151 = 1151; * @return The oneof1151. */ + @java.lang.Override public int getOneof1151() { if (hugeOneofCase_ == 1151) { return (java.lang.Integer) hugeOneof_; @@ -185472,10 +198844,19 @@ public int getOneof1151() { } public static final int ONEOF_1152_FIELD_NUMBER = 1152; + /** + * int32 oneof_1152 = 1152; + * @return Whether the oneof1152 field is set. + */ + @java.lang.Override + public boolean hasOneof1152() { + return hugeOneofCase_ == 1152; + } /** * int32 oneof_1152 = 1152; * @return The oneof1152. */ + @java.lang.Override public int getOneof1152() { if (hugeOneofCase_ == 1152) { return (java.lang.Integer) hugeOneof_; @@ -185484,10 +198865,19 @@ public int getOneof1152() { } public static final int ONEOF_1153_FIELD_NUMBER = 1153; + /** + * int32 oneof_1153 = 1153; + * @return Whether the oneof1153 field is set. + */ + @java.lang.Override + public boolean hasOneof1153() { + return hugeOneofCase_ == 1153; + } /** * int32 oneof_1153 = 1153; * @return The oneof1153. */ + @java.lang.Override public int getOneof1153() { if (hugeOneofCase_ == 1153) { return (java.lang.Integer) hugeOneof_; @@ -185496,10 +198886,19 @@ public int getOneof1153() { } public static final int ONEOF_1154_FIELD_NUMBER = 1154; + /** + * int32 oneof_1154 = 1154; + * @return Whether the oneof1154 field is set. + */ + @java.lang.Override + public boolean hasOneof1154() { + return hugeOneofCase_ == 1154; + } /** * int32 oneof_1154 = 1154; * @return The oneof1154. */ + @java.lang.Override public int getOneof1154() { if (hugeOneofCase_ == 1154) { return (java.lang.Integer) hugeOneof_; @@ -185508,10 +198907,19 @@ public int getOneof1154() { } public static final int ONEOF_1155_FIELD_NUMBER = 1155; + /** + * int32 oneof_1155 = 1155; + * @return Whether the oneof1155 field is set. + */ + @java.lang.Override + public boolean hasOneof1155() { + return hugeOneofCase_ == 1155; + } /** * int32 oneof_1155 = 1155; * @return The oneof1155. */ + @java.lang.Override public int getOneof1155() { if (hugeOneofCase_ == 1155) { return (java.lang.Integer) hugeOneof_; @@ -185520,10 +198928,19 @@ public int getOneof1155() { } public static final int ONEOF_1156_FIELD_NUMBER = 1156; + /** + * int32 oneof_1156 = 1156; + * @return Whether the oneof1156 field is set. + */ + @java.lang.Override + public boolean hasOneof1156() { + return hugeOneofCase_ == 1156; + } /** * int32 oneof_1156 = 1156; * @return The oneof1156. */ + @java.lang.Override public int getOneof1156() { if (hugeOneofCase_ == 1156) { return (java.lang.Integer) hugeOneof_; @@ -185532,10 +198949,19 @@ public int getOneof1156() { } public static final int ONEOF_1157_FIELD_NUMBER = 1157; + /** + * int32 oneof_1157 = 1157; + * @return Whether the oneof1157 field is set. + */ + @java.lang.Override + public boolean hasOneof1157() { + return hugeOneofCase_ == 1157; + } /** * int32 oneof_1157 = 1157; * @return The oneof1157. */ + @java.lang.Override public int getOneof1157() { if (hugeOneofCase_ == 1157) { return (java.lang.Integer) hugeOneof_; @@ -185544,10 +198970,19 @@ public int getOneof1157() { } public static final int ONEOF_1158_FIELD_NUMBER = 1158; + /** + * int32 oneof_1158 = 1158; + * @return Whether the oneof1158 field is set. + */ + @java.lang.Override + public boolean hasOneof1158() { + return hugeOneofCase_ == 1158; + } /** * int32 oneof_1158 = 1158; * @return The oneof1158. */ + @java.lang.Override public int getOneof1158() { if (hugeOneofCase_ == 1158) { return (java.lang.Integer) hugeOneof_; @@ -185556,10 +198991,19 @@ public int getOneof1158() { } public static final int ONEOF_1159_FIELD_NUMBER = 1159; + /** + * int32 oneof_1159 = 1159; + * @return Whether the oneof1159 field is set. + */ + @java.lang.Override + public boolean hasOneof1159() { + return hugeOneofCase_ == 1159; + } /** * int32 oneof_1159 = 1159; * @return The oneof1159. */ + @java.lang.Override public int getOneof1159() { if (hugeOneofCase_ == 1159) { return (java.lang.Integer) hugeOneof_; @@ -185568,22 +199012,40 @@ public int getOneof1159() { } public static final int ONEOF_1160_FIELD_NUMBER = 1160; + /** + * int32 oneof_1160 = 1160; + * @return Whether the oneof1160 field is set. + */ + @java.lang.Override + public boolean hasOneof1160() { + return hugeOneofCase_ == 1160; + } /** * int32 oneof_1160 = 1160; * @return The oneof1160. */ + @java.lang.Override public int getOneof1160() { if (hugeOneofCase_ == 1160) { return (java.lang.Integer) hugeOneof_; } return 0; } - - public static final int ONEOF_1161_FIELD_NUMBER = 1161; + + public static final int ONEOF_1161_FIELD_NUMBER = 1161; + /** + * int32 oneof_1161 = 1161; + * @return Whether the oneof1161 field is set. + */ + @java.lang.Override + public boolean hasOneof1161() { + return hugeOneofCase_ == 1161; + } /** * int32 oneof_1161 = 1161; * @return The oneof1161. */ + @java.lang.Override public int getOneof1161() { if (hugeOneofCase_ == 1161) { return (java.lang.Integer) hugeOneof_; @@ -185592,10 +199054,19 @@ public int getOneof1161() { } public static final int ONEOF_1162_FIELD_NUMBER = 1162; + /** + * int32 oneof_1162 = 1162; + * @return Whether the oneof1162 field is set. + */ + @java.lang.Override + public boolean hasOneof1162() { + return hugeOneofCase_ == 1162; + } /** * int32 oneof_1162 = 1162; * @return The oneof1162. */ + @java.lang.Override public int getOneof1162() { if (hugeOneofCase_ == 1162) { return (java.lang.Integer) hugeOneof_; @@ -185604,10 +199075,19 @@ public int getOneof1162() { } public static final int ONEOF_1163_FIELD_NUMBER = 1163; + /** + * int32 oneof_1163 = 1163; + * @return Whether the oneof1163 field is set. + */ + @java.lang.Override + public boolean hasOneof1163() { + return hugeOneofCase_ == 1163; + } /** * int32 oneof_1163 = 1163; * @return The oneof1163. */ + @java.lang.Override public int getOneof1163() { if (hugeOneofCase_ == 1163) { return (java.lang.Integer) hugeOneof_; @@ -185616,10 +199096,19 @@ public int getOneof1163() { } public static final int ONEOF_1164_FIELD_NUMBER = 1164; + /** + * int32 oneof_1164 = 1164; + * @return Whether the oneof1164 field is set. + */ + @java.lang.Override + public boolean hasOneof1164() { + return hugeOneofCase_ == 1164; + } /** * int32 oneof_1164 = 1164; * @return The oneof1164. */ + @java.lang.Override public int getOneof1164() { if (hugeOneofCase_ == 1164) { return (java.lang.Integer) hugeOneof_; @@ -185628,10 +199117,19 @@ public int getOneof1164() { } public static final int ONEOF_1165_FIELD_NUMBER = 1165; + /** + * int32 oneof_1165 = 1165; + * @return Whether the oneof1165 field is set. + */ + @java.lang.Override + public boolean hasOneof1165() { + return hugeOneofCase_ == 1165; + } /** * int32 oneof_1165 = 1165; * @return The oneof1165. */ + @java.lang.Override public int getOneof1165() { if (hugeOneofCase_ == 1165) { return (java.lang.Integer) hugeOneof_; @@ -185640,10 +199138,19 @@ public int getOneof1165() { } public static final int ONEOF_1166_FIELD_NUMBER = 1166; + /** + * int32 oneof_1166 = 1166; + * @return Whether the oneof1166 field is set. + */ + @java.lang.Override + public boolean hasOneof1166() { + return hugeOneofCase_ == 1166; + } /** * int32 oneof_1166 = 1166; * @return The oneof1166. */ + @java.lang.Override public int getOneof1166() { if (hugeOneofCase_ == 1166) { return (java.lang.Integer) hugeOneof_; @@ -185652,10 +199159,19 @@ public int getOneof1166() { } public static final int ONEOF_1167_FIELD_NUMBER = 1167; + /** + * int32 oneof_1167 = 1167; + * @return Whether the oneof1167 field is set. + */ + @java.lang.Override + public boolean hasOneof1167() { + return hugeOneofCase_ == 1167; + } /** * int32 oneof_1167 = 1167; * @return The oneof1167. */ + @java.lang.Override public int getOneof1167() { if (hugeOneofCase_ == 1167) { return (java.lang.Integer) hugeOneof_; @@ -185664,10 +199180,19 @@ public int getOneof1167() { } public static final int ONEOF_1168_FIELD_NUMBER = 1168; + /** + * int32 oneof_1168 = 1168; + * @return Whether the oneof1168 field is set. + */ + @java.lang.Override + public boolean hasOneof1168() { + return hugeOneofCase_ == 1168; + } /** * int32 oneof_1168 = 1168; * @return The oneof1168. */ + @java.lang.Override public int getOneof1168() { if (hugeOneofCase_ == 1168) { return (java.lang.Integer) hugeOneof_; @@ -185676,10 +199201,19 @@ public int getOneof1168() { } public static final int ONEOF_1169_FIELD_NUMBER = 1169; + /** + * int32 oneof_1169 = 1169; + * @return Whether the oneof1169 field is set. + */ + @java.lang.Override + public boolean hasOneof1169() { + return hugeOneofCase_ == 1169; + } /** * int32 oneof_1169 = 1169; * @return The oneof1169. */ + @java.lang.Override public int getOneof1169() { if (hugeOneofCase_ == 1169) { return (java.lang.Integer) hugeOneof_; @@ -185688,10 +199222,19 @@ public int getOneof1169() { } public static final int ONEOF_1170_FIELD_NUMBER = 1170; + /** + * int32 oneof_1170 = 1170; + * @return Whether the oneof1170 field is set. + */ + @java.lang.Override + public boolean hasOneof1170() { + return hugeOneofCase_ == 1170; + } /** * int32 oneof_1170 = 1170; * @return The oneof1170. */ + @java.lang.Override public int getOneof1170() { if (hugeOneofCase_ == 1170) { return (java.lang.Integer) hugeOneof_; @@ -185700,10 +199243,19 @@ public int getOneof1170() { } public static final int ONEOF_1171_FIELD_NUMBER = 1171; + /** + * int32 oneof_1171 = 1171; + * @return Whether the oneof1171 field is set. + */ + @java.lang.Override + public boolean hasOneof1171() { + return hugeOneofCase_ == 1171; + } /** * int32 oneof_1171 = 1171; * @return The oneof1171. */ + @java.lang.Override public int getOneof1171() { if (hugeOneofCase_ == 1171) { return (java.lang.Integer) hugeOneof_; @@ -185712,10 +199264,19 @@ public int getOneof1171() { } public static final int ONEOF_1172_FIELD_NUMBER = 1172; + /** + * int32 oneof_1172 = 1172; + * @return Whether the oneof1172 field is set. + */ + @java.lang.Override + public boolean hasOneof1172() { + return hugeOneofCase_ == 1172; + } /** * int32 oneof_1172 = 1172; * @return The oneof1172. */ + @java.lang.Override public int getOneof1172() { if (hugeOneofCase_ == 1172) { return (java.lang.Integer) hugeOneof_; @@ -185724,10 +199285,19 @@ public int getOneof1172() { } public static final int ONEOF_1173_FIELD_NUMBER = 1173; + /** + * int32 oneof_1173 = 1173; + * @return Whether the oneof1173 field is set. + */ + @java.lang.Override + public boolean hasOneof1173() { + return hugeOneofCase_ == 1173; + } /** * int32 oneof_1173 = 1173; * @return The oneof1173. */ + @java.lang.Override public int getOneof1173() { if (hugeOneofCase_ == 1173) { return (java.lang.Integer) hugeOneof_; @@ -185736,10 +199306,19 @@ public int getOneof1173() { } public static final int ONEOF_1174_FIELD_NUMBER = 1174; + /** + * int32 oneof_1174 = 1174; + * @return Whether the oneof1174 field is set. + */ + @java.lang.Override + public boolean hasOneof1174() { + return hugeOneofCase_ == 1174; + } /** * int32 oneof_1174 = 1174; * @return The oneof1174. */ + @java.lang.Override public int getOneof1174() { if (hugeOneofCase_ == 1174) { return (java.lang.Integer) hugeOneof_; @@ -185748,10 +199327,19 @@ public int getOneof1174() { } public static final int ONEOF_1175_FIELD_NUMBER = 1175; + /** + * int32 oneof_1175 = 1175; + * @return Whether the oneof1175 field is set. + */ + @java.lang.Override + public boolean hasOneof1175() { + return hugeOneofCase_ == 1175; + } /** * int32 oneof_1175 = 1175; * @return The oneof1175. */ + @java.lang.Override public int getOneof1175() { if (hugeOneofCase_ == 1175) { return (java.lang.Integer) hugeOneof_; @@ -185760,10 +199348,19 @@ public int getOneof1175() { } public static final int ONEOF_1176_FIELD_NUMBER = 1176; + /** + * int32 oneof_1176 = 1176; + * @return Whether the oneof1176 field is set. + */ + @java.lang.Override + public boolean hasOneof1176() { + return hugeOneofCase_ == 1176; + } /** * int32 oneof_1176 = 1176; * @return The oneof1176. */ + @java.lang.Override public int getOneof1176() { if (hugeOneofCase_ == 1176) { return (java.lang.Integer) hugeOneof_; @@ -185772,10 +199369,19 @@ public int getOneof1176() { } public static final int ONEOF_1177_FIELD_NUMBER = 1177; + /** + * int32 oneof_1177 = 1177; + * @return Whether the oneof1177 field is set. + */ + @java.lang.Override + public boolean hasOneof1177() { + return hugeOneofCase_ == 1177; + } /** * int32 oneof_1177 = 1177; * @return The oneof1177. */ + @java.lang.Override public int getOneof1177() { if (hugeOneofCase_ == 1177) { return (java.lang.Integer) hugeOneof_; @@ -185784,10 +199390,19 @@ public int getOneof1177() { } public static final int ONEOF_1178_FIELD_NUMBER = 1178; + /** + * int32 oneof_1178 = 1178; + * @return Whether the oneof1178 field is set. + */ + @java.lang.Override + public boolean hasOneof1178() { + return hugeOneofCase_ == 1178; + } /** * int32 oneof_1178 = 1178; * @return The oneof1178. */ + @java.lang.Override public int getOneof1178() { if (hugeOneofCase_ == 1178) { return (java.lang.Integer) hugeOneof_; @@ -185796,10 +199411,19 @@ public int getOneof1178() { } public static final int ONEOF_1179_FIELD_NUMBER = 1179; + /** + * int32 oneof_1179 = 1179; + * @return Whether the oneof1179 field is set. + */ + @java.lang.Override + public boolean hasOneof1179() { + return hugeOneofCase_ == 1179; + } /** * int32 oneof_1179 = 1179; * @return The oneof1179. */ + @java.lang.Override public int getOneof1179() { if (hugeOneofCase_ == 1179) { return (java.lang.Integer) hugeOneof_; @@ -185808,10 +199432,19 @@ public int getOneof1179() { } public static final int ONEOF_1180_FIELD_NUMBER = 1180; + /** + * int32 oneof_1180 = 1180; + * @return Whether the oneof1180 field is set. + */ + @java.lang.Override + public boolean hasOneof1180() { + return hugeOneofCase_ == 1180; + } /** * int32 oneof_1180 = 1180; * @return The oneof1180. */ + @java.lang.Override public int getOneof1180() { if (hugeOneofCase_ == 1180) { return (java.lang.Integer) hugeOneof_; @@ -185820,10 +199453,19 @@ public int getOneof1180() { } public static final int ONEOF_1181_FIELD_NUMBER = 1181; + /** + * int32 oneof_1181 = 1181; + * @return Whether the oneof1181 field is set. + */ + @java.lang.Override + public boolean hasOneof1181() { + return hugeOneofCase_ == 1181; + } /** * int32 oneof_1181 = 1181; * @return The oneof1181. */ + @java.lang.Override public int getOneof1181() { if (hugeOneofCase_ == 1181) { return (java.lang.Integer) hugeOneof_; @@ -185832,10 +199474,19 @@ public int getOneof1181() { } public static final int ONEOF_1182_FIELD_NUMBER = 1182; + /** + * int32 oneof_1182 = 1182; + * @return Whether the oneof1182 field is set. + */ + @java.lang.Override + public boolean hasOneof1182() { + return hugeOneofCase_ == 1182; + } /** * int32 oneof_1182 = 1182; * @return The oneof1182. */ + @java.lang.Override public int getOneof1182() { if (hugeOneofCase_ == 1182) { return (java.lang.Integer) hugeOneof_; @@ -185844,10 +199495,19 @@ public int getOneof1182() { } public static final int ONEOF_1183_FIELD_NUMBER = 1183; + /** + * int32 oneof_1183 = 1183; + * @return Whether the oneof1183 field is set. + */ + @java.lang.Override + public boolean hasOneof1183() { + return hugeOneofCase_ == 1183; + } /** * int32 oneof_1183 = 1183; * @return The oneof1183. */ + @java.lang.Override public int getOneof1183() { if (hugeOneofCase_ == 1183) { return (java.lang.Integer) hugeOneof_; @@ -185856,10 +199516,19 @@ public int getOneof1183() { } public static final int ONEOF_1184_FIELD_NUMBER = 1184; + /** + * int32 oneof_1184 = 1184; + * @return Whether the oneof1184 field is set. + */ + @java.lang.Override + public boolean hasOneof1184() { + return hugeOneofCase_ == 1184; + } /** * int32 oneof_1184 = 1184; * @return The oneof1184. */ + @java.lang.Override public int getOneof1184() { if (hugeOneofCase_ == 1184) { return (java.lang.Integer) hugeOneof_; @@ -185868,10 +199537,19 @@ public int getOneof1184() { } public static final int ONEOF_1185_FIELD_NUMBER = 1185; + /** + * int32 oneof_1185 = 1185; + * @return Whether the oneof1185 field is set. + */ + @java.lang.Override + public boolean hasOneof1185() { + return hugeOneofCase_ == 1185; + } /** * int32 oneof_1185 = 1185; * @return The oneof1185. */ + @java.lang.Override public int getOneof1185() { if (hugeOneofCase_ == 1185) { return (java.lang.Integer) hugeOneof_; @@ -185880,10 +199558,19 @@ public int getOneof1185() { } public static final int ONEOF_1186_FIELD_NUMBER = 1186; + /** + * int32 oneof_1186 = 1186; + * @return Whether the oneof1186 field is set. + */ + @java.lang.Override + public boolean hasOneof1186() { + return hugeOneofCase_ == 1186; + } /** * int32 oneof_1186 = 1186; * @return The oneof1186. */ + @java.lang.Override public int getOneof1186() { if (hugeOneofCase_ == 1186) { return (java.lang.Integer) hugeOneof_; @@ -185892,10 +199579,19 @@ public int getOneof1186() { } public static final int ONEOF_1187_FIELD_NUMBER = 1187; + /** + * int32 oneof_1187 = 1187; + * @return Whether the oneof1187 field is set. + */ + @java.lang.Override + public boolean hasOneof1187() { + return hugeOneofCase_ == 1187; + } /** * int32 oneof_1187 = 1187; * @return The oneof1187. */ + @java.lang.Override public int getOneof1187() { if (hugeOneofCase_ == 1187) { return (java.lang.Integer) hugeOneof_; @@ -185904,10 +199600,19 @@ public int getOneof1187() { } public static final int ONEOF_1188_FIELD_NUMBER = 1188; + /** + * int32 oneof_1188 = 1188; + * @return Whether the oneof1188 field is set. + */ + @java.lang.Override + public boolean hasOneof1188() { + return hugeOneofCase_ == 1188; + } /** * int32 oneof_1188 = 1188; * @return The oneof1188. */ + @java.lang.Override public int getOneof1188() { if (hugeOneofCase_ == 1188) { return (java.lang.Integer) hugeOneof_; @@ -185916,10 +199621,19 @@ public int getOneof1188() { } public static final int ONEOF_1189_FIELD_NUMBER = 1189; + /** + * int32 oneof_1189 = 1189; + * @return Whether the oneof1189 field is set. + */ + @java.lang.Override + public boolean hasOneof1189() { + return hugeOneofCase_ == 1189; + } /** * int32 oneof_1189 = 1189; * @return The oneof1189. */ + @java.lang.Override public int getOneof1189() { if (hugeOneofCase_ == 1189) { return (java.lang.Integer) hugeOneof_; @@ -185928,10 +199642,19 @@ public int getOneof1189() { } public static final int ONEOF_1190_FIELD_NUMBER = 1190; + /** + * int32 oneof_1190 = 1190; + * @return Whether the oneof1190 field is set. + */ + @java.lang.Override + public boolean hasOneof1190() { + return hugeOneofCase_ == 1190; + } /** * int32 oneof_1190 = 1190; * @return The oneof1190. */ + @java.lang.Override public int getOneof1190() { if (hugeOneofCase_ == 1190) { return (java.lang.Integer) hugeOneof_; @@ -185940,10 +199663,19 @@ public int getOneof1190() { } public static final int ONEOF_1191_FIELD_NUMBER = 1191; + /** + * int32 oneof_1191 = 1191; + * @return Whether the oneof1191 field is set. + */ + @java.lang.Override + public boolean hasOneof1191() { + return hugeOneofCase_ == 1191; + } /** * int32 oneof_1191 = 1191; * @return The oneof1191. */ + @java.lang.Override public int getOneof1191() { if (hugeOneofCase_ == 1191) { return (java.lang.Integer) hugeOneof_; @@ -185952,10 +199684,19 @@ public int getOneof1191() { } public static final int ONEOF_1192_FIELD_NUMBER = 1192; + /** + * int32 oneof_1192 = 1192; + * @return Whether the oneof1192 field is set. + */ + @java.lang.Override + public boolean hasOneof1192() { + return hugeOneofCase_ == 1192; + } /** * int32 oneof_1192 = 1192; * @return The oneof1192. */ + @java.lang.Override public int getOneof1192() { if (hugeOneofCase_ == 1192) { return (java.lang.Integer) hugeOneof_; @@ -185964,10 +199705,19 @@ public int getOneof1192() { } public static final int ONEOF_1193_FIELD_NUMBER = 1193; + /** + * int32 oneof_1193 = 1193; + * @return Whether the oneof1193 field is set. + */ + @java.lang.Override + public boolean hasOneof1193() { + return hugeOneofCase_ == 1193; + } /** * int32 oneof_1193 = 1193; * @return The oneof1193. */ + @java.lang.Override public int getOneof1193() { if (hugeOneofCase_ == 1193) { return (java.lang.Integer) hugeOneof_; @@ -185976,10 +199726,19 @@ public int getOneof1193() { } public static final int ONEOF_1194_FIELD_NUMBER = 1194; + /** + * int32 oneof_1194 = 1194; + * @return Whether the oneof1194 field is set. + */ + @java.lang.Override + public boolean hasOneof1194() { + return hugeOneofCase_ == 1194; + } /** * int32 oneof_1194 = 1194; * @return The oneof1194. */ + @java.lang.Override public int getOneof1194() { if (hugeOneofCase_ == 1194) { return (java.lang.Integer) hugeOneof_; @@ -185988,10 +199747,19 @@ public int getOneof1194() { } public static final int ONEOF_1195_FIELD_NUMBER = 1195; + /** + * int32 oneof_1195 = 1195; + * @return Whether the oneof1195 field is set. + */ + @java.lang.Override + public boolean hasOneof1195() { + return hugeOneofCase_ == 1195; + } /** * int32 oneof_1195 = 1195; * @return The oneof1195. */ + @java.lang.Override public int getOneof1195() { if (hugeOneofCase_ == 1195) { return (java.lang.Integer) hugeOneof_; @@ -186000,10 +199768,19 @@ public int getOneof1195() { } public static final int ONEOF_1196_FIELD_NUMBER = 1196; + /** + * int32 oneof_1196 = 1196; + * @return Whether the oneof1196 field is set. + */ + @java.lang.Override + public boolean hasOneof1196() { + return hugeOneofCase_ == 1196; + } /** * int32 oneof_1196 = 1196; * @return The oneof1196. */ + @java.lang.Override public int getOneof1196() { if (hugeOneofCase_ == 1196) { return (java.lang.Integer) hugeOneof_; @@ -186012,10 +199789,19 @@ public int getOneof1196() { } public static final int ONEOF_1197_FIELD_NUMBER = 1197; + /** + * int32 oneof_1197 = 1197; + * @return Whether the oneof1197 field is set. + */ + @java.lang.Override + public boolean hasOneof1197() { + return hugeOneofCase_ == 1197; + } /** * int32 oneof_1197 = 1197; * @return The oneof1197. */ + @java.lang.Override public int getOneof1197() { if (hugeOneofCase_ == 1197) { return (java.lang.Integer) hugeOneof_; @@ -186024,10 +199810,19 @@ public int getOneof1197() { } public static final int ONEOF_1198_FIELD_NUMBER = 1198; + /** + * int32 oneof_1198 = 1198; + * @return Whether the oneof1198 field is set. + */ + @java.lang.Override + public boolean hasOneof1198() { + return hugeOneofCase_ == 1198; + } /** * int32 oneof_1198 = 1198; * @return The oneof1198. */ + @java.lang.Override public int getOneof1198() { if (hugeOneofCase_ == 1198) { return (java.lang.Integer) hugeOneof_; @@ -186036,10 +199831,19 @@ public int getOneof1198() { } public static final int ONEOF_1199_FIELD_NUMBER = 1199; + /** + * int32 oneof_1199 = 1199; + * @return Whether the oneof1199 field is set. + */ + @java.lang.Override + public boolean hasOneof1199() { + return hugeOneofCase_ == 1199; + } /** * int32 oneof_1199 = 1199; * @return The oneof1199. */ + @java.lang.Override public int getOneof1199() { if (hugeOneofCase_ == 1199) { return (java.lang.Integer) hugeOneof_; @@ -186048,10 +199852,19 @@ public int getOneof1199() { } public static final int ONEOF_1200_FIELD_NUMBER = 1200; + /** + * int32 oneof_1200 = 1200; + * @return Whether the oneof1200 field is set. + */ + @java.lang.Override + public boolean hasOneof1200() { + return hugeOneofCase_ == 1200; + } /** * int32 oneof_1200 = 1200; * @return The oneof1200. */ + @java.lang.Override public int getOneof1200() { if (hugeOneofCase_ == 1200) { return (java.lang.Integer) hugeOneof_; @@ -186060,10 +199873,19 @@ public int getOneof1200() { } public static final int ONEOF_1201_FIELD_NUMBER = 1201; + /** + * int32 oneof_1201 = 1201; + * @return Whether the oneof1201 field is set. + */ + @java.lang.Override + public boolean hasOneof1201() { + return hugeOneofCase_ == 1201; + } /** * int32 oneof_1201 = 1201; * @return The oneof1201. */ + @java.lang.Override public int getOneof1201() { if (hugeOneofCase_ == 1201) { return (java.lang.Integer) hugeOneof_; @@ -186072,10 +199894,19 @@ public int getOneof1201() { } public static final int ONEOF_1202_FIELD_NUMBER = 1202; + /** + * int32 oneof_1202 = 1202; + * @return Whether the oneof1202 field is set. + */ + @java.lang.Override + public boolean hasOneof1202() { + return hugeOneofCase_ == 1202; + } /** * int32 oneof_1202 = 1202; * @return The oneof1202. */ + @java.lang.Override public int getOneof1202() { if (hugeOneofCase_ == 1202) { return (java.lang.Integer) hugeOneof_; @@ -186084,10 +199915,19 @@ public int getOneof1202() { } public static final int ONEOF_1203_FIELD_NUMBER = 1203; + /** + * int32 oneof_1203 = 1203; + * @return Whether the oneof1203 field is set. + */ + @java.lang.Override + public boolean hasOneof1203() { + return hugeOneofCase_ == 1203; + } /** * int32 oneof_1203 = 1203; * @return The oneof1203. */ + @java.lang.Override public int getOneof1203() { if (hugeOneofCase_ == 1203) { return (java.lang.Integer) hugeOneof_; @@ -186096,10 +199936,19 @@ public int getOneof1203() { } public static final int ONEOF_1204_FIELD_NUMBER = 1204; + /** + * int32 oneof_1204 = 1204; + * @return Whether the oneof1204 field is set. + */ + @java.lang.Override + public boolean hasOneof1204() { + return hugeOneofCase_ == 1204; + } /** * int32 oneof_1204 = 1204; * @return The oneof1204. */ + @java.lang.Override public int getOneof1204() { if (hugeOneofCase_ == 1204) { return (java.lang.Integer) hugeOneof_; @@ -186108,10 +199957,19 @@ public int getOneof1204() { } public static final int ONEOF_1205_FIELD_NUMBER = 1205; + /** + * int32 oneof_1205 = 1205; + * @return Whether the oneof1205 field is set. + */ + @java.lang.Override + public boolean hasOneof1205() { + return hugeOneofCase_ == 1205; + } /** * int32 oneof_1205 = 1205; * @return The oneof1205. */ + @java.lang.Override public int getOneof1205() { if (hugeOneofCase_ == 1205) { return (java.lang.Integer) hugeOneof_; @@ -186120,10 +199978,19 @@ public int getOneof1205() { } public static final int ONEOF_1206_FIELD_NUMBER = 1206; + /** + * int32 oneof_1206 = 1206; + * @return Whether the oneof1206 field is set. + */ + @java.lang.Override + public boolean hasOneof1206() { + return hugeOneofCase_ == 1206; + } /** * int32 oneof_1206 = 1206; * @return The oneof1206. */ + @java.lang.Override public int getOneof1206() { if (hugeOneofCase_ == 1206) { return (java.lang.Integer) hugeOneof_; @@ -186132,10 +199999,19 @@ public int getOneof1206() { } public static final int ONEOF_1207_FIELD_NUMBER = 1207; + /** + * int32 oneof_1207 = 1207; + * @return Whether the oneof1207 field is set. + */ + @java.lang.Override + public boolean hasOneof1207() { + return hugeOneofCase_ == 1207; + } /** * int32 oneof_1207 = 1207; * @return The oneof1207. */ + @java.lang.Override public int getOneof1207() { if (hugeOneofCase_ == 1207) { return (java.lang.Integer) hugeOneof_; @@ -186144,10 +200020,19 @@ public int getOneof1207() { } public static final int ONEOF_1208_FIELD_NUMBER = 1208; + /** + * int32 oneof_1208 = 1208; + * @return Whether the oneof1208 field is set. + */ + @java.lang.Override + public boolean hasOneof1208() { + return hugeOneofCase_ == 1208; + } /** * int32 oneof_1208 = 1208; * @return The oneof1208. */ + @java.lang.Override public int getOneof1208() { if (hugeOneofCase_ == 1208) { return (java.lang.Integer) hugeOneof_; @@ -186156,10 +200041,19 @@ public int getOneof1208() { } public static final int ONEOF_1209_FIELD_NUMBER = 1209; + /** + * int32 oneof_1209 = 1209; + * @return Whether the oneof1209 field is set. + */ + @java.lang.Override + public boolean hasOneof1209() { + return hugeOneofCase_ == 1209; + } /** * int32 oneof_1209 = 1209; * @return The oneof1209. */ + @java.lang.Override public int getOneof1209() { if (hugeOneofCase_ == 1209) { return (java.lang.Integer) hugeOneof_; @@ -186168,10 +200062,19 @@ public int getOneof1209() { } public static final int ONEOF_1210_FIELD_NUMBER = 1210; + /** + * int32 oneof_1210 = 1210; + * @return Whether the oneof1210 field is set. + */ + @java.lang.Override + public boolean hasOneof1210() { + return hugeOneofCase_ == 1210; + } /** * int32 oneof_1210 = 1210; * @return The oneof1210. */ + @java.lang.Override public int getOneof1210() { if (hugeOneofCase_ == 1210) { return (java.lang.Integer) hugeOneof_; @@ -186180,10 +200083,19 @@ public int getOneof1210() { } public static final int ONEOF_1211_FIELD_NUMBER = 1211; + /** + * int32 oneof_1211 = 1211; + * @return Whether the oneof1211 field is set. + */ + @java.lang.Override + public boolean hasOneof1211() { + return hugeOneofCase_ == 1211; + } /** * int32 oneof_1211 = 1211; * @return The oneof1211. */ + @java.lang.Override public int getOneof1211() { if (hugeOneofCase_ == 1211) { return (java.lang.Integer) hugeOneof_; @@ -186192,10 +200104,19 @@ public int getOneof1211() { } public static final int ONEOF_1212_FIELD_NUMBER = 1212; + /** + * int32 oneof_1212 = 1212; + * @return Whether the oneof1212 field is set. + */ + @java.lang.Override + public boolean hasOneof1212() { + return hugeOneofCase_ == 1212; + } /** * int32 oneof_1212 = 1212; * @return The oneof1212. */ + @java.lang.Override public int getOneof1212() { if (hugeOneofCase_ == 1212) { return (java.lang.Integer) hugeOneof_; @@ -186204,10 +200125,19 @@ public int getOneof1212() { } public static final int ONEOF_1213_FIELD_NUMBER = 1213; + /** + * int32 oneof_1213 = 1213; + * @return Whether the oneof1213 field is set. + */ + @java.lang.Override + public boolean hasOneof1213() { + return hugeOneofCase_ == 1213; + } /** * int32 oneof_1213 = 1213; * @return The oneof1213. */ + @java.lang.Override public int getOneof1213() { if (hugeOneofCase_ == 1213) { return (java.lang.Integer) hugeOneof_; @@ -186216,10 +200146,19 @@ public int getOneof1213() { } public static final int ONEOF_1214_FIELD_NUMBER = 1214; + /** + * int32 oneof_1214 = 1214; + * @return Whether the oneof1214 field is set. + */ + @java.lang.Override + public boolean hasOneof1214() { + return hugeOneofCase_ == 1214; + } /** * int32 oneof_1214 = 1214; * @return The oneof1214. */ + @java.lang.Override public int getOneof1214() { if (hugeOneofCase_ == 1214) { return (java.lang.Integer) hugeOneof_; @@ -186228,10 +200167,19 @@ public int getOneof1214() { } public static final int ONEOF_1215_FIELD_NUMBER = 1215; + /** + * int32 oneof_1215 = 1215; + * @return Whether the oneof1215 field is set. + */ + @java.lang.Override + public boolean hasOneof1215() { + return hugeOneofCase_ == 1215; + } /** * int32 oneof_1215 = 1215; * @return The oneof1215. */ + @java.lang.Override public int getOneof1215() { if (hugeOneofCase_ == 1215) { return (java.lang.Integer) hugeOneof_; @@ -186240,10 +200188,19 @@ public int getOneof1215() { } public static final int ONEOF_1216_FIELD_NUMBER = 1216; + /** + * int32 oneof_1216 = 1216; + * @return Whether the oneof1216 field is set. + */ + @java.lang.Override + public boolean hasOneof1216() { + return hugeOneofCase_ == 1216; + } /** * int32 oneof_1216 = 1216; * @return The oneof1216. */ + @java.lang.Override public int getOneof1216() { if (hugeOneofCase_ == 1216) { return (java.lang.Integer) hugeOneof_; @@ -186252,10 +200209,19 @@ public int getOneof1216() { } public static final int ONEOF_1217_FIELD_NUMBER = 1217; + /** + * int32 oneof_1217 = 1217; + * @return Whether the oneof1217 field is set. + */ + @java.lang.Override + public boolean hasOneof1217() { + return hugeOneofCase_ == 1217; + } /** * int32 oneof_1217 = 1217; * @return The oneof1217. */ + @java.lang.Override public int getOneof1217() { if (hugeOneofCase_ == 1217) { return (java.lang.Integer) hugeOneof_; @@ -186264,10 +200230,19 @@ public int getOneof1217() { } public static final int ONEOF_1218_FIELD_NUMBER = 1218; + /** + * int32 oneof_1218 = 1218; + * @return Whether the oneof1218 field is set. + */ + @java.lang.Override + public boolean hasOneof1218() { + return hugeOneofCase_ == 1218; + } /** * int32 oneof_1218 = 1218; * @return The oneof1218. */ + @java.lang.Override public int getOneof1218() { if (hugeOneofCase_ == 1218) { return (java.lang.Integer) hugeOneof_; @@ -186276,10 +200251,19 @@ public int getOneof1218() { } public static final int ONEOF_1219_FIELD_NUMBER = 1219; + /** + * int32 oneof_1219 = 1219; + * @return Whether the oneof1219 field is set. + */ + @java.lang.Override + public boolean hasOneof1219() { + return hugeOneofCase_ == 1219; + } /** * int32 oneof_1219 = 1219; * @return The oneof1219. */ + @java.lang.Override public int getOneof1219() { if (hugeOneofCase_ == 1219) { return (java.lang.Integer) hugeOneof_; @@ -186288,10 +200272,19 @@ public int getOneof1219() { } public static final int ONEOF_1220_FIELD_NUMBER = 1220; + /** + * int32 oneof_1220 = 1220; + * @return Whether the oneof1220 field is set. + */ + @java.lang.Override + public boolean hasOneof1220() { + return hugeOneofCase_ == 1220; + } /** * int32 oneof_1220 = 1220; * @return The oneof1220. */ + @java.lang.Override public int getOneof1220() { if (hugeOneofCase_ == 1220) { return (java.lang.Integer) hugeOneof_; @@ -186300,10 +200293,19 @@ public int getOneof1220() { } public static final int ONEOF_1221_FIELD_NUMBER = 1221; + /** + * int32 oneof_1221 = 1221; + * @return Whether the oneof1221 field is set. + */ + @java.lang.Override + public boolean hasOneof1221() { + return hugeOneofCase_ == 1221; + } /** * int32 oneof_1221 = 1221; * @return The oneof1221. */ + @java.lang.Override public int getOneof1221() { if (hugeOneofCase_ == 1221) { return (java.lang.Integer) hugeOneof_; @@ -186312,10 +200314,19 @@ public int getOneof1221() { } public static final int ONEOF_1222_FIELD_NUMBER = 1222; + /** + * int32 oneof_1222 = 1222; + * @return Whether the oneof1222 field is set. + */ + @java.lang.Override + public boolean hasOneof1222() { + return hugeOneofCase_ == 1222; + } /** * int32 oneof_1222 = 1222; * @return The oneof1222. */ + @java.lang.Override public int getOneof1222() { if (hugeOneofCase_ == 1222) { return (java.lang.Integer) hugeOneof_; @@ -186324,10 +200335,19 @@ public int getOneof1222() { } public static final int ONEOF_1223_FIELD_NUMBER = 1223; + /** + * int32 oneof_1223 = 1223; + * @return Whether the oneof1223 field is set. + */ + @java.lang.Override + public boolean hasOneof1223() { + return hugeOneofCase_ == 1223; + } /** * int32 oneof_1223 = 1223; * @return The oneof1223. */ + @java.lang.Override public int getOneof1223() { if (hugeOneofCase_ == 1223) { return (java.lang.Integer) hugeOneof_; @@ -186336,10 +200356,19 @@ public int getOneof1223() { } public static final int ONEOF_1224_FIELD_NUMBER = 1224; + /** + * int32 oneof_1224 = 1224; + * @return Whether the oneof1224 field is set. + */ + @java.lang.Override + public boolean hasOneof1224() { + return hugeOneofCase_ == 1224; + } /** * int32 oneof_1224 = 1224; * @return The oneof1224. */ + @java.lang.Override public int getOneof1224() { if (hugeOneofCase_ == 1224) { return (java.lang.Integer) hugeOneof_; @@ -186348,10 +200377,19 @@ public int getOneof1224() { } public static final int ONEOF_1225_FIELD_NUMBER = 1225; + /** + * int32 oneof_1225 = 1225; + * @return Whether the oneof1225 field is set. + */ + @java.lang.Override + public boolean hasOneof1225() { + return hugeOneofCase_ == 1225; + } /** * int32 oneof_1225 = 1225; * @return The oneof1225. */ + @java.lang.Override public int getOneof1225() { if (hugeOneofCase_ == 1225) { return (java.lang.Integer) hugeOneof_; @@ -186360,10 +200398,19 @@ public int getOneof1225() { } public static final int ONEOF_1226_FIELD_NUMBER = 1226; + /** + * int32 oneof_1226 = 1226; + * @return Whether the oneof1226 field is set. + */ + @java.lang.Override + public boolean hasOneof1226() { + return hugeOneofCase_ == 1226; + } /** * int32 oneof_1226 = 1226; * @return The oneof1226. */ + @java.lang.Override public int getOneof1226() { if (hugeOneofCase_ == 1226) { return (java.lang.Integer) hugeOneof_; @@ -186372,10 +200419,19 @@ public int getOneof1226() { } public static final int ONEOF_1227_FIELD_NUMBER = 1227; + /** + * int32 oneof_1227 = 1227; + * @return Whether the oneof1227 field is set. + */ + @java.lang.Override + public boolean hasOneof1227() { + return hugeOneofCase_ == 1227; + } /** * int32 oneof_1227 = 1227; * @return The oneof1227. */ + @java.lang.Override public int getOneof1227() { if (hugeOneofCase_ == 1227) { return (java.lang.Integer) hugeOneof_; @@ -186384,10 +200440,19 @@ public int getOneof1227() { } public static final int ONEOF_1228_FIELD_NUMBER = 1228; + /** + * int32 oneof_1228 = 1228; + * @return Whether the oneof1228 field is set. + */ + @java.lang.Override + public boolean hasOneof1228() { + return hugeOneofCase_ == 1228; + } /** * int32 oneof_1228 = 1228; * @return The oneof1228. */ + @java.lang.Override public int getOneof1228() { if (hugeOneofCase_ == 1228) { return (java.lang.Integer) hugeOneof_; @@ -186396,10 +200461,19 @@ public int getOneof1228() { } public static final int ONEOF_1229_FIELD_NUMBER = 1229; + /** + * int32 oneof_1229 = 1229; + * @return Whether the oneof1229 field is set. + */ + @java.lang.Override + public boolean hasOneof1229() { + return hugeOneofCase_ == 1229; + } /** * int32 oneof_1229 = 1229; * @return The oneof1229. */ + @java.lang.Override public int getOneof1229() { if (hugeOneofCase_ == 1229) { return (java.lang.Integer) hugeOneof_; @@ -186408,10 +200482,19 @@ public int getOneof1229() { } public static final int ONEOF_1230_FIELD_NUMBER = 1230; + /** + * int32 oneof_1230 = 1230; + * @return Whether the oneof1230 field is set. + */ + @java.lang.Override + public boolean hasOneof1230() { + return hugeOneofCase_ == 1230; + } /** * int32 oneof_1230 = 1230; * @return The oneof1230. */ + @java.lang.Override public int getOneof1230() { if (hugeOneofCase_ == 1230) { return (java.lang.Integer) hugeOneof_; @@ -186420,10 +200503,19 @@ public int getOneof1230() { } public static final int ONEOF_1231_FIELD_NUMBER = 1231; + /** + * int32 oneof_1231 = 1231; + * @return Whether the oneof1231 field is set. + */ + @java.lang.Override + public boolean hasOneof1231() { + return hugeOneofCase_ == 1231; + } /** * int32 oneof_1231 = 1231; * @return The oneof1231. */ + @java.lang.Override public int getOneof1231() { if (hugeOneofCase_ == 1231) { return (java.lang.Integer) hugeOneof_; @@ -186432,10 +200524,19 @@ public int getOneof1231() { } public static final int ONEOF_1232_FIELD_NUMBER = 1232; + /** + * int32 oneof_1232 = 1232; + * @return Whether the oneof1232 field is set. + */ + @java.lang.Override + public boolean hasOneof1232() { + return hugeOneofCase_ == 1232; + } /** * int32 oneof_1232 = 1232; * @return The oneof1232. */ + @java.lang.Override public int getOneof1232() { if (hugeOneofCase_ == 1232) { return (java.lang.Integer) hugeOneof_; @@ -186444,10 +200545,19 @@ public int getOneof1232() { } public static final int ONEOF_1233_FIELD_NUMBER = 1233; + /** + * int32 oneof_1233 = 1233; + * @return Whether the oneof1233 field is set. + */ + @java.lang.Override + public boolean hasOneof1233() { + return hugeOneofCase_ == 1233; + } /** * int32 oneof_1233 = 1233; * @return The oneof1233. */ + @java.lang.Override public int getOneof1233() { if (hugeOneofCase_ == 1233) { return (java.lang.Integer) hugeOneof_; @@ -186456,10 +200566,19 @@ public int getOneof1233() { } public static final int ONEOF_1234_FIELD_NUMBER = 1234; + /** + * int32 oneof_1234 = 1234; + * @return Whether the oneof1234 field is set. + */ + @java.lang.Override + public boolean hasOneof1234() { + return hugeOneofCase_ == 1234; + } /** * int32 oneof_1234 = 1234; * @return The oneof1234. */ + @java.lang.Override public int getOneof1234() { if (hugeOneofCase_ == 1234) { return (java.lang.Integer) hugeOneof_; @@ -186468,10 +200587,19 @@ public int getOneof1234() { } public static final int ONEOF_1235_FIELD_NUMBER = 1235; + /** + * int32 oneof_1235 = 1235; + * @return Whether the oneof1235 field is set. + */ + @java.lang.Override + public boolean hasOneof1235() { + return hugeOneofCase_ == 1235; + } /** * int32 oneof_1235 = 1235; * @return The oneof1235. */ + @java.lang.Override public int getOneof1235() { if (hugeOneofCase_ == 1235) { return (java.lang.Integer) hugeOneof_; @@ -186480,10 +200608,19 @@ public int getOneof1235() { } public static final int ONEOF_1236_FIELD_NUMBER = 1236; + /** + * int32 oneof_1236 = 1236; + * @return Whether the oneof1236 field is set. + */ + @java.lang.Override + public boolean hasOneof1236() { + return hugeOneofCase_ == 1236; + } /** * int32 oneof_1236 = 1236; * @return The oneof1236. */ + @java.lang.Override public int getOneof1236() { if (hugeOneofCase_ == 1236) { return (java.lang.Integer) hugeOneof_; @@ -186492,10 +200629,19 @@ public int getOneof1236() { } public static final int ONEOF_1237_FIELD_NUMBER = 1237; + /** + * int32 oneof_1237 = 1237; + * @return Whether the oneof1237 field is set. + */ + @java.lang.Override + public boolean hasOneof1237() { + return hugeOneofCase_ == 1237; + } /** * int32 oneof_1237 = 1237; * @return The oneof1237. */ + @java.lang.Override public int getOneof1237() { if (hugeOneofCase_ == 1237) { return (java.lang.Integer) hugeOneof_; @@ -186504,10 +200650,19 @@ public int getOneof1237() { } public static final int ONEOF_1238_FIELD_NUMBER = 1238; + /** + * int32 oneof_1238 = 1238; + * @return Whether the oneof1238 field is set. + */ + @java.lang.Override + public boolean hasOneof1238() { + return hugeOneofCase_ == 1238; + } /** * int32 oneof_1238 = 1238; * @return The oneof1238. */ + @java.lang.Override public int getOneof1238() { if (hugeOneofCase_ == 1238) { return (java.lang.Integer) hugeOneof_; @@ -186516,10 +200671,19 @@ public int getOneof1238() { } public static final int ONEOF_1239_FIELD_NUMBER = 1239; + /** + * int32 oneof_1239 = 1239; + * @return Whether the oneof1239 field is set. + */ + @java.lang.Override + public boolean hasOneof1239() { + return hugeOneofCase_ == 1239; + } /** * int32 oneof_1239 = 1239; * @return The oneof1239. */ + @java.lang.Override public int getOneof1239() { if (hugeOneofCase_ == 1239) { return (java.lang.Integer) hugeOneof_; @@ -186528,10 +200692,19 @@ public int getOneof1239() { } public static final int ONEOF_1240_FIELD_NUMBER = 1240; + /** + * int32 oneof_1240 = 1240; + * @return Whether the oneof1240 field is set. + */ + @java.lang.Override + public boolean hasOneof1240() { + return hugeOneofCase_ == 1240; + } /** * int32 oneof_1240 = 1240; * @return The oneof1240. */ + @java.lang.Override public int getOneof1240() { if (hugeOneofCase_ == 1240) { return (java.lang.Integer) hugeOneof_; @@ -186540,10 +200713,19 @@ public int getOneof1240() { } public static final int ONEOF_1241_FIELD_NUMBER = 1241; + /** + * int32 oneof_1241 = 1241; + * @return Whether the oneof1241 field is set. + */ + @java.lang.Override + public boolean hasOneof1241() { + return hugeOneofCase_ == 1241; + } /** * int32 oneof_1241 = 1241; * @return The oneof1241. */ + @java.lang.Override public int getOneof1241() { if (hugeOneofCase_ == 1241) { return (java.lang.Integer) hugeOneof_; @@ -186552,10 +200734,19 @@ public int getOneof1241() { } public static final int ONEOF_1242_FIELD_NUMBER = 1242; + /** + * int32 oneof_1242 = 1242; + * @return Whether the oneof1242 field is set. + */ + @java.lang.Override + public boolean hasOneof1242() { + return hugeOneofCase_ == 1242; + } /** * int32 oneof_1242 = 1242; * @return The oneof1242. */ + @java.lang.Override public int getOneof1242() { if (hugeOneofCase_ == 1242) { return (java.lang.Integer) hugeOneof_; @@ -186564,10 +200755,19 @@ public int getOneof1242() { } public static final int ONEOF_1243_FIELD_NUMBER = 1243; + /** + * int32 oneof_1243 = 1243; + * @return Whether the oneof1243 field is set. + */ + @java.lang.Override + public boolean hasOneof1243() { + return hugeOneofCase_ == 1243; + } /** * int32 oneof_1243 = 1243; * @return The oneof1243. */ + @java.lang.Override public int getOneof1243() { if (hugeOneofCase_ == 1243) { return (java.lang.Integer) hugeOneof_; @@ -186576,10 +200776,19 @@ public int getOneof1243() { } public static final int ONEOF_1244_FIELD_NUMBER = 1244; + /** + * int32 oneof_1244 = 1244; + * @return Whether the oneof1244 field is set. + */ + @java.lang.Override + public boolean hasOneof1244() { + return hugeOneofCase_ == 1244; + } /** * int32 oneof_1244 = 1244; * @return The oneof1244. */ + @java.lang.Override public int getOneof1244() { if (hugeOneofCase_ == 1244) { return (java.lang.Integer) hugeOneof_; @@ -186588,10 +200797,19 @@ public int getOneof1244() { } public static final int ONEOF_1245_FIELD_NUMBER = 1245; + /** + * int32 oneof_1245 = 1245; + * @return Whether the oneof1245 field is set. + */ + @java.lang.Override + public boolean hasOneof1245() { + return hugeOneofCase_ == 1245; + } /** * int32 oneof_1245 = 1245; * @return The oneof1245. */ + @java.lang.Override public int getOneof1245() { if (hugeOneofCase_ == 1245) { return (java.lang.Integer) hugeOneof_; @@ -186600,10 +200818,19 @@ public int getOneof1245() { } public static final int ONEOF_1246_FIELD_NUMBER = 1246; + /** + * int32 oneof_1246 = 1246; + * @return Whether the oneof1246 field is set. + */ + @java.lang.Override + public boolean hasOneof1246() { + return hugeOneofCase_ == 1246; + } /** * int32 oneof_1246 = 1246; * @return The oneof1246. */ + @java.lang.Override public int getOneof1246() { if (hugeOneofCase_ == 1246) { return (java.lang.Integer) hugeOneof_; @@ -186612,10 +200839,19 @@ public int getOneof1246() { } public static final int ONEOF_1247_FIELD_NUMBER = 1247; + /** + * int32 oneof_1247 = 1247; + * @return Whether the oneof1247 field is set. + */ + @java.lang.Override + public boolean hasOneof1247() { + return hugeOneofCase_ == 1247; + } /** * int32 oneof_1247 = 1247; * @return The oneof1247. */ + @java.lang.Override public int getOneof1247() { if (hugeOneofCase_ == 1247) { return (java.lang.Integer) hugeOneof_; @@ -186624,10 +200860,19 @@ public int getOneof1247() { } public static final int ONEOF_1248_FIELD_NUMBER = 1248; + /** + * int32 oneof_1248 = 1248; + * @return Whether the oneof1248 field is set. + */ + @java.lang.Override + public boolean hasOneof1248() { + return hugeOneofCase_ == 1248; + } /** * int32 oneof_1248 = 1248; * @return The oneof1248. */ + @java.lang.Override public int getOneof1248() { if (hugeOneofCase_ == 1248) { return (java.lang.Integer) hugeOneof_; @@ -186636,10 +200881,19 @@ public int getOneof1248() { } public static final int ONEOF_1249_FIELD_NUMBER = 1249; + /** + * int32 oneof_1249 = 1249; + * @return Whether the oneof1249 field is set. + */ + @java.lang.Override + public boolean hasOneof1249() { + return hugeOneofCase_ == 1249; + } /** * int32 oneof_1249 = 1249; * @return The oneof1249. */ + @java.lang.Override public int getOneof1249() { if (hugeOneofCase_ == 1249) { return (java.lang.Integer) hugeOneof_; @@ -186648,10 +200902,19 @@ public int getOneof1249() { } public static final int ONEOF_1250_FIELD_NUMBER = 1250; + /** + * int32 oneof_1250 = 1250; + * @return Whether the oneof1250 field is set. + */ + @java.lang.Override + public boolean hasOneof1250() { + return hugeOneofCase_ == 1250; + } /** * int32 oneof_1250 = 1250; * @return The oneof1250. */ + @java.lang.Override public int getOneof1250() { if (hugeOneofCase_ == 1250) { return (java.lang.Integer) hugeOneof_; @@ -186660,10 +200923,19 @@ public int getOneof1250() { } public static final int ONEOF_1251_FIELD_NUMBER = 1251; + /** + * int32 oneof_1251 = 1251; + * @return Whether the oneof1251 field is set. + */ + @java.lang.Override + public boolean hasOneof1251() { + return hugeOneofCase_ == 1251; + } /** * int32 oneof_1251 = 1251; * @return The oneof1251. */ + @java.lang.Override public int getOneof1251() { if (hugeOneofCase_ == 1251) { return (java.lang.Integer) hugeOneof_; @@ -186672,10 +200944,19 @@ public int getOneof1251() { } public static final int ONEOF_1252_FIELD_NUMBER = 1252; + /** + * int32 oneof_1252 = 1252; + * @return Whether the oneof1252 field is set. + */ + @java.lang.Override + public boolean hasOneof1252() { + return hugeOneofCase_ == 1252; + } /** * int32 oneof_1252 = 1252; * @return The oneof1252. */ + @java.lang.Override public int getOneof1252() { if (hugeOneofCase_ == 1252) { return (java.lang.Integer) hugeOneof_; @@ -186684,10 +200965,19 @@ public int getOneof1252() { } public static final int ONEOF_1253_FIELD_NUMBER = 1253; + /** + * int32 oneof_1253 = 1253; + * @return Whether the oneof1253 field is set. + */ + @java.lang.Override + public boolean hasOneof1253() { + return hugeOneofCase_ == 1253; + } /** * int32 oneof_1253 = 1253; * @return The oneof1253. */ + @java.lang.Override public int getOneof1253() { if (hugeOneofCase_ == 1253) { return (java.lang.Integer) hugeOneof_; @@ -186696,10 +200986,19 @@ public int getOneof1253() { } public static final int ONEOF_1254_FIELD_NUMBER = 1254; + /** + * int32 oneof_1254 = 1254; + * @return Whether the oneof1254 field is set. + */ + @java.lang.Override + public boolean hasOneof1254() { + return hugeOneofCase_ == 1254; + } /** * int32 oneof_1254 = 1254; * @return The oneof1254. */ + @java.lang.Override public int getOneof1254() { if (hugeOneofCase_ == 1254) { return (java.lang.Integer) hugeOneof_; @@ -186708,10 +201007,19 @@ public int getOneof1254() { } public static final int ONEOF_1255_FIELD_NUMBER = 1255; + /** + * int32 oneof_1255 = 1255; + * @return Whether the oneof1255 field is set. + */ + @java.lang.Override + public boolean hasOneof1255() { + return hugeOneofCase_ == 1255; + } /** * int32 oneof_1255 = 1255; * @return The oneof1255. */ + @java.lang.Override public int getOneof1255() { if (hugeOneofCase_ == 1255) { return (java.lang.Integer) hugeOneof_; @@ -186720,10 +201028,19 @@ public int getOneof1255() { } public static final int ONEOF_1256_FIELD_NUMBER = 1256; + /** + * int32 oneof_1256 = 1256; + * @return Whether the oneof1256 field is set. + */ + @java.lang.Override + public boolean hasOneof1256() { + return hugeOneofCase_ == 1256; + } /** * int32 oneof_1256 = 1256; * @return The oneof1256. */ + @java.lang.Override public int getOneof1256() { if (hugeOneofCase_ == 1256) { return (java.lang.Integer) hugeOneof_; @@ -186732,10 +201049,19 @@ public int getOneof1256() { } public static final int ONEOF_1257_FIELD_NUMBER = 1257; + /** + * int32 oneof_1257 = 1257; + * @return Whether the oneof1257 field is set. + */ + @java.lang.Override + public boolean hasOneof1257() { + return hugeOneofCase_ == 1257; + } /** * int32 oneof_1257 = 1257; * @return The oneof1257. */ + @java.lang.Override public int getOneof1257() { if (hugeOneofCase_ == 1257) { return (java.lang.Integer) hugeOneof_; @@ -186744,10 +201070,19 @@ public int getOneof1257() { } public static final int ONEOF_1258_FIELD_NUMBER = 1258; + /** + * int32 oneof_1258 = 1258; + * @return Whether the oneof1258 field is set. + */ + @java.lang.Override + public boolean hasOneof1258() { + return hugeOneofCase_ == 1258; + } /** * int32 oneof_1258 = 1258; * @return The oneof1258. */ + @java.lang.Override public int getOneof1258() { if (hugeOneofCase_ == 1258) { return (java.lang.Integer) hugeOneof_; @@ -186756,10 +201091,19 @@ public int getOneof1258() { } public static final int ONEOF_1259_FIELD_NUMBER = 1259; + /** + * int32 oneof_1259 = 1259; + * @return Whether the oneof1259 field is set. + */ + @java.lang.Override + public boolean hasOneof1259() { + return hugeOneofCase_ == 1259; + } /** * int32 oneof_1259 = 1259; * @return The oneof1259. */ + @java.lang.Override public int getOneof1259() { if (hugeOneofCase_ == 1259) { return (java.lang.Integer) hugeOneof_; @@ -186768,10 +201112,19 @@ public int getOneof1259() { } public static final int ONEOF_1260_FIELD_NUMBER = 1260; + /** + * int32 oneof_1260 = 1260; + * @return Whether the oneof1260 field is set. + */ + @java.lang.Override + public boolean hasOneof1260() { + return hugeOneofCase_ == 1260; + } /** * int32 oneof_1260 = 1260; * @return The oneof1260. */ + @java.lang.Override public int getOneof1260() { if (hugeOneofCase_ == 1260) { return (java.lang.Integer) hugeOneof_; @@ -186780,10 +201133,19 @@ public int getOneof1260() { } public static final int ONEOF_1261_FIELD_NUMBER = 1261; + /** + * int32 oneof_1261 = 1261; + * @return Whether the oneof1261 field is set. + */ + @java.lang.Override + public boolean hasOneof1261() { + return hugeOneofCase_ == 1261; + } /** * int32 oneof_1261 = 1261; * @return The oneof1261. */ + @java.lang.Override public int getOneof1261() { if (hugeOneofCase_ == 1261) { return (java.lang.Integer) hugeOneof_; @@ -186792,10 +201154,19 @@ public int getOneof1261() { } public static final int ONEOF_1262_FIELD_NUMBER = 1262; + /** + * int32 oneof_1262 = 1262; + * @return Whether the oneof1262 field is set. + */ + @java.lang.Override + public boolean hasOneof1262() { + return hugeOneofCase_ == 1262; + } /** * int32 oneof_1262 = 1262; * @return The oneof1262. */ + @java.lang.Override public int getOneof1262() { if (hugeOneofCase_ == 1262) { return (java.lang.Integer) hugeOneof_; @@ -186804,10 +201175,19 @@ public int getOneof1262() { } public static final int ONEOF_1263_FIELD_NUMBER = 1263; + /** + * int32 oneof_1263 = 1263; + * @return Whether the oneof1263 field is set. + */ + @java.lang.Override + public boolean hasOneof1263() { + return hugeOneofCase_ == 1263; + } /** * int32 oneof_1263 = 1263; * @return The oneof1263. */ + @java.lang.Override public int getOneof1263() { if (hugeOneofCase_ == 1263) { return (java.lang.Integer) hugeOneof_; @@ -186816,10 +201196,19 @@ public int getOneof1263() { } public static final int ONEOF_1264_FIELD_NUMBER = 1264; + /** + * int32 oneof_1264 = 1264; + * @return Whether the oneof1264 field is set. + */ + @java.lang.Override + public boolean hasOneof1264() { + return hugeOneofCase_ == 1264; + } /** * int32 oneof_1264 = 1264; * @return The oneof1264. */ + @java.lang.Override public int getOneof1264() { if (hugeOneofCase_ == 1264) { return (java.lang.Integer) hugeOneof_; @@ -186828,10 +201217,19 @@ public int getOneof1264() { } public static final int ONEOF_1265_FIELD_NUMBER = 1265; + /** + * int32 oneof_1265 = 1265; + * @return Whether the oneof1265 field is set. + */ + @java.lang.Override + public boolean hasOneof1265() { + return hugeOneofCase_ == 1265; + } /** * int32 oneof_1265 = 1265; * @return The oneof1265. */ + @java.lang.Override public int getOneof1265() { if (hugeOneofCase_ == 1265) { return (java.lang.Integer) hugeOneof_; @@ -186840,10 +201238,19 @@ public int getOneof1265() { } public static final int ONEOF_1266_FIELD_NUMBER = 1266; + /** + * int32 oneof_1266 = 1266; + * @return Whether the oneof1266 field is set. + */ + @java.lang.Override + public boolean hasOneof1266() { + return hugeOneofCase_ == 1266; + } /** * int32 oneof_1266 = 1266; * @return The oneof1266. */ + @java.lang.Override public int getOneof1266() { if (hugeOneofCase_ == 1266) { return (java.lang.Integer) hugeOneof_; @@ -186852,10 +201259,19 @@ public int getOneof1266() { } public static final int ONEOF_1267_FIELD_NUMBER = 1267; + /** + * int32 oneof_1267 = 1267; + * @return Whether the oneof1267 field is set. + */ + @java.lang.Override + public boolean hasOneof1267() { + return hugeOneofCase_ == 1267; + } /** * int32 oneof_1267 = 1267; * @return The oneof1267. */ + @java.lang.Override public int getOneof1267() { if (hugeOneofCase_ == 1267) { return (java.lang.Integer) hugeOneof_; @@ -186864,10 +201280,19 @@ public int getOneof1267() { } public static final int ONEOF_1268_FIELD_NUMBER = 1268; + /** + * int32 oneof_1268 = 1268; + * @return Whether the oneof1268 field is set. + */ + @java.lang.Override + public boolean hasOneof1268() { + return hugeOneofCase_ == 1268; + } /** * int32 oneof_1268 = 1268; * @return The oneof1268. */ + @java.lang.Override public int getOneof1268() { if (hugeOneofCase_ == 1268) { return (java.lang.Integer) hugeOneof_; @@ -186876,10 +201301,19 @@ public int getOneof1268() { } public static final int ONEOF_1269_FIELD_NUMBER = 1269; + /** + * int32 oneof_1269 = 1269; + * @return Whether the oneof1269 field is set. + */ + @java.lang.Override + public boolean hasOneof1269() { + return hugeOneofCase_ == 1269; + } /** * int32 oneof_1269 = 1269; * @return The oneof1269. */ + @java.lang.Override public int getOneof1269() { if (hugeOneofCase_ == 1269) { return (java.lang.Integer) hugeOneof_; @@ -186888,10 +201322,19 @@ public int getOneof1269() { } public static final int ONEOF_1270_FIELD_NUMBER = 1270; + /** + * int32 oneof_1270 = 1270; + * @return Whether the oneof1270 field is set. + */ + @java.lang.Override + public boolean hasOneof1270() { + return hugeOneofCase_ == 1270; + } /** * int32 oneof_1270 = 1270; * @return The oneof1270. */ + @java.lang.Override public int getOneof1270() { if (hugeOneofCase_ == 1270) { return (java.lang.Integer) hugeOneof_; @@ -186900,10 +201343,19 @@ public int getOneof1270() { } public static final int ONEOF_1271_FIELD_NUMBER = 1271; + /** + * int32 oneof_1271 = 1271; + * @return Whether the oneof1271 field is set. + */ + @java.lang.Override + public boolean hasOneof1271() { + return hugeOneofCase_ == 1271; + } /** * int32 oneof_1271 = 1271; * @return The oneof1271. */ + @java.lang.Override public int getOneof1271() { if (hugeOneofCase_ == 1271) { return (java.lang.Integer) hugeOneof_; @@ -186912,10 +201364,19 @@ public int getOneof1271() { } public static final int ONEOF_1272_FIELD_NUMBER = 1272; + /** + * int32 oneof_1272 = 1272; + * @return Whether the oneof1272 field is set. + */ + @java.lang.Override + public boolean hasOneof1272() { + return hugeOneofCase_ == 1272; + } /** * int32 oneof_1272 = 1272; * @return The oneof1272. */ + @java.lang.Override public int getOneof1272() { if (hugeOneofCase_ == 1272) { return (java.lang.Integer) hugeOneof_; @@ -186924,10 +201385,19 @@ public int getOneof1272() { } public static final int ONEOF_1273_FIELD_NUMBER = 1273; + /** + * int32 oneof_1273 = 1273; + * @return Whether the oneof1273 field is set. + */ + @java.lang.Override + public boolean hasOneof1273() { + return hugeOneofCase_ == 1273; + } /** * int32 oneof_1273 = 1273; * @return The oneof1273. */ + @java.lang.Override public int getOneof1273() { if (hugeOneofCase_ == 1273) { return (java.lang.Integer) hugeOneof_; @@ -186936,10 +201406,19 @@ public int getOneof1273() { } public static final int ONEOF_1274_FIELD_NUMBER = 1274; + /** + * int32 oneof_1274 = 1274; + * @return Whether the oneof1274 field is set. + */ + @java.lang.Override + public boolean hasOneof1274() { + return hugeOneofCase_ == 1274; + } /** * int32 oneof_1274 = 1274; * @return The oneof1274. */ + @java.lang.Override public int getOneof1274() { if (hugeOneofCase_ == 1274) { return (java.lang.Integer) hugeOneof_; @@ -186948,10 +201427,19 @@ public int getOneof1274() { } public static final int ONEOF_1275_FIELD_NUMBER = 1275; + /** + * int32 oneof_1275 = 1275; + * @return Whether the oneof1275 field is set. + */ + @java.lang.Override + public boolean hasOneof1275() { + return hugeOneofCase_ == 1275; + } /** * int32 oneof_1275 = 1275; * @return The oneof1275. */ + @java.lang.Override public int getOneof1275() { if (hugeOneofCase_ == 1275) { return (java.lang.Integer) hugeOneof_; @@ -186960,10 +201448,19 @@ public int getOneof1275() { } public static final int ONEOF_1276_FIELD_NUMBER = 1276; + /** + * int32 oneof_1276 = 1276; + * @return Whether the oneof1276 field is set. + */ + @java.lang.Override + public boolean hasOneof1276() { + return hugeOneofCase_ == 1276; + } /** * int32 oneof_1276 = 1276; * @return The oneof1276. */ + @java.lang.Override public int getOneof1276() { if (hugeOneofCase_ == 1276) { return (java.lang.Integer) hugeOneof_; @@ -186972,10 +201469,19 @@ public int getOneof1276() { } public static final int ONEOF_1277_FIELD_NUMBER = 1277; + /** + * int32 oneof_1277 = 1277; + * @return Whether the oneof1277 field is set. + */ + @java.lang.Override + public boolean hasOneof1277() { + return hugeOneofCase_ == 1277; + } /** * int32 oneof_1277 = 1277; * @return The oneof1277. */ + @java.lang.Override public int getOneof1277() { if (hugeOneofCase_ == 1277) { return (java.lang.Integer) hugeOneof_; @@ -186984,10 +201490,19 @@ public int getOneof1277() { } public static final int ONEOF_1278_FIELD_NUMBER = 1278; + /** + * int32 oneof_1278 = 1278; + * @return Whether the oneof1278 field is set. + */ + @java.lang.Override + public boolean hasOneof1278() { + return hugeOneofCase_ == 1278; + } /** * int32 oneof_1278 = 1278; * @return The oneof1278. */ + @java.lang.Override public int getOneof1278() { if (hugeOneofCase_ == 1278) { return (java.lang.Integer) hugeOneof_; @@ -186996,10 +201511,19 @@ public int getOneof1278() { } public static final int ONEOF_1279_FIELD_NUMBER = 1279; + /** + * int32 oneof_1279 = 1279; + * @return Whether the oneof1279 field is set. + */ + @java.lang.Override + public boolean hasOneof1279() { + return hugeOneofCase_ == 1279; + } /** * int32 oneof_1279 = 1279; * @return The oneof1279. */ + @java.lang.Override public int getOneof1279() { if (hugeOneofCase_ == 1279) { return (java.lang.Integer) hugeOneof_; @@ -187008,10 +201532,19 @@ public int getOneof1279() { } public static final int ONEOF_1280_FIELD_NUMBER = 1280; + /** + * int32 oneof_1280 = 1280; + * @return Whether the oneof1280 field is set. + */ + @java.lang.Override + public boolean hasOneof1280() { + return hugeOneofCase_ == 1280; + } /** * int32 oneof_1280 = 1280; * @return The oneof1280. */ + @java.lang.Override public int getOneof1280() { if (hugeOneofCase_ == 1280) { return (java.lang.Integer) hugeOneof_; @@ -187020,10 +201553,19 @@ public int getOneof1280() { } public static final int ONEOF_1281_FIELD_NUMBER = 1281; + /** + * int32 oneof_1281 = 1281; + * @return Whether the oneof1281 field is set. + */ + @java.lang.Override + public boolean hasOneof1281() { + return hugeOneofCase_ == 1281; + } /** * int32 oneof_1281 = 1281; * @return The oneof1281. */ + @java.lang.Override public int getOneof1281() { if (hugeOneofCase_ == 1281) { return (java.lang.Integer) hugeOneof_; @@ -187032,10 +201574,19 @@ public int getOneof1281() { } public static final int ONEOF_1282_FIELD_NUMBER = 1282; + /** + * int32 oneof_1282 = 1282; + * @return Whether the oneof1282 field is set. + */ + @java.lang.Override + public boolean hasOneof1282() { + return hugeOneofCase_ == 1282; + } /** * int32 oneof_1282 = 1282; * @return The oneof1282. */ + @java.lang.Override public int getOneof1282() { if (hugeOneofCase_ == 1282) { return (java.lang.Integer) hugeOneof_; @@ -187044,10 +201595,19 @@ public int getOneof1282() { } public static final int ONEOF_1283_FIELD_NUMBER = 1283; + /** + * int32 oneof_1283 = 1283; + * @return Whether the oneof1283 field is set. + */ + @java.lang.Override + public boolean hasOneof1283() { + return hugeOneofCase_ == 1283; + } /** * int32 oneof_1283 = 1283; * @return The oneof1283. */ + @java.lang.Override public int getOneof1283() { if (hugeOneofCase_ == 1283) { return (java.lang.Integer) hugeOneof_; @@ -187056,10 +201616,19 @@ public int getOneof1283() { } public static final int ONEOF_1284_FIELD_NUMBER = 1284; + /** + * int32 oneof_1284 = 1284; + * @return Whether the oneof1284 field is set. + */ + @java.lang.Override + public boolean hasOneof1284() { + return hugeOneofCase_ == 1284; + } /** * int32 oneof_1284 = 1284; * @return The oneof1284. */ + @java.lang.Override public int getOneof1284() { if (hugeOneofCase_ == 1284) { return (java.lang.Integer) hugeOneof_; @@ -187068,10 +201637,19 @@ public int getOneof1284() { } public static final int ONEOF_1285_FIELD_NUMBER = 1285; + /** + * int32 oneof_1285 = 1285; + * @return Whether the oneof1285 field is set. + */ + @java.lang.Override + public boolean hasOneof1285() { + return hugeOneofCase_ == 1285; + } /** * int32 oneof_1285 = 1285; * @return The oneof1285. */ + @java.lang.Override public int getOneof1285() { if (hugeOneofCase_ == 1285) { return (java.lang.Integer) hugeOneof_; @@ -187080,10 +201658,19 @@ public int getOneof1285() { } public static final int ONEOF_1286_FIELD_NUMBER = 1286; + /** + * int32 oneof_1286 = 1286; + * @return Whether the oneof1286 field is set. + */ + @java.lang.Override + public boolean hasOneof1286() { + return hugeOneofCase_ == 1286; + } /** * int32 oneof_1286 = 1286; * @return The oneof1286. */ + @java.lang.Override public int getOneof1286() { if (hugeOneofCase_ == 1286) { return (java.lang.Integer) hugeOneof_; @@ -187092,10 +201679,19 @@ public int getOneof1286() { } public static final int ONEOF_1287_FIELD_NUMBER = 1287; + /** + * int32 oneof_1287 = 1287; + * @return Whether the oneof1287 field is set. + */ + @java.lang.Override + public boolean hasOneof1287() { + return hugeOneofCase_ == 1287; + } /** * int32 oneof_1287 = 1287; * @return The oneof1287. */ + @java.lang.Override public int getOneof1287() { if (hugeOneofCase_ == 1287) { return (java.lang.Integer) hugeOneof_; @@ -187104,10 +201700,19 @@ public int getOneof1287() { } public static final int ONEOF_1288_FIELD_NUMBER = 1288; + /** + * int32 oneof_1288 = 1288; + * @return Whether the oneof1288 field is set. + */ + @java.lang.Override + public boolean hasOneof1288() { + return hugeOneofCase_ == 1288; + } /** * int32 oneof_1288 = 1288; * @return The oneof1288. */ + @java.lang.Override public int getOneof1288() { if (hugeOneofCase_ == 1288) { return (java.lang.Integer) hugeOneof_; @@ -187116,10 +201721,19 @@ public int getOneof1288() { } public static final int ONEOF_1289_FIELD_NUMBER = 1289; + /** + * int32 oneof_1289 = 1289; + * @return Whether the oneof1289 field is set. + */ + @java.lang.Override + public boolean hasOneof1289() { + return hugeOneofCase_ == 1289; + } /** * int32 oneof_1289 = 1289; * @return The oneof1289. */ + @java.lang.Override public int getOneof1289() { if (hugeOneofCase_ == 1289) { return (java.lang.Integer) hugeOneof_; @@ -187128,10 +201742,19 @@ public int getOneof1289() { } public static final int ONEOF_1290_FIELD_NUMBER = 1290; + /** + * int32 oneof_1290 = 1290; + * @return Whether the oneof1290 field is set. + */ + @java.lang.Override + public boolean hasOneof1290() { + return hugeOneofCase_ == 1290; + } /** * int32 oneof_1290 = 1290; * @return The oneof1290. */ + @java.lang.Override public int getOneof1290() { if (hugeOneofCase_ == 1290) { return (java.lang.Integer) hugeOneof_; @@ -187140,10 +201763,19 @@ public int getOneof1290() { } public static final int ONEOF_1291_FIELD_NUMBER = 1291; + /** + * int32 oneof_1291 = 1291; + * @return Whether the oneof1291 field is set. + */ + @java.lang.Override + public boolean hasOneof1291() { + return hugeOneofCase_ == 1291; + } /** * int32 oneof_1291 = 1291; * @return The oneof1291. */ + @java.lang.Override public int getOneof1291() { if (hugeOneofCase_ == 1291) { return (java.lang.Integer) hugeOneof_; @@ -187152,10 +201784,19 @@ public int getOneof1291() { } public static final int ONEOF_1292_FIELD_NUMBER = 1292; + /** + * int32 oneof_1292 = 1292; + * @return Whether the oneof1292 field is set. + */ + @java.lang.Override + public boolean hasOneof1292() { + return hugeOneofCase_ == 1292; + } /** * int32 oneof_1292 = 1292; * @return The oneof1292. */ + @java.lang.Override public int getOneof1292() { if (hugeOneofCase_ == 1292) { return (java.lang.Integer) hugeOneof_; @@ -187164,10 +201805,19 @@ public int getOneof1292() { } public static final int ONEOF_1293_FIELD_NUMBER = 1293; + /** + * int32 oneof_1293 = 1293; + * @return Whether the oneof1293 field is set. + */ + @java.lang.Override + public boolean hasOneof1293() { + return hugeOneofCase_ == 1293; + } /** * int32 oneof_1293 = 1293; * @return The oneof1293. */ + @java.lang.Override public int getOneof1293() { if (hugeOneofCase_ == 1293) { return (java.lang.Integer) hugeOneof_; @@ -187176,10 +201826,19 @@ public int getOneof1293() { } public static final int ONEOF_1294_FIELD_NUMBER = 1294; + /** + * int32 oneof_1294 = 1294; + * @return Whether the oneof1294 field is set. + */ + @java.lang.Override + public boolean hasOneof1294() { + return hugeOneofCase_ == 1294; + } /** * int32 oneof_1294 = 1294; * @return The oneof1294. */ + @java.lang.Override public int getOneof1294() { if (hugeOneofCase_ == 1294) { return (java.lang.Integer) hugeOneof_; @@ -187188,10 +201847,19 @@ public int getOneof1294() { } public static final int ONEOF_1295_FIELD_NUMBER = 1295; + /** + * int32 oneof_1295 = 1295; + * @return Whether the oneof1295 field is set. + */ + @java.lang.Override + public boolean hasOneof1295() { + return hugeOneofCase_ == 1295; + } /** * int32 oneof_1295 = 1295; * @return The oneof1295. */ + @java.lang.Override public int getOneof1295() { if (hugeOneofCase_ == 1295) { return (java.lang.Integer) hugeOneof_; @@ -187200,10 +201868,19 @@ public int getOneof1295() { } public static final int ONEOF_1296_FIELD_NUMBER = 1296; + /** + * int32 oneof_1296 = 1296; + * @return Whether the oneof1296 field is set. + */ + @java.lang.Override + public boolean hasOneof1296() { + return hugeOneofCase_ == 1296; + } /** * int32 oneof_1296 = 1296; * @return The oneof1296. */ + @java.lang.Override public int getOneof1296() { if (hugeOneofCase_ == 1296) { return (java.lang.Integer) hugeOneof_; @@ -187212,10 +201889,19 @@ public int getOneof1296() { } public static final int ONEOF_1297_FIELD_NUMBER = 1297; + /** + * int32 oneof_1297 = 1297; + * @return Whether the oneof1297 field is set. + */ + @java.lang.Override + public boolean hasOneof1297() { + return hugeOneofCase_ == 1297; + } /** * int32 oneof_1297 = 1297; * @return The oneof1297. */ + @java.lang.Override public int getOneof1297() { if (hugeOneofCase_ == 1297) { return (java.lang.Integer) hugeOneof_; @@ -187224,10 +201910,19 @@ public int getOneof1297() { } public static final int ONEOF_1298_FIELD_NUMBER = 1298; + /** + * int32 oneof_1298 = 1298; + * @return Whether the oneof1298 field is set. + */ + @java.lang.Override + public boolean hasOneof1298() { + return hugeOneofCase_ == 1298; + } /** * int32 oneof_1298 = 1298; * @return The oneof1298. */ + @java.lang.Override public int getOneof1298() { if (hugeOneofCase_ == 1298) { return (java.lang.Integer) hugeOneof_; @@ -187236,10 +201931,19 @@ public int getOneof1298() { } public static final int ONEOF_1299_FIELD_NUMBER = 1299; + /** + * int32 oneof_1299 = 1299; + * @return Whether the oneof1299 field is set. + */ + @java.lang.Override + public boolean hasOneof1299() { + return hugeOneofCase_ == 1299; + } /** * int32 oneof_1299 = 1299; * @return The oneof1299. */ + @java.lang.Override public int getOneof1299() { if (hugeOneofCase_ == 1299) { return (java.lang.Integer) hugeOneof_; @@ -187248,10 +201952,19 @@ public int getOneof1299() { } public static final int ONEOF_1300_FIELD_NUMBER = 1300; + /** + * int32 oneof_1300 = 1300; + * @return Whether the oneof1300 field is set. + */ + @java.lang.Override + public boolean hasOneof1300() { + return hugeOneofCase_ == 1300; + } /** * int32 oneof_1300 = 1300; * @return The oneof1300. */ + @java.lang.Override public int getOneof1300() { if (hugeOneofCase_ == 1300) { return (java.lang.Integer) hugeOneof_; @@ -187260,10 +201973,19 @@ public int getOneof1300() { } public static final int ONEOF_1301_FIELD_NUMBER = 1301; + /** + * int32 oneof_1301 = 1301; + * @return Whether the oneof1301 field is set. + */ + @java.lang.Override + public boolean hasOneof1301() { + return hugeOneofCase_ == 1301; + } /** * int32 oneof_1301 = 1301; * @return The oneof1301. */ + @java.lang.Override public int getOneof1301() { if (hugeOneofCase_ == 1301) { return (java.lang.Integer) hugeOneof_; @@ -187272,10 +201994,19 @@ public int getOneof1301() { } public static final int ONEOF_1302_FIELD_NUMBER = 1302; + /** + * int32 oneof_1302 = 1302; + * @return Whether the oneof1302 field is set. + */ + @java.lang.Override + public boolean hasOneof1302() { + return hugeOneofCase_ == 1302; + } /** * int32 oneof_1302 = 1302; * @return The oneof1302. */ + @java.lang.Override public int getOneof1302() { if (hugeOneofCase_ == 1302) { return (java.lang.Integer) hugeOneof_; @@ -187284,10 +202015,19 @@ public int getOneof1302() { } public static final int ONEOF_1303_FIELD_NUMBER = 1303; + /** + * int32 oneof_1303 = 1303; + * @return Whether the oneof1303 field is set. + */ + @java.lang.Override + public boolean hasOneof1303() { + return hugeOneofCase_ == 1303; + } /** * int32 oneof_1303 = 1303; * @return The oneof1303. */ + @java.lang.Override public int getOneof1303() { if (hugeOneofCase_ == 1303) { return (java.lang.Integer) hugeOneof_; @@ -187296,10 +202036,19 @@ public int getOneof1303() { } public static final int ONEOF_1304_FIELD_NUMBER = 1304; + /** + * int32 oneof_1304 = 1304; + * @return Whether the oneof1304 field is set. + */ + @java.lang.Override + public boolean hasOneof1304() { + return hugeOneofCase_ == 1304; + } /** * int32 oneof_1304 = 1304; * @return The oneof1304. */ + @java.lang.Override public int getOneof1304() { if (hugeOneofCase_ == 1304) { return (java.lang.Integer) hugeOneof_; @@ -187308,10 +202057,19 @@ public int getOneof1304() { } public static final int ONEOF_1305_FIELD_NUMBER = 1305; + /** + * int32 oneof_1305 = 1305; + * @return Whether the oneof1305 field is set. + */ + @java.lang.Override + public boolean hasOneof1305() { + return hugeOneofCase_ == 1305; + } /** * int32 oneof_1305 = 1305; * @return The oneof1305. */ + @java.lang.Override public int getOneof1305() { if (hugeOneofCase_ == 1305) { return (java.lang.Integer) hugeOneof_; @@ -187320,10 +202078,19 @@ public int getOneof1305() { } public static final int ONEOF_1306_FIELD_NUMBER = 1306; + /** + * int32 oneof_1306 = 1306; + * @return Whether the oneof1306 field is set. + */ + @java.lang.Override + public boolean hasOneof1306() { + return hugeOneofCase_ == 1306; + } /** * int32 oneof_1306 = 1306; * @return The oneof1306. */ + @java.lang.Override public int getOneof1306() { if (hugeOneofCase_ == 1306) { return (java.lang.Integer) hugeOneof_; @@ -187332,10 +202099,19 @@ public int getOneof1306() { } public static final int ONEOF_1307_FIELD_NUMBER = 1307; + /** + * int32 oneof_1307 = 1307; + * @return Whether the oneof1307 field is set. + */ + @java.lang.Override + public boolean hasOneof1307() { + return hugeOneofCase_ == 1307; + } /** * int32 oneof_1307 = 1307; * @return The oneof1307. */ + @java.lang.Override public int getOneof1307() { if (hugeOneofCase_ == 1307) { return (java.lang.Integer) hugeOneof_; @@ -187344,10 +202120,19 @@ public int getOneof1307() { } public static final int ONEOF_1308_FIELD_NUMBER = 1308; + /** + * int32 oneof_1308 = 1308; + * @return Whether the oneof1308 field is set. + */ + @java.lang.Override + public boolean hasOneof1308() { + return hugeOneofCase_ == 1308; + } /** * int32 oneof_1308 = 1308; * @return The oneof1308. */ + @java.lang.Override public int getOneof1308() { if (hugeOneofCase_ == 1308) { return (java.lang.Integer) hugeOneof_; @@ -187356,10 +202141,19 @@ public int getOneof1308() { } public static final int ONEOF_1309_FIELD_NUMBER = 1309; + /** + * int32 oneof_1309 = 1309; + * @return Whether the oneof1309 field is set. + */ + @java.lang.Override + public boolean hasOneof1309() { + return hugeOneofCase_ == 1309; + } /** * int32 oneof_1309 = 1309; * @return The oneof1309. */ + @java.lang.Override public int getOneof1309() { if (hugeOneofCase_ == 1309) { return (java.lang.Integer) hugeOneof_; @@ -187368,10 +202162,19 @@ public int getOneof1309() { } public static final int ONEOF_1310_FIELD_NUMBER = 1310; + /** + * int32 oneof_1310 = 1310; + * @return Whether the oneof1310 field is set. + */ + @java.lang.Override + public boolean hasOneof1310() { + return hugeOneofCase_ == 1310; + } /** * int32 oneof_1310 = 1310; * @return The oneof1310. */ + @java.lang.Override public int getOneof1310() { if (hugeOneofCase_ == 1310) { return (java.lang.Integer) hugeOneof_; @@ -187380,10 +202183,19 @@ public int getOneof1310() { } public static final int ONEOF_1311_FIELD_NUMBER = 1311; + /** + * int32 oneof_1311 = 1311; + * @return Whether the oneof1311 field is set. + */ + @java.lang.Override + public boolean hasOneof1311() { + return hugeOneofCase_ == 1311; + } /** * int32 oneof_1311 = 1311; * @return The oneof1311. */ + @java.lang.Override public int getOneof1311() { if (hugeOneofCase_ == 1311) { return (java.lang.Integer) hugeOneof_; @@ -187392,10 +202204,19 @@ public int getOneof1311() { } public static final int ONEOF_1312_FIELD_NUMBER = 1312; + /** + * int32 oneof_1312 = 1312; + * @return Whether the oneof1312 field is set. + */ + @java.lang.Override + public boolean hasOneof1312() { + return hugeOneofCase_ == 1312; + } /** * int32 oneof_1312 = 1312; * @return The oneof1312. */ + @java.lang.Override public int getOneof1312() { if (hugeOneofCase_ == 1312) { return (java.lang.Integer) hugeOneof_; @@ -187404,10 +202225,19 @@ public int getOneof1312() { } public static final int ONEOF_1313_FIELD_NUMBER = 1313; + /** + * int32 oneof_1313 = 1313; + * @return Whether the oneof1313 field is set. + */ + @java.lang.Override + public boolean hasOneof1313() { + return hugeOneofCase_ == 1313; + } /** * int32 oneof_1313 = 1313; * @return The oneof1313. */ + @java.lang.Override public int getOneof1313() { if (hugeOneofCase_ == 1313) { return (java.lang.Integer) hugeOneof_; @@ -187416,10 +202246,19 @@ public int getOneof1313() { } public static final int ONEOF_1314_FIELD_NUMBER = 1314; + /** + * int32 oneof_1314 = 1314; + * @return Whether the oneof1314 field is set. + */ + @java.lang.Override + public boolean hasOneof1314() { + return hugeOneofCase_ == 1314; + } /** * int32 oneof_1314 = 1314; * @return The oneof1314. */ + @java.lang.Override public int getOneof1314() { if (hugeOneofCase_ == 1314) { return (java.lang.Integer) hugeOneof_; @@ -187428,10 +202267,19 @@ public int getOneof1314() { } public static final int ONEOF_1315_FIELD_NUMBER = 1315; + /** + * int32 oneof_1315 = 1315; + * @return Whether the oneof1315 field is set. + */ + @java.lang.Override + public boolean hasOneof1315() { + return hugeOneofCase_ == 1315; + } /** * int32 oneof_1315 = 1315; * @return The oneof1315. */ + @java.lang.Override public int getOneof1315() { if (hugeOneofCase_ == 1315) { return (java.lang.Integer) hugeOneof_; @@ -187440,10 +202288,19 @@ public int getOneof1315() { } public static final int ONEOF_1316_FIELD_NUMBER = 1316; + /** + * int32 oneof_1316 = 1316; + * @return Whether the oneof1316 field is set. + */ + @java.lang.Override + public boolean hasOneof1316() { + return hugeOneofCase_ == 1316; + } /** * int32 oneof_1316 = 1316; * @return The oneof1316. */ + @java.lang.Override public int getOneof1316() { if (hugeOneofCase_ == 1316) { return (java.lang.Integer) hugeOneof_; @@ -187452,10 +202309,19 @@ public int getOneof1316() { } public static final int ONEOF_1317_FIELD_NUMBER = 1317; + /** + * int32 oneof_1317 = 1317; + * @return Whether the oneof1317 field is set. + */ + @java.lang.Override + public boolean hasOneof1317() { + return hugeOneofCase_ == 1317; + } /** * int32 oneof_1317 = 1317; * @return The oneof1317. */ + @java.lang.Override public int getOneof1317() { if (hugeOneofCase_ == 1317) { return (java.lang.Integer) hugeOneof_; @@ -187464,10 +202330,19 @@ public int getOneof1317() { } public static final int ONEOF_1318_FIELD_NUMBER = 1318; + /** + * int32 oneof_1318 = 1318; + * @return Whether the oneof1318 field is set. + */ + @java.lang.Override + public boolean hasOneof1318() { + return hugeOneofCase_ == 1318; + } /** * int32 oneof_1318 = 1318; * @return The oneof1318. */ + @java.lang.Override public int getOneof1318() { if (hugeOneofCase_ == 1318) { return (java.lang.Integer) hugeOneof_; @@ -187476,10 +202351,19 @@ public int getOneof1318() { } public static final int ONEOF_1319_FIELD_NUMBER = 1319; + /** + * int32 oneof_1319 = 1319; + * @return Whether the oneof1319 field is set. + */ + @java.lang.Override + public boolean hasOneof1319() { + return hugeOneofCase_ == 1319; + } /** * int32 oneof_1319 = 1319; * @return The oneof1319. */ + @java.lang.Override public int getOneof1319() { if (hugeOneofCase_ == 1319) { return (java.lang.Integer) hugeOneof_; @@ -187488,10 +202372,19 @@ public int getOneof1319() { } public static final int ONEOF_1320_FIELD_NUMBER = 1320; + /** + * int32 oneof_1320 = 1320; + * @return Whether the oneof1320 field is set. + */ + @java.lang.Override + public boolean hasOneof1320() { + return hugeOneofCase_ == 1320; + } /** * int32 oneof_1320 = 1320; * @return The oneof1320. */ + @java.lang.Override public int getOneof1320() { if (hugeOneofCase_ == 1320) { return (java.lang.Integer) hugeOneof_; @@ -187500,10 +202393,19 @@ public int getOneof1320() { } public static final int ONEOF_1321_FIELD_NUMBER = 1321; + /** + * int32 oneof_1321 = 1321; + * @return Whether the oneof1321 field is set. + */ + @java.lang.Override + public boolean hasOneof1321() { + return hugeOneofCase_ == 1321; + } /** * int32 oneof_1321 = 1321; * @return The oneof1321. */ + @java.lang.Override public int getOneof1321() { if (hugeOneofCase_ == 1321) { return (java.lang.Integer) hugeOneof_; @@ -187512,10 +202414,19 @@ public int getOneof1321() { } public static final int ONEOF_1322_FIELD_NUMBER = 1322; + /** + * int32 oneof_1322 = 1322; + * @return Whether the oneof1322 field is set. + */ + @java.lang.Override + public boolean hasOneof1322() { + return hugeOneofCase_ == 1322; + } /** * int32 oneof_1322 = 1322; * @return The oneof1322. */ + @java.lang.Override public int getOneof1322() { if (hugeOneofCase_ == 1322) { return (java.lang.Integer) hugeOneof_; @@ -187524,10 +202435,19 @@ public int getOneof1322() { } public static final int ONEOF_1323_FIELD_NUMBER = 1323; + /** + * int32 oneof_1323 = 1323; + * @return Whether the oneof1323 field is set. + */ + @java.lang.Override + public boolean hasOneof1323() { + return hugeOneofCase_ == 1323; + } /** * int32 oneof_1323 = 1323; * @return The oneof1323. */ + @java.lang.Override public int getOneof1323() { if (hugeOneofCase_ == 1323) { return (java.lang.Integer) hugeOneof_; @@ -187536,10 +202456,19 @@ public int getOneof1323() { } public static final int ONEOF_1324_FIELD_NUMBER = 1324; + /** + * int32 oneof_1324 = 1324; + * @return Whether the oneof1324 field is set. + */ + @java.lang.Override + public boolean hasOneof1324() { + return hugeOneofCase_ == 1324; + } /** * int32 oneof_1324 = 1324; * @return The oneof1324. */ + @java.lang.Override public int getOneof1324() { if (hugeOneofCase_ == 1324) { return (java.lang.Integer) hugeOneof_; @@ -187548,10 +202477,19 @@ public int getOneof1324() { } public static final int ONEOF_1325_FIELD_NUMBER = 1325; + /** + * int32 oneof_1325 = 1325; + * @return Whether the oneof1325 field is set. + */ + @java.lang.Override + public boolean hasOneof1325() { + return hugeOneofCase_ == 1325; + } /** * int32 oneof_1325 = 1325; * @return The oneof1325. */ + @java.lang.Override public int getOneof1325() { if (hugeOneofCase_ == 1325) { return (java.lang.Integer) hugeOneof_; @@ -187560,10 +202498,19 @@ public int getOneof1325() { } public static final int ONEOF_1326_FIELD_NUMBER = 1326; + /** + * int32 oneof_1326 = 1326; + * @return Whether the oneof1326 field is set. + */ + @java.lang.Override + public boolean hasOneof1326() { + return hugeOneofCase_ == 1326; + } /** * int32 oneof_1326 = 1326; * @return The oneof1326. */ + @java.lang.Override public int getOneof1326() { if (hugeOneofCase_ == 1326) { return (java.lang.Integer) hugeOneof_; @@ -187572,10 +202519,19 @@ public int getOneof1326() { } public static final int ONEOF_1327_FIELD_NUMBER = 1327; + /** + * int32 oneof_1327 = 1327; + * @return Whether the oneof1327 field is set. + */ + @java.lang.Override + public boolean hasOneof1327() { + return hugeOneofCase_ == 1327; + } /** * int32 oneof_1327 = 1327; * @return The oneof1327. */ + @java.lang.Override public int getOneof1327() { if (hugeOneofCase_ == 1327) { return (java.lang.Integer) hugeOneof_; @@ -187584,10 +202540,19 @@ public int getOneof1327() { } public static final int ONEOF_1328_FIELD_NUMBER = 1328; + /** + * int32 oneof_1328 = 1328; + * @return Whether the oneof1328 field is set. + */ + @java.lang.Override + public boolean hasOneof1328() { + return hugeOneofCase_ == 1328; + } /** * int32 oneof_1328 = 1328; * @return The oneof1328. */ + @java.lang.Override public int getOneof1328() { if (hugeOneofCase_ == 1328) { return (java.lang.Integer) hugeOneof_; @@ -187596,10 +202561,19 @@ public int getOneof1328() { } public static final int ONEOF_1329_FIELD_NUMBER = 1329; + /** + * int32 oneof_1329 = 1329; + * @return Whether the oneof1329 field is set. + */ + @java.lang.Override + public boolean hasOneof1329() { + return hugeOneofCase_ == 1329; + } /** * int32 oneof_1329 = 1329; * @return The oneof1329. */ + @java.lang.Override public int getOneof1329() { if (hugeOneofCase_ == 1329) { return (java.lang.Integer) hugeOneof_; @@ -187608,22 +202582,40 @@ public int getOneof1329() { } public static final int ONEOF_1330_FIELD_NUMBER = 1330; + /** + * int32 oneof_1330 = 1330; + * @return Whether the oneof1330 field is set. + */ + @java.lang.Override + public boolean hasOneof1330() { + return hugeOneofCase_ == 1330; + } /** * int32 oneof_1330 = 1330; * @return The oneof1330. */ + @java.lang.Override public int getOneof1330() { if (hugeOneofCase_ == 1330) { return (java.lang.Integer) hugeOneof_; } return 0; } - - public static final int ONEOF_1331_FIELD_NUMBER = 1331; + + public static final int ONEOF_1331_FIELD_NUMBER = 1331; + /** + * int32 oneof_1331 = 1331; + * @return Whether the oneof1331 field is set. + */ + @java.lang.Override + public boolean hasOneof1331() { + return hugeOneofCase_ == 1331; + } /** * int32 oneof_1331 = 1331; * @return The oneof1331. */ + @java.lang.Override public int getOneof1331() { if (hugeOneofCase_ == 1331) { return (java.lang.Integer) hugeOneof_; @@ -187632,10 +202624,19 @@ public int getOneof1331() { } public static final int ONEOF_1332_FIELD_NUMBER = 1332; + /** + * int32 oneof_1332 = 1332; + * @return Whether the oneof1332 field is set. + */ + @java.lang.Override + public boolean hasOneof1332() { + return hugeOneofCase_ == 1332; + } /** * int32 oneof_1332 = 1332; * @return The oneof1332. */ + @java.lang.Override public int getOneof1332() { if (hugeOneofCase_ == 1332) { return (java.lang.Integer) hugeOneof_; @@ -187644,10 +202645,19 @@ public int getOneof1332() { } public static final int ONEOF_1333_FIELD_NUMBER = 1333; + /** + * int32 oneof_1333 = 1333; + * @return Whether the oneof1333 field is set. + */ + @java.lang.Override + public boolean hasOneof1333() { + return hugeOneofCase_ == 1333; + } /** * int32 oneof_1333 = 1333; * @return The oneof1333. */ + @java.lang.Override public int getOneof1333() { if (hugeOneofCase_ == 1333) { return (java.lang.Integer) hugeOneof_; @@ -187656,10 +202666,19 @@ public int getOneof1333() { } public static final int ONEOF_1334_FIELD_NUMBER = 1334; + /** + * int32 oneof_1334 = 1334; + * @return Whether the oneof1334 field is set. + */ + @java.lang.Override + public boolean hasOneof1334() { + return hugeOneofCase_ == 1334; + } /** * int32 oneof_1334 = 1334; * @return The oneof1334. */ + @java.lang.Override public int getOneof1334() { if (hugeOneofCase_ == 1334) { return (java.lang.Integer) hugeOneof_; @@ -187668,10 +202687,19 @@ public int getOneof1334() { } public static final int ONEOF_1335_FIELD_NUMBER = 1335; + /** + * int32 oneof_1335 = 1335; + * @return Whether the oneof1335 field is set. + */ + @java.lang.Override + public boolean hasOneof1335() { + return hugeOneofCase_ == 1335; + } /** * int32 oneof_1335 = 1335; * @return The oneof1335. */ + @java.lang.Override public int getOneof1335() { if (hugeOneofCase_ == 1335) { return (java.lang.Integer) hugeOneof_; @@ -187680,10 +202708,19 @@ public int getOneof1335() { } public static final int ONEOF_1336_FIELD_NUMBER = 1336; + /** + * int32 oneof_1336 = 1336; + * @return Whether the oneof1336 field is set. + */ + @java.lang.Override + public boolean hasOneof1336() { + return hugeOneofCase_ == 1336; + } /** * int32 oneof_1336 = 1336; * @return The oneof1336. */ + @java.lang.Override public int getOneof1336() { if (hugeOneofCase_ == 1336) { return (java.lang.Integer) hugeOneof_; @@ -187692,10 +202729,19 @@ public int getOneof1336() { } public static final int ONEOF_1337_FIELD_NUMBER = 1337; + /** + * int32 oneof_1337 = 1337; + * @return Whether the oneof1337 field is set. + */ + @java.lang.Override + public boolean hasOneof1337() { + return hugeOneofCase_ == 1337; + } /** * int32 oneof_1337 = 1337; * @return The oneof1337. */ + @java.lang.Override public int getOneof1337() { if (hugeOneofCase_ == 1337) { return (java.lang.Integer) hugeOneof_; @@ -187704,10 +202750,19 @@ public int getOneof1337() { } public static final int ONEOF_1338_FIELD_NUMBER = 1338; + /** + * int32 oneof_1338 = 1338; + * @return Whether the oneof1338 field is set. + */ + @java.lang.Override + public boolean hasOneof1338() { + return hugeOneofCase_ == 1338; + } /** * int32 oneof_1338 = 1338; * @return The oneof1338. */ + @java.lang.Override public int getOneof1338() { if (hugeOneofCase_ == 1338) { return (java.lang.Integer) hugeOneof_; @@ -187716,10 +202771,19 @@ public int getOneof1338() { } public static final int ONEOF_1339_FIELD_NUMBER = 1339; + /** + * int32 oneof_1339 = 1339; + * @return Whether the oneof1339 field is set. + */ + @java.lang.Override + public boolean hasOneof1339() { + return hugeOneofCase_ == 1339; + } /** * int32 oneof_1339 = 1339; * @return The oneof1339. */ + @java.lang.Override public int getOneof1339() { if (hugeOneofCase_ == 1339) { return (java.lang.Integer) hugeOneof_; @@ -187728,10 +202792,19 @@ public int getOneof1339() { } public static final int ONEOF_1340_FIELD_NUMBER = 1340; + /** + * int32 oneof_1340 = 1340; + * @return Whether the oneof1340 field is set. + */ + @java.lang.Override + public boolean hasOneof1340() { + return hugeOneofCase_ == 1340; + } /** * int32 oneof_1340 = 1340; * @return The oneof1340. */ + @java.lang.Override public int getOneof1340() { if (hugeOneofCase_ == 1340) { return (java.lang.Integer) hugeOneof_; @@ -187740,10 +202813,19 @@ public int getOneof1340() { } public static final int ONEOF_1341_FIELD_NUMBER = 1341; + /** + * int32 oneof_1341 = 1341; + * @return Whether the oneof1341 field is set. + */ + @java.lang.Override + public boolean hasOneof1341() { + return hugeOneofCase_ == 1341; + } /** * int32 oneof_1341 = 1341; * @return The oneof1341. */ + @java.lang.Override public int getOneof1341() { if (hugeOneofCase_ == 1341) { return (java.lang.Integer) hugeOneof_; @@ -187752,10 +202834,19 @@ public int getOneof1341() { } public static final int ONEOF_1342_FIELD_NUMBER = 1342; + /** + * int32 oneof_1342 = 1342; + * @return Whether the oneof1342 field is set. + */ + @java.lang.Override + public boolean hasOneof1342() { + return hugeOneofCase_ == 1342; + } /** * int32 oneof_1342 = 1342; * @return The oneof1342. */ + @java.lang.Override public int getOneof1342() { if (hugeOneofCase_ == 1342) { return (java.lang.Integer) hugeOneof_; @@ -187764,10 +202855,19 @@ public int getOneof1342() { } public static final int ONEOF_1343_FIELD_NUMBER = 1343; + /** + * int32 oneof_1343 = 1343; + * @return Whether the oneof1343 field is set. + */ + @java.lang.Override + public boolean hasOneof1343() { + return hugeOneofCase_ == 1343; + } /** * int32 oneof_1343 = 1343; * @return The oneof1343. */ + @java.lang.Override public int getOneof1343() { if (hugeOneofCase_ == 1343) { return (java.lang.Integer) hugeOneof_; @@ -187776,10 +202876,19 @@ public int getOneof1343() { } public static final int ONEOF_1344_FIELD_NUMBER = 1344; + /** + * int32 oneof_1344 = 1344; + * @return Whether the oneof1344 field is set. + */ + @java.lang.Override + public boolean hasOneof1344() { + return hugeOneofCase_ == 1344; + } /** * int32 oneof_1344 = 1344; * @return The oneof1344. */ + @java.lang.Override public int getOneof1344() { if (hugeOneofCase_ == 1344) { return (java.lang.Integer) hugeOneof_; @@ -187788,10 +202897,19 @@ public int getOneof1344() { } public static final int ONEOF_1345_FIELD_NUMBER = 1345; + /** + * int32 oneof_1345 = 1345; + * @return Whether the oneof1345 field is set. + */ + @java.lang.Override + public boolean hasOneof1345() { + return hugeOneofCase_ == 1345; + } /** * int32 oneof_1345 = 1345; * @return The oneof1345. */ + @java.lang.Override public int getOneof1345() { if (hugeOneofCase_ == 1345) { return (java.lang.Integer) hugeOneof_; @@ -187800,10 +202918,19 @@ public int getOneof1345() { } public static final int ONEOF_1346_FIELD_NUMBER = 1346; + /** + * int32 oneof_1346 = 1346; + * @return Whether the oneof1346 field is set. + */ + @java.lang.Override + public boolean hasOneof1346() { + return hugeOneofCase_ == 1346; + } /** * int32 oneof_1346 = 1346; * @return The oneof1346. */ + @java.lang.Override public int getOneof1346() { if (hugeOneofCase_ == 1346) { return (java.lang.Integer) hugeOneof_; @@ -187812,10 +202939,19 @@ public int getOneof1346() { } public static final int ONEOF_1347_FIELD_NUMBER = 1347; + /** + * int32 oneof_1347 = 1347; + * @return Whether the oneof1347 field is set. + */ + @java.lang.Override + public boolean hasOneof1347() { + return hugeOneofCase_ == 1347; + } /** * int32 oneof_1347 = 1347; * @return The oneof1347. */ + @java.lang.Override public int getOneof1347() { if (hugeOneofCase_ == 1347) { return (java.lang.Integer) hugeOneof_; @@ -187824,10 +202960,19 @@ public int getOneof1347() { } public static final int ONEOF_1348_FIELD_NUMBER = 1348; + /** + * int32 oneof_1348 = 1348; + * @return Whether the oneof1348 field is set. + */ + @java.lang.Override + public boolean hasOneof1348() { + return hugeOneofCase_ == 1348; + } /** * int32 oneof_1348 = 1348; * @return The oneof1348. */ + @java.lang.Override public int getOneof1348() { if (hugeOneofCase_ == 1348) { return (java.lang.Integer) hugeOneof_; @@ -187836,10 +202981,19 @@ public int getOneof1348() { } public static final int ONEOF_1349_FIELD_NUMBER = 1349; + /** + * int32 oneof_1349 = 1349; + * @return Whether the oneof1349 field is set. + */ + @java.lang.Override + public boolean hasOneof1349() { + return hugeOneofCase_ == 1349; + } /** * int32 oneof_1349 = 1349; * @return The oneof1349. */ + @java.lang.Override public int getOneof1349() { if (hugeOneofCase_ == 1349) { return (java.lang.Integer) hugeOneof_; @@ -187848,10 +203002,19 @@ public int getOneof1349() { } public static final int ONEOF_1350_FIELD_NUMBER = 1350; + /** + * int32 oneof_1350 = 1350; + * @return Whether the oneof1350 field is set. + */ + @java.lang.Override + public boolean hasOneof1350() { + return hugeOneofCase_ == 1350; + } /** * int32 oneof_1350 = 1350; * @return The oneof1350. */ + @java.lang.Override public int getOneof1350() { if (hugeOneofCase_ == 1350) { return (java.lang.Integer) hugeOneof_; @@ -187860,10 +203023,19 @@ public int getOneof1350() { } public static final int ONEOF_1351_FIELD_NUMBER = 1351; + /** + * int32 oneof_1351 = 1351; + * @return Whether the oneof1351 field is set. + */ + @java.lang.Override + public boolean hasOneof1351() { + return hugeOneofCase_ == 1351; + } /** * int32 oneof_1351 = 1351; * @return The oneof1351. */ + @java.lang.Override public int getOneof1351() { if (hugeOneofCase_ == 1351) { return (java.lang.Integer) hugeOneof_; @@ -187872,10 +203044,19 @@ public int getOneof1351() { } public static final int ONEOF_1352_FIELD_NUMBER = 1352; + /** + * int32 oneof_1352 = 1352; + * @return Whether the oneof1352 field is set. + */ + @java.lang.Override + public boolean hasOneof1352() { + return hugeOneofCase_ == 1352; + } /** * int32 oneof_1352 = 1352; * @return The oneof1352. */ + @java.lang.Override public int getOneof1352() { if (hugeOneofCase_ == 1352) { return (java.lang.Integer) hugeOneof_; @@ -187884,10 +203065,19 @@ public int getOneof1352() { } public static final int ONEOF_1353_FIELD_NUMBER = 1353; + /** + * int32 oneof_1353 = 1353; + * @return Whether the oneof1353 field is set. + */ + @java.lang.Override + public boolean hasOneof1353() { + return hugeOneofCase_ == 1353; + } /** * int32 oneof_1353 = 1353; * @return The oneof1353. */ + @java.lang.Override public int getOneof1353() { if (hugeOneofCase_ == 1353) { return (java.lang.Integer) hugeOneof_; @@ -187896,10 +203086,19 @@ public int getOneof1353() { } public static final int ONEOF_1354_FIELD_NUMBER = 1354; + /** + * int32 oneof_1354 = 1354; + * @return Whether the oneof1354 field is set. + */ + @java.lang.Override + public boolean hasOneof1354() { + return hugeOneofCase_ == 1354; + } /** * int32 oneof_1354 = 1354; * @return The oneof1354. */ + @java.lang.Override public int getOneof1354() { if (hugeOneofCase_ == 1354) { return (java.lang.Integer) hugeOneof_; @@ -187908,10 +203107,19 @@ public int getOneof1354() { } public static final int ONEOF_1355_FIELD_NUMBER = 1355; + /** + * int32 oneof_1355 = 1355; + * @return Whether the oneof1355 field is set. + */ + @java.lang.Override + public boolean hasOneof1355() { + return hugeOneofCase_ == 1355; + } /** * int32 oneof_1355 = 1355; * @return The oneof1355. */ + @java.lang.Override public int getOneof1355() { if (hugeOneofCase_ == 1355) { return (java.lang.Integer) hugeOneof_; @@ -187920,10 +203128,19 @@ public int getOneof1355() { } public static final int ONEOF_1356_FIELD_NUMBER = 1356; + /** + * int32 oneof_1356 = 1356; + * @return Whether the oneof1356 field is set. + */ + @java.lang.Override + public boolean hasOneof1356() { + return hugeOneofCase_ == 1356; + } /** * int32 oneof_1356 = 1356; * @return The oneof1356. */ + @java.lang.Override public int getOneof1356() { if (hugeOneofCase_ == 1356) { return (java.lang.Integer) hugeOneof_; @@ -187932,10 +203149,19 @@ public int getOneof1356() { } public static final int ONEOF_1357_FIELD_NUMBER = 1357; + /** + * int32 oneof_1357 = 1357; + * @return Whether the oneof1357 field is set. + */ + @java.lang.Override + public boolean hasOneof1357() { + return hugeOneofCase_ == 1357; + } /** * int32 oneof_1357 = 1357; * @return The oneof1357. */ + @java.lang.Override public int getOneof1357() { if (hugeOneofCase_ == 1357) { return (java.lang.Integer) hugeOneof_; @@ -187944,10 +203170,19 @@ public int getOneof1357() { } public static final int ONEOF_1358_FIELD_NUMBER = 1358; + /** + * int32 oneof_1358 = 1358; + * @return Whether the oneof1358 field is set. + */ + @java.lang.Override + public boolean hasOneof1358() { + return hugeOneofCase_ == 1358; + } /** * int32 oneof_1358 = 1358; * @return The oneof1358. */ + @java.lang.Override public int getOneof1358() { if (hugeOneofCase_ == 1358) { return (java.lang.Integer) hugeOneof_; @@ -187956,10 +203191,19 @@ public int getOneof1358() { } public static final int ONEOF_1359_FIELD_NUMBER = 1359; + /** + * int32 oneof_1359 = 1359; + * @return Whether the oneof1359 field is set. + */ + @java.lang.Override + public boolean hasOneof1359() { + return hugeOneofCase_ == 1359; + } /** * int32 oneof_1359 = 1359; * @return The oneof1359. */ + @java.lang.Override public int getOneof1359() { if (hugeOneofCase_ == 1359) { return (java.lang.Integer) hugeOneof_; @@ -187968,10 +203212,19 @@ public int getOneof1359() { } public static final int ONEOF_1360_FIELD_NUMBER = 1360; + /** + * int32 oneof_1360 = 1360; + * @return Whether the oneof1360 field is set. + */ + @java.lang.Override + public boolean hasOneof1360() { + return hugeOneofCase_ == 1360; + } /** * int32 oneof_1360 = 1360; * @return The oneof1360. */ + @java.lang.Override public int getOneof1360() { if (hugeOneofCase_ == 1360) { return (java.lang.Integer) hugeOneof_; @@ -187980,10 +203233,19 @@ public int getOneof1360() { } public static final int ONEOF_1361_FIELD_NUMBER = 1361; + /** + * int32 oneof_1361 = 1361; + * @return Whether the oneof1361 field is set. + */ + @java.lang.Override + public boolean hasOneof1361() { + return hugeOneofCase_ == 1361; + } /** * int32 oneof_1361 = 1361; * @return The oneof1361. */ + @java.lang.Override public int getOneof1361() { if (hugeOneofCase_ == 1361) { return (java.lang.Integer) hugeOneof_; @@ -187992,10 +203254,19 @@ public int getOneof1361() { } public static final int ONEOF_1362_FIELD_NUMBER = 1362; + /** + * int32 oneof_1362 = 1362; + * @return Whether the oneof1362 field is set. + */ + @java.lang.Override + public boolean hasOneof1362() { + return hugeOneofCase_ == 1362; + } /** * int32 oneof_1362 = 1362; * @return The oneof1362. */ + @java.lang.Override public int getOneof1362() { if (hugeOneofCase_ == 1362) { return (java.lang.Integer) hugeOneof_; @@ -188004,10 +203275,19 @@ public int getOneof1362() { } public static final int ONEOF_1363_FIELD_NUMBER = 1363; + /** + * int32 oneof_1363 = 1363; + * @return Whether the oneof1363 field is set. + */ + @java.lang.Override + public boolean hasOneof1363() { + return hugeOneofCase_ == 1363; + } /** * int32 oneof_1363 = 1363; * @return The oneof1363. */ + @java.lang.Override public int getOneof1363() { if (hugeOneofCase_ == 1363) { return (java.lang.Integer) hugeOneof_; @@ -188016,10 +203296,19 @@ public int getOneof1363() { } public static final int ONEOF_1364_FIELD_NUMBER = 1364; + /** + * int32 oneof_1364 = 1364; + * @return Whether the oneof1364 field is set. + */ + @java.lang.Override + public boolean hasOneof1364() { + return hugeOneofCase_ == 1364; + } /** * int32 oneof_1364 = 1364; * @return The oneof1364. */ + @java.lang.Override public int getOneof1364() { if (hugeOneofCase_ == 1364) { return (java.lang.Integer) hugeOneof_; @@ -188028,10 +203317,19 @@ public int getOneof1364() { } public static final int ONEOF_1365_FIELD_NUMBER = 1365; + /** + * int32 oneof_1365 = 1365; + * @return Whether the oneof1365 field is set. + */ + @java.lang.Override + public boolean hasOneof1365() { + return hugeOneofCase_ == 1365; + } /** * int32 oneof_1365 = 1365; * @return The oneof1365. */ + @java.lang.Override public int getOneof1365() { if (hugeOneofCase_ == 1365) { return (java.lang.Integer) hugeOneof_; @@ -188040,10 +203338,19 @@ public int getOneof1365() { } public static final int ONEOF_1366_FIELD_NUMBER = 1366; + /** + * int32 oneof_1366 = 1366; + * @return Whether the oneof1366 field is set. + */ + @java.lang.Override + public boolean hasOneof1366() { + return hugeOneofCase_ == 1366; + } /** * int32 oneof_1366 = 1366; * @return The oneof1366. */ + @java.lang.Override public int getOneof1366() { if (hugeOneofCase_ == 1366) { return (java.lang.Integer) hugeOneof_; @@ -188052,10 +203359,19 @@ public int getOneof1366() { } public static final int ONEOF_1367_FIELD_NUMBER = 1367; + /** + * int32 oneof_1367 = 1367; + * @return Whether the oneof1367 field is set. + */ + @java.lang.Override + public boolean hasOneof1367() { + return hugeOneofCase_ == 1367; + } /** * int32 oneof_1367 = 1367; * @return The oneof1367. */ + @java.lang.Override public int getOneof1367() { if (hugeOneofCase_ == 1367) { return (java.lang.Integer) hugeOneof_; @@ -188064,10 +203380,19 @@ public int getOneof1367() { } public static final int ONEOF_1368_FIELD_NUMBER = 1368; + /** + * int32 oneof_1368 = 1368; + * @return Whether the oneof1368 field is set. + */ + @java.lang.Override + public boolean hasOneof1368() { + return hugeOneofCase_ == 1368; + } /** * int32 oneof_1368 = 1368; * @return The oneof1368. */ + @java.lang.Override public int getOneof1368() { if (hugeOneofCase_ == 1368) { return (java.lang.Integer) hugeOneof_; @@ -188076,10 +203401,19 @@ public int getOneof1368() { } public static final int ONEOF_1369_FIELD_NUMBER = 1369; + /** + * int32 oneof_1369 = 1369; + * @return Whether the oneof1369 field is set. + */ + @java.lang.Override + public boolean hasOneof1369() { + return hugeOneofCase_ == 1369; + } /** * int32 oneof_1369 = 1369; * @return The oneof1369. */ + @java.lang.Override public int getOneof1369() { if (hugeOneofCase_ == 1369) { return (java.lang.Integer) hugeOneof_; @@ -188088,10 +203422,19 @@ public int getOneof1369() { } public static final int ONEOF_1370_FIELD_NUMBER = 1370; + /** + * int32 oneof_1370 = 1370; + * @return Whether the oneof1370 field is set. + */ + @java.lang.Override + public boolean hasOneof1370() { + return hugeOneofCase_ == 1370; + } /** * int32 oneof_1370 = 1370; * @return The oneof1370. */ + @java.lang.Override public int getOneof1370() { if (hugeOneofCase_ == 1370) { return (java.lang.Integer) hugeOneof_; @@ -188100,10 +203443,19 @@ public int getOneof1370() { } public static final int ONEOF_1371_FIELD_NUMBER = 1371; + /** + * int32 oneof_1371 = 1371; + * @return Whether the oneof1371 field is set. + */ + @java.lang.Override + public boolean hasOneof1371() { + return hugeOneofCase_ == 1371; + } /** * int32 oneof_1371 = 1371; * @return The oneof1371. */ + @java.lang.Override public int getOneof1371() { if (hugeOneofCase_ == 1371) { return (java.lang.Integer) hugeOneof_; @@ -188112,10 +203464,19 @@ public int getOneof1371() { } public static final int ONEOF_1372_FIELD_NUMBER = 1372; + /** + * int32 oneof_1372 = 1372; + * @return Whether the oneof1372 field is set. + */ + @java.lang.Override + public boolean hasOneof1372() { + return hugeOneofCase_ == 1372; + } /** * int32 oneof_1372 = 1372; * @return The oneof1372. */ + @java.lang.Override public int getOneof1372() { if (hugeOneofCase_ == 1372) { return (java.lang.Integer) hugeOneof_; @@ -188124,10 +203485,19 @@ public int getOneof1372() { } public static final int ONEOF_1373_FIELD_NUMBER = 1373; + /** + * int32 oneof_1373 = 1373; + * @return Whether the oneof1373 field is set. + */ + @java.lang.Override + public boolean hasOneof1373() { + return hugeOneofCase_ == 1373; + } /** * int32 oneof_1373 = 1373; * @return The oneof1373. */ + @java.lang.Override public int getOneof1373() { if (hugeOneofCase_ == 1373) { return (java.lang.Integer) hugeOneof_; @@ -188136,10 +203506,19 @@ public int getOneof1373() { } public static final int ONEOF_1374_FIELD_NUMBER = 1374; + /** + * int32 oneof_1374 = 1374; + * @return Whether the oneof1374 field is set. + */ + @java.lang.Override + public boolean hasOneof1374() { + return hugeOneofCase_ == 1374; + } /** * int32 oneof_1374 = 1374; * @return The oneof1374. */ + @java.lang.Override public int getOneof1374() { if (hugeOneofCase_ == 1374) { return (java.lang.Integer) hugeOneof_; @@ -188148,10 +203527,19 @@ public int getOneof1374() { } public static final int ONEOF_1375_FIELD_NUMBER = 1375; + /** + * int32 oneof_1375 = 1375; + * @return Whether the oneof1375 field is set. + */ + @java.lang.Override + public boolean hasOneof1375() { + return hugeOneofCase_ == 1375; + } /** * int32 oneof_1375 = 1375; * @return The oneof1375. */ + @java.lang.Override public int getOneof1375() { if (hugeOneofCase_ == 1375) { return (java.lang.Integer) hugeOneof_; @@ -188160,10 +203548,19 @@ public int getOneof1375() { } public static final int ONEOF_1376_FIELD_NUMBER = 1376; + /** + * int32 oneof_1376 = 1376; + * @return Whether the oneof1376 field is set. + */ + @java.lang.Override + public boolean hasOneof1376() { + return hugeOneofCase_ == 1376; + } /** * int32 oneof_1376 = 1376; * @return The oneof1376. */ + @java.lang.Override public int getOneof1376() { if (hugeOneofCase_ == 1376) { return (java.lang.Integer) hugeOneof_; @@ -188172,10 +203569,19 @@ public int getOneof1376() { } public static final int ONEOF_1377_FIELD_NUMBER = 1377; + /** + * int32 oneof_1377 = 1377; + * @return Whether the oneof1377 field is set. + */ + @java.lang.Override + public boolean hasOneof1377() { + return hugeOneofCase_ == 1377; + } /** * int32 oneof_1377 = 1377; * @return The oneof1377. */ + @java.lang.Override public int getOneof1377() { if (hugeOneofCase_ == 1377) { return (java.lang.Integer) hugeOneof_; @@ -188184,10 +203590,19 @@ public int getOneof1377() { } public static final int ONEOF_1378_FIELD_NUMBER = 1378; + /** + * int32 oneof_1378 = 1378; + * @return Whether the oneof1378 field is set. + */ + @java.lang.Override + public boolean hasOneof1378() { + return hugeOneofCase_ == 1378; + } /** * int32 oneof_1378 = 1378; * @return The oneof1378. */ + @java.lang.Override public int getOneof1378() { if (hugeOneofCase_ == 1378) { return (java.lang.Integer) hugeOneof_; @@ -188196,10 +203611,19 @@ public int getOneof1378() { } public static final int ONEOF_1379_FIELD_NUMBER = 1379; + /** + * int32 oneof_1379 = 1379; + * @return Whether the oneof1379 field is set. + */ + @java.lang.Override + public boolean hasOneof1379() { + return hugeOneofCase_ == 1379; + } /** * int32 oneof_1379 = 1379; * @return The oneof1379. */ + @java.lang.Override public int getOneof1379() { if (hugeOneofCase_ == 1379) { return (java.lang.Integer) hugeOneof_; @@ -188208,10 +203632,19 @@ public int getOneof1379() { } public static final int ONEOF_1380_FIELD_NUMBER = 1380; + /** + * int32 oneof_1380 = 1380; + * @return Whether the oneof1380 field is set. + */ + @java.lang.Override + public boolean hasOneof1380() { + return hugeOneofCase_ == 1380; + } /** * int32 oneof_1380 = 1380; * @return The oneof1380. */ + @java.lang.Override public int getOneof1380() { if (hugeOneofCase_ == 1380) { return (java.lang.Integer) hugeOneof_; @@ -188220,10 +203653,19 @@ public int getOneof1380() { } public static final int ONEOF_1381_FIELD_NUMBER = 1381; + /** + * int32 oneof_1381 = 1381; + * @return Whether the oneof1381 field is set. + */ + @java.lang.Override + public boolean hasOneof1381() { + return hugeOneofCase_ == 1381; + } /** * int32 oneof_1381 = 1381; * @return The oneof1381. */ + @java.lang.Override public int getOneof1381() { if (hugeOneofCase_ == 1381) { return (java.lang.Integer) hugeOneof_; @@ -188232,10 +203674,19 @@ public int getOneof1381() { } public static final int ONEOF_1382_FIELD_NUMBER = 1382; + /** + * int32 oneof_1382 = 1382; + * @return Whether the oneof1382 field is set. + */ + @java.lang.Override + public boolean hasOneof1382() { + return hugeOneofCase_ == 1382; + } /** * int32 oneof_1382 = 1382; * @return The oneof1382. */ + @java.lang.Override public int getOneof1382() { if (hugeOneofCase_ == 1382) { return (java.lang.Integer) hugeOneof_; @@ -188244,10 +203695,19 @@ public int getOneof1382() { } public static final int ONEOF_1383_FIELD_NUMBER = 1383; + /** + * int32 oneof_1383 = 1383; + * @return Whether the oneof1383 field is set. + */ + @java.lang.Override + public boolean hasOneof1383() { + return hugeOneofCase_ == 1383; + } /** * int32 oneof_1383 = 1383; * @return The oneof1383. */ + @java.lang.Override public int getOneof1383() { if (hugeOneofCase_ == 1383) { return (java.lang.Integer) hugeOneof_; @@ -188256,10 +203716,19 @@ public int getOneof1383() { } public static final int ONEOF_1384_FIELD_NUMBER = 1384; + /** + * int32 oneof_1384 = 1384; + * @return Whether the oneof1384 field is set. + */ + @java.lang.Override + public boolean hasOneof1384() { + return hugeOneofCase_ == 1384; + } /** * int32 oneof_1384 = 1384; * @return The oneof1384. */ + @java.lang.Override public int getOneof1384() { if (hugeOneofCase_ == 1384) { return (java.lang.Integer) hugeOneof_; @@ -188268,10 +203737,19 @@ public int getOneof1384() { } public static final int ONEOF_1385_FIELD_NUMBER = 1385; + /** + * int32 oneof_1385 = 1385; + * @return Whether the oneof1385 field is set. + */ + @java.lang.Override + public boolean hasOneof1385() { + return hugeOneofCase_ == 1385; + } /** * int32 oneof_1385 = 1385; * @return The oneof1385. */ + @java.lang.Override public int getOneof1385() { if (hugeOneofCase_ == 1385) { return (java.lang.Integer) hugeOneof_; @@ -188280,10 +203758,19 @@ public int getOneof1385() { } public static final int ONEOF_1386_FIELD_NUMBER = 1386; + /** + * int32 oneof_1386 = 1386; + * @return Whether the oneof1386 field is set. + */ + @java.lang.Override + public boolean hasOneof1386() { + return hugeOneofCase_ == 1386; + } /** * int32 oneof_1386 = 1386; * @return The oneof1386. */ + @java.lang.Override public int getOneof1386() { if (hugeOneofCase_ == 1386) { return (java.lang.Integer) hugeOneof_; @@ -188292,10 +203779,19 @@ public int getOneof1386() { } public static final int ONEOF_1387_FIELD_NUMBER = 1387; + /** + * int32 oneof_1387 = 1387; + * @return Whether the oneof1387 field is set. + */ + @java.lang.Override + public boolean hasOneof1387() { + return hugeOneofCase_ == 1387; + } /** * int32 oneof_1387 = 1387; * @return The oneof1387. */ + @java.lang.Override public int getOneof1387() { if (hugeOneofCase_ == 1387) { return (java.lang.Integer) hugeOneof_; @@ -188304,10 +203800,19 @@ public int getOneof1387() { } public static final int ONEOF_1388_FIELD_NUMBER = 1388; + /** + * int32 oneof_1388 = 1388; + * @return Whether the oneof1388 field is set. + */ + @java.lang.Override + public boolean hasOneof1388() { + return hugeOneofCase_ == 1388; + } /** * int32 oneof_1388 = 1388; * @return The oneof1388. */ + @java.lang.Override public int getOneof1388() { if (hugeOneofCase_ == 1388) { return (java.lang.Integer) hugeOneof_; @@ -188316,10 +203821,19 @@ public int getOneof1388() { } public static final int ONEOF_1389_FIELD_NUMBER = 1389; + /** + * int32 oneof_1389 = 1389; + * @return Whether the oneof1389 field is set. + */ + @java.lang.Override + public boolean hasOneof1389() { + return hugeOneofCase_ == 1389; + } /** * int32 oneof_1389 = 1389; * @return The oneof1389. */ + @java.lang.Override public int getOneof1389() { if (hugeOneofCase_ == 1389) { return (java.lang.Integer) hugeOneof_; @@ -188328,10 +203842,19 @@ public int getOneof1389() { } public static final int ONEOF_1390_FIELD_NUMBER = 1390; + /** + * int32 oneof_1390 = 1390; + * @return Whether the oneof1390 field is set. + */ + @java.lang.Override + public boolean hasOneof1390() { + return hugeOneofCase_ == 1390; + } /** * int32 oneof_1390 = 1390; * @return The oneof1390. */ + @java.lang.Override public int getOneof1390() { if (hugeOneofCase_ == 1390) { return (java.lang.Integer) hugeOneof_; @@ -188340,10 +203863,19 @@ public int getOneof1390() { } public static final int ONEOF_1391_FIELD_NUMBER = 1391; + /** + * int32 oneof_1391 = 1391; + * @return Whether the oneof1391 field is set. + */ + @java.lang.Override + public boolean hasOneof1391() { + return hugeOneofCase_ == 1391; + } /** * int32 oneof_1391 = 1391; * @return The oneof1391. */ + @java.lang.Override public int getOneof1391() { if (hugeOneofCase_ == 1391) { return (java.lang.Integer) hugeOneof_; @@ -188352,10 +203884,19 @@ public int getOneof1391() { } public static final int ONEOF_1392_FIELD_NUMBER = 1392; + /** + * int32 oneof_1392 = 1392; + * @return Whether the oneof1392 field is set. + */ + @java.lang.Override + public boolean hasOneof1392() { + return hugeOneofCase_ == 1392; + } /** * int32 oneof_1392 = 1392; * @return The oneof1392. */ + @java.lang.Override public int getOneof1392() { if (hugeOneofCase_ == 1392) { return (java.lang.Integer) hugeOneof_; @@ -188364,10 +203905,19 @@ public int getOneof1392() { } public static final int ONEOF_1393_FIELD_NUMBER = 1393; + /** + * int32 oneof_1393 = 1393; + * @return Whether the oneof1393 field is set. + */ + @java.lang.Override + public boolean hasOneof1393() { + return hugeOneofCase_ == 1393; + } /** * int32 oneof_1393 = 1393; * @return The oneof1393. */ + @java.lang.Override public int getOneof1393() { if (hugeOneofCase_ == 1393) { return (java.lang.Integer) hugeOneof_; @@ -188376,10 +203926,19 @@ public int getOneof1393() { } public static final int ONEOF_1394_FIELD_NUMBER = 1394; + /** + * int32 oneof_1394 = 1394; + * @return Whether the oneof1394 field is set. + */ + @java.lang.Override + public boolean hasOneof1394() { + return hugeOneofCase_ == 1394; + } /** * int32 oneof_1394 = 1394; * @return The oneof1394. */ + @java.lang.Override public int getOneof1394() { if (hugeOneofCase_ == 1394) { return (java.lang.Integer) hugeOneof_; @@ -188388,10 +203947,19 @@ public int getOneof1394() { } public static final int ONEOF_1395_FIELD_NUMBER = 1395; + /** + * int32 oneof_1395 = 1395; + * @return Whether the oneof1395 field is set. + */ + @java.lang.Override + public boolean hasOneof1395() { + return hugeOneofCase_ == 1395; + } /** * int32 oneof_1395 = 1395; * @return The oneof1395. */ + @java.lang.Override public int getOneof1395() { if (hugeOneofCase_ == 1395) { return (java.lang.Integer) hugeOneof_; @@ -188400,10 +203968,19 @@ public int getOneof1395() { } public static final int ONEOF_1396_FIELD_NUMBER = 1396; + /** + * int32 oneof_1396 = 1396; + * @return Whether the oneof1396 field is set. + */ + @java.lang.Override + public boolean hasOneof1396() { + return hugeOneofCase_ == 1396; + } /** * int32 oneof_1396 = 1396; * @return The oneof1396. */ + @java.lang.Override public int getOneof1396() { if (hugeOneofCase_ == 1396) { return (java.lang.Integer) hugeOneof_; @@ -188412,10 +203989,19 @@ public int getOneof1396() { } public static final int ONEOF_1397_FIELD_NUMBER = 1397; + /** + * int32 oneof_1397 = 1397; + * @return Whether the oneof1397 field is set. + */ + @java.lang.Override + public boolean hasOneof1397() { + return hugeOneofCase_ == 1397; + } /** * int32 oneof_1397 = 1397; * @return The oneof1397. */ + @java.lang.Override public int getOneof1397() { if (hugeOneofCase_ == 1397) { return (java.lang.Integer) hugeOneof_; @@ -188424,10 +204010,19 @@ public int getOneof1397() { } public static final int ONEOF_1398_FIELD_NUMBER = 1398; + /** + * int32 oneof_1398 = 1398; + * @return Whether the oneof1398 field is set. + */ + @java.lang.Override + public boolean hasOneof1398() { + return hugeOneofCase_ == 1398; + } /** * int32 oneof_1398 = 1398; * @return The oneof1398. */ + @java.lang.Override public int getOneof1398() { if (hugeOneofCase_ == 1398) { return (java.lang.Integer) hugeOneof_; @@ -188436,10 +204031,19 @@ public int getOneof1398() { } public static final int ONEOF_1399_FIELD_NUMBER = 1399; + /** + * int32 oneof_1399 = 1399; + * @return Whether the oneof1399 field is set. + */ + @java.lang.Override + public boolean hasOneof1399() { + return hugeOneofCase_ == 1399; + } /** * int32 oneof_1399 = 1399; * @return The oneof1399. */ + @java.lang.Override public int getOneof1399() { if (hugeOneofCase_ == 1399) { return (java.lang.Integer) hugeOneof_; @@ -188448,10 +204052,19 @@ public int getOneof1399() { } public static final int ONEOF_1400_FIELD_NUMBER = 1400; + /** + * int32 oneof_1400 = 1400; + * @return Whether the oneof1400 field is set. + */ + @java.lang.Override + public boolean hasOneof1400() { + return hugeOneofCase_ == 1400; + } /** * int32 oneof_1400 = 1400; * @return The oneof1400. */ + @java.lang.Override public int getOneof1400() { if (hugeOneofCase_ == 1400) { return (java.lang.Integer) hugeOneof_; @@ -188460,10 +204073,19 @@ public int getOneof1400() { } public static final int ONEOF_1401_FIELD_NUMBER = 1401; + /** + * int32 oneof_1401 = 1401; + * @return Whether the oneof1401 field is set. + */ + @java.lang.Override + public boolean hasOneof1401() { + return hugeOneofCase_ == 1401; + } /** * int32 oneof_1401 = 1401; * @return The oneof1401. */ + @java.lang.Override public int getOneof1401() { if (hugeOneofCase_ == 1401) { return (java.lang.Integer) hugeOneof_; @@ -188472,10 +204094,19 @@ public int getOneof1401() { } public static final int ONEOF_1402_FIELD_NUMBER = 1402; + /** + * int32 oneof_1402 = 1402; + * @return Whether the oneof1402 field is set. + */ + @java.lang.Override + public boolean hasOneof1402() { + return hugeOneofCase_ == 1402; + } /** * int32 oneof_1402 = 1402; * @return The oneof1402. */ + @java.lang.Override public int getOneof1402() { if (hugeOneofCase_ == 1402) { return (java.lang.Integer) hugeOneof_; @@ -188484,10 +204115,19 @@ public int getOneof1402() { } public static final int ONEOF_1403_FIELD_NUMBER = 1403; + /** + * int32 oneof_1403 = 1403; + * @return Whether the oneof1403 field is set. + */ + @java.lang.Override + public boolean hasOneof1403() { + return hugeOneofCase_ == 1403; + } /** * int32 oneof_1403 = 1403; * @return The oneof1403. */ + @java.lang.Override public int getOneof1403() { if (hugeOneofCase_ == 1403) { return (java.lang.Integer) hugeOneof_; @@ -188496,10 +204136,19 @@ public int getOneof1403() { } public static final int ONEOF_1404_FIELD_NUMBER = 1404; + /** + * int32 oneof_1404 = 1404; + * @return Whether the oneof1404 field is set. + */ + @java.lang.Override + public boolean hasOneof1404() { + return hugeOneofCase_ == 1404; + } /** * int32 oneof_1404 = 1404; * @return The oneof1404. */ + @java.lang.Override public int getOneof1404() { if (hugeOneofCase_ == 1404) { return (java.lang.Integer) hugeOneof_; @@ -188508,10 +204157,19 @@ public int getOneof1404() { } public static final int ONEOF_1405_FIELD_NUMBER = 1405; + /** + * int32 oneof_1405 = 1405; + * @return Whether the oneof1405 field is set. + */ + @java.lang.Override + public boolean hasOneof1405() { + return hugeOneofCase_ == 1405; + } /** * int32 oneof_1405 = 1405; * @return The oneof1405. */ + @java.lang.Override public int getOneof1405() { if (hugeOneofCase_ == 1405) { return (java.lang.Integer) hugeOneof_; @@ -188520,10 +204178,19 @@ public int getOneof1405() { } public static final int ONEOF_1406_FIELD_NUMBER = 1406; + /** + * int32 oneof_1406 = 1406; + * @return Whether the oneof1406 field is set. + */ + @java.lang.Override + public boolean hasOneof1406() { + return hugeOneofCase_ == 1406; + } /** * int32 oneof_1406 = 1406; * @return The oneof1406. */ + @java.lang.Override public int getOneof1406() { if (hugeOneofCase_ == 1406) { return (java.lang.Integer) hugeOneof_; @@ -188532,10 +204199,19 @@ public int getOneof1406() { } public static final int ONEOF_1407_FIELD_NUMBER = 1407; + /** + * int32 oneof_1407 = 1407; + * @return Whether the oneof1407 field is set. + */ + @java.lang.Override + public boolean hasOneof1407() { + return hugeOneofCase_ == 1407; + } /** * int32 oneof_1407 = 1407; * @return The oneof1407. */ + @java.lang.Override public int getOneof1407() { if (hugeOneofCase_ == 1407) { return (java.lang.Integer) hugeOneof_; @@ -188544,10 +204220,19 @@ public int getOneof1407() { } public static final int ONEOF_1408_FIELD_NUMBER = 1408; + /** + * int32 oneof_1408 = 1408; + * @return Whether the oneof1408 field is set. + */ + @java.lang.Override + public boolean hasOneof1408() { + return hugeOneofCase_ == 1408; + } /** * int32 oneof_1408 = 1408; * @return The oneof1408. */ + @java.lang.Override public int getOneof1408() { if (hugeOneofCase_ == 1408) { return (java.lang.Integer) hugeOneof_; @@ -188556,10 +204241,19 @@ public int getOneof1408() { } public static final int ONEOF_1409_FIELD_NUMBER = 1409; + /** + * int32 oneof_1409 = 1409; + * @return Whether the oneof1409 field is set. + */ + @java.lang.Override + public boolean hasOneof1409() { + return hugeOneofCase_ == 1409; + } /** * int32 oneof_1409 = 1409; * @return The oneof1409. */ + @java.lang.Override public int getOneof1409() { if (hugeOneofCase_ == 1409) { return (java.lang.Integer) hugeOneof_; @@ -188568,10 +204262,19 @@ public int getOneof1409() { } public static final int ONEOF_1410_FIELD_NUMBER = 1410; + /** + * int32 oneof_1410 = 1410; + * @return Whether the oneof1410 field is set. + */ + @java.lang.Override + public boolean hasOneof1410() { + return hugeOneofCase_ == 1410; + } /** * int32 oneof_1410 = 1410; * @return The oneof1410. */ + @java.lang.Override public int getOneof1410() { if (hugeOneofCase_ == 1410) { return (java.lang.Integer) hugeOneof_; @@ -188580,10 +204283,19 @@ public int getOneof1410() { } public static final int ONEOF_1411_FIELD_NUMBER = 1411; + /** + * int32 oneof_1411 = 1411; + * @return Whether the oneof1411 field is set. + */ + @java.lang.Override + public boolean hasOneof1411() { + return hugeOneofCase_ == 1411; + } /** * int32 oneof_1411 = 1411; * @return The oneof1411. */ + @java.lang.Override public int getOneof1411() { if (hugeOneofCase_ == 1411) { return (java.lang.Integer) hugeOneof_; @@ -188592,10 +204304,19 @@ public int getOneof1411() { } public static final int ONEOF_1412_FIELD_NUMBER = 1412; + /** + * int32 oneof_1412 = 1412; + * @return Whether the oneof1412 field is set. + */ + @java.lang.Override + public boolean hasOneof1412() { + return hugeOneofCase_ == 1412; + } /** * int32 oneof_1412 = 1412; * @return The oneof1412. */ + @java.lang.Override public int getOneof1412() { if (hugeOneofCase_ == 1412) { return (java.lang.Integer) hugeOneof_; @@ -188604,10 +204325,19 @@ public int getOneof1412() { } public static final int ONEOF_1413_FIELD_NUMBER = 1413; + /** + * int32 oneof_1413 = 1413; + * @return Whether the oneof1413 field is set. + */ + @java.lang.Override + public boolean hasOneof1413() { + return hugeOneofCase_ == 1413; + } /** * int32 oneof_1413 = 1413; * @return The oneof1413. */ + @java.lang.Override public int getOneof1413() { if (hugeOneofCase_ == 1413) { return (java.lang.Integer) hugeOneof_; @@ -188616,10 +204346,19 @@ public int getOneof1413() { } public static final int ONEOF_1414_FIELD_NUMBER = 1414; + /** + * int32 oneof_1414 = 1414; + * @return Whether the oneof1414 field is set. + */ + @java.lang.Override + public boolean hasOneof1414() { + return hugeOneofCase_ == 1414; + } /** * int32 oneof_1414 = 1414; * @return The oneof1414. */ + @java.lang.Override public int getOneof1414() { if (hugeOneofCase_ == 1414) { return (java.lang.Integer) hugeOneof_; @@ -188628,10 +204367,19 @@ public int getOneof1414() { } public static final int ONEOF_1415_FIELD_NUMBER = 1415; + /** + * int32 oneof_1415 = 1415; + * @return Whether the oneof1415 field is set. + */ + @java.lang.Override + public boolean hasOneof1415() { + return hugeOneofCase_ == 1415; + } /** * int32 oneof_1415 = 1415; * @return The oneof1415. */ + @java.lang.Override public int getOneof1415() { if (hugeOneofCase_ == 1415) { return (java.lang.Integer) hugeOneof_; @@ -188640,10 +204388,19 @@ public int getOneof1415() { } public static final int ONEOF_1416_FIELD_NUMBER = 1416; + /** + * int32 oneof_1416 = 1416; + * @return Whether the oneof1416 field is set. + */ + @java.lang.Override + public boolean hasOneof1416() { + return hugeOneofCase_ == 1416; + } /** * int32 oneof_1416 = 1416; * @return The oneof1416. */ + @java.lang.Override public int getOneof1416() { if (hugeOneofCase_ == 1416) { return (java.lang.Integer) hugeOneof_; @@ -188652,10 +204409,19 @@ public int getOneof1416() { } public static final int ONEOF_1417_FIELD_NUMBER = 1417; + /** + * int32 oneof_1417 = 1417; + * @return Whether the oneof1417 field is set. + */ + @java.lang.Override + public boolean hasOneof1417() { + return hugeOneofCase_ == 1417; + } /** * int32 oneof_1417 = 1417; * @return The oneof1417. */ + @java.lang.Override public int getOneof1417() { if (hugeOneofCase_ == 1417) { return (java.lang.Integer) hugeOneof_; @@ -188664,10 +204430,19 @@ public int getOneof1417() { } public static final int ONEOF_1418_FIELD_NUMBER = 1418; + /** + * int32 oneof_1418 = 1418; + * @return Whether the oneof1418 field is set. + */ + @java.lang.Override + public boolean hasOneof1418() { + return hugeOneofCase_ == 1418; + } /** * int32 oneof_1418 = 1418; * @return The oneof1418. */ + @java.lang.Override public int getOneof1418() { if (hugeOneofCase_ == 1418) { return (java.lang.Integer) hugeOneof_; @@ -188676,10 +204451,19 @@ public int getOneof1418() { } public static final int ONEOF_1419_FIELD_NUMBER = 1419; + /** + * int32 oneof_1419 = 1419; + * @return Whether the oneof1419 field is set. + */ + @java.lang.Override + public boolean hasOneof1419() { + return hugeOneofCase_ == 1419; + } /** * int32 oneof_1419 = 1419; * @return The oneof1419. */ + @java.lang.Override public int getOneof1419() { if (hugeOneofCase_ == 1419) { return (java.lang.Integer) hugeOneof_; @@ -188688,10 +204472,19 @@ public int getOneof1419() { } public static final int ONEOF_1420_FIELD_NUMBER = 1420; + /** + * int32 oneof_1420 = 1420; + * @return Whether the oneof1420 field is set. + */ + @java.lang.Override + public boolean hasOneof1420() { + return hugeOneofCase_ == 1420; + } /** * int32 oneof_1420 = 1420; * @return The oneof1420. */ + @java.lang.Override public int getOneof1420() { if (hugeOneofCase_ == 1420) { return (java.lang.Integer) hugeOneof_; @@ -188700,10 +204493,19 @@ public int getOneof1420() { } public static final int ONEOF_1421_FIELD_NUMBER = 1421; + /** + * int32 oneof_1421 = 1421; + * @return Whether the oneof1421 field is set. + */ + @java.lang.Override + public boolean hasOneof1421() { + return hugeOneofCase_ == 1421; + } /** * int32 oneof_1421 = 1421; * @return The oneof1421. */ + @java.lang.Override public int getOneof1421() { if (hugeOneofCase_ == 1421) { return (java.lang.Integer) hugeOneof_; @@ -188712,10 +204514,19 @@ public int getOneof1421() { } public static final int ONEOF_1422_FIELD_NUMBER = 1422; + /** + * int32 oneof_1422 = 1422; + * @return Whether the oneof1422 field is set. + */ + @java.lang.Override + public boolean hasOneof1422() { + return hugeOneofCase_ == 1422; + } /** * int32 oneof_1422 = 1422; * @return The oneof1422. */ + @java.lang.Override public int getOneof1422() { if (hugeOneofCase_ == 1422) { return (java.lang.Integer) hugeOneof_; @@ -188724,10 +204535,19 @@ public int getOneof1422() { } public static final int ONEOF_1423_FIELD_NUMBER = 1423; + /** + * int32 oneof_1423 = 1423; + * @return Whether the oneof1423 field is set. + */ + @java.lang.Override + public boolean hasOneof1423() { + return hugeOneofCase_ == 1423; + } /** * int32 oneof_1423 = 1423; * @return The oneof1423. */ + @java.lang.Override public int getOneof1423() { if (hugeOneofCase_ == 1423) { return (java.lang.Integer) hugeOneof_; @@ -188736,10 +204556,19 @@ public int getOneof1423() { } public static final int ONEOF_1424_FIELD_NUMBER = 1424; + /** + * int32 oneof_1424 = 1424; + * @return Whether the oneof1424 field is set. + */ + @java.lang.Override + public boolean hasOneof1424() { + return hugeOneofCase_ == 1424; + } /** * int32 oneof_1424 = 1424; * @return The oneof1424. */ + @java.lang.Override public int getOneof1424() { if (hugeOneofCase_ == 1424) { return (java.lang.Integer) hugeOneof_; @@ -188748,10 +204577,19 @@ public int getOneof1424() { } public static final int ONEOF_1425_FIELD_NUMBER = 1425; + /** + * int32 oneof_1425 = 1425; + * @return Whether the oneof1425 field is set. + */ + @java.lang.Override + public boolean hasOneof1425() { + return hugeOneofCase_ == 1425; + } /** * int32 oneof_1425 = 1425; * @return The oneof1425. */ + @java.lang.Override public int getOneof1425() { if (hugeOneofCase_ == 1425) { return (java.lang.Integer) hugeOneof_; @@ -188760,10 +204598,19 @@ public int getOneof1425() { } public static final int ONEOF_1426_FIELD_NUMBER = 1426; + /** + * int32 oneof_1426 = 1426; + * @return Whether the oneof1426 field is set. + */ + @java.lang.Override + public boolean hasOneof1426() { + return hugeOneofCase_ == 1426; + } /** * int32 oneof_1426 = 1426; * @return The oneof1426. */ + @java.lang.Override public int getOneof1426() { if (hugeOneofCase_ == 1426) { return (java.lang.Integer) hugeOneof_; @@ -188772,10 +204619,19 @@ public int getOneof1426() { } public static final int ONEOF_1427_FIELD_NUMBER = 1427; + /** + * int32 oneof_1427 = 1427; + * @return Whether the oneof1427 field is set. + */ + @java.lang.Override + public boolean hasOneof1427() { + return hugeOneofCase_ == 1427; + } /** * int32 oneof_1427 = 1427; * @return The oneof1427. */ + @java.lang.Override public int getOneof1427() { if (hugeOneofCase_ == 1427) { return (java.lang.Integer) hugeOneof_; @@ -188784,10 +204640,19 @@ public int getOneof1427() { } public static final int ONEOF_1428_FIELD_NUMBER = 1428; + /** + * int32 oneof_1428 = 1428; + * @return Whether the oneof1428 field is set. + */ + @java.lang.Override + public boolean hasOneof1428() { + return hugeOneofCase_ == 1428; + } /** * int32 oneof_1428 = 1428; * @return The oneof1428. */ + @java.lang.Override public int getOneof1428() { if (hugeOneofCase_ == 1428) { return (java.lang.Integer) hugeOneof_; @@ -188796,10 +204661,19 @@ public int getOneof1428() { } public static final int ONEOF_1429_FIELD_NUMBER = 1429; + /** + * int32 oneof_1429 = 1429; + * @return Whether the oneof1429 field is set. + */ + @java.lang.Override + public boolean hasOneof1429() { + return hugeOneofCase_ == 1429; + } /** * int32 oneof_1429 = 1429; * @return The oneof1429. */ + @java.lang.Override public int getOneof1429() { if (hugeOneofCase_ == 1429) { return (java.lang.Integer) hugeOneof_; @@ -188808,10 +204682,19 @@ public int getOneof1429() { } public static final int ONEOF_1430_FIELD_NUMBER = 1430; + /** + * int32 oneof_1430 = 1430; + * @return Whether the oneof1430 field is set. + */ + @java.lang.Override + public boolean hasOneof1430() { + return hugeOneofCase_ == 1430; + } /** * int32 oneof_1430 = 1430; * @return The oneof1430. */ + @java.lang.Override public int getOneof1430() { if (hugeOneofCase_ == 1430) { return (java.lang.Integer) hugeOneof_; @@ -188820,10 +204703,19 @@ public int getOneof1430() { } public static final int ONEOF_1431_FIELD_NUMBER = 1431; + /** + * int32 oneof_1431 = 1431; + * @return Whether the oneof1431 field is set. + */ + @java.lang.Override + public boolean hasOneof1431() { + return hugeOneofCase_ == 1431; + } /** * int32 oneof_1431 = 1431; * @return The oneof1431. */ + @java.lang.Override public int getOneof1431() { if (hugeOneofCase_ == 1431) { return (java.lang.Integer) hugeOneof_; @@ -188832,10 +204724,19 @@ public int getOneof1431() { } public static final int ONEOF_1432_FIELD_NUMBER = 1432; + /** + * int32 oneof_1432 = 1432; + * @return Whether the oneof1432 field is set. + */ + @java.lang.Override + public boolean hasOneof1432() { + return hugeOneofCase_ == 1432; + } /** * int32 oneof_1432 = 1432; * @return The oneof1432. */ + @java.lang.Override public int getOneof1432() { if (hugeOneofCase_ == 1432) { return (java.lang.Integer) hugeOneof_; @@ -188844,10 +204745,19 @@ public int getOneof1432() { } public static final int ONEOF_1433_FIELD_NUMBER = 1433; + /** + * int32 oneof_1433 = 1433; + * @return Whether the oneof1433 field is set. + */ + @java.lang.Override + public boolean hasOneof1433() { + return hugeOneofCase_ == 1433; + } /** * int32 oneof_1433 = 1433; * @return The oneof1433. */ + @java.lang.Override public int getOneof1433() { if (hugeOneofCase_ == 1433) { return (java.lang.Integer) hugeOneof_; @@ -188856,10 +204766,19 @@ public int getOneof1433() { } public static final int ONEOF_1434_FIELD_NUMBER = 1434; + /** + * int32 oneof_1434 = 1434; + * @return Whether the oneof1434 field is set. + */ + @java.lang.Override + public boolean hasOneof1434() { + return hugeOneofCase_ == 1434; + } /** * int32 oneof_1434 = 1434; * @return The oneof1434. */ + @java.lang.Override public int getOneof1434() { if (hugeOneofCase_ == 1434) { return (java.lang.Integer) hugeOneof_; @@ -188868,10 +204787,19 @@ public int getOneof1434() { } public static final int ONEOF_1435_FIELD_NUMBER = 1435; + /** + * int32 oneof_1435 = 1435; + * @return Whether the oneof1435 field is set. + */ + @java.lang.Override + public boolean hasOneof1435() { + return hugeOneofCase_ == 1435; + } /** * int32 oneof_1435 = 1435; * @return The oneof1435. */ + @java.lang.Override public int getOneof1435() { if (hugeOneofCase_ == 1435) { return (java.lang.Integer) hugeOneof_; @@ -188880,10 +204808,19 @@ public int getOneof1435() { } public static final int ONEOF_1436_FIELD_NUMBER = 1436; + /** + * int32 oneof_1436 = 1436; + * @return Whether the oneof1436 field is set. + */ + @java.lang.Override + public boolean hasOneof1436() { + return hugeOneofCase_ == 1436; + } /** * int32 oneof_1436 = 1436; * @return The oneof1436. */ + @java.lang.Override public int getOneof1436() { if (hugeOneofCase_ == 1436) { return (java.lang.Integer) hugeOneof_; @@ -188892,10 +204829,19 @@ public int getOneof1436() { } public static final int ONEOF_1437_FIELD_NUMBER = 1437; + /** + * int32 oneof_1437 = 1437; + * @return Whether the oneof1437 field is set. + */ + @java.lang.Override + public boolean hasOneof1437() { + return hugeOneofCase_ == 1437; + } /** * int32 oneof_1437 = 1437; * @return The oneof1437. */ + @java.lang.Override public int getOneof1437() { if (hugeOneofCase_ == 1437) { return (java.lang.Integer) hugeOneof_; @@ -188904,10 +204850,19 @@ public int getOneof1437() { } public static final int ONEOF_1438_FIELD_NUMBER = 1438; + /** + * int32 oneof_1438 = 1438; + * @return Whether the oneof1438 field is set. + */ + @java.lang.Override + public boolean hasOneof1438() { + return hugeOneofCase_ == 1438; + } /** * int32 oneof_1438 = 1438; * @return The oneof1438. */ + @java.lang.Override public int getOneof1438() { if (hugeOneofCase_ == 1438) { return (java.lang.Integer) hugeOneof_; @@ -188916,10 +204871,19 @@ public int getOneof1438() { } public static final int ONEOF_1439_FIELD_NUMBER = 1439; + /** + * int32 oneof_1439 = 1439; + * @return Whether the oneof1439 field is set. + */ + @java.lang.Override + public boolean hasOneof1439() { + return hugeOneofCase_ == 1439; + } /** * int32 oneof_1439 = 1439; * @return The oneof1439. */ + @java.lang.Override public int getOneof1439() { if (hugeOneofCase_ == 1439) { return (java.lang.Integer) hugeOneof_; @@ -188928,10 +204892,19 @@ public int getOneof1439() { } public static final int ONEOF_1440_FIELD_NUMBER = 1440; + /** + * int32 oneof_1440 = 1440; + * @return Whether the oneof1440 field is set. + */ + @java.lang.Override + public boolean hasOneof1440() { + return hugeOneofCase_ == 1440; + } /** * int32 oneof_1440 = 1440; * @return The oneof1440. */ + @java.lang.Override public int getOneof1440() { if (hugeOneofCase_ == 1440) { return (java.lang.Integer) hugeOneof_; @@ -188940,10 +204913,19 @@ public int getOneof1440() { } public static final int ONEOF_1441_FIELD_NUMBER = 1441; + /** + * int32 oneof_1441 = 1441; + * @return Whether the oneof1441 field is set. + */ + @java.lang.Override + public boolean hasOneof1441() { + return hugeOneofCase_ == 1441; + } /** * int32 oneof_1441 = 1441; * @return The oneof1441. */ + @java.lang.Override public int getOneof1441() { if (hugeOneofCase_ == 1441) { return (java.lang.Integer) hugeOneof_; @@ -188952,10 +204934,19 @@ public int getOneof1441() { } public static final int ONEOF_1442_FIELD_NUMBER = 1442; + /** + * int32 oneof_1442 = 1442; + * @return Whether the oneof1442 field is set. + */ + @java.lang.Override + public boolean hasOneof1442() { + return hugeOneofCase_ == 1442; + } /** * int32 oneof_1442 = 1442; * @return The oneof1442. */ + @java.lang.Override public int getOneof1442() { if (hugeOneofCase_ == 1442) { return (java.lang.Integer) hugeOneof_; @@ -188964,10 +204955,19 @@ public int getOneof1442() { } public static final int ONEOF_1443_FIELD_NUMBER = 1443; + /** + * int32 oneof_1443 = 1443; + * @return Whether the oneof1443 field is set. + */ + @java.lang.Override + public boolean hasOneof1443() { + return hugeOneofCase_ == 1443; + } /** * int32 oneof_1443 = 1443; * @return The oneof1443. */ + @java.lang.Override public int getOneof1443() { if (hugeOneofCase_ == 1443) { return (java.lang.Integer) hugeOneof_; @@ -188976,10 +204976,19 @@ public int getOneof1443() { } public static final int ONEOF_1444_FIELD_NUMBER = 1444; + /** + * int32 oneof_1444 = 1444; + * @return Whether the oneof1444 field is set. + */ + @java.lang.Override + public boolean hasOneof1444() { + return hugeOneofCase_ == 1444; + } /** * int32 oneof_1444 = 1444; * @return The oneof1444. */ + @java.lang.Override public int getOneof1444() { if (hugeOneofCase_ == 1444) { return (java.lang.Integer) hugeOneof_; @@ -188988,10 +204997,19 @@ public int getOneof1444() { } public static final int ONEOF_1445_FIELD_NUMBER = 1445; + /** + * int32 oneof_1445 = 1445; + * @return Whether the oneof1445 field is set. + */ + @java.lang.Override + public boolean hasOneof1445() { + return hugeOneofCase_ == 1445; + } /** * int32 oneof_1445 = 1445; * @return The oneof1445. */ + @java.lang.Override public int getOneof1445() { if (hugeOneofCase_ == 1445) { return (java.lang.Integer) hugeOneof_; @@ -189000,10 +205018,19 @@ public int getOneof1445() { } public static final int ONEOF_1446_FIELD_NUMBER = 1446; + /** + * int32 oneof_1446 = 1446; + * @return Whether the oneof1446 field is set. + */ + @java.lang.Override + public boolean hasOneof1446() { + return hugeOneofCase_ == 1446; + } /** * int32 oneof_1446 = 1446; * @return The oneof1446. */ + @java.lang.Override public int getOneof1446() { if (hugeOneofCase_ == 1446) { return (java.lang.Integer) hugeOneof_; @@ -189012,10 +205039,19 @@ public int getOneof1446() { } public static final int ONEOF_1447_FIELD_NUMBER = 1447; + /** + * int32 oneof_1447 = 1447; + * @return Whether the oneof1447 field is set. + */ + @java.lang.Override + public boolean hasOneof1447() { + return hugeOneofCase_ == 1447; + } /** * int32 oneof_1447 = 1447; * @return The oneof1447. */ + @java.lang.Override public int getOneof1447() { if (hugeOneofCase_ == 1447) { return (java.lang.Integer) hugeOneof_; @@ -189024,10 +205060,19 @@ public int getOneof1447() { } public static final int ONEOF_1448_FIELD_NUMBER = 1448; + /** + * int32 oneof_1448 = 1448; + * @return Whether the oneof1448 field is set. + */ + @java.lang.Override + public boolean hasOneof1448() { + return hugeOneofCase_ == 1448; + } /** * int32 oneof_1448 = 1448; * @return The oneof1448. */ + @java.lang.Override public int getOneof1448() { if (hugeOneofCase_ == 1448) { return (java.lang.Integer) hugeOneof_; @@ -189036,10 +205081,19 @@ public int getOneof1448() { } public static final int ONEOF_1449_FIELD_NUMBER = 1449; + /** + * int32 oneof_1449 = 1449; + * @return Whether the oneof1449 field is set. + */ + @java.lang.Override + public boolean hasOneof1449() { + return hugeOneofCase_ == 1449; + } /** * int32 oneof_1449 = 1449; * @return The oneof1449. */ + @java.lang.Override public int getOneof1449() { if (hugeOneofCase_ == 1449) { return (java.lang.Integer) hugeOneof_; @@ -189048,10 +205102,19 @@ public int getOneof1449() { } public static final int ONEOF_1450_FIELD_NUMBER = 1450; + /** + * int32 oneof_1450 = 1450; + * @return Whether the oneof1450 field is set. + */ + @java.lang.Override + public boolean hasOneof1450() { + return hugeOneofCase_ == 1450; + } /** * int32 oneof_1450 = 1450; * @return The oneof1450. */ + @java.lang.Override public int getOneof1450() { if (hugeOneofCase_ == 1450) { return (java.lang.Integer) hugeOneof_; @@ -189060,10 +205123,19 @@ public int getOneof1450() { } public static final int ONEOF_1451_FIELD_NUMBER = 1451; + /** + * int32 oneof_1451 = 1451; + * @return Whether the oneof1451 field is set. + */ + @java.lang.Override + public boolean hasOneof1451() { + return hugeOneofCase_ == 1451; + } /** * int32 oneof_1451 = 1451; * @return The oneof1451. */ + @java.lang.Override public int getOneof1451() { if (hugeOneofCase_ == 1451) { return (java.lang.Integer) hugeOneof_; @@ -189072,10 +205144,19 @@ public int getOneof1451() { } public static final int ONEOF_1452_FIELD_NUMBER = 1452; + /** + * int32 oneof_1452 = 1452; + * @return Whether the oneof1452 field is set. + */ + @java.lang.Override + public boolean hasOneof1452() { + return hugeOneofCase_ == 1452; + } /** * int32 oneof_1452 = 1452; * @return The oneof1452. */ + @java.lang.Override public int getOneof1452() { if (hugeOneofCase_ == 1452) { return (java.lang.Integer) hugeOneof_; @@ -189084,10 +205165,19 @@ public int getOneof1452() { } public static final int ONEOF_1453_FIELD_NUMBER = 1453; + /** + * int32 oneof_1453 = 1453; + * @return Whether the oneof1453 field is set. + */ + @java.lang.Override + public boolean hasOneof1453() { + return hugeOneofCase_ == 1453; + } /** * int32 oneof_1453 = 1453; * @return The oneof1453. */ + @java.lang.Override public int getOneof1453() { if (hugeOneofCase_ == 1453) { return (java.lang.Integer) hugeOneof_; @@ -189096,10 +205186,19 @@ public int getOneof1453() { } public static final int ONEOF_1454_FIELD_NUMBER = 1454; + /** + * int32 oneof_1454 = 1454; + * @return Whether the oneof1454 field is set. + */ + @java.lang.Override + public boolean hasOneof1454() { + return hugeOneofCase_ == 1454; + } /** * int32 oneof_1454 = 1454; * @return The oneof1454. */ + @java.lang.Override public int getOneof1454() { if (hugeOneofCase_ == 1454) { return (java.lang.Integer) hugeOneof_; @@ -189108,10 +205207,19 @@ public int getOneof1454() { } public static final int ONEOF_1455_FIELD_NUMBER = 1455; + /** + * int32 oneof_1455 = 1455; + * @return Whether the oneof1455 field is set. + */ + @java.lang.Override + public boolean hasOneof1455() { + return hugeOneofCase_ == 1455; + } /** * int32 oneof_1455 = 1455; * @return The oneof1455. */ + @java.lang.Override public int getOneof1455() { if (hugeOneofCase_ == 1455) { return (java.lang.Integer) hugeOneof_; @@ -189120,10 +205228,19 @@ public int getOneof1455() { } public static final int ONEOF_1456_FIELD_NUMBER = 1456; + /** + * int32 oneof_1456 = 1456; + * @return Whether the oneof1456 field is set. + */ + @java.lang.Override + public boolean hasOneof1456() { + return hugeOneofCase_ == 1456; + } /** * int32 oneof_1456 = 1456; * @return The oneof1456. */ + @java.lang.Override public int getOneof1456() { if (hugeOneofCase_ == 1456) { return (java.lang.Integer) hugeOneof_; @@ -189132,10 +205249,19 @@ public int getOneof1456() { } public static final int ONEOF_1457_FIELD_NUMBER = 1457; + /** + * int32 oneof_1457 = 1457; + * @return Whether the oneof1457 field is set. + */ + @java.lang.Override + public boolean hasOneof1457() { + return hugeOneofCase_ == 1457; + } /** * int32 oneof_1457 = 1457; * @return The oneof1457. */ + @java.lang.Override public int getOneof1457() { if (hugeOneofCase_ == 1457) { return (java.lang.Integer) hugeOneof_; @@ -189144,10 +205270,19 @@ public int getOneof1457() { } public static final int ONEOF_1458_FIELD_NUMBER = 1458; + /** + * int32 oneof_1458 = 1458; + * @return Whether the oneof1458 field is set. + */ + @java.lang.Override + public boolean hasOneof1458() { + return hugeOneofCase_ == 1458; + } /** * int32 oneof_1458 = 1458; * @return The oneof1458. */ + @java.lang.Override public int getOneof1458() { if (hugeOneofCase_ == 1458) { return (java.lang.Integer) hugeOneof_; @@ -189156,10 +205291,19 @@ public int getOneof1458() { } public static final int ONEOF_1459_FIELD_NUMBER = 1459; + /** + * int32 oneof_1459 = 1459; + * @return Whether the oneof1459 field is set. + */ + @java.lang.Override + public boolean hasOneof1459() { + return hugeOneofCase_ == 1459; + } /** * int32 oneof_1459 = 1459; * @return The oneof1459. */ + @java.lang.Override public int getOneof1459() { if (hugeOneofCase_ == 1459) { return (java.lang.Integer) hugeOneof_; @@ -189168,10 +205312,19 @@ public int getOneof1459() { } public static final int ONEOF_1460_FIELD_NUMBER = 1460; + /** + * int32 oneof_1460 = 1460; + * @return Whether the oneof1460 field is set. + */ + @java.lang.Override + public boolean hasOneof1460() { + return hugeOneofCase_ == 1460; + } /** * int32 oneof_1460 = 1460; * @return The oneof1460. */ + @java.lang.Override public int getOneof1460() { if (hugeOneofCase_ == 1460) { return (java.lang.Integer) hugeOneof_; @@ -189180,10 +205333,19 @@ public int getOneof1460() { } public static final int ONEOF_1461_FIELD_NUMBER = 1461; + /** + * int32 oneof_1461 = 1461; + * @return Whether the oneof1461 field is set. + */ + @java.lang.Override + public boolean hasOneof1461() { + return hugeOneofCase_ == 1461; + } /** * int32 oneof_1461 = 1461; * @return The oneof1461. */ + @java.lang.Override public int getOneof1461() { if (hugeOneofCase_ == 1461) { return (java.lang.Integer) hugeOneof_; @@ -189192,10 +205354,19 @@ public int getOneof1461() { } public static final int ONEOF_1462_FIELD_NUMBER = 1462; + /** + * int32 oneof_1462 = 1462; + * @return Whether the oneof1462 field is set. + */ + @java.lang.Override + public boolean hasOneof1462() { + return hugeOneofCase_ == 1462; + } /** * int32 oneof_1462 = 1462; * @return The oneof1462. */ + @java.lang.Override public int getOneof1462() { if (hugeOneofCase_ == 1462) { return (java.lang.Integer) hugeOneof_; @@ -189204,10 +205375,19 @@ public int getOneof1462() { } public static final int ONEOF_1463_FIELD_NUMBER = 1463; + /** + * int32 oneof_1463 = 1463; + * @return Whether the oneof1463 field is set. + */ + @java.lang.Override + public boolean hasOneof1463() { + return hugeOneofCase_ == 1463; + } /** * int32 oneof_1463 = 1463; * @return The oneof1463. */ + @java.lang.Override public int getOneof1463() { if (hugeOneofCase_ == 1463) { return (java.lang.Integer) hugeOneof_; @@ -189216,10 +205396,19 @@ public int getOneof1463() { } public static final int ONEOF_1464_FIELD_NUMBER = 1464; + /** + * int32 oneof_1464 = 1464; + * @return Whether the oneof1464 field is set. + */ + @java.lang.Override + public boolean hasOneof1464() { + return hugeOneofCase_ == 1464; + } /** * int32 oneof_1464 = 1464; * @return The oneof1464. */ + @java.lang.Override public int getOneof1464() { if (hugeOneofCase_ == 1464) { return (java.lang.Integer) hugeOneof_; @@ -189228,10 +205417,19 @@ public int getOneof1464() { } public static final int ONEOF_1465_FIELD_NUMBER = 1465; + /** + * int32 oneof_1465 = 1465; + * @return Whether the oneof1465 field is set. + */ + @java.lang.Override + public boolean hasOneof1465() { + return hugeOneofCase_ == 1465; + } /** * int32 oneof_1465 = 1465; * @return The oneof1465. */ + @java.lang.Override public int getOneof1465() { if (hugeOneofCase_ == 1465) { return (java.lang.Integer) hugeOneof_; @@ -189240,10 +205438,19 @@ public int getOneof1465() { } public static final int ONEOF_1466_FIELD_NUMBER = 1466; + /** + * int32 oneof_1466 = 1466; + * @return Whether the oneof1466 field is set. + */ + @java.lang.Override + public boolean hasOneof1466() { + return hugeOneofCase_ == 1466; + } /** * int32 oneof_1466 = 1466; * @return The oneof1466. */ + @java.lang.Override public int getOneof1466() { if (hugeOneofCase_ == 1466) { return (java.lang.Integer) hugeOneof_; @@ -189252,10 +205459,19 @@ public int getOneof1466() { } public static final int ONEOF_1467_FIELD_NUMBER = 1467; + /** + * int32 oneof_1467 = 1467; + * @return Whether the oneof1467 field is set. + */ + @java.lang.Override + public boolean hasOneof1467() { + return hugeOneofCase_ == 1467; + } /** * int32 oneof_1467 = 1467; * @return The oneof1467. */ + @java.lang.Override public int getOneof1467() { if (hugeOneofCase_ == 1467) { return (java.lang.Integer) hugeOneof_; @@ -189264,10 +205480,19 @@ public int getOneof1467() { } public static final int ONEOF_1468_FIELD_NUMBER = 1468; + /** + * int32 oneof_1468 = 1468; + * @return Whether the oneof1468 field is set. + */ + @java.lang.Override + public boolean hasOneof1468() { + return hugeOneofCase_ == 1468; + } /** * int32 oneof_1468 = 1468; * @return The oneof1468. */ + @java.lang.Override public int getOneof1468() { if (hugeOneofCase_ == 1468) { return (java.lang.Integer) hugeOneof_; @@ -189276,10 +205501,19 @@ public int getOneof1468() { } public static final int ONEOF_1469_FIELD_NUMBER = 1469; + /** + * int32 oneof_1469 = 1469; + * @return Whether the oneof1469 field is set. + */ + @java.lang.Override + public boolean hasOneof1469() { + return hugeOneofCase_ == 1469; + } /** * int32 oneof_1469 = 1469; * @return The oneof1469. */ + @java.lang.Override public int getOneof1469() { if (hugeOneofCase_ == 1469) { return (java.lang.Integer) hugeOneof_; @@ -189288,10 +205522,19 @@ public int getOneof1469() { } public static final int ONEOF_1470_FIELD_NUMBER = 1470; + /** + * int32 oneof_1470 = 1470; + * @return Whether the oneof1470 field is set. + */ + @java.lang.Override + public boolean hasOneof1470() { + return hugeOneofCase_ == 1470; + } /** * int32 oneof_1470 = 1470; * @return The oneof1470. */ + @java.lang.Override public int getOneof1470() { if (hugeOneofCase_ == 1470) { return (java.lang.Integer) hugeOneof_; @@ -189300,10 +205543,19 @@ public int getOneof1470() { } public static final int ONEOF_1471_FIELD_NUMBER = 1471; + /** + * int32 oneof_1471 = 1471; + * @return Whether the oneof1471 field is set. + */ + @java.lang.Override + public boolean hasOneof1471() { + return hugeOneofCase_ == 1471; + } /** * int32 oneof_1471 = 1471; * @return The oneof1471. */ + @java.lang.Override public int getOneof1471() { if (hugeOneofCase_ == 1471) { return (java.lang.Integer) hugeOneof_; @@ -189312,10 +205564,19 @@ public int getOneof1471() { } public static final int ONEOF_1472_FIELD_NUMBER = 1472; + /** + * int32 oneof_1472 = 1472; + * @return Whether the oneof1472 field is set. + */ + @java.lang.Override + public boolean hasOneof1472() { + return hugeOneofCase_ == 1472; + } /** * int32 oneof_1472 = 1472; * @return The oneof1472. */ + @java.lang.Override public int getOneof1472() { if (hugeOneofCase_ == 1472) { return (java.lang.Integer) hugeOneof_; @@ -189324,10 +205585,19 @@ public int getOneof1472() { } public static final int ONEOF_1473_FIELD_NUMBER = 1473; + /** + * int32 oneof_1473 = 1473; + * @return Whether the oneof1473 field is set. + */ + @java.lang.Override + public boolean hasOneof1473() { + return hugeOneofCase_ == 1473; + } /** * int32 oneof_1473 = 1473; * @return The oneof1473. */ + @java.lang.Override public int getOneof1473() { if (hugeOneofCase_ == 1473) { return (java.lang.Integer) hugeOneof_; @@ -189336,10 +205606,19 @@ public int getOneof1473() { } public static final int ONEOF_1474_FIELD_NUMBER = 1474; + /** + * int32 oneof_1474 = 1474; + * @return Whether the oneof1474 field is set. + */ + @java.lang.Override + public boolean hasOneof1474() { + return hugeOneofCase_ == 1474; + } /** * int32 oneof_1474 = 1474; * @return The oneof1474. */ + @java.lang.Override public int getOneof1474() { if (hugeOneofCase_ == 1474) { return (java.lang.Integer) hugeOneof_; @@ -189348,10 +205627,19 @@ public int getOneof1474() { } public static final int ONEOF_1475_FIELD_NUMBER = 1475; + /** + * int32 oneof_1475 = 1475; + * @return Whether the oneof1475 field is set. + */ + @java.lang.Override + public boolean hasOneof1475() { + return hugeOneofCase_ == 1475; + } /** * int32 oneof_1475 = 1475; * @return The oneof1475. */ + @java.lang.Override public int getOneof1475() { if (hugeOneofCase_ == 1475) { return (java.lang.Integer) hugeOneof_; @@ -189360,10 +205648,19 @@ public int getOneof1475() { } public static final int ONEOF_1476_FIELD_NUMBER = 1476; + /** + * int32 oneof_1476 = 1476; + * @return Whether the oneof1476 field is set. + */ + @java.lang.Override + public boolean hasOneof1476() { + return hugeOneofCase_ == 1476; + } /** * int32 oneof_1476 = 1476; * @return The oneof1476. */ + @java.lang.Override public int getOneof1476() { if (hugeOneofCase_ == 1476) { return (java.lang.Integer) hugeOneof_; @@ -189372,10 +205669,19 @@ public int getOneof1476() { } public static final int ONEOF_1477_FIELD_NUMBER = 1477; + /** + * int32 oneof_1477 = 1477; + * @return Whether the oneof1477 field is set. + */ + @java.lang.Override + public boolean hasOneof1477() { + return hugeOneofCase_ == 1477; + } /** * int32 oneof_1477 = 1477; * @return The oneof1477. */ + @java.lang.Override public int getOneof1477() { if (hugeOneofCase_ == 1477) { return (java.lang.Integer) hugeOneof_; @@ -189384,10 +205690,19 @@ public int getOneof1477() { } public static final int ONEOF_1478_FIELD_NUMBER = 1478; + /** + * int32 oneof_1478 = 1478; + * @return Whether the oneof1478 field is set. + */ + @java.lang.Override + public boolean hasOneof1478() { + return hugeOneofCase_ == 1478; + } /** * int32 oneof_1478 = 1478; * @return The oneof1478. */ + @java.lang.Override public int getOneof1478() { if (hugeOneofCase_ == 1478) { return (java.lang.Integer) hugeOneof_; @@ -189396,10 +205711,19 @@ public int getOneof1478() { } public static final int ONEOF_1479_FIELD_NUMBER = 1479; + /** + * int32 oneof_1479 = 1479; + * @return Whether the oneof1479 field is set. + */ + @java.lang.Override + public boolean hasOneof1479() { + return hugeOneofCase_ == 1479; + } /** * int32 oneof_1479 = 1479; * @return The oneof1479. */ + @java.lang.Override public int getOneof1479() { if (hugeOneofCase_ == 1479) { return (java.lang.Integer) hugeOneof_; @@ -189408,10 +205732,19 @@ public int getOneof1479() { } public static final int ONEOF_1480_FIELD_NUMBER = 1480; + /** + * int32 oneof_1480 = 1480; + * @return Whether the oneof1480 field is set. + */ + @java.lang.Override + public boolean hasOneof1480() { + return hugeOneofCase_ == 1480; + } /** * int32 oneof_1480 = 1480; * @return The oneof1480. */ + @java.lang.Override public int getOneof1480() { if (hugeOneofCase_ == 1480) { return (java.lang.Integer) hugeOneof_; @@ -189420,10 +205753,19 @@ public int getOneof1480() { } public static final int ONEOF_1481_FIELD_NUMBER = 1481; + /** + * int32 oneof_1481 = 1481; + * @return Whether the oneof1481 field is set. + */ + @java.lang.Override + public boolean hasOneof1481() { + return hugeOneofCase_ == 1481; + } /** * int32 oneof_1481 = 1481; * @return The oneof1481. */ + @java.lang.Override public int getOneof1481() { if (hugeOneofCase_ == 1481) { return (java.lang.Integer) hugeOneof_; @@ -189432,10 +205774,19 @@ public int getOneof1481() { } public static final int ONEOF_1482_FIELD_NUMBER = 1482; + /** + * int32 oneof_1482 = 1482; + * @return Whether the oneof1482 field is set. + */ + @java.lang.Override + public boolean hasOneof1482() { + return hugeOneofCase_ == 1482; + } /** * int32 oneof_1482 = 1482; * @return The oneof1482. */ + @java.lang.Override public int getOneof1482() { if (hugeOneofCase_ == 1482) { return (java.lang.Integer) hugeOneof_; @@ -189444,10 +205795,19 @@ public int getOneof1482() { } public static final int ONEOF_1483_FIELD_NUMBER = 1483; + /** + * int32 oneof_1483 = 1483; + * @return Whether the oneof1483 field is set. + */ + @java.lang.Override + public boolean hasOneof1483() { + return hugeOneofCase_ == 1483; + } /** * int32 oneof_1483 = 1483; * @return The oneof1483. */ + @java.lang.Override public int getOneof1483() { if (hugeOneofCase_ == 1483) { return (java.lang.Integer) hugeOneof_; @@ -189456,10 +205816,19 @@ public int getOneof1483() { } public static final int ONEOF_1484_FIELD_NUMBER = 1484; + /** + * int32 oneof_1484 = 1484; + * @return Whether the oneof1484 field is set. + */ + @java.lang.Override + public boolean hasOneof1484() { + return hugeOneofCase_ == 1484; + } /** * int32 oneof_1484 = 1484; * @return The oneof1484. */ + @java.lang.Override public int getOneof1484() { if (hugeOneofCase_ == 1484) { return (java.lang.Integer) hugeOneof_; @@ -189468,10 +205837,19 @@ public int getOneof1484() { } public static final int ONEOF_1485_FIELD_NUMBER = 1485; + /** + * int32 oneof_1485 = 1485; + * @return Whether the oneof1485 field is set. + */ + @java.lang.Override + public boolean hasOneof1485() { + return hugeOneofCase_ == 1485; + } /** * int32 oneof_1485 = 1485; * @return The oneof1485. */ + @java.lang.Override public int getOneof1485() { if (hugeOneofCase_ == 1485) { return (java.lang.Integer) hugeOneof_; @@ -189480,10 +205858,19 @@ public int getOneof1485() { } public static final int ONEOF_1486_FIELD_NUMBER = 1486; + /** + * int32 oneof_1486 = 1486; + * @return Whether the oneof1486 field is set. + */ + @java.lang.Override + public boolean hasOneof1486() { + return hugeOneofCase_ == 1486; + } /** * int32 oneof_1486 = 1486; * @return The oneof1486. */ + @java.lang.Override public int getOneof1486() { if (hugeOneofCase_ == 1486) { return (java.lang.Integer) hugeOneof_; @@ -189492,10 +205879,19 @@ public int getOneof1486() { } public static final int ONEOF_1487_FIELD_NUMBER = 1487; + /** + * int32 oneof_1487 = 1487; + * @return Whether the oneof1487 field is set. + */ + @java.lang.Override + public boolean hasOneof1487() { + return hugeOneofCase_ == 1487; + } /** * int32 oneof_1487 = 1487; * @return The oneof1487. */ + @java.lang.Override public int getOneof1487() { if (hugeOneofCase_ == 1487) { return (java.lang.Integer) hugeOneof_; @@ -189504,10 +205900,19 @@ public int getOneof1487() { } public static final int ONEOF_1488_FIELD_NUMBER = 1488; + /** + * int32 oneof_1488 = 1488; + * @return Whether the oneof1488 field is set. + */ + @java.lang.Override + public boolean hasOneof1488() { + return hugeOneofCase_ == 1488; + } /** * int32 oneof_1488 = 1488; * @return The oneof1488. */ + @java.lang.Override public int getOneof1488() { if (hugeOneofCase_ == 1488) { return (java.lang.Integer) hugeOneof_; @@ -189516,10 +205921,19 @@ public int getOneof1488() { } public static final int ONEOF_1489_FIELD_NUMBER = 1489; + /** + * int32 oneof_1489 = 1489; + * @return Whether the oneof1489 field is set. + */ + @java.lang.Override + public boolean hasOneof1489() { + return hugeOneofCase_ == 1489; + } /** * int32 oneof_1489 = 1489; * @return The oneof1489. */ + @java.lang.Override public int getOneof1489() { if (hugeOneofCase_ == 1489) { return (java.lang.Integer) hugeOneof_; @@ -189528,10 +205942,19 @@ public int getOneof1489() { } public static final int ONEOF_1490_FIELD_NUMBER = 1490; + /** + * int32 oneof_1490 = 1490; + * @return Whether the oneof1490 field is set. + */ + @java.lang.Override + public boolean hasOneof1490() { + return hugeOneofCase_ == 1490; + } /** * int32 oneof_1490 = 1490; * @return The oneof1490. */ + @java.lang.Override public int getOneof1490() { if (hugeOneofCase_ == 1490) { return (java.lang.Integer) hugeOneof_; @@ -189540,10 +205963,19 @@ public int getOneof1490() { } public static final int ONEOF_1491_FIELD_NUMBER = 1491; + /** + * int32 oneof_1491 = 1491; + * @return Whether the oneof1491 field is set. + */ + @java.lang.Override + public boolean hasOneof1491() { + return hugeOneofCase_ == 1491; + } /** * int32 oneof_1491 = 1491; * @return The oneof1491. */ + @java.lang.Override public int getOneof1491() { if (hugeOneofCase_ == 1491) { return (java.lang.Integer) hugeOneof_; @@ -189552,10 +205984,19 @@ public int getOneof1491() { } public static final int ONEOF_1492_FIELD_NUMBER = 1492; + /** + * int32 oneof_1492 = 1492; + * @return Whether the oneof1492 field is set. + */ + @java.lang.Override + public boolean hasOneof1492() { + return hugeOneofCase_ == 1492; + } /** * int32 oneof_1492 = 1492; * @return The oneof1492. */ + @java.lang.Override public int getOneof1492() { if (hugeOneofCase_ == 1492) { return (java.lang.Integer) hugeOneof_; @@ -189564,10 +206005,19 @@ public int getOneof1492() { } public static final int ONEOF_1493_FIELD_NUMBER = 1493; + /** + * int32 oneof_1493 = 1493; + * @return Whether the oneof1493 field is set. + */ + @java.lang.Override + public boolean hasOneof1493() { + return hugeOneofCase_ == 1493; + } /** * int32 oneof_1493 = 1493; * @return The oneof1493. */ + @java.lang.Override public int getOneof1493() { if (hugeOneofCase_ == 1493) { return (java.lang.Integer) hugeOneof_; @@ -189576,10 +206026,19 @@ public int getOneof1493() { } public static final int ONEOF_1494_FIELD_NUMBER = 1494; + /** + * int32 oneof_1494 = 1494; + * @return Whether the oneof1494 field is set. + */ + @java.lang.Override + public boolean hasOneof1494() { + return hugeOneofCase_ == 1494; + } /** * int32 oneof_1494 = 1494; * @return The oneof1494. */ + @java.lang.Override public int getOneof1494() { if (hugeOneofCase_ == 1494) { return (java.lang.Integer) hugeOneof_; @@ -189588,10 +206047,19 @@ public int getOneof1494() { } public static final int ONEOF_1495_FIELD_NUMBER = 1495; + /** + * int32 oneof_1495 = 1495; + * @return Whether the oneof1495 field is set. + */ + @java.lang.Override + public boolean hasOneof1495() { + return hugeOneofCase_ == 1495; + } /** * int32 oneof_1495 = 1495; * @return The oneof1495. */ + @java.lang.Override public int getOneof1495() { if (hugeOneofCase_ == 1495) { return (java.lang.Integer) hugeOneof_; @@ -189600,10 +206068,19 @@ public int getOneof1495() { } public static final int ONEOF_1496_FIELD_NUMBER = 1496; + /** + * int32 oneof_1496 = 1496; + * @return Whether the oneof1496 field is set. + */ + @java.lang.Override + public boolean hasOneof1496() { + return hugeOneofCase_ == 1496; + } /** * int32 oneof_1496 = 1496; * @return The oneof1496. */ + @java.lang.Override public int getOneof1496() { if (hugeOneofCase_ == 1496) { return (java.lang.Integer) hugeOneof_; @@ -189612,10 +206089,19 @@ public int getOneof1496() { } public static final int ONEOF_1497_FIELD_NUMBER = 1497; + /** + * int32 oneof_1497 = 1497; + * @return Whether the oneof1497 field is set. + */ + @java.lang.Override + public boolean hasOneof1497() { + return hugeOneofCase_ == 1497; + } /** * int32 oneof_1497 = 1497; * @return The oneof1497. */ + @java.lang.Override public int getOneof1497() { if (hugeOneofCase_ == 1497) { return (java.lang.Integer) hugeOneof_; @@ -189624,10 +206110,19 @@ public int getOneof1497() { } public static final int ONEOF_1498_FIELD_NUMBER = 1498; + /** + * int32 oneof_1498 = 1498; + * @return Whether the oneof1498 field is set. + */ + @java.lang.Override + public boolean hasOneof1498() { + return hugeOneofCase_ == 1498; + } /** * int32 oneof_1498 = 1498; * @return The oneof1498. */ + @java.lang.Override public int getOneof1498() { if (hugeOneofCase_ == 1498) { return (java.lang.Integer) hugeOneof_; @@ -189636,10 +206131,19 @@ public int getOneof1498() { } public static final int ONEOF_1499_FIELD_NUMBER = 1499; + /** + * int32 oneof_1499 = 1499; + * @return Whether the oneof1499 field is set. + */ + @java.lang.Override + public boolean hasOneof1499() { + return hugeOneofCase_ == 1499; + } /** * int32 oneof_1499 = 1499; * @return The oneof1499. */ + @java.lang.Override public int getOneof1499() { if (hugeOneofCase_ == 1499) { return (java.lang.Integer) hugeOneof_; @@ -189648,22 +206152,40 @@ public int getOneof1499() { } public static final int ONEOF_1500_FIELD_NUMBER = 1500; + /** + * int32 oneof_1500 = 1500; + * @return Whether the oneof1500 field is set. + */ + @java.lang.Override + public boolean hasOneof1500() { + return hugeOneofCase_ == 1500; + } /** * int32 oneof_1500 = 1500; * @return The oneof1500. */ + @java.lang.Override public int getOneof1500() { if (hugeOneofCase_ == 1500) { return (java.lang.Integer) hugeOneof_; } return 0; } - - public static final int ONEOF_1501_FIELD_NUMBER = 1501; + + public static final int ONEOF_1501_FIELD_NUMBER = 1501; + /** + * int32 oneof_1501 = 1501; + * @return Whether the oneof1501 field is set. + */ + @java.lang.Override + public boolean hasOneof1501() { + return hugeOneofCase_ == 1501; + } /** * int32 oneof_1501 = 1501; * @return The oneof1501. */ + @java.lang.Override public int getOneof1501() { if (hugeOneofCase_ == 1501) { return (java.lang.Integer) hugeOneof_; @@ -189672,10 +206194,19 @@ public int getOneof1501() { } public static final int ONEOF_1502_FIELD_NUMBER = 1502; + /** + * int32 oneof_1502 = 1502; + * @return Whether the oneof1502 field is set. + */ + @java.lang.Override + public boolean hasOneof1502() { + return hugeOneofCase_ == 1502; + } /** * int32 oneof_1502 = 1502; * @return The oneof1502. */ + @java.lang.Override public int getOneof1502() { if (hugeOneofCase_ == 1502) { return (java.lang.Integer) hugeOneof_; @@ -189684,10 +206215,19 @@ public int getOneof1502() { } public static final int ONEOF_1503_FIELD_NUMBER = 1503; + /** + * int32 oneof_1503 = 1503; + * @return Whether the oneof1503 field is set. + */ + @java.lang.Override + public boolean hasOneof1503() { + return hugeOneofCase_ == 1503; + } /** * int32 oneof_1503 = 1503; * @return The oneof1503. */ + @java.lang.Override public int getOneof1503() { if (hugeOneofCase_ == 1503) { return (java.lang.Integer) hugeOneof_; @@ -189696,10 +206236,19 @@ public int getOneof1503() { } public static final int ONEOF_1504_FIELD_NUMBER = 1504; + /** + * int32 oneof_1504 = 1504; + * @return Whether the oneof1504 field is set. + */ + @java.lang.Override + public boolean hasOneof1504() { + return hugeOneofCase_ == 1504; + } /** * int32 oneof_1504 = 1504; * @return The oneof1504. */ + @java.lang.Override public int getOneof1504() { if (hugeOneofCase_ == 1504) { return (java.lang.Integer) hugeOneof_; @@ -189708,10 +206257,19 @@ public int getOneof1504() { } public static final int ONEOF_1505_FIELD_NUMBER = 1505; + /** + * int32 oneof_1505 = 1505; + * @return Whether the oneof1505 field is set. + */ + @java.lang.Override + public boolean hasOneof1505() { + return hugeOneofCase_ == 1505; + } /** * int32 oneof_1505 = 1505; * @return The oneof1505. */ + @java.lang.Override public int getOneof1505() { if (hugeOneofCase_ == 1505) { return (java.lang.Integer) hugeOneof_; @@ -189720,10 +206278,19 @@ public int getOneof1505() { } public static final int ONEOF_1506_FIELD_NUMBER = 1506; + /** + * int32 oneof_1506 = 1506; + * @return Whether the oneof1506 field is set. + */ + @java.lang.Override + public boolean hasOneof1506() { + return hugeOneofCase_ == 1506; + } /** * int32 oneof_1506 = 1506; * @return The oneof1506. */ + @java.lang.Override public int getOneof1506() { if (hugeOneofCase_ == 1506) { return (java.lang.Integer) hugeOneof_; @@ -189732,10 +206299,19 @@ public int getOneof1506() { } public static final int ONEOF_1507_FIELD_NUMBER = 1507; + /** + * int32 oneof_1507 = 1507; + * @return Whether the oneof1507 field is set. + */ + @java.lang.Override + public boolean hasOneof1507() { + return hugeOneofCase_ == 1507; + } /** * int32 oneof_1507 = 1507; * @return The oneof1507. */ + @java.lang.Override public int getOneof1507() { if (hugeOneofCase_ == 1507) { return (java.lang.Integer) hugeOneof_; @@ -189744,10 +206320,19 @@ public int getOneof1507() { } public static final int ONEOF_1508_FIELD_NUMBER = 1508; + /** + * int32 oneof_1508 = 1508; + * @return Whether the oneof1508 field is set. + */ + @java.lang.Override + public boolean hasOneof1508() { + return hugeOneofCase_ == 1508; + } /** * int32 oneof_1508 = 1508; * @return The oneof1508. */ + @java.lang.Override public int getOneof1508() { if (hugeOneofCase_ == 1508) { return (java.lang.Integer) hugeOneof_; @@ -189756,10 +206341,19 @@ public int getOneof1508() { } public static final int ONEOF_1509_FIELD_NUMBER = 1509; + /** + * int32 oneof_1509 = 1509; + * @return Whether the oneof1509 field is set. + */ + @java.lang.Override + public boolean hasOneof1509() { + return hugeOneofCase_ == 1509; + } /** * int32 oneof_1509 = 1509; * @return The oneof1509. */ + @java.lang.Override public int getOneof1509() { if (hugeOneofCase_ == 1509) { return (java.lang.Integer) hugeOneof_; @@ -189768,10 +206362,19 @@ public int getOneof1509() { } public static final int ONEOF_1510_FIELD_NUMBER = 1510; + /** + * int32 oneof_1510 = 1510; + * @return Whether the oneof1510 field is set. + */ + @java.lang.Override + public boolean hasOneof1510() { + return hugeOneofCase_ == 1510; + } /** * int32 oneof_1510 = 1510; * @return The oneof1510. */ + @java.lang.Override public int getOneof1510() { if (hugeOneofCase_ == 1510) { return (java.lang.Integer) hugeOneof_; @@ -189780,10 +206383,19 @@ public int getOneof1510() { } public static final int ONEOF_1511_FIELD_NUMBER = 1511; + /** + * int32 oneof_1511 = 1511; + * @return Whether the oneof1511 field is set. + */ + @java.lang.Override + public boolean hasOneof1511() { + return hugeOneofCase_ == 1511; + } /** * int32 oneof_1511 = 1511; * @return The oneof1511. */ + @java.lang.Override public int getOneof1511() { if (hugeOneofCase_ == 1511) { return (java.lang.Integer) hugeOneof_; @@ -189792,10 +206404,19 @@ public int getOneof1511() { } public static final int ONEOF_1512_FIELD_NUMBER = 1512; + /** + * int32 oneof_1512 = 1512; + * @return Whether the oneof1512 field is set. + */ + @java.lang.Override + public boolean hasOneof1512() { + return hugeOneofCase_ == 1512; + } /** * int32 oneof_1512 = 1512; * @return The oneof1512. */ + @java.lang.Override public int getOneof1512() { if (hugeOneofCase_ == 1512) { return (java.lang.Integer) hugeOneof_; @@ -189804,10 +206425,19 @@ public int getOneof1512() { } public static final int ONEOF_1513_FIELD_NUMBER = 1513; + /** + * int32 oneof_1513 = 1513; + * @return Whether the oneof1513 field is set. + */ + @java.lang.Override + public boolean hasOneof1513() { + return hugeOneofCase_ == 1513; + } /** * int32 oneof_1513 = 1513; * @return The oneof1513. */ + @java.lang.Override public int getOneof1513() { if (hugeOneofCase_ == 1513) { return (java.lang.Integer) hugeOneof_; @@ -189816,10 +206446,19 @@ public int getOneof1513() { } public static final int ONEOF_1514_FIELD_NUMBER = 1514; + /** + * int32 oneof_1514 = 1514; + * @return Whether the oneof1514 field is set. + */ + @java.lang.Override + public boolean hasOneof1514() { + return hugeOneofCase_ == 1514; + } /** * int32 oneof_1514 = 1514; * @return The oneof1514. */ + @java.lang.Override public int getOneof1514() { if (hugeOneofCase_ == 1514) { return (java.lang.Integer) hugeOneof_; @@ -189828,10 +206467,19 @@ public int getOneof1514() { } public static final int ONEOF_1515_FIELD_NUMBER = 1515; + /** + * int32 oneof_1515 = 1515; + * @return Whether the oneof1515 field is set. + */ + @java.lang.Override + public boolean hasOneof1515() { + return hugeOneofCase_ == 1515; + } /** * int32 oneof_1515 = 1515; * @return The oneof1515. */ + @java.lang.Override public int getOneof1515() { if (hugeOneofCase_ == 1515) { return (java.lang.Integer) hugeOneof_; @@ -189840,10 +206488,19 @@ public int getOneof1515() { } public static final int ONEOF_1516_FIELD_NUMBER = 1516; + /** + * int32 oneof_1516 = 1516; + * @return Whether the oneof1516 field is set. + */ + @java.lang.Override + public boolean hasOneof1516() { + return hugeOneofCase_ == 1516; + } /** * int32 oneof_1516 = 1516; * @return The oneof1516. */ + @java.lang.Override public int getOneof1516() { if (hugeOneofCase_ == 1516) { return (java.lang.Integer) hugeOneof_; @@ -189852,10 +206509,19 @@ public int getOneof1516() { } public static final int ONEOF_1517_FIELD_NUMBER = 1517; + /** + * int32 oneof_1517 = 1517; + * @return Whether the oneof1517 field is set. + */ + @java.lang.Override + public boolean hasOneof1517() { + return hugeOneofCase_ == 1517; + } /** * int32 oneof_1517 = 1517; * @return The oneof1517. */ + @java.lang.Override public int getOneof1517() { if (hugeOneofCase_ == 1517) { return (java.lang.Integer) hugeOneof_; @@ -189864,10 +206530,19 @@ public int getOneof1517() { } public static final int ONEOF_1518_FIELD_NUMBER = 1518; + /** + * int32 oneof_1518 = 1518; + * @return Whether the oneof1518 field is set. + */ + @java.lang.Override + public boolean hasOneof1518() { + return hugeOneofCase_ == 1518; + } /** * int32 oneof_1518 = 1518; * @return The oneof1518. */ + @java.lang.Override public int getOneof1518() { if (hugeOneofCase_ == 1518) { return (java.lang.Integer) hugeOneof_; @@ -189876,10 +206551,19 @@ public int getOneof1518() { } public static final int ONEOF_1519_FIELD_NUMBER = 1519; + /** + * int32 oneof_1519 = 1519; + * @return Whether the oneof1519 field is set. + */ + @java.lang.Override + public boolean hasOneof1519() { + return hugeOneofCase_ == 1519; + } /** * int32 oneof_1519 = 1519; * @return The oneof1519. */ + @java.lang.Override public int getOneof1519() { if (hugeOneofCase_ == 1519) { return (java.lang.Integer) hugeOneof_; @@ -189888,10 +206572,19 @@ public int getOneof1519() { } public static final int ONEOF_1520_FIELD_NUMBER = 1520; + /** + * int32 oneof_1520 = 1520; + * @return Whether the oneof1520 field is set. + */ + @java.lang.Override + public boolean hasOneof1520() { + return hugeOneofCase_ == 1520; + } /** * int32 oneof_1520 = 1520; * @return The oneof1520. */ + @java.lang.Override public int getOneof1520() { if (hugeOneofCase_ == 1520) { return (java.lang.Integer) hugeOneof_; @@ -189900,10 +206593,19 @@ public int getOneof1520() { } public static final int ONEOF_1521_FIELD_NUMBER = 1521; + /** + * int32 oneof_1521 = 1521; + * @return Whether the oneof1521 field is set. + */ + @java.lang.Override + public boolean hasOneof1521() { + return hugeOneofCase_ == 1521; + } /** * int32 oneof_1521 = 1521; * @return The oneof1521. */ + @java.lang.Override public int getOneof1521() { if (hugeOneofCase_ == 1521) { return (java.lang.Integer) hugeOneof_; @@ -189912,10 +206614,19 @@ public int getOneof1521() { } public static final int ONEOF_1522_FIELD_NUMBER = 1522; + /** + * int32 oneof_1522 = 1522; + * @return Whether the oneof1522 field is set. + */ + @java.lang.Override + public boolean hasOneof1522() { + return hugeOneofCase_ == 1522; + } /** * int32 oneof_1522 = 1522; * @return The oneof1522. */ + @java.lang.Override public int getOneof1522() { if (hugeOneofCase_ == 1522) { return (java.lang.Integer) hugeOneof_; @@ -189924,10 +206635,19 @@ public int getOneof1522() { } public static final int ONEOF_1523_FIELD_NUMBER = 1523; + /** + * int32 oneof_1523 = 1523; + * @return Whether the oneof1523 field is set. + */ + @java.lang.Override + public boolean hasOneof1523() { + return hugeOneofCase_ == 1523; + } /** * int32 oneof_1523 = 1523; * @return The oneof1523. */ + @java.lang.Override public int getOneof1523() { if (hugeOneofCase_ == 1523) { return (java.lang.Integer) hugeOneof_; @@ -189936,10 +206656,19 @@ public int getOneof1523() { } public static final int ONEOF_1524_FIELD_NUMBER = 1524; + /** + * int32 oneof_1524 = 1524; + * @return Whether the oneof1524 field is set. + */ + @java.lang.Override + public boolean hasOneof1524() { + return hugeOneofCase_ == 1524; + } /** * int32 oneof_1524 = 1524; * @return The oneof1524. */ + @java.lang.Override public int getOneof1524() { if (hugeOneofCase_ == 1524) { return (java.lang.Integer) hugeOneof_; @@ -189948,10 +206677,19 @@ public int getOneof1524() { } public static final int ONEOF_1525_FIELD_NUMBER = 1525; + /** + * int32 oneof_1525 = 1525; + * @return Whether the oneof1525 field is set. + */ + @java.lang.Override + public boolean hasOneof1525() { + return hugeOneofCase_ == 1525; + } /** * int32 oneof_1525 = 1525; * @return The oneof1525. */ + @java.lang.Override public int getOneof1525() { if (hugeOneofCase_ == 1525) { return (java.lang.Integer) hugeOneof_; @@ -189960,10 +206698,19 @@ public int getOneof1525() { } public static final int ONEOF_1526_FIELD_NUMBER = 1526; + /** + * int32 oneof_1526 = 1526; + * @return Whether the oneof1526 field is set. + */ + @java.lang.Override + public boolean hasOneof1526() { + return hugeOneofCase_ == 1526; + } /** * int32 oneof_1526 = 1526; * @return The oneof1526. */ + @java.lang.Override public int getOneof1526() { if (hugeOneofCase_ == 1526) { return (java.lang.Integer) hugeOneof_; @@ -189972,10 +206719,19 @@ public int getOneof1526() { } public static final int ONEOF_1527_FIELD_NUMBER = 1527; + /** + * int32 oneof_1527 = 1527; + * @return Whether the oneof1527 field is set. + */ + @java.lang.Override + public boolean hasOneof1527() { + return hugeOneofCase_ == 1527; + } /** * int32 oneof_1527 = 1527; * @return The oneof1527. */ + @java.lang.Override public int getOneof1527() { if (hugeOneofCase_ == 1527) { return (java.lang.Integer) hugeOneof_; @@ -189984,10 +206740,19 @@ public int getOneof1527() { } public static final int ONEOF_1528_FIELD_NUMBER = 1528; + /** + * int32 oneof_1528 = 1528; + * @return Whether the oneof1528 field is set. + */ + @java.lang.Override + public boolean hasOneof1528() { + return hugeOneofCase_ == 1528; + } /** * int32 oneof_1528 = 1528; * @return The oneof1528. */ + @java.lang.Override public int getOneof1528() { if (hugeOneofCase_ == 1528) { return (java.lang.Integer) hugeOneof_; @@ -189996,10 +206761,19 @@ public int getOneof1528() { } public static final int ONEOF_1529_FIELD_NUMBER = 1529; + /** + * int32 oneof_1529 = 1529; + * @return Whether the oneof1529 field is set. + */ + @java.lang.Override + public boolean hasOneof1529() { + return hugeOneofCase_ == 1529; + } /** * int32 oneof_1529 = 1529; * @return The oneof1529. */ + @java.lang.Override public int getOneof1529() { if (hugeOneofCase_ == 1529) { return (java.lang.Integer) hugeOneof_; @@ -190008,10 +206782,19 @@ public int getOneof1529() { } public static final int ONEOF_1530_FIELD_NUMBER = 1530; + /** + * int32 oneof_1530 = 1530; + * @return Whether the oneof1530 field is set. + */ + @java.lang.Override + public boolean hasOneof1530() { + return hugeOneofCase_ == 1530; + } /** * int32 oneof_1530 = 1530; * @return The oneof1530. */ + @java.lang.Override public int getOneof1530() { if (hugeOneofCase_ == 1530) { return (java.lang.Integer) hugeOneof_; @@ -190020,10 +206803,19 @@ public int getOneof1530() { } public static final int ONEOF_1531_FIELD_NUMBER = 1531; + /** + * int32 oneof_1531 = 1531; + * @return Whether the oneof1531 field is set. + */ + @java.lang.Override + public boolean hasOneof1531() { + return hugeOneofCase_ == 1531; + } /** * int32 oneof_1531 = 1531; * @return The oneof1531. */ + @java.lang.Override public int getOneof1531() { if (hugeOneofCase_ == 1531) { return (java.lang.Integer) hugeOneof_; @@ -190032,10 +206824,19 @@ public int getOneof1531() { } public static final int ONEOF_1532_FIELD_NUMBER = 1532; + /** + * int32 oneof_1532 = 1532; + * @return Whether the oneof1532 field is set. + */ + @java.lang.Override + public boolean hasOneof1532() { + return hugeOneofCase_ == 1532; + } /** * int32 oneof_1532 = 1532; * @return The oneof1532. */ + @java.lang.Override public int getOneof1532() { if (hugeOneofCase_ == 1532) { return (java.lang.Integer) hugeOneof_; @@ -190044,10 +206845,19 @@ public int getOneof1532() { } public static final int ONEOF_1533_FIELD_NUMBER = 1533; + /** + * int32 oneof_1533 = 1533; + * @return Whether the oneof1533 field is set. + */ + @java.lang.Override + public boolean hasOneof1533() { + return hugeOneofCase_ == 1533; + } /** * int32 oneof_1533 = 1533; * @return The oneof1533. */ + @java.lang.Override public int getOneof1533() { if (hugeOneofCase_ == 1533) { return (java.lang.Integer) hugeOneof_; @@ -190056,10 +206866,19 @@ public int getOneof1533() { } public static final int ONEOF_1534_FIELD_NUMBER = 1534; + /** + * int32 oneof_1534 = 1534; + * @return Whether the oneof1534 field is set. + */ + @java.lang.Override + public boolean hasOneof1534() { + return hugeOneofCase_ == 1534; + } /** * int32 oneof_1534 = 1534; * @return The oneof1534. */ + @java.lang.Override public int getOneof1534() { if (hugeOneofCase_ == 1534) { return (java.lang.Integer) hugeOneof_; @@ -190068,10 +206887,19 @@ public int getOneof1534() { } public static final int ONEOF_1535_FIELD_NUMBER = 1535; + /** + * int32 oneof_1535 = 1535; + * @return Whether the oneof1535 field is set. + */ + @java.lang.Override + public boolean hasOneof1535() { + return hugeOneofCase_ == 1535; + } /** * int32 oneof_1535 = 1535; * @return The oneof1535. */ + @java.lang.Override public int getOneof1535() { if (hugeOneofCase_ == 1535) { return (java.lang.Integer) hugeOneof_; @@ -190080,10 +206908,19 @@ public int getOneof1535() { } public static final int ONEOF_1536_FIELD_NUMBER = 1536; + /** + * int32 oneof_1536 = 1536; + * @return Whether the oneof1536 field is set. + */ + @java.lang.Override + public boolean hasOneof1536() { + return hugeOneofCase_ == 1536; + } /** * int32 oneof_1536 = 1536; * @return The oneof1536. */ + @java.lang.Override public int getOneof1536() { if (hugeOneofCase_ == 1536) { return (java.lang.Integer) hugeOneof_; @@ -190092,10 +206929,19 @@ public int getOneof1536() { } public static final int ONEOF_1537_FIELD_NUMBER = 1537; + /** + * int32 oneof_1537 = 1537; + * @return Whether the oneof1537 field is set. + */ + @java.lang.Override + public boolean hasOneof1537() { + return hugeOneofCase_ == 1537; + } /** * int32 oneof_1537 = 1537; * @return The oneof1537. */ + @java.lang.Override public int getOneof1537() { if (hugeOneofCase_ == 1537) { return (java.lang.Integer) hugeOneof_; @@ -190104,10 +206950,19 @@ public int getOneof1537() { } public static final int ONEOF_1538_FIELD_NUMBER = 1538; + /** + * int32 oneof_1538 = 1538; + * @return Whether the oneof1538 field is set. + */ + @java.lang.Override + public boolean hasOneof1538() { + return hugeOneofCase_ == 1538; + } /** * int32 oneof_1538 = 1538; * @return The oneof1538. */ + @java.lang.Override public int getOneof1538() { if (hugeOneofCase_ == 1538) { return (java.lang.Integer) hugeOneof_; @@ -190116,10 +206971,19 @@ public int getOneof1538() { } public static final int ONEOF_1539_FIELD_NUMBER = 1539; + /** + * int32 oneof_1539 = 1539; + * @return Whether the oneof1539 field is set. + */ + @java.lang.Override + public boolean hasOneof1539() { + return hugeOneofCase_ == 1539; + } /** * int32 oneof_1539 = 1539; * @return The oneof1539. */ + @java.lang.Override public int getOneof1539() { if (hugeOneofCase_ == 1539) { return (java.lang.Integer) hugeOneof_; @@ -190128,10 +206992,19 @@ public int getOneof1539() { } public static final int ONEOF_1540_FIELD_NUMBER = 1540; + /** + * int32 oneof_1540 = 1540; + * @return Whether the oneof1540 field is set. + */ + @java.lang.Override + public boolean hasOneof1540() { + return hugeOneofCase_ == 1540; + } /** * int32 oneof_1540 = 1540; * @return The oneof1540. */ + @java.lang.Override public int getOneof1540() { if (hugeOneofCase_ == 1540) { return (java.lang.Integer) hugeOneof_; @@ -190140,10 +207013,19 @@ public int getOneof1540() { } public static final int ONEOF_1541_FIELD_NUMBER = 1541; + /** + * int32 oneof_1541 = 1541; + * @return Whether the oneof1541 field is set. + */ + @java.lang.Override + public boolean hasOneof1541() { + return hugeOneofCase_ == 1541; + } /** * int32 oneof_1541 = 1541; * @return The oneof1541. */ + @java.lang.Override public int getOneof1541() { if (hugeOneofCase_ == 1541) { return (java.lang.Integer) hugeOneof_; @@ -190152,10 +207034,19 @@ public int getOneof1541() { } public static final int ONEOF_1542_FIELD_NUMBER = 1542; + /** + * int32 oneof_1542 = 1542; + * @return Whether the oneof1542 field is set. + */ + @java.lang.Override + public boolean hasOneof1542() { + return hugeOneofCase_ == 1542; + } /** * int32 oneof_1542 = 1542; * @return The oneof1542. */ + @java.lang.Override public int getOneof1542() { if (hugeOneofCase_ == 1542) { return (java.lang.Integer) hugeOneof_; @@ -190164,10 +207055,19 @@ public int getOneof1542() { } public static final int ONEOF_1543_FIELD_NUMBER = 1543; + /** + * int32 oneof_1543 = 1543; + * @return Whether the oneof1543 field is set. + */ + @java.lang.Override + public boolean hasOneof1543() { + return hugeOneofCase_ == 1543; + } /** * int32 oneof_1543 = 1543; * @return The oneof1543. */ + @java.lang.Override public int getOneof1543() { if (hugeOneofCase_ == 1543) { return (java.lang.Integer) hugeOneof_; @@ -190176,10 +207076,19 @@ public int getOneof1543() { } public static final int ONEOF_1544_FIELD_NUMBER = 1544; + /** + * int32 oneof_1544 = 1544; + * @return Whether the oneof1544 field is set. + */ + @java.lang.Override + public boolean hasOneof1544() { + return hugeOneofCase_ == 1544; + } /** * int32 oneof_1544 = 1544; * @return The oneof1544. */ + @java.lang.Override public int getOneof1544() { if (hugeOneofCase_ == 1544) { return (java.lang.Integer) hugeOneof_; @@ -190188,10 +207097,19 @@ public int getOneof1544() { } public static final int ONEOF_1545_FIELD_NUMBER = 1545; + /** + * int32 oneof_1545 = 1545; + * @return Whether the oneof1545 field is set. + */ + @java.lang.Override + public boolean hasOneof1545() { + return hugeOneofCase_ == 1545; + } /** * int32 oneof_1545 = 1545; * @return The oneof1545. */ + @java.lang.Override public int getOneof1545() { if (hugeOneofCase_ == 1545) { return (java.lang.Integer) hugeOneof_; @@ -190200,10 +207118,19 @@ public int getOneof1545() { } public static final int ONEOF_1546_FIELD_NUMBER = 1546; + /** + * int32 oneof_1546 = 1546; + * @return Whether the oneof1546 field is set. + */ + @java.lang.Override + public boolean hasOneof1546() { + return hugeOneofCase_ == 1546; + } /** * int32 oneof_1546 = 1546; * @return The oneof1546. */ + @java.lang.Override public int getOneof1546() { if (hugeOneofCase_ == 1546) { return (java.lang.Integer) hugeOneof_; @@ -190212,10 +207139,19 @@ public int getOneof1546() { } public static final int ONEOF_1547_FIELD_NUMBER = 1547; + /** + * int32 oneof_1547 = 1547; + * @return Whether the oneof1547 field is set. + */ + @java.lang.Override + public boolean hasOneof1547() { + return hugeOneofCase_ == 1547; + } /** * int32 oneof_1547 = 1547; * @return The oneof1547. */ + @java.lang.Override public int getOneof1547() { if (hugeOneofCase_ == 1547) { return (java.lang.Integer) hugeOneof_; @@ -190224,10 +207160,19 @@ public int getOneof1547() { } public static final int ONEOF_1548_FIELD_NUMBER = 1548; + /** + * int32 oneof_1548 = 1548; + * @return Whether the oneof1548 field is set. + */ + @java.lang.Override + public boolean hasOneof1548() { + return hugeOneofCase_ == 1548; + } /** * int32 oneof_1548 = 1548; * @return The oneof1548. */ + @java.lang.Override public int getOneof1548() { if (hugeOneofCase_ == 1548) { return (java.lang.Integer) hugeOneof_; @@ -190236,10 +207181,19 @@ public int getOneof1548() { } public static final int ONEOF_1549_FIELD_NUMBER = 1549; + /** + * int32 oneof_1549 = 1549; + * @return Whether the oneof1549 field is set. + */ + @java.lang.Override + public boolean hasOneof1549() { + return hugeOneofCase_ == 1549; + } /** * int32 oneof_1549 = 1549; * @return The oneof1549. */ + @java.lang.Override public int getOneof1549() { if (hugeOneofCase_ == 1549) { return (java.lang.Integer) hugeOneof_; @@ -190248,10 +207202,19 @@ public int getOneof1549() { } public static final int ONEOF_1550_FIELD_NUMBER = 1550; + /** + * int32 oneof_1550 = 1550; + * @return Whether the oneof1550 field is set. + */ + @java.lang.Override + public boolean hasOneof1550() { + return hugeOneofCase_ == 1550; + } /** * int32 oneof_1550 = 1550; * @return The oneof1550. */ + @java.lang.Override public int getOneof1550() { if (hugeOneofCase_ == 1550) { return (java.lang.Integer) hugeOneof_; @@ -190260,10 +207223,19 @@ public int getOneof1550() { } public static final int ONEOF_1551_FIELD_NUMBER = 1551; + /** + * int32 oneof_1551 = 1551; + * @return Whether the oneof1551 field is set. + */ + @java.lang.Override + public boolean hasOneof1551() { + return hugeOneofCase_ == 1551; + } /** * int32 oneof_1551 = 1551; * @return The oneof1551. */ + @java.lang.Override public int getOneof1551() { if (hugeOneofCase_ == 1551) { return (java.lang.Integer) hugeOneof_; @@ -190272,10 +207244,19 @@ public int getOneof1551() { } public static final int ONEOF_1552_FIELD_NUMBER = 1552; + /** + * int32 oneof_1552 = 1552; + * @return Whether the oneof1552 field is set. + */ + @java.lang.Override + public boolean hasOneof1552() { + return hugeOneofCase_ == 1552; + } /** * int32 oneof_1552 = 1552; * @return The oneof1552. */ + @java.lang.Override public int getOneof1552() { if (hugeOneofCase_ == 1552) { return (java.lang.Integer) hugeOneof_; @@ -190284,10 +207265,19 @@ public int getOneof1552() { } public static final int ONEOF_1553_FIELD_NUMBER = 1553; + /** + * int32 oneof_1553 = 1553; + * @return Whether the oneof1553 field is set. + */ + @java.lang.Override + public boolean hasOneof1553() { + return hugeOneofCase_ == 1553; + } /** * int32 oneof_1553 = 1553; * @return The oneof1553. */ + @java.lang.Override public int getOneof1553() { if (hugeOneofCase_ == 1553) { return (java.lang.Integer) hugeOneof_; @@ -190296,10 +207286,19 @@ public int getOneof1553() { } public static final int ONEOF_1554_FIELD_NUMBER = 1554; + /** + * int32 oneof_1554 = 1554; + * @return Whether the oneof1554 field is set. + */ + @java.lang.Override + public boolean hasOneof1554() { + return hugeOneofCase_ == 1554; + } /** * int32 oneof_1554 = 1554; * @return The oneof1554. */ + @java.lang.Override public int getOneof1554() { if (hugeOneofCase_ == 1554) { return (java.lang.Integer) hugeOneof_; @@ -190308,10 +207307,19 @@ public int getOneof1554() { } public static final int ONEOF_1555_FIELD_NUMBER = 1555; + /** + * int32 oneof_1555 = 1555; + * @return Whether the oneof1555 field is set. + */ + @java.lang.Override + public boolean hasOneof1555() { + return hugeOneofCase_ == 1555; + } /** * int32 oneof_1555 = 1555; * @return The oneof1555. */ + @java.lang.Override public int getOneof1555() { if (hugeOneofCase_ == 1555) { return (java.lang.Integer) hugeOneof_; @@ -190320,10 +207328,19 @@ public int getOneof1555() { } public static final int ONEOF_1556_FIELD_NUMBER = 1556; + /** + * int32 oneof_1556 = 1556; + * @return Whether the oneof1556 field is set. + */ + @java.lang.Override + public boolean hasOneof1556() { + return hugeOneofCase_ == 1556; + } /** * int32 oneof_1556 = 1556; * @return The oneof1556. */ + @java.lang.Override public int getOneof1556() { if (hugeOneofCase_ == 1556) { return (java.lang.Integer) hugeOneof_; @@ -190332,10 +207349,19 @@ public int getOneof1556() { } public static final int ONEOF_1557_FIELD_NUMBER = 1557; + /** + * int32 oneof_1557 = 1557; + * @return Whether the oneof1557 field is set. + */ + @java.lang.Override + public boolean hasOneof1557() { + return hugeOneofCase_ == 1557; + } /** * int32 oneof_1557 = 1557; * @return The oneof1557. */ + @java.lang.Override public int getOneof1557() { if (hugeOneofCase_ == 1557) { return (java.lang.Integer) hugeOneof_; @@ -190344,10 +207370,19 @@ public int getOneof1557() { } public static final int ONEOF_1558_FIELD_NUMBER = 1558; + /** + * int32 oneof_1558 = 1558; + * @return Whether the oneof1558 field is set. + */ + @java.lang.Override + public boolean hasOneof1558() { + return hugeOneofCase_ == 1558; + } /** * int32 oneof_1558 = 1558; * @return The oneof1558. */ + @java.lang.Override public int getOneof1558() { if (hugeOneofCase_ == 1558) { return (java.lang.Integer) hugeOneof_; @@ -190356,10 +207391,19 @@ public int getOneof1558() { } public static final int ONEOF_1559_FIELD_NUMBER = 1559; + /** + * int32 oneof_1559 = 1559; + * @return Whether the oneof1559 field is set. + */ + @java.lang.Override + public boolean hasOneof1559() { + return hugeOneofCase_ == 1559; + } /** * int32 oneof_1559 = 1559; * @return The oneof1559. */ + @java.lang.Override public int getOneof1559() { if (hugeOneofCase_ == 1559) { return (java.lang.Integer) hugeOneof_; @@ -190368,10 +207412,19 @@ public int getOneof1559() { } public static final int ONEOF_1560_FIELD_NUMBER = 1560; + /** + * int32 oneof_1560 = 1560; + * @return Whether the oneof1560 field is set. + */ + @java.lang.Override + public boolean hasOneof1560() { + return hugeOneofCase_ == 1560; + } /** * int32 oneof_1560 = 1560; * @return The oneof1560. */ + @java.lang.Override public int getOneof1560() { if (hugeOneofCase_ == 1560) { return (java.lang.Integer) hugeOneof_; @@ -190380,10 +207433,19 @@ public int getOneof1560() { } public static final int ONEOF_1561_FIELD_NUMBER = 1561; + /** + * int32 oneof_1561 = 1561; + * @return Whether the oneof1561 field is set. + */ + @java.lang.Override + public boolean hasOneof1561() { + return hugeOneofCase_ == 1561; + } /** * int32 oneof_1561 = 1561; * @return The oneof1561. */ + @java.lang.Override public int getOneof1561() { if (hugeOneofCase_ == 1561) { return (java.lang.Integer) hugeOneof_; @@ -190392,10 +207454,19 @@ public int getOneof1561() { } public static final int ONEOF_1562_FIELD_NUMBER = 1562; + /** + * int32 oneof_1562 = 1562; + * @return Whether the oneof1562 field is set. + */ + @java.lang.Override + public boolean hasOneof1562() { + return hugeOneofCase_ == 1562; + } /** * int32 oneof_1562 = 1562; * @return The oneof1562. */ + @java.lang.Override public int getOneof1562() { if (hugeOneofCase_ == 1562) { return (java.lang.Integer) hugeOneof_; @@ -190404,10 +207475,19 @@ public int getOneof1562() { } public static final int ONEOF_1563_FIELD_NUMBER = 1563; + /** + * int32 oneof_1563 = 1563; + * @return Whether the oneof1563 field is set. + */ + @java.lang.Override + public boolean hasOneof1563() { + return hugeOneofCase_ == 1563; + } /** * int32 oneof_1563 = 1563; * @return The oneof1563. */ + @java.lang.Override public int getOneof1563() { if (hugeOneofCase_ == 1563) { return (java.lang.Integer) hugeOneof_; @@ -190416,10 +207496,19 @@ public int getOneof1563() { } public static final int ONEOF_1564_FIELD_NUMBER = 1564; + /** + * int32 oneof_1564 = 1564; + * @return Whether the oneof1564 field is set. + */ + @java.lang.Override + public boolean hasOneof1564() { + return hugeOneofCase_ == 1564; + } /** * int32 oneof_1564 = 1564; * @return The oneof1564. */ + @java.lang.Override public int getOneof1564() { if (hugeOneofCase_ == 1564) { return (java.lang.Integer) hugeOneof_; @@ -190428,10 +207517,19 @@ public int getOneof1564() { } public static final int ONEOF_1565_FIELD_NUMBER = 1565; + /** + * int32 oneof_1565 = 1565; + * @return Whether the oneof1565 field is set. + */ + @java.lang.Override + public boolean hasOneof1565() { + return hugeOneofCase_ == 1565; + } /** * int32 oneof_1565 = 1565; * @return The oneof1565. */ + @java.lang.Override public int getOneof1565() { if (hugeOneofCase_ == 1565) { return (java.lang.Integer) hugeOneof_; @@ -190440,10 +207538,19 @@ public int getOneof1565() { } public static final int ONEOF_1566_FIELD_NUMBER = 1566; + /** + * int32 oneof_1566 = 1566; + * @return Whether the oneof1566 field is set. + */ + @java.lang.Override + public boolean hasOneof1566() { + return hugeOneofCase_ == 1566; + } /** * int32 oneof_1566 = 1566; * @return The oneof1566. */ + @java.lang.Override public int getOneof1566() { if (hugeOneofCase_ == 1566) { return (java.lang.Integer) hugeOneof_; @@ -190452,10 +207559,19 @@ public int getOneof1566() { } public static final int ONEOF_1567_FIELD_NUMBER = 1567; + /** + * int32 oneof_1567 = 1567; + * @return Whether the oneof1567 field is set. + */ + @java.lang.Override + public boolean hasOneof1567() { + return hugeOneofCase_ == 1567; + } /** * int32 oneof_1567 = 1567; * @return The oneof1567. */ + @java.lang.Override public int getOneof1567() { if (hugeOneofCase_ == 1567) { return (java.lang.Integer) hugeOneof_; @@ -190464,10 +207580,19 @@ public int getOneof1567() { } public static final int ONEOF_1568_FIELD_NUMBER = 1568; + /** + * int32 oneof_1568 = 1568; + * @return Whether the oneof1568 field is set. + */ + @java.lang.Override + public boolean hasOneof1568() { + return hugeOneofCase_ == 1568; + } /** * int32 oneof_1568 = 1568; * @return The oneof1568. */ + @java.lang.Override public int getOneof1568() { if (hugeOneofCase_ == 1568) { return (java.lang.Integer) hugeOneof_; @@ -190476,10 +207601,19 @@ public int getOneof1568() { } public static final int ONEOF_1569_FIELD_NUMBER = 1569; + /** + * int32 oneof_1569 = 1569; + * @return Whether the oneof1569 field is set. + */ + @java.lang.Override + public boolean hasOneof1569() { + return hugeOneofCase_ == 1569; + } /** * int32 oneof_1569 = 1569; * @return The oneof1569. */ + @java.lang.Override public int getOneof1569() { if (hugeOneofCase_ == 1569) { return (java.lang.Integer) hugeOneof_; @@ -190488,10 +207622,19 @@ public int getOneof1569() { } public static final int ONEOF_1570_FIELD_NUMBER = 1570; + /** + * int32 oneof_1570 = 1570; + * @return Whether the oneof1570 field is set. + */ + @java.lang.Override + public boolean hasOneof1570() { + return hugeOneofCase_ == 1570; + } /** * int32 oneof_1570 = 1570; * @return The oneof1570. */ + @java.lang.Override public int getOneof1570() { if (hugeOneofCase_ == 1570) { return (java.lang.Integer) hugeOneof_; @@ -190500,10 +207643,19 @@ public int getOneof1570() { } public static final int ONEOF_1571_FIELD_NUMBER = 1571; + /** + * int32 oneof_1571 = 1571; + * @return Whether the oneof1571 field is set. + */ + @java.lang.Override + public boolean hasOneof1571() { + return hugeOneofCase_ == 1571; + } /** * int32 oneof_1571 = 1571; * @return The oneof1571. */ + @java.lang.Override public int getOneof1571() { if (hugeOneofCase_ == 1571) { return (java.lang.Integer) hugeOneof_; @@ -190512,10 +207664,19 @@ public int getOneof1571() { } public static final int ONEOF_1572_FIELD_NUMBER = 1572; + /** + * int32 oneof_1572 = 1572; + * @return Whether the oneof1572 field is set. + */ + @java.lang.Override + public boolean hasOneof1572() { + return hugeOneofCase_ == 1572; + } /** * int32 oneof_1572 = 1572; * @return The oneof1572. */ + @java.lang.Override public int getOneof1572() { if (hugeOneofCase_ == 1572) { return (java.lang.Integer) hugeOneof_; @@ -190524,10 +207685,19 @@ public int getOneof1572() { } public static final int ONEOF_1573_FIELD_NUMBER = 1573; + /** + * int32 oneof_1573 = 1573; + * @return Whether the oneof1573 field is set. + */ + @java.lang.Override + public boolean hasOneof1573() { + return hugeOneofCase_ == 1573; + } /** * int32 oneof_1573 = 1573; * @return The oneof1573. */ + @java.lang.Override public int getOneof1573() { if (hugeOneofCase_ == 1573) { return (java.lang.Integer) hugeOneof_; @@ -190536,10 +207706,19 @@ public int getOneof1573() { } public static final int ONEOF_1574_FIELD_NUMBER = 1574; + /** + * int32 oneof_1574 = 1574; + * @return Whether the oneof1574 field is set. + */ + @java.lang.Override + public boolean hasOneof1574() { + return hugeOneofCase_ == 1574; + } /** * int32 oneof_1574 = 1574; * @return The oneof1574. */ + @java.lang.Override public int getOneof1574() { if (hugeOneofCase_ == 1574) { return (java.lang.Integer) hugeOneof_; @@ -190548,10 +207727,19 @@ public int getOneof1574() { } public static final int ONEOF_1575_FIELD_NUMBER = 1575; + /** + * int32 oneof_1575 = 1575; + * @return Whether the oneof1575 field is set. + */ + @java.lang.Override + public boolean hasOneof1575() { + return hugeOneofCase_ == 1575; + } /** * int32 oneof_1575 = 1575; * @return The oneof1575. */ + @java.lang.Override public int getOneof1575() { if (hugeOneofCase_ == 1575) { return (java.lang.Integer) hugeOneof_; @@ -190560,10 +207748,19 @@ public int getOneof1575() { } public static final int ONEOF_1576_FIELD_NUMBER = 1576; + /** + * int32 oneof_1576 = 1576; + * @return Whether the oneof1576 field is set. + */ + @java.lang.Override + public boolean hasOneof1576() { + return hugeOneofCase_ == 1576; + } /** * int32 oneof_1576 = 1576; * @return The oneof1576. */ + @java.lang.Override public int getOneof1576() { if (hugeOneofCase_ == 1576) { return (java.lang.Integer) hugeOneof_; @@ -190572,10 +207769,19 @@ public int getOneof1576() { } public static final int ONEOF_1577_FIELD_NUMBER = 1577; + /** + * int32 oneof_1577 = 1577; + * @return Whether the oneof1577 field is set. + */ + @java.lang.Override + public boolean hasOneof1577() { + return hugeOneofCase_ == 1577; + } /** * int32 oneof_1577 = 1577; * @return The oneof1577. */ + @java.lang.Override public int getOneof1577() { if (hugeOneofCase_ == 1577) { return (java.lang.Integer) hugeOneof_; @@ -190584,10 +207790,19 @@ public int getOneof1577() { } public static final int ONEOF_1578_FIELD_NUMBER = 1578; + /** + * int32 oneof_1578 = 1578; + * @return Whether the oneof1578 field is set. + */ + @java.lang.Override + public boolean hasOneof1578() { + return hugeOneofCase_ == 1578; + } /** * int32 oneof_1578 = 1578; * @return The oneof1578. */ + @java.lang.Override public int getOneof1578() { if (hugeOneofCase_ == 1578) { return (java.lang.Integer) hugeOneof_; @@ -190596,10 +207811,19 @@ public int getOneof1578() { } public static final int ONEOF_1579_FIELD_NUMBER = 1579; + /** + * int32 oneof_1579 = 1579; + * @return Whether the oneof1579 field is set. + */ + @java.lang.Override + public boolean hasOneof1579() { + return hugeOneofCase_ == 1579; + } /** * int32 oneof_1579 = 1579; * @return The oneof1579. */ + @java.lang.Override public int getOneof1579() { if (hugeOneofCase_ == 1579) { return (java.lang.Integer) hugeOneof_; @@ -190608,10 +207832,19 @@ public int getOneof1579() { } public static final int ONEOF_1580_FIELD_NUMBER = 1580; + /** + * int32 oneof_1580 = 1580; + * @return Whether the oneof1580 field is set. + */ + @java.lang.Override + public boolean hasOneof1580() { + return hugeOneofCase_ == 1580; + } /** * int32 oneof_1580 = 1580; * @return The oneof1580. */ + @java.lang.Override public int getOneof1580() { if (hugeOneofCase_ == 1580) { return (java.lang.Integer) hugeOneof_; @@ -190620,10 +207853,19 @@ public int getOneof1580() { } public static final int ONEOF_1581_FIELD_NUMBER = 1581; + /** + * int32 oneof_1581 = 1581; + * @return Whether the oneof1581 field is set. + */ + @java.lang.Override + public boolean hasOneof1581() { + return hugeOneofCase_ == 1581; + } /** * int32 oneof_1581 = 1581; * @return The oneof1581. */ + @java.lang.Override public int getOneof1581() { if (hugeOneofCase_ == 1581) { return (java.lang.Integer) hugeOneof_; @@ -190632,10 +207874,19 @@ public int getOneof1581() { } public static final int ONEOF_1582_FIELD_NUMBER = 1582; + /** + * int32 oneof_1582 = 1582; + * @return Whether the oneof1582 field is set. + */ + @java.lang.Override + public boolean hasOneof1582() { + return hugeOneofCase_ == 1582; + } /** * int32 oneof_1582 = 1582; * @return The oneof1582. */ + @java.lang.Override public int getOneof1582() { if (hugeOneofCase_ == 1582) { return (java.lang.Integer) hugeOneof_; @@ -190644,10 +207895,19 @@ public int getOneof1582() { } public static final int ONEOF_1583_FIELD_NUMBER = 1583; + /** + * int32 oneof_1583 = 1583; + * @return Whether the oneof1583 field is set. + */ + @java.lang.Override + public boolean hasOneof1583() { + return hugeOneofCase_ == 1583; + } /** * int32 oneof_1583 = 1583; * @return The oneof1583. */ + @java.lang.Override public int getOneof1583() { if (hugeOneofCase_ == 1583) { return (java.lang.Integer) hugeOneof_; @@ -190656,10 +207916,19 @@ public int getOneof1583() { } public static final int ONEOF_1584_FIELD_NUMBER = 1584; + /** + * int32 oneof_1584 = 1584; + * @return Whether the oneof1584 field is set. + */ + @java.lang.Override + public boolean hasOneof1584() { + return hugeOneofCase_ == 1584; + } /** * int32 oneof_1584 = 1584; * @return The oneof1584. */ + @java.lang.Override public int getOneof1584() { if (hugeOneofCase_ == 1584) { return (java.lang.Integer) hugeOneof_; @@ -190668,10 +207937,19 @@ public int getOneof1584() { } public static final int ONEOF_1585_FIELD_NUMBER = 1585; + /** + * int32 oneof_1585 = 1585; + * @return Whether the oneof1585 field is set. + */ + @java.lang.Override + public boolean hasOneof1585() { + return hugeOneofCase_ == 1585; + } /** * int32 oneof_1585 = 1585; * @return The oneof1585. */ + @java.lang.Override public int getOneof1585() { if (hugeOneofCase_ == 1585) { return (java.lang.Integer) hugeOneof_; @@ -190680,10 +207958,19 @@ public int getOneof1585() { } public static final int ONEOF_1586_FIELD_NUMBER = 1586; + /** + * int32 oneof_1586 = 1586; + * @return Whether the oneof1586 field is set. + */ + @java.lang.Override + public boolean hasOneof1586() { + return hugeOneofCase_ == 1586; + } /** * int32 oneof_1586 = 1586; * @return The oneof1586. */ + @java.lang.Override public int getOneof1586() { if (hugeOneofCase_ == 1586) { return (java.lang.Integer) hugeOneof_; @@ -190692,10 +207979,19 @@ public int getOneof1586() { } public static final int ONEOF_1587_FIELD_NUMBER = 1587; + /** + * int32 oneof_1587 = 1587; + * @return Whether the oneof1587 field is set. + */ + @java.lang.Override + public boolean hasOneof1587() { + return hugeOneofCase_ == 1587; + } /** * int32 oneof_1587 = 1587; * @return The oneof1587. */ + @java.lang.Override public int getOneof1587() { if (hugeOneofCase_ == 1587) { return (java.lang.Integer) hugeOneof_; @@ -190704,10 +208000,19 @@ public int getOneof1587() { } public static final int ONEOF_1588_FIELD_NUMBER = 1588; + /** + * int32 oneof_1588 = 1588; + * @return Whether the oneof1588 field is set. + */ + @java.lang.Override + public boolean hasOneof1588() { + return hugeOneofCase_ == 1588; + } /** * int32 oneof_1588 = 1588; * @return The oneof1588. */ + @java.lang.Override public int getOneof1588() { if (hugeOneofCase_ == 1588) { return (java.lang.Integer) hugeOneof_; @@ -190716,10 +208021,19 @@ public int getOneof1588() { } public static final int ONEOF_1589_FIELD_NUMBER = 1589; + /** + * int32 oneof_1589 = 1589; + * @return Whether the oneof1589 field is set. + */ + @java.lang.Override + public boolean hasOneof1589() { + return hugeOneofCase_ == 1589; + } /** * int32 oneof_1589 = 1589; * @return The oneof1589. */ + @java.lang.Override public int getOneof1589() { if (hugeOneofCase_ == 1589) { return (java.lang.Integer) hugeOneof_; @@ -190728,10 +208042,19 @@ public int getOneof1589() { } public static final int ONEOF_1590_FIELD_NUMBER = 1590; + /** + * int32 oneof_1590 = 1590; + * @return Whether the oneof1590 field is set. + */ + @java.lang.Override + public boolean hasOneof1590() { + return hugeOneofCase_ == 1590; + } /** * int32 oneof_1590 = 1590; * @return The oneof1590. */ + @java.lang.Override public int getOneof1590() { if (hugeOneofCase_ == 1590) { return (java.lang.Integer) hugeOneof_; @@ -190740,10 +208063,19 @@ public int getOneof1590() { } public static final int ONEOF_1591_FIELD_NUMBER = 1591; + /** + * int32 oneof_1591 = 1591; + * @return Whether the oneof1591 field is set. + */ + @java.lang.Override + public boolean hasOneof1591() { + return hugeOneofCase_ == 1591; + } /** * int32 oneof_1591 = 1591; * @return The oneof1591. */ + @java.lang.Override public int getOneof1591() { if (hugeOneofCase_ == 1591) { return (java.lang.Integer) hugeOneof_; @@ -190752,10 +208084,19 @@ public int getOneof1591() { } public static final int ONEOF_1592_FIELD_NUMBER = 1592; + /** + * int32 oneof_1592 = 1592; + * @return Whether the oneof1592 field is set. + */ + @java.lang.Override + public boolean hasOneof1592() { + return hugeOneofCase_ == 1592; + } /** * int32 oneof_1592 = 1592; * @return The oneof1592. */ + @java.lang.Override public int getOneof1592() { if (hugeOneofCase_ == 1592) { return (java.lang.Integer) hugeOneof_; @@ -190764,10 +208105,19 @@ public int getOneof1592() { } public static final int ONEOF_1593_FIELD_NUMBER = 1593; + /** + * int32 oneof_1593 = 1593; + * @return Whether the oneof1593 field is set. + */ + @java.lang.Override + public boolean hasOneof1593() { + return hugeOneofCase_ == 1593; + } /** * int32 oneof_1593 = 1593; * @return The oneof1593. */ + @java.lang.Override public int getOneof1593() { if (hugeOneofCase_ == 1593) { return (java.lang.Integer) hugeOneof_; @@ -190776,10 +208126,19 @@ public int getOneof1593() { } public static final int ONEOF_1594_FIELD_NUMBER = 1594; + /** + * int32 oneof_1594 = 1594; + * @return Whether the oneof1594 field is set. + */ + @java.lang.Override + public boolean hasOneof1594() { + return hugeOneofCase_ == 1594; + } /** * int32 oneof_1594 = 1594; * @return The oneof1594. */ + @java.lang.Override public int getOneof1594() { if (hugeOneofCase_ == 1594) { return (java.lang.Integer) hugeOneof_; @@ -190788,10 +208147,19 @@ public int getOneof1594() { } public static final int ONEOF_1595_FIELD_NUMBER = 1595; + /** + * int32 oneof_1595 = 1595; + * @return Whether the oneof1595 field is set. + */ + @java.lang.Override + public boolean hasOneof1595() { + return hugeOneofCase_ == 1595; + } /** * int32 oneof_1595 = 1595; * @return The oneof1595. */ + @java.lang.Override public int getOneof1595() { if (hugeOneofCase_ == 1595) { return (java.lang.Integer) hugeOneof_; @@ -190800,10 +208168,19 @@ public int getOneof1595() { } public static final int ONEOF_1596_FIELD_NUMBER = 1596; + /** + * int32 oneof_1596 = 1596; + * @return Whether the oneof1596 field is set. + */ + @java.lang.Override + public boolean hasOneof1596() { + return hugeOneofCase_ == 1596; + } /** * int32 oneof_1596 = 1596; * @return The oneof1596. */ + @java.lang.Override public int getOneof1596() { if (hugeOneofCase_ == 1596) { return (java.lang.Integer) hugeOneof_; @@ -190812,10 +208189,19 @@ public int getOneof1596() { } public static final int ONEOF_1597_FIELD_NUMBER = 1597; + /** + * int32 oneof_1597 = 1597; + * @return Whether the oneof1597 field is set. + */ + @java.lang.Override + public boolean hasOneof1597() { + return hugeOneofCase_ == 1597; + } /** * int32 oneof_1597 = 1597; * @return The oneof1597. */ + @java.lang.Override public int getOneof1597() { if (hugeOneofCase_ == 1597) { return (java.lang.Integer) hugeOneof_; @@ -190824,10 +208210,19 @@ public int getOneof1597() { } public static final int ONEOF_1598_FIELD_NUMBER = 1598; + /** + * int32 oneof_1598 = 1598; + * @return Whether the oneof1598 field is set. + */ + @java.lang.Override + public boolean hasOneof1598() { + return hugeOneofCase_ == 1598; + } /** * int32 oneof_1598 = 1598; * @return The oneof1598. */ + @java.lang.Override public int getOneof1598() { if (hugeOneofCase_ == 1598) { return (java.lang.Integer) hugeOneof_; @@ -190836,10 +208231,19 @@ public int getOneof1598() { } public static final int ONEOF_1599_FIELD_NUMBER = 1599; + /** + * int32 oneof_1599 = 1599; + * @return Whether the oneof1599 field is set. + */ + @java.lang.Override + public boolean hasOneof1599() { + return hugeOneofCase_ == 1599; + } /** * int32 oneof_1599 = 1599; * @return The oneof1599. */ + @java.lang.Override public int getOneof1599() { if (hugeOneofCase_ == 1599) { return (java.lang.Integer) hugeOneof_; @@ -190848,10 +208252,19 @@ public int getOneof1599() { } public static final int ONEOF_1600_FIELD_NUMBER = 1600; + /** + * int32 oneof_1600 = 1600; + * @return Whether the oneof1600 field is set. + */ + @java.lang.Override + public boolean hasOneof1600() { + return hugeOneofCase_ == 1600; + } /** * int32 oneof_1600 = 1600; * @return The oneof1600. */ + @java.lang.Override public int getOneof1600() { if (hugeOneofCase_ == 1600) { return (java.lang.Integer) hugeOneof_; @@ -190860,10 +208273,19 @@ public int getOneof1600() { } public static final int ONEOF_1601_FIELD_NUMBER = 1601; + /** + * int32 oneof_1601 = 1601; + * @return Whether the oneof1601 field is set. + */ + @java.lang.Override + public boolean hasOneof1601() { + return hugeOneofCase_ == 1601; + } /** * int32 oneof_1601 = 1601; * @return The oneof1601. */ + @java.lang.Override public int getOneof1601() { if (hugeOneofCase_ == 1601) { return (java.lang.Integer) hugeOneof_; @@ -190872,10 +208294,19 @@ public int getOneof1601() { } public static final int ONEOF_1602_FIELD_NUMBER = 1602; + /** + * int32 oneof_1602 = 1602; + * @return Whether the oneof1602 field is set. + */ + @java.lang.Override + public boolean hasOneof1602() { + return hugeOneofCase_ == 1602; + } /** * int32 oneof_1602 = 1602; * @return The oneof1602. */ + @java.lang.Override public int getOneof1602() { if (hugeOneofCase_ == 1602) { return (java.lang.Integer) hugeOneof_; @@ -190884,10 +208315,19 @@ public int getOneof1602() { } public static final int ONEOF_1603_FIELD_NUMBER = 1603; + /** + * int32 oneof_1603 = 1603; + * @return Whether the oneof1603 field is set. + */ + @java.lang.Override + public boolean hasOneof1603() { + return hugeOneofCase_ == 1603; + } /** * int32 oneof_1603 = 1603; * @return The oneof1603. */ + @java.lang.Override public int getOneof1603() { if (hugeOneofCase_ == 1603) { return (java.lang.Integer) hugeOneof_; @@ -190896,10 +208336,19 @@ public int getOneof1603() { } public static final int ONEOF_1604_FIELD_NUMBER = 1604; + /** + * int32 oneof_1604 = 1604; + * @return Whether the oneof1604 field is set. + */ + @java.lang.Override + public boolean hasOneof1604() { + return hugeOneofCase_ == 1604; + } /** * int32 oneof_1604 = 1604; * @return The oneof1604. */ + @java.lang.Override public int getOneof1604() { if (hugeOneofCase_ == 1604) { return (java.lang.Integer) hugeOneof_; @@ -190908,10 +208357,19 @@ public int getOneof1604() { } public static final int ONEOF_1605_FIELD_NUMBER = 1605; + /** + * int32 oneof_1605 = 1605; + * @return Whether the oneof1605 field is set. + */ + @java.lang.Override + public boolean hasOneof1605() { + return hugeOneofCase_ == 1605; + } /** * int32 oneof_1605 = 1605; * @return The oneof1605. */ + @java.lang.Override public int getOneof1605() { if (hugeOneofCase_ == 1605) { return (java.lang.Integer) hugeOneof_; @@ -190920,10 +208378,19 @@ public int getOneof1605() { } public static final int ONEOF_1606_FIELD_NUMBER = 1606; + /** + * int32 oneof_1606 = 1606; + * @return Whether the oneof1606 field is set. + */ + @java.lang.Override + public boolean hasOneof1606() { + return hugeOneofCase_ == 1606; + } /** * int32 oneof_1606 = 1606; * @return The oneof1606. */ + @java.lang.Override public int getOneof1606() { if (hugeOneofCase_ == 1606) { return (java.lang.Integer) hugeOneof_; @@ -190932,10 +208399,19 @@ public int getOneof1606() { } public static final int ONEOF_1607_FIELD_NUMBER = 1607; + /** + * int32 oneof_1607 = 1607; + * @return Whether the oneof1607 field is set. + */ + @java.lang.Override + public boolean hasOneof1607() { + return hugeOneofCase_ == 1607; + } /** * int32 oneof_1607 = 1607; * @return The oneof1607. */ + @java.lang.Override public int getOneof1607() { if (hugeOneofCase_ == 1607) { return (java.lang.Integer) hugeOneof_; @@ -190944,10 +208420,19 @@ public int getOneof1607() { } public static final int ONEOF_1608_FIELD_NUMBER = 1608; + /** + * int32 oneof_1608 = 1608; + * @return Whether the oneof1608 field is set. + */ + @java.lang.Override + public boolean hasOneof1608() { + return hugeOneofCase_ == 1608; + } /** * int32 oneof_1608 = 1608; * @return The oneof1608. */ + @java.lang.Override public int getOneof1608() { if (hugeOneofCase_ == 1608) { return (java.lang.Integer) hugeOneof_; @@ -190956,10 +208441,19 @@ public int getOneof1608() { } public static final int ONEOF_1609_FIELD_NUMBER = 1609; + /** + * int32 oneof_1609 = 1609; + * @return Whether the oneof1609 field is set. + */ + @java.lang.Override + public boolean hasOneof1609() { + return hugeOneofCase_ == 1609; + } /** * int32 oneof_1609 = 1609; * @return The oneof1609. */ + @java.lang.Override public int getOneof1609() { if (hugeOneofCase_ == 1609) { return (java.lang.Integer) hugeOneof_; @@ -190968,10 +208462,19 @@ public int getOneof1609() { } public static final int ONEOF_1610_FIELD_NUMBER = 1610; + /** + * int32 oneof_1610 = 1610; + * @return Whether the oneof1610 field is set. + */ + @java.lang.Override + public boolean hasOneof1610() { + return hugeOneofCase_ == 1610; + } /** * int32 oneof_1610 = 1610; * @return The oneof1610. */ + @java.lang.Override public int getOneof1610() { if (hugeOneofCase_ == 1610) { return (java.lang.Integer) hugeOneof_; @@ -190980,10 +208483,19 @@ public int getOneof1610() { } public static final int ONEOF_1611_FIELD_NUMBER = 1611; + /** + * int32 oneof_1611 = 1611; + * @return Whether the oneof1611 field is set. + */ + @java.lang.Override + public boolean hasOneof1611() { + return hugeOneofCase_ == 1611; + } /** * int32 oneof_1611 = 1611; * @return The oneof1611. */ + @java.lang.Override public int getOneof1611() { if (hugeOneofCase_ == 1611) { return (java.lang.Integer) hugeOneof_; @@ -190992,10 +208504,19 @@ public int getOneof1611() { } public static final int ONEOF_1612_FIELD_NUMBER = 1612; + /** + * int32 oneof_1612 = 1612; + * @return Whether the oneof1612 field is set. + */ + @java.lang.Override + public boolean hasOneof1612() { + return hugeOneofCase_ == 1612; + } /** * int32 oneof_1612 = 1612; * @return The oneof1612. */ + @java.lang.Override public int getOneof1612() { if (hugeOneofCase_ == 1612) { return (java.lang.Integer) hugeOneof_; @@ -191004,10 +208525,19 @@ public int getOneof1612() { } public static final int ONEOF_1613_FIELD_NUMBER = 1613; + /** + * int32 oneof_1613 = 1613; + * @return Whether the oneof1613 field is set. + */ + @java.lang.Override + public boolean hasOneof1613() { + return hugeOneofCase_ == 1613; + } /** * int32 oneof_1613 = 1613; * @return The oneof1613. */ + @java.lang.Override public int getOneof1613() { if (hugeOneofCase_ == 1613) { return (java.lang.Integer) hugeOneof_; @@ -191016,10 +208546,19 @@ public int getOneof1613() { } public static final int ONEOF_1614_FIELD_NUMBER = 1614; + /** + * int32 oneof_1614 = 1614; + * @return Whether the oneof1614 field is set. + */ + @java.lang.Override + public boolean hasOneof1614() { + return hugeOneofCase_ == 1614; + } /** * int32 oneof_1614 = 1614; * @return The oneof1614. */ + @java.lang.Override public int getOneof1614() { if (hugeOneofCase_ == 1614) { return (java.lang.Integer) hugeOneof_; @@ -191028,10 +208567,19 @@ public int getOneof1614() { } public static final int ONEOF_1615_FIELD_NUMBER = 1615; + /** + * int32 oneof_1615 = 1615; + * @return Whether the oneof1615 field is set. + */ + @java.lang.Override + public boolean hasOneof1615() { + return hugeOneofCase_ == 1615; + } /** * int32 oneof_1615 = 1615; * @return The oneof1615. */ + @java.lang.Override public int getOneof1615() { if (hugeOneofCase_ == 1615) { return (java.lang.Integer) hugeOneof_; @@ -191040,10 +208588,19 @@ public int getOneof1615() { } public static final int ONEOF_1616_FIELD_NUMBER = 1616; + /** + * int32 oneof_1616 = 1616; + * @return Whether the oneof1616 field is set. + */ + @java.lang.Override + public boolean hasOneof1616() { + return hugeOneofCase_ == 1616; + } /** * int32 oneof_1616 = 1616; * @return The oneof1616. */ + @java.lang.Override public int getOneof1616() { if (hugeOneofCase_ == 1616) { return (java.lang.Integer) hugeOneof_; @@ -191052,10 +208609,19 @@ public int getOneof1616() { } public static final int ONEOF_1617_FIELD_NUMBER = 1617; + /** + * int32 oneof_1617 = 1617; + * @return Whether the oneof1617 field is set. + */ + @java.lang.Override + public boolean hasOneof1617() { + return hugeOneofCase_ == 1617; + } /** * int32 oneof_1617 = 1617; * @return The oneof1617. */ + @java.lang.Override public int getOneof1617() { if (hugeOneofCase_ == 1617) { return (java.lang.Integer) hugeOneof_; @@ -191064,10 +208630,19 @@ public int getOneof1617() { } public static final int ONEOF_1618_FIELD_NUMBER = 1618; + /** + * int32 oneof_1618 = 1618; + * @return Whether the oneof1618 field is set. + */ + @java.lang.Override + public boolean hasOneof1618() { + return hugeOneofCase_ == 1618; + } /** * int32 oneof_1618 = 1618; * @return The oneof1618. */ + @java.lang.Override public int getOneof1618() { if (hugeOneofCase_ == 1618) { return (java.lang.Integer) hugeOneof_; @@ -191076,10 +208651,19 @@ public int getOneof1618() { } public static final int ONEOF_1619_FIELD_NUMBER = 1619; + /** + * int32 oneof_1619 = 1619; + * @return Whether the oneof1619 field is set. + */ + @java.lang.Override + public boolean hasOneof1619() { + return hugeOneofCase_ == 1619; + } /** * int32 oneof_1619 = 1619; * @return The oneof1619. */ + @java.lang.Override public int getOneof1619() { if (hugeOneofCase_ == 1619) { return (java.lang.Integer) hugeOneof_; @@ -191088,10 +208672,19 @@ public int getOneof1619() { } public static final int ONEOF_1620_FIELD_NUMBER = 1620; + /** + * int32 oneof_1620 = 1620; + * @return Whether the oneof1620 field is set. + */ + @java.lang.Override + public boolean hasOneof1620() { + return hugeOneofCase_ == 1620; + } /** * int32 oneof_1620 = 1620; * @return The oneof1620. */ + @java.lang.Override public int getOneof1620() { if (hugeOneofCase_ == 1620) { return (java.lang.Integer) hugeOneof_; @@ -191100,10 +208693,19 @@ public int getOneof1620() { } public static final int ONEOF_1621_FIELD_NUMBER = 1621; + /** + * int32 oneof_1621 = 1621; + * @return Whether the oneof1621 field is set. + */ + @java.lang.Override + public boolean hasOneof1621() { + return hugeOneofCase_ == 1621; + } /** * int32 oneof_1621 = 1621; * @return The oneof1621. */ + @java.lang.Override public int getOneof1621() { if (hugeOneofCase_ == 1621) { return (java.lang.Integer) hugeOneof_; @@ -191112,10 +208714,19 @@ public int getOneof1621() { } public static final int ONEOF_1622_FIELD_NUMBER = 1622; + /** + * int32 oneof_1622 = 1622; + * @return Whether the oneof1622 field is set. + */ + @java.lang.Override + public boolean hasOneof1622() { + return hugeOneofCase_ == 1622; + } /** * int32 oneof_1622 = 1622; * @return The oneof1622. */ + @java.lang.Override public int getOneof1622() { if (hugeOneofCase_ == 1622) { return (java.lang.Integer) hugeOneof_; @@ -191124,10 +208735,19 @@ public int getOneof1622() { } public static final int ONEOF_1623_FIELD_NUMBER = 1623; + /** + * int32 oneof_1623 = 1623; + * @return Whether the oneof1623 field is set. + */ + @java.lang.Override + public boolean hasOneof1623() { + return hugeOneofCase_ == 1623; + } /** * int32 oneof_1623 = 1623; * @return The oneof1623. */ + @java.lang.Override public int getOneof1623() { if (hugeOneofCase_ == 1623) { return (java.lang.Integer) hugeOneof_; @@ -191136,10 +208756,19 @@ public int getOneof1623() { } public static final int ONEOF_1624_FIELD_NUMBER = 1624; + /** + * int32 oneof_1624 = 1624; + * @return Whether the oneof1624 field is set. + */ + @java.lang.Override + public boolean hasOneof1624() { + return hugeOneofCase_ == 1624; + } /** * int32 oneof_1624 = 1624; * @return The oneof1624. */ + @java.lang.Override public int getOneof1624() { if (hugeOneofCase_ == 1624) { return (java.lang.Integer) hugeOneof_; @@ -191148,10 +208777,19 @@ public int getOneof1624() { } public static final int ONEOF_1625_FIELD_NUMBER = 1625; + /** + * int32 oneof_1625 = 1625; + * @return Whether the oneof1625 field is set. + */ + @java.lang.Override + public boolean hasOneof1625() { + return hugeOneofCase_ == 1625; + } /** * int32 oneof_1625 = 1625; * @return The oneof1625. */ + @java.lang.Override public int getOneof1625() { if (hugeOneofCase_ == 1625) { return (java.lang.Integer) hugeOneof_; @@ -191160,10 +208798,19 @@ public int getOneof1625() { } public static final int ONEOF_1626_FIELD_NUMBER = 1626; + /** + * int32 oneof_1626 = 1626; + * @return Whether the oneof1626 field is set. + */ + @java.lang.Override + public boolean hasOneof1626() { + return hugeOneofCase_ == 1626; + } /** * int32 oneof_1626 = 1626; * @return The oneof1626. */ + @java.lang.Override public int getOneof1626() { if (hugeOneofCase_ == 1626) { return (java.lang.Integer) hugeOneof_; @@ -191172,10 +208819,19 @@ public int getOneof1626() { } public static final int ONEOF_1627_FIELD_NUMBER = 1627; + /** + * int32 oneof_1627 = 1627; + * @return Whether the oneof1627 field is set. + */ + @java.lang.Override + public boolean hasOneof1627() { + return hugeOneofCase_ == 1627; + } /** * int32 oneof_1627 = 1627; * @return The oneof1627. */ + @java.lang.Override public int getOneof1627() { if (hugeOneofCase_ == 1627) { return (java.lang.Integer) hugeOneof_; @@ -191184,10 +208840,19 @@ public int getOneof1627() { } public static final int ONEOF_1628_FIELD_NUMBER = 1628; + /** + * int32 oneof_1628 = 1628; + * @return Whether the oneof1628 field is set. + */ + @java.lang.Override + public boolean hasOneof1628() { + return hugeOneofCase_ == 1628; + } /** * int32 oneof_1628 = 1628; * @return The oneof1628. */ + @java.lang.Override public int getOneof1628() { if (hugeOneofCase_ == 1628) { return (java.lang.Integer) hugeOneof_; @@ -191196,10 +208861,19 @@ public int getOneof1628() { } public static final int ONEOF_1629_FIELD_NUMBER = 1629; + /** + * int32 oneof_1629 = 1629; + * @return Whether the oneof1629 field is set. + */ + @java.lang.Override + public boolean hasOneof1629() { + return hugeOneofCase_ == 1629; + } /** * int32 oneof_1629 = 1629; * @return The oneof1629. */ + @java.lang.Override public int getOneof1629() { if (hugeOneofCase_ == 1629) { return (java.lang.Integer) hugeOneof_; @@ -191208,10 +208882,19 @@ public int getOneof1629() { } public static final int ONEOF_1630_FIELD_NUMBER = 1630; + /** + * int32 oneof_1630 = 1630; + * @return Whether the oneof1630 field is set. + */ + @java.lang.Override + public boolean hasOneof1630() { + return hugeOneofCase_ == 1630; + } /** * int32 oneof_1630 = 1630; * @return The oneof1630. */ + @java.lang.Override public int getOneof1630() { if (hugeOneofCase_ == 1630) { return (java.lang.Integer) hugeOneof_; @@ -191220,10 +208903,19 @@ public int getOneof1630() { } public static final int ONEOF_1631_FIELD_NUMBER = 1631; + /** + * int32 oneof_1631 = 1631; + * @return Whether the oneof1631 field is set. + */ + @java.lang.Override + public boolean hasOneof1631() { + return hugeOneofCase_ == 1631; + } /** * int32 oneof_1631 = 1631; * @return The oneof1631. */ + @java.lang.Override public int getOneof1631() { if (hugeOneofCase_ == 1631) { return (java.lang.Integer) hugeOneof_; @@ -191232,10 +208924,19 @@ public int getOneof1631() { } public static final int ONEOF_1632_FIELD_NUMBER = 1632; + /** + * int32 oneof_1632 = 1632; + * @return Whether the oneof1632 field is set. + */ + @java.lang.Override + public boolean hasOneof1632() { + return hugeOneofCase_ == 1632; + } /** * int32 oneof_1632 = 1632; * @return The oneof1632. */ + @java.lang.Override public int getOneof1632() { if (hugeOneofCase_ == 1632) { return (java.lang.Integer) hugeOneof_; @@ -191244,10 +208945,19 @@ public int getOneof1632() { } public static final int ONEOF_1633_FIELD_NUMBER = 1633; + /** + * int32 oneof_1633 = 1633; + * @return Whether the oneof1633 field is set. + */ + @java.lang.Override + public boolean hasOneof1633() { + return hugeOneofCase_ == 1633; + } /** * int32 oneof_1633 = 1633; * @return The oneof1633. */ + @java.lang.Override public int getOneof1633() { if (hugeOneofCase_ == 1633) { return (java.lang.Integer) hugeOneof_; @@ -191256,10 +208966,19 @@ public int getOneof1633() { } public static final int ONEOF_1634_FIELD_NUMBER = 1634; + /** + * int32 oneof_1634 = 1634; + * @return Whether the oneof1634 field is set. + */ + @java.lang.Override + public boolean hasOneof1634() { + return hugeOneofCase_ == 1634; + } /** * int32 oneof_1634 = 1634; * @return The oneof1634. */ + @java.lang.Override public int getOneof1634() { if (hugeOneofCase_ == 1634) { return (java.lang.Integer) hugeOneof_; @@ -191268,10 +208987,19 @@ public int getOneof1634() { } public static final int ONEOF_1635_FIELD_NUMBER = 1635; + /** + * int32 oneof_1635 = 1635; + * @return Whether the oneof1635 field is set. + */ + @java.lang.Override + public boolean hasOneof1635() { + return hugeOneofCase_ == 1635; + } /** * int32 oneof_1635 = 1635; * @return The oneof1635. */ + @java.lang.Override public int getOneof1635() { if (hugeOneofCase_ == 1635) { return (java.lang.Integer) hugeOneof_; @@ -191280,10 +209008,19 @@ public int getOneof1635() { } public static final int ONEOF_1636_FIELD_NUMBER = 1636; + /** + * int32 oneof_1636 = 1636; + * @return Whether the oneof1636 field is set. + */ + @java.lang.Override + public boolean hasOneof1636() { + return hugeOneofCase_ == 1636; + } /** * int32 oneof_1636 = 1636; * @return The oneof1636. */ + @java.lang.Override public int getOneof1636() { if (hugeOneofCase_ == 1636) { return (java.lang.Integer) hugeOneof_; @@ -191292,10 +209029,19 @@ public int getOneof1636() { } public static final int ONEOF_1637_FIELD_NUMBER = 1637; + /** + * int32 oneof_1637 = 1637; + * @return Whether the oneof1637 field is set. + */ + @java.lang.Override + public boolean hasOneof1637() { + return hugeOneofCase_ == 1637; + } /** * int32 oneof_1637 = 1637; * @return The oneof1637. */ + @java.lang.Override public int getOneof1637() { if (hugeOneofCase_ == 1637) { return (java.lang.Integer) hugeOneof_; @@ -191304,10 +209050,19 @@ public int getOneof1637() { } public static final int ONEOF_1638_FIELD_NUMBER = 1638; + /** + * int32 oneof_1638 = 1638; + * @return Whether the oneof1638 field is set. + */ + @java.lang.Override + public boolean hasOneof1638() { + return hugeOneofCase_ == 1638; + } /** * int32 oneof_1638 = 1638; * @return The oneof1638. */ + @java.lang.Override public int getOneof1638() { if (hugeOneofCase_ == 1638) { return (java.lang.Integer) hugeOneof_; @@ -191316,10 +209071,19 @@ public int getOneof1638() { } public static final int ONEOF_1639_FIELD_NUMBER = 1639; + /** + * int32 oneof_1639 = 1639; + * @return Whether the oneof1639 field is set. + */ + @java.lang.Override + public boolean hasOneof1639() { + return hugeOneofCase_ == 1639; + } /** * int32 oneof_1639 = 1639; * @return The oneof1639. */ + @java.lang.Override public int getOneof1639() { if (hugeOneofCase_ == 1639) { return (java.lang.Integer) hugeOneof_; @@ -191328,10 +209092,19 @@ public int getOneof1639() { } public static final int ONEOF_1640_FIELD_NUMBER = 1640; + /** + * int32 oneof_1640 = 1640; + * @return Whether the oneof1640 field is set. + */ + @java.lang.Override + public boolean hasOneof1640() { + return hugeOneofCase_ == 1640; + } /** * int32 oneof_1640 = 1640; * @return The oneof1640. */ + @java.lang.Override public int getOneof1640() { if (hugeOneofCase_ == 1640) { return (java.lang.Integer) hugeOneof_; @@ -191340,10 +209113,19 @@ public int getOneof1640() { } public static final int ONEOF_1641_FIELD_NUMBER = 1641; + /** + * int32 oneof_1641 = 1641; + * @return Whether the oneof1641 field is set. + */ + @java.lang.Override + public boolean hasOneof1641() { + return hugeOneofCase_ == 1641; + } /** * int32 oneof_1641 = 1641; * @return The oneof1641. */ + @java.lang.Override public int getOneof1641() { if (hugeOneofCase_ == 1641) { return (java.lang.Integer) hugeOneof_; @@ -191352,10 +209134,19 @@ public int getOneof1641() { } public static final int ONEOF_1642_FIELD_NUMBER = 1642; + /** + * int32 oneof_1642 = 1642; + * @return Whether the oneof1642 field is set. + */ + @java.lang.Override + public boolean hasOneof1642() { + return hugeOneofCase_ == 1642; + } /** * int32 oneof_1642 = 1642; * @return The oneof1642. */ + @java.lang.Override public int getOneof1642() { if (hugeOneofCase_ == 1642) { return (java.lang.Integer) hugeOneof_; @@ -191364,10 +209155,19 @@ public int getOneof1642() { } public static final int ONEOF_1643_FIELD_NUMBER = 1643; + /** + * int32 oneof_1643 = 1643; + * @return Whether the oneof1643 field is set. + */ + @java.lang.Override + public boolean hasOneof1643() { + return hugeOneofCase_ == 1643; + } /** * int32 oneof_1643 = 1643; * @return The oneof1643. */ + @java.lang.Override public int getOneof1643() { if (hugeOneofCase_ == 1643) { return (java.lang.Integer) hugeOneof_; @@ -191376,10 +209176,19 @@ public int getOneof1643() { } public static final int ONEOF_1644_FIELD_NUMBER = 1644; + /** + * int32 oneof_1644 = 1644; + * @return Whether the oneof1644 field is set. + */ + @java.lang.Override + public boolean hasOneof1644() { + return hugeOneofCase_ == 1644; + } /** * int32 oneof_1644 = 1644; * @return The oneof1644. */ + @java.lang.Override public int getOneof1644() { if (hugeOneofCase_ == 1644) { return (java.lang.Integer) hugeOneof_; @@ -191388,10 +209197,19 @@ public int getOneof1644() { } public static final int ONEOF_1645_FIELD_NUMBER = 1645; + /** + * int32 oneof_1645 = 1645; + * @return Whether the oneof1645 field is set. + */ + @java.lang.Override + public boolean hasOneof1645() { + return hugeOneofCase_ == 1645; + } /** * int32 oneof_1645 = 1645; * @return The oneof1645. */ + @java.lang.Override public int getOneof1645() { if (hugeOneofCase_ == 1645) { return (java.lang.Integer) hugeOneof_; @@ -191400,10 +209218,19 @@ public int getOneof1645() { } public static final int ONEOF_1646_FIELD_NUMBER = 1646; + /** + * int32 oneof_1646 = 1646; + * @return Whether the oneof1646 field is set. + */ + @java.lang.Override + public boolean hasOneof1646() { + return hugeOneofCase_ == 1646; + } /** * int32 oneof_1646 = 1646; * @return The oneof1646. */ + @java.lang.Override public int getOneof1646() { if (hugeOneofCase_ == 1646) { return (java.lang.Integer) hugeOneof_; @@ -191412,10 +209239,19 @@ public int getOneof1646() { } public static final int ONEOF_1647_FIELD_NUMBER = 1647; + /** + * int32 oneof_1647 = 1647; + * @return Whether the oneof1647 field is set. + */ + @java.lang.Override + public boolean hasOneof1647() { + return hugeOneofCase_ == 1647; + } /** * int32 oneof_1647 = 1647; * @return The oneof1647. */ + @java.lang.Override public int getOneof1647() { if (hugeOneofCase_ == 1647) { return (java.lang.Integer) hugeOneof_; @@ -191424,10 +209260,19 @@ public int getOneof1647() { } public static final int ONEOF_1648_FIELD_NUMBER = 1648; + /** + * int32 oneof_1648 = 1648; + * @return Whether the oneof1648 field is set. + */ + @java.lang.Override + public boolean hasOneof1648() { + return hugeOneofCase_ == 1648; + } /** * int32 oneof_1648 = 1648; * @return The oneof1648. */ + @java.lang.Override public int getOneof1648() { if (hugeOneofCase_ == 1648) { return (java.lang.Integer) hugeOneof_; @@ -191436,10 +209281,19 @@ public int getOneof1648() { } public static final int ONEOF_1649_FIELD_NUMBER = 1649; + /** + * int32 oneof_1649 = 1649; + * @return Whether the oneof1649 field is set. + */ + @java.lang.Override + public boolean hasOneof1649() { + return hugeOneofCase_ == 1649; + } /** * int32 oneof_1649 = 1649; * @return The oneof1649. */ + @java.lang.Override public int getOneof1649() { if (hugeOneofCase_ == 1649) { return (java.lang.Integer) hugeOneof_; @@ -191448,10 +209302,19 @@ public int getOneof1649() { } public static final int ONEOF_1650_FIELD_NUMBER = 1650; + /** + * int32 oneof_1650 = 1650; + * @return Whether the oneof1650 field is set. + */ + @java.lang.Override + public boolean hasOneof1650() { + return hugeOneofCase_ == 1650; + } /** * int32 oneof_1650 = 1650; * @return The oneof1650. */ + @java.lang.Override public int getOneof1650() { if (hugeOneofCase_ == 1650) { return (java.lang.Integer) hugeOneof_; @@ -191460,10 +209323,19 @@ public int getOneof1650() { } public static final int ONEOF_1651_FIELD_NUMBER = 1651; + /** + * int32 oneof_1651 = 1651; + * @return Whether the oneof1651 field is set. + */ + @java.lang.Override + public boolean hasOneof1651() { + return hugeOneofCase_ == 1651; + } /** * int32 oneof_1651 = 1651; * @return The oneof1651. */ + @java.lang.Override public int getOneof1651() { if (hugeOneofCase_ == 1651) { return (java.lang.Integer) hugeOneof_; @@ -191472,10 +209344,19 @@ public int getOneof1651() { } public static final int ONEOF_1652_FIELD_NUMBER = 1652; + /** + * int32 oneof_1652 = 1652; + * @return Whether the oneof1652 field is set. + */ + @java.lang.Override + public boolean hasOneof1652() { + return hugeOneofCase_ == 1652; + } /** * int32 oneof_1652 = 1652; * @return The oneof1652. */ + @java.lang.Override public int getOneof1652() { if (hugeOneofCase_ == 1652) { return (java.lang.Integer) hugeOneof_; @@ -191484,10 +209365,19 @@ public int getOneof1652() { } public static final int ONEOF_1653_FIELD_NUMBER = 1653; + /** + * int32 oneof_1653 = 1653; + * @return Whether the oneof1653 field is set. + */ + @java.lang.Override + public boolean hasOneof1653() { + return hugeOneofCase_ == 1653; + } /** * int32 oneof_1653 = 1653; * @return The oneof1653. */ + @java.lang.Override public int getOneof1653() { if (hugeOneofCase_ == 1653) { return (java.lang.Integer) hugeOneof_; @@ -191496,10 +209386,19 @@ public int getOneof1653() { } public static final int ONEOF_1654_FIELD_NUMBER = 1654; + /** + * int32 oneof_1654 = 1654; + * @return Whether the oneof1654 field is set. + */ + @java.lang.Override + public boolean hasOneof1654() { + return hugeOneofCase_ == 1654; + } /** * int32 oneof_1654 = 1654; * @return The oneof1654. */ + @java.lang.Override public int getOneof1654() { if (hugeOneofCase_ == 1654) { return (java.lang.Integer) hugeOneof_; @@ -191508,10 +209407,19 @@ public int getOneof1654() { } public static final int ONEOF_1655_FIELD_NUMBER = 1655; + /** + * int32 oneof_1655 = 1655; + * @return Whether the oneof1655 field is set. + */ + @java.lang.Override + public boolean hasOneof1655() { + return hugeOneofCase_ == 1655; + } /** * int32 oneof_1655 = 1655; * @return The oneof1655. */ + @java.lang.Override public int getOneof1655() { if (hugeOneofCase_ == 1655) { return (java.lang.Integer) hugeOneof_; @@ -191520,10 +209428,19 @@ public int getOneof1655() { } public static final int ONEOF_1656_FIELD_NUMBER = 1656; + /** + * int32 oneof_1656 = 1656; + * @return Whether the oneof1656 field is set. + */ + @java.lang.Override + public boolean hasOneof1656() { + return hugeOneofCase_ == 1656; + } /** * int32 oneof_1656 = 1656; * @return The oneof1656. */ + @java.lang.Override public int getOneof1656() { if (hugeOneofCase_ == 1656) { return (java.lang.Integer) hugeOneof_; @@ -191532,10 +209449,19 @@ public int getOneof1656() { } public static final int ONEOF_1657_FIELD_NUMBER = 1657; + /** + * int32 oneof_1657 = 1657; + * @return Whether the oneof1657 field is set. + */ + @java.lang.Override + public boolean hasOneof1657() { + return hugeOneofCase_ == 1657; + } /** * int32 oneof_1657 = 1657; * @return The oneof1657. */ + @java.lang.Override public int getOneof1657() { if (hugeOneofCase_ == 1657) { return (java.lang.Integer) hugeOneof_; @@ -191544,10 +209470,19 @@ public int getOneof1657() { } public static final int ONEOF_1658_FIELD_NUMBER = 1658; + /** + * int32 oneof_1658 = 1658; + * @return Whether the oneof1658 field is set. + */ + @java.lang.Override + public boolean hasOneof1658() { + return hugeOneofCase_ == 1658; + } /** * int32 oneof_1658 = 1658; * @return The oneof1658. */ + @java.lang.Override public int getOneof1658() { if (hugeOneofCase_ == 1658) { return (java.lang.Integer) hugeOneof_; @@ -191556,10 +209491,19 @@ public int getOneof1658() { } public static final int ONEOF_1659_FIELD_NUMBER = 1659; + /** + * int32 oneof_1659 = 1659; + * @return Whether the oneof1659 field is set. + */ + @java.lang.Override + public boolean hasOneof1659() { + return hugeOneofCase_ == 1659; + } /** * int32 oneof_1659 = 1659; * @return The oneof1659. */ + @java.lang.Override public int getOneof1659() { if (hugeOneofCase_ == 1659) { return (java.lang.Integer) hugeOneof_; @@ -191568,10 +209512,19 @@ public int getOneof1659() { } public static final int ONEOF_1660_FIELD_NUMBER = 1660; + /** + * int32 oneof_1660 = 1660; + * @return Whether the oneof1660 field is set. + */ + @java.lang.Override + public boolean hasOneof1660() { + return hugeOneofCase_ == 1660; + } /** * int32 oneof_1660 = 1660; * @return The oneof1660. */ + @java.lang.Override public int getOneof1660() { if (hugeOneofCase_ == 1660) { return (java.lang.Integer) hugeOneof_; @@ -191580,10 +209533,19 @@ public int getOneof1660() { } public static final int ONEOF_1661_FIELD_NUMBER = 1661; + /** + * int32 oneof_1661 = 1661; + * @return Whether the oneof1661 field is set. + */ + @java.lang.Override + public boolean hasOneof1661() { + return hugeOneofCase_ == 1661; + } /** * int32 oneof_1661 = 1661; * @return The oneof1661. */ + @java.lang.Override public int getOneof1661() { if (hugeOneofCase_ == 1661) { return (java.lang.Integer) hugeOneof_; @@ -191592,10 +209554,19 @@ public int getOneof1661() { } public static final int ONEOF_1662_FIELD_NUMBER = 1662; + /** + * int32 oneof_1662 = 1662; + * @return Whether the oneof1662 field is set. + */ + @java.lang.Override + public boolean hasOneof1662() { + return hugeOneofCase_ == 1662; + } /** * int32 oneof_1662 = 1662; * @return The oneof1662. */ + @java.lang.Override public int getOneof1662() { if (hugeOneofCase_ == 1662) { return (java.lang.Integer) hugeOneof_; @@ -191604,10 +209575,19 @@ public int getOneof1662() { } public static final int ONEOF_1663_FIELD_NUMBER = 1663; + /** + * int32 oneof_1663 = 1663; + * @return Whether the oneof1663 field is set. + */ + @java.lang.Override + public boolean hasOneof1663() { + return hugeOneofCase_ == 1663; + } /** * int32 oneof_1663 = 1663; * @return The oneof1663. */ + @java.lang.Override public int getOneof1663() { if (hugeOneofCase_ == 1663) { return (java.lang.Integer) hugeOneof_; @@ -191616,10 +209596,19 @@ public int getOneof1663() { } public static final int ONEOF_1664_FIELD_NUMBER = 1664; + /** + * int32 oneof_1664 = 1664; + * @return Whether the oneof1664 field is set. + */ + @java.lang.Override + public boolean hasOneof1664() { + return hugeOneofCase_ == 1664; + } /** * int32 oneof_1664 = 1664; * @return The oneof1664. */ + @java.lang.Override public int getOneof1664() { if (hugeOneofCase_ == 1664) { return (java.lang.Integer) hugeOneof_; @@ -191628,10 +209617,19 @@ public int getOneof1664() { } public static final int ONEOF_1665_FIELD_NUMBER = 1665; + /** + * int32 oneof_1665 = 1665; + * @return Whether the oneof1665 field is set. + */ + @java.lang.Override + public boolean hasOneof1665() { + return hugeOneofCase_ == 1665; + } /** * int32 oneof_1665 = 1665; * @return The oneof1665. */ + @java.lang.Override public int getOneof1665() { if (hugeOneofCase_ == 1665) { return (java.lang.Integer) hugeOneof_; @@ -191640,10 +209638,19 @@ public int getOneof1665() { } public static final int ONEOF_1666_FIELD_NUMBER = 1666; + /** + * int32 oneof_1666 = 1666; + * @return Whether the oneof1666 field is set. + */ + @java.lang.Override + public boolean hasOneof1666() { + return hugeOneofCase_ == 1666; + } /** * int32 oneof_1666 = 1666; * @return The oneof1666. */ + @java.lang.Override public int getOneof1666() { if (hugeOneofCase_ == 1666) { return (java.lang.Integer) hugeOneof_; @@ -191652,10 +209659,19 @@ public int getOneof1666() { } public static final int ONEOF_1667_FIELD_NUMBER = 1667; + /** + * int32 oneof_1667 = 1667; + * @return Whether the oneof1667 field is set. + */ + @java.lang.Override + public boolean hasOneof1667() { + return hugeOneofCase_ == 1667; + } /** * int32 oneof_1667 = 1667; * @return The oneof1667. */ + @java.lang.Override public int getOneof1667() { if (hugeOneofCase_ == 1667) { return (java.lang.Integer) hugeOneof_; @@ -191664,10 +209680,19 @@ public int getOneof1667() { } public static final int ONEOF_1668_FIELD_NUMBER = 1668; + /** + * int32 oneof_1668 = 1668; + * @return Whether the oneof1668 field is set. + */ + @java.lang.Override + public boolean hasOneof1668() { + return hugeOneofCase_ == 1668; + } /** * int32 oneof_1668 = 1668; * @return The oneof1668. */ + @java.lang.Override public int getOneof1668() { if (hugeOneofCase_ == 1668) { return (java.lang.Integer) hugeOneof_; @@ -191676,10 +209701,19 @@ public int getOneof1668() { } public static final int ONEOF_1669_FIELD_NUMBER = 1669; + /** + * int32 oneof_1669 = 1669; + * @return Whether the oneof1669 field is set. + */ + @java.lang.Override + public boolean hasOneof1669() { + return hugeOneofCase_ == 1669; + } /** * int32 oneof_1669 = 1669; * @return The oneof1669. */ + @java.lang.Override public int getOneof1669() { if (hugeOneofCase_ == 1669) { return (java.lang.Integer) hugeOneof_; @@ -191688,22 +209722,40 @@ public int getOneof1669() { } public static final int ONEOF_1670_FIELD_NUMBER = 1670; + /** + * int32 oneof_1670 = 1670; + * @return Whether the oneof1670 field is set. + */ + @java.lang.Override + public boolean hasOneof1670() { + return hugeOneofCase_ == 1670; + } /** * int32 oneof_1670 = 1670; * @return The oneof1670. */ + @java.lang.Override public int getOneof1670() { if (hugeOneofCase_ == 1670) { return (java.lang.Integer) hugeOneof_; } return 0; } - - public static final int ONEOF_1671_FIELD_NUMBER = 1671; + + public static final int ONEOF_1671_FIELD_NUMBER = 1671; + /** + * int32 oneof_1671 = 1671; + * @return Whether the oneof1671 field is set. + */ + @java.lang.Override + public boolean hasOneof1671() { + return hugeOneofCase_ == 1671; + } /** * int32 oneof_1671 = 1671; * @return The oneof1671. */ + @java.lang.Override public int getOneof1671() { if (hugeOneofCase_ == 1671) { return (java.lang.Integer) hugeOneof_; @@ -191712,10 +209764,19 @@ public int getOneof1671() { } public static final int ONEOF_1672_FIELD_NUMBER = 1672; + /** + * int32 oneof_1672 = 1672; + * @return Whether the oneof1672 field is set. + */ + @java.lang.Override + public boolean hasOneof1672() { + return hugeOneofCase_ == 1672; + } /** * int32 oneof_1672 = 1672; * @return The oneof1672. */ + @java.lang.Override public int getOneof1672() { if (hugeOneofCase_ == 1672) { return (java.lang.Integer) hugeOneof_; @@ -191724,10 +209785,19 @@ public int getOneof1672() { } public static final int ONEOF_1673_FIELD_NUMBER = 1673; + /** + * int32 oneof_1673 = 1673; + * @return Whether the oneof1673 field is set. + */ + @java.lang.Override + public boolean hasOneof1673() { + return hugeOneofCase_ == 1673; + } /** * int32 oneof_1673 = 1673; * @return The oneof1673. */ + @java.lang.Override public int getOneof1673() { if (hugeOneofCase_ == 1673) { return (java.lang.Integer) hugeOneof_; @@ -191736,10 +209806,19 @@ public int getOneof1673() { } public static final int ONEOF_1674_FIELD_NUMBER = 1674; + /** + * int32 oneof_1674 = 1674; + * @return Whether the oneof1674 field is set. + */ + @java.lang.Override + public boolean hasOneof1674() { + return hugeOneofCase_ == 1674; + } /** * int32 oneof_1674 = 1674; * @return The oneof1674. */ + @java.lang.Override public int getOneof1674() { if (hugeOneofCase_ == 1674) { return (java.lang.Integer) hugeOneof_; @@ -191748,10 +209827,19 @@ public int getOneof1674() { } public static final int ONEOF_1675_FIELD_NUMBER = 1675; + /** + * int32 oneof_1675 = 1675; + * @return Whether the oneof1675 field is set. + */ + @java.lang.Override + public boolean hasOneof1675() { + return hugeOneofCase_ == 1675; + } /** * int32 oneof_1675 = 1675; * @return The oneof1675. */ + @java.lang.Override public int getOneof1675() { if (hugeOneofCase_ == 1675) { return (java.lang.Integer) hugeOneof_; @@ -191760,10 +209848,19 @@ public int getOneof1675() { } public static final int ONEOF_1676_FIELD_NUMBER = 1676; + /** + * int32 oneof_1676 = 1676; + * @return Whether the oneof1676 field is set. + */ + @java.lang.Override + public boolean hasOneof1676() { + return hugeOneofCase_ == 1676; + } /** * int32 oneof_1676 = 1676; * @return The oneof1676. */ + @java.lang.Override public int getOneof1676() { if (hugeOneofCase_ == 1676) { return (java.lang.Integer) hugeOneof_; @@ -191772,10 +209869,19 @@ public int getOneof1676() { } public static final int ONEOF_1677_FIELD_NUMBER = 1677; + /** + * int32 oneof_1677 = 1677; + * @return Whether the oneof1677 field is set. + */ + @java.lang.Override + public boolean hasOneof1677() { + return hugeOneofCase_ == 1677; + } /** * int32 oneof_1677 = 1677; * @return The oneof1677. */ + @java.lang.Override public int getOneof1677() { if (hugeOneofCase_ == 1677) { return (java.lang.Integer) hugeOneof_; @@ -191784,10 +209890,19 @@ public int getOneof1677() { } public static final int ONEOF_1678_FIELD_NUMBER = 1678; + /** + * int32 oneof_1678 = 1678; + * @return Whether the oneof1678 field is set. + */ + @java.lang.Override + public boolean hasOneof1678() { + return hugeOneofCase_ == 1678; + } /** * int32 oneof_1678 = 1678; * @return The oneof1678. */ + @java.lang.Override public int getOneof1678() { if (hugeOneofCase_ == 1678) { return (java.lang.Integer) hugeOneof_; @@ -191796,10 +209911,19 @@ public int getOneof1678() { } public static final int ONEOF_1679_FIELD_NUMBER = 1679; + /** + * int32 oneof_1679 = 1679; + * @return Whether the oneof1679 field is set. + */ + @java.lang.Override + public boolean hasOneof1679() { + return hugeOneofCase_ == 1679; + } /** * int32 oneof_1679 = 1679; * @return The oneof1679. */ + @java.lang.Override public int getOneof1679() { if (hugeOneofCase_ == 1679) { return (java.lang.Integer) hugeOneof_; @@ -191808,10 +209932,19 @@ public int getOneof1679() { } public static final int ONEOF_1680_FIELD_NUMBER = 1680; + /** + * int32 oneof_1680 = 1680; + * @return Whether the oneof1680 field is set. + */ + @java.lang.Override + public boolean hasOneof1680() { + return hugeOneofCase_ == 1680; + } /** * int32 oneof_1680 = 1680; * @return The oneof1680. */ + @java.lang.Override public int getOneof1680() { if (hugeOneofCase_ == 1680) { return (java.lang.Integer) hugeOneof_; @@ -191820,10 +209953,19 @@ public int getOneof1680() { } public static final int ONEOF_1681_FIELD_NUMBER = 1681; + /** + * int32 oneof_1681 = 1681; + * @return Whether the oneof1681 field is set. + */ + @java.lang.Override + public boolean hasOneof1681() { + return hugeOneofCase_ == 1681; + } /** * int32 oneof_1681 = 1681; * @return The oneof1681. */ + @java.lang.Override public int getOneof1681() { if (hugeOneofCase_ == 1681) { return (java.lang.Integer) hugeOneof_; @@ -191832,10 +209974,19 @@ public int getOneof1681() { } public static final int ONEOF_1682_FIELD_NUMBER = 1682; + /** + * int32 oneof_1682 = 1682; + * @return Whether the oneof1682 field is set. + */ + @java.lang.Override + public boolean hasOneof1682() { + return hugeOneofCase_ == 1682; + } /** * int32 oneof_1682 = 1682; * @return The oneof1682. */ + @java.lang.Override public int getOneof1682() { if (hugeOneofCase_ == 1682) { return (java.lang.Integer) hugeOneof_; @@ -191844,10 +209995,19 @@ public int getOneof1682() { } public static final int ONEOF_1683_FIELD_NUMBER = 1683; + /** + * int32 oneof_1683 = 1683; + * @return Whether the oneof1683 field is set. + */ + @java.lang.Override + public boolean hasOneof1683() { + return hugeOneofCase_ == 1683; + } /** * int32 oneof_1683 = 1683; * @return The oneof1683. */ + @java.lang.Override public int getOneof1683() { if (hugeOneofCase_ == 1683) { return (java.lang.Integer) hugeOneof_; @@ -191856,10 +210016,19 @@ public int getOneof1683() { } public static final int ONEOF_1684_FIELD_NUMBER = 1684; + /** + * int32 oneof_1684 = 1684; + * @return Whether the oneof1684 field is set. + */ + @java.lang.Override + public boolean hasOneof1684() { + return hugeOneofCase_ == 1684; + } /** * int32 oneof_1684 = 1684; * @return The oneof1684. */ + @java.lang.Override public int getOneof1684() { if (hugeOneofCase_ == 1684) { return (java.lang.Integer) hugeOneof_; @@ -191868,10 +210037,19 @@ public int getOneof1684() { } public static final int ONEOF_1685_FIELD_NUMBER = 1685; + /** + * int32 oneof_1685 = 1685; + * @return Whether the oneof1685 field is set. + */ + @java.lang.Override + public boolean hasOneof1685() { + return hugeOneofCase_ == 1685; + } /** * int32 oneof_1685 = 1685; * @return The oneof1685. */ + @java.lang.Override public int getOneof1685() { if (hugeOneofCase_ == 1685) { return (java.lang.Integer) hugeOneof_; @@ -191880,10 +210058,19 @@ public int getOneof1685() { } public static final int ONEOF_1686_FIELD_NUMBER = 1686; + /** + * int32 oneof_1686 = 1686; + * @return Whether the oneof1686 field is set. + */ + @java.lang.Override + public boolean hasOneof1686() { + return hugeOneofCase_ == 1686; + } /** * int32 oneof_1686 = 1686; * @return The oneof1686. */ + @java.lang.Override public int getOneof1686() { if (hugeOneofCase_ == 1686) { return (java.lang.Integer) hugeOneof_; @@ -191892,10 +210079,19 @@ public int getOneof1686() { } public static final int ONEOF_1687_FIELD_NUMBER = 1687; + /** + * int32 oneof_1687 = 1687; + * @return Whether the oneof1687 field is set. + */ + @java.lang.Override + public boolean hasOneof1687() { + return hugeOneofCase_ == 1687; + } /** * int32 oneof_1687 = 1687; * @return The oneof1687. */ + @java.lang.Override public int getOneof1687() { if (hugeOneofCase_ == 1687) { return (java.lang.Integer) hugeOneof_; @@ -191904,10 +210100,19 @@ public int getOneof1687() { } public static final int ONEOF_1688_FIELD_NUMBER = 1688; + /** + * int32 oneof_1688 = 1688; + * @return Whether the oneof1688 field is set. + */ + @java.lang.Override + public boolean hasOneof1688() { + return hugeOneofCase_ == 1688; + } /** * int32 oneof_1688 = 1688; * @return The oneof1688. */ + @java.lang.Override public int getOneof1688() { if (hugeOneofCase_ == 1688) { return (java.lang.Integer) hugeOneof_; @@ -191916,10 +210121,19 @@ public int getOneof1688() { } public static final int ONEOF_1689_FIELD_NUMBER = 1689; + /** + * int32 oneof_1689 = 1689; + * @return Whether the oneof1689 field is set. + */ + @java.lang.Override + public boolean hasOneof1689() { + return hugeOneofCase_ == 1689; + } /** * int32 oneof_1689 = 1689; * @return The oneof1689. */ + @java.lang.Override public int getOneof1689() { if (hugeOneofCase_ == 1689) { return (java.lang.Integer) hugeOneof_; @@ -191928,10 +210142,19 @@ public int getOneof1689() { } public static final int ONEOF_1690_FIELD_NUMBER = 1690; + /** + * int32 oneof_1690 = 1690; + * @return Whether the oneof1690 field is set. + */ + @java.lang.Override + public boolean hasOneof1690() { + return hugeOneofCase_ == 1690; + } /** * int32 oneof_1690 = 1690; * @return The oneof1690. */ + @java.lang.Override public int getOneof1690() { if (hugeOneofCase_ == 1690) { return (java.lang.Integer) hugeOneof_; @@ -191940,10 +210163,19 @@ public int getOneof1690() { } public static final int ONEOF_1691_FIELD_NUMBER = 1691; + /** + * int32 oneof_1691 = 1691; + * @return Whether the oneof1691 field is set. + */ + @java.lang.Override + public boolean hasOneof1691() { + return hugeOneofCase_ == 1691; + } /** * int32 oneof_1691 = 1691; * @return The oneof1691. */ + @java.lang.Override public int getOneof1691() { if (hugeOneofCase_ == 1691) { return (java.lang.Integer) hugeOneof_; @@ -191952,10 +210184,19 @@ public int getOneof1691() { } public static final int ONEOF_1692_FIELD_NUMBER = 1692; + /** + * int32 oneof_1692 = 1692; + * @return Whether the oneof1692 field is set. + */ + @java.lang.Override + public boolean hasOneof1692() { + return hugeOneofCase_ == 1692; + } /** * int32 oneof_1692 = 1692; * @return The oneof1692. */ + @java.lang.Override public int getOneof1692() { if (hugeOneofCase_ == 1692) { return (java.lang.Integer) hugeOneof_; @@ -191964,10 +210205,19 @@ public int getOneof1692() { } public static final int ONEOF_1693_FIELD_NUMBER = 1693; + /** + * int32 oneof_1693 = 1693; + * @return Whether the oneof1693 field is set. + */ + @java.lang.Override + public boolean hasOneof1693() { + return hugeOneofCase_ == 1693; + } /** * int32 oneof_1693 = 1693; * @return The oneof1693. */ + @java.lang.Override public int getOneof1693() { if (hugeOneofCase_ == 1693) { return (java.lang.Integer) hugeOneof_; @@ -191976,10 +210226,19 @@ public int getOneof1693() { } public static final int ONEOF_1694_FIELD_NUMBER = 1694; + /** + * int32 oneof_1694 = 1694; + * @return Whether the oneof1694 field is set. + */ + @java.lang.Override + public boolean hasOneof1694() { + return hugeOneofCase_ == 1694; + } /** * int32 oneof_1694 = 1694; * @return The oneof1694. */ + @java.lang.Override public int getOneof1694() { if (hugeOneofCase_ == 1694) { return (java.lang.Integer) hugeOneof_; @@ -191988,10 +210247,19 @@ public int getOneof1694() { } public static final int ONEOF_1695_FIELD_NUMBER = 1695; + /** + * int32 oneof_1695 = 1695; + * @return Whether the oneof1695 field is set. + */ + @java.lang.Override + public boolean hasOneof1695() { + return hugeOneofCase_ == 1695; + } /** * int32 oneof_1695 = 1695; * @return The oneof1695. */ + @java.lang.Override public int getOneof1695() { if (hugeOneofCase_ == 1695) { return (java.lang.Integer) hugeOneof_; @@ -192000,10 +210268,19 @@ public int getOneof1695() { } public static final int ONEOF_1696_FIELD_NUMBER = 1696; + /** + * int32 oneof_1696 = 1696; + * @return Whether the oneof1696 field is set. + */ + @java.lang.Override + public boolean hasOneof1696() { + return hugeOneofCase_ == 1696; + } /** * int32 oneof_1696 = 1696; * @return The oneof1696. */ + @java.lang.Override public int getOneof1696() { if (hugeOneofCase_ == 1696) { return (java.lang.Integer) hugeOneof_; @@ -192012,10 +210289,19 @@ public int getOneof1696() { } public static final int ONEOF_1697_FIELD_NUMBER = 1697; + /** + * int32 oneof_1697 = 1697; + * @return Whether the oneof1697 field is set. + */ + @java.lang.Override + public boolean hasOneof1697() { + return hugeOneofCase_ == 1697; + } /** * int32 oneof_1697 = 1697; * @return The oneof1697. */ + @java.lang.Override public int getOneof1697() { if (hugeOneofCase_ == 1697) { return (java.lang.Integer) hugeOneof_; @@ -192024,10 +210310,19 @@ public int getOneof1697() { } public static final int ONEOF_1698_FIELD_NUMBER = 1698; + /** + * int32 oneof_1698 = 1698; + * @return Whether the oneof1698 field is set. + */ + @java.lang.Override + public boolean hasOneof1698() { + return hugeOneofCase_ == 1698; + } /** * int32 oneof_1698 = 1698; * @return The oneof1698. */ + @java.lang.Override public int getOneof1698() { if (hugeOneofCase_ == 1698) { return (java.lang.Integer) hugeOneof_; @@ -192036,10 +210331,19 @@ public int getOneof1698() { } public static final int ONEOF_1699_FIELD_NUMBER = 1699; + /** + * int32 oneof_1699 = 1699; + * @return Whether the oneof1699 field is set. + */ + @java.lang.Override + public boolean hasOneof1699() { + return hugeOneofCase_ == 1699; + } /** * int32 oneof_1699 = 1699; * @return The oneof1699. */ + @java.lang.Override public int getOneof1699() { if (hugeOneofCase_ == 1699) { return (java.lang.Integer) hugeOneof_; @@ -192048,10 +210352,19 @@ public int getOneof1699() { } public static final int ONEOF_1700_FIELD_NUMBER = 1700; + /** + * int32 oneof_1700 = 1700; + * @return Whether the oneof1700 field is set. + */ + @java.lang.Override + public boolean hasOneof1700() { + return hugeOneofCase_ == 1700; + } /** * int32 oneof_1700 = 1700; * @return The oneof1700. */ + @java.lang.Override public int getOneof1700() { if (hugeOneofCase_ == 1700) { return (java.lang.Integer) hugeOneof_; @@ -192060,10 +210373,19 @@ public int getOneof1700() { } public static final int ONEOF_1701_FIELD_NUMBER = 1701; + /** + * int32 oneof_1701 = 1701; + * @return Whether the oneof1701 field is set. + */ + @java.lang.Override + public boolean hasOneof1701() { + return hugeOneofCase_ == 1701; + } /** * int32 oneof_1701 = 1701; * @return The oneof1701. */ + @java.lang.Override public int getOneof1701() { if (hugeOneofCase_ == 1701) { return (java.lang.Integer) hugeOneof_; @@ -192072,10 +210394,19 @@ public int getOneof1701() { } public static final int ONEOF_1702_FIELD_NUMBER = 1702; + /** + * int32 oneof_1702 = 1702; + * @return Whether the oneof1702 field is set. + */ + @java.lang.Override + public boolean hasOneof1702() { + return hugeOneofCase_ == 1702; + } /** * int32 oneof_1702 = 1702; * @return The oneof1702. */ + @java.lang.Override public int getOneof1702() { if (hugeOneofCase_ == 1702) { return (java.lang.Integer) hugeOneof_; @@ -192084,10 +210415,19 @@ public int getOneof1702() { } public static final int ONEOF_1703_FIELD_NUMBER = 1703; + /** + * int32 oneof_1703 = 1703; + * @return Whether the oneof1703 field is set. + */ + @java.lang.Override + public boolean hasOneof1703() { + return hugeOneofCase_ == 1703; + } /** * int32 oneof_1703 = 1703; * @return The oneof1703. */ + @java.lang.Override public int getOneof1703() { if (hugeOneofCase_ == 1703) { return (java.lang.Integer) hugeOneof_; @@ -192096,10 +210436,19 @@ public int getOneof1703() { } public static final int ONEOF_1704_FIELD_NUMBER = 1704; + /** + * int32 oneof_1704 = 1704; + * @return Whether the oneof1704 field is set. + */ + @java.lang.Override + public boolean hasOneof1704() { + return hugeOneofCase_ == 1704; + } /** * int32 oneof_1704 = 1704; * @return The oneof1704. */ + @java.lang.Override public int getOneof1704() { if (hugeOneofCase_ == 1704) { return (java.lang.Integer) hugeOneof_; @@ -192108,10 +210457,19 @@ public int getOneof1704() { } public static final int ONEOF_1705_FIELD_NUMBER = 1705; + /** + * int32 oneof_1705 = 1705; + * @return Whether the oneof1705 field is set. + */ + @java.lang.Override + public boolean hasOneof1705() { + return hugeOneofCase_ == 1705; + } /** * int32 oneof_1705 = 1705; * @return The oneof1705. */ + @java.lang.Override public int getOneof1705() { if (hugeOneofCase_ == 1705) { return (java.lang.Integer) hugeOneof_; @@ -192120,10 +210478,19 @@ public int getOneof1705() { } public static final int ONEOF_1706_FIELD_NUMBER = 1706; + /** + * int32 oneof_1706 = 1706; + * @return Whether the oneof1706 field is set. + */ + @java.lang.Override + public boolean hasOneof1706() { + return hugeOneofCase_ == 1706; + } /** * int32 oneof_1706 = 1706; * @return The oneof1706. */ + @java.lang.Override public int getOneof1706() { if (hugeOneofCase_ == 1706) { return (java.lang.Integer) hugeOneof_; @@ -192132,10 +210499,19 @@ public int getOneof1706() { } public static final int ONEOF_1707_FIELD_NUMBER = 1707; + /** + * int32 oneof_1707 = 1707; + * @return Whether the oneof1707 field is set. + */ + @java.lang.Override + public boolean hasOneof1707() { + return hugeOneofCase_ == 1707; + } /** * int32 oneof_1707 = 1707; * @return The oneof1707. */ + @java.lang.Override public int getOneof1707() { if (hugeOneofCase_ == 1707) { return (java.lang.Integer) hugeOneof_; @@ -192144,10 +210520,19 @@ public int getOneof1707() { } public static final int ONEOF_1708_FIELD_NUMBER = 1708; + /** + * int32 oneof_1708 = 1708; + * @return Whether the oneof1708 field is set. + */ + @java.lang.Override + public boolean hasOneof1708() { + return hugeOneofCase_ == 1708; + } /** * int32 oneof_1708 = 1708; * @return The oneof1708. */ + @java.lang.Override public int getOneof1708() { if (hugeOneofCase_ == 1708) { return (java.lang.Integer) hugeOneof_; @@ -192156,10 +210541,19 @@ public int getOneof1708() { } public static final int ONEOF_1709_FIELD_NUMBER = 1709; + /** + * int32 oneof_1709 = 1709; + * @return Whether the oneof1709 field is set. + */ + @java.lang.Override + public boolean hasOneof1709() { + return hugeOneofCase_ == 1709; + } /** * int32 oneof_1709 = 1709; * @return The oneof1709. */ + @java.lang.Override public int getOneof1709() { if (hugeOneofCase_ == 1709) { return (java.lang.Integer) hugeOneof_; @@ -192168,10 +210562,19 @@ public int getOneof1709() { } public static final int ONEOF_1710_FIELD_NUMBER = 1710; + /** + * int32 oneof_1710 = 1710; + * @return Whether the oneof1710 field is set. + */ + @java.lang.Override + public boolean hasOneof1710() { + return hugeOneofCase_ == 1710; + } /** * int32 oneof_1710 = 1710; * @return The oneof1710. */ + @java.lang.Override public int getOneof1710() { if (hugeOneofCase_ == 1710) { return (java.lang.Integer) hugeOneof_; @@ -192180,10 +210583,19 @@ public int getOneof1710() { } public static final int ONEOF_1711_FIELD_NUMBER = 1711; + /** + * int32 oneof_1711 = 1711; + * @return Whether the oneof1711 field is set. + */ + @java.lang.Override + public boolean hasOneof1711() { + return hugeOneofCase_ == 1711; + } /** * int32 oneof_1711 = 1711; * @return The oneof1711. */ + @java.lang.Override public int getOneof1711() { if (hugeOneofCase_ == 1711) { return (java.lang.Integer) hugeOneof_; @@ -192192,10 +210604,19 @@ public int getOneof1711() { } public static final int ONEOF_1712_FIELD_NUMBER = 1712; + /** + * int32 oneof_1712 = 1712; + * @return Whether the oneof1712 field is set. + */ + @java.lang.Override + public boolean hasOneof1712() { + return hugeOneofCase_ == 1712; + } /** * int32 oneof_1712 = 1712; * @return The oneof1712. */ + @java.lang.Override public int getOneof1712() { if (hugeOneofCase_ == 1712) { return (java.lang.Integer) hugeOneof_; @@ -192204,10 +210625,19 @@ public int getOneof1712() { } public static final int ONEOF_1713_FIELD_NUMBER = 1713; + /** + * int32 oneof_1713 = 1713; + * @return Whether the oneof1713 field is set. + */ + @java.lang.Override + public boolean hasOneof1713() { + return hugeOneofCase_ == 1713; + } /** * int32 oneof_1713 = 1713; * @return The oneof1713. */ + @java.lang.Override public int getOneof1713() { if (hugeOneofCase_ == 1713) { return (java.lang.Integer) hugeOneof_; @@ -192216,10 +210646,19 @@ public int getOneof1713() { } public static final int ONEOF_1714_FIELD_NUMBER = 1714; + /** + * int32 oneof_1714 = 1714; + * @return Whether the oneof1714 field is set. + */ + @java.lang.Override + public boolean hasOneof1714() { + return hugeOneofCase_ == 1714; + } /** * int32 oneof_1714 = 1714; * @return The oneof1714. */ + @java.lang.Override public int getOneof1714() { if (hugeOneofCase_ == 1714) { return (java.lang.Integer) hugeOneof_; @@ -192228,10 +210667,19 @@ public int getOneof1714() { } public static final int ONEOF_1715_FIELD_NUMBER = 1715; + /** + * int32 oneof_1715 = 1715; + * @return Whether the oneof1715 field is set. + */ + @java.lang.Override + public boolean hasOneof1715() { + return hugeOneofCase_ == 1715; + } /** * int32 oneof_1715 = 1715; * @return The oneof1715. */ + @java.lang.Override public int getOneof1715() { if (hugeOneofCase_ == 1715) { return (java.lang.Integer) hugeOneof_; @@ -192240,10 +210688,19 @@ public int getOneof1715() { } public static final int ONEOF_1716_FIELD_NUMBER = 1716; + /** + * int32 oneof_1716 = 1716; + * @return Whether the oneof1716 field is set. + */ + @java.lang.Override + public boolean hasOneof1716() { + return hugeOneofCase_ == 1716; + } /** * int32 oneof_1716 = 1716; * @return The oneof1716. */ + @java.lang.Override public int getOneof1716() { if (hugeOneofCase_ == 1716) { return (java.lang.Integer) hugeOneof_; @@ -192252,10 +210709,19 @@ public int getOneof1716() { } public static final int ONEOF_1717_FIELD_NUMBER = 1717; + /** + * int32 oneof_1717 = 1717; + * @return Whether the oneof1717 field is set. + */ + @java.lang.Override + public boolean hasOneof1717() { + return hugeOneofCase_ == 1717; + } /** * int32 oneof_1717 = 1717; * @return The oneof1717. */ + @java.lang.Override public int getOneof1717() { if (hugeOneofCase_ == 1717) { return (java.lang.Integer) hugeOneof_; @@ -192264,10 +210730,19 @@ public int getOneof1717() { } public static final int ONEOF_1718_FIELD_NUMBER = 1718; + /** + * int32 oneof_1718 = 1718; + * @return Whether the oneof1718 field is set. + */ + @java.lang.Override + public boolean hasOneof1718() { + return hugeOneofCase_ == 1718; + } /** * int32 oneof_1718 = 1718; * @return The oneof1718. */ + @java.lang.Override public int getOneof1718() { if (hugeOneofCase_ == 1718) { return (java.lang.Integer) hugeOneof_; @@ -192276,10 +210751,19 @@ public int getOneof1718() { } public static final int ONEOF_1719_FIELD_NUMBER = 1719; + /** + * int32 oneof_1719 = 1719; + * @return Whether the oneof1719 field is set. + */ + @java.lang.Override + public boolean hasOneof1719() { + return hugeOneofCase_ == 1719; + } /** * int32 oneof_1719 = 1719; * @return The oneof1719. */ + @java.lang.Override public int getOneof1719() { if (hugeOneofCase_ == 1719) { return (java.lang.Integer) hugeOneof_; @@ -192288,10 +210772,19 @@ public int getOneof1719() { } public static final int ONEOF_1720_FIELD_NUMBER = 1720; + /** + * int32 oneof_1720 = 1720; + * @return Whether the oneof1720 field is set. + */ + @java.lang.Override + public boolean hasOneof1720() { + return hugeOneofCase_ == 1720; + } /** * int32 oneof_1720 = 1720; * @return The oneof1720. */ + @java.lang.Override public int getOneof1720() { if (hugeOneofCase_ == 1720) { return (java.lang.Integer) hugeOneof_; @@ -192300,10 +210793,19 @@ public int getOneof1720() { } public static final int ONEOF_1721_FIELD_NUMBER = 1721; + /** + * int32 oneof_1721 = 1721; + * @return Whether the oneof1721 field is set. + */ + @java.lang.Override + public boolean hasOneof1721() { + return hugeOneofCase_ == 1721; + } /** * int32 oneof_1721 = 1721; * @return The oneof1721. */ + @java.lang.Override public int getOneof1721() { if (hugeOneofCase_ == 1721) { return (java.lang.Integer) hugeOneof_; @@ -192312,10 +210814,19 @@ public int getOneof1721() { } public static final int ONEOF_1722_FIELD_NUMBER = 1722; + /** + * int32 oneof_1722 = 1722; + * @return Whether the oneof1722 field is set. + */ + @java.lang.Override + public boolean hasOneof1722() { + return hugeOneofCase_ == 1722; + } /** * int32 oneof_1722 = 1722; * @return The oneof1722. */ + @java.lang.Override public int getOneof1722() { if (hugeOneofCase_ == 1722) { return (java.lang.Integer) hugeOneof_; @@ -192324,10 +210835,19 @@ public int getOneof1722() { } public static final int ONEOF_1723_FIELD_NUMBER = 1723; + /** + * int32 oneof_1723 = 1723; + * @return Whether the oneof1723 field is set. + */ + @java.lang.Override + public boolean hasOneof1723() { + return hugeOneofCase_ == 1723; + } /** * int32 oneof_1723 = 1723; * @return The oneof1723. */ + @java.lang.Override public int getOneof1723() { if (hugeOneofCase_ == 1723) { return (java.lang.Integer) hugeOneof_; @@ -192336,10 +210856,19 @@ public int getOneof1723() { } public static final int ONEOF_1724_FIELD_NUMBER = 1724; + /** + * int32 oneof_1724 = 1724; + * @return Whether the oneof1724 field is set. + */ + @java.lang.Override + public boolean hasOneof1724() { + return hugeOneofCase_ == 1724; + } /** * int32 oneof_1724 = 1724; * @return The oneof1724. */ + @java.lang.Override public int getOneof1724() { if (hugeOneofCase_ == 1724) { return (java.lang.Integer) hugeOneof_; @@ -192348,10 +210877,19 @@ public int getOneof1724() { } public static final int ONEOF_1725_FIELD_NUMBER = 1725; + /** + * int32 oneof_1725 = 1725; + * @return Whether the oneof1725 field is set. + */ + @java.lang.Override + public boolean hasOneof1725() { + return hugeOneofCase_ == 1725; + } /** * int32 oneof_1725 = 1725; * @return The oneof1725. */ + @java.lang.Override public int getOneof1725() { if (hugeOneofCase_ == 1725) { return (java.lang.Integer) hugeOneof_; @@ -192360,10 +210898,19 @@ public int getOneof1725() { } public static final int ONEOF_1726_FIELD_NUMBER = 1726; + /** + * int32 oneof_1726 = 1726; + * @return Whether the oneof1726 field is set. + */ + @java.lang.Override + public boolean hasOneof1726() { + return hugeOneofCase_ == 1726; + } /** * int32 oneof_1726 = 1726; * @return The oneof1726. */ + @java.lang.Override public int getOneof1726() { if (hugeOneofCase_ == 1726) { return (java.lang.Integer) hugeOneof_; @@ -192372,10 +210919,19 @@ public int getOneof1726() { } public static final int ONEOF_1727_FIELD_NUMBER = 1727; + /** + * int32 oneof_1727 = 1727; + * @return Whether the oneof1727 field is set. + */ + @java.lang.Override + public boolean hasOneof1727() { + return hugeOneofCase_ == 1727; + } /** * int32 oneof_1727 = 1727; * @return The oneof1727. */ + @java.lang.Override public int getOneof1727() { if (hugeOneofCase_ == 1727) { return (java.lang.Integer) hugeOneof_; @@ -192384,10 +210940,19 @@ public int getOneof1727() { } public static final int ONEOF_1728_FIELD_NUMBER = 1728; + /** + * int32 oneof_1728 = 1728; + * @return Whether the oneof1728 field is set. + */ + @java.lang.Override + public boolean hasOneof1728() { + return hugeOneofCase_ == 1728; + } /** * int32 oneof_1728 = 1728; * @return The oneof1728. */ + @java.lang.Override public int getOneof1728() { if (hugeOneofCase_ == 1728) { return (java.lang.Integer) hugeOneof_; @@ -192396,10 +210961,19 @@ public int getOneof1728() { } public static final int ONEOF_1729_FIELD_NUMBER = 1729; + /** + * int32 oneof_1729 = 1729; + * @return Whether the oneof1729 field is set. + */ + @java.lang.Override + public boolean hasOneof1729() { + return hugeOneofCase_ == 1729; + } /** * int32 oneof_1729 = 1729; * @return The oneof1729. */ + @java.lang.Override public int getOneof1729() { if (hugeOneofCase_ == 1729) { return (java.lang.Integer) hugeOneof_; @@ -192408,10 +210982,19 @@ public int getOneof1729() { } public static final int ONEOF_1730_FIELD_NUMBER = 1730; + /** + * int32 oneof_1730 = 1730; + * @return Whether the oneof1730 field is set. + */ + @java.lang.Override + public boolean hasOneof1730() { + return hugeOneofCase_ == 1730; + } /** * int32 oneof_1730 = 1730; * @return The oneof1730. */ + @java.lang.Override public int getOneof1730() { if (hugeOneofCase_ == 1730) { return (java.lang.Integer) hugeOneof_; @@ -192420,10 +211003,19 @@ public int getOneof1730() { } public static final int ONEOF_1731_FIELD_NUMBER = 1731; + /** + * int32 oneof_1731 = 1731; + * @return Whether the oneof1731 field is set. + */ + @java.lang.Override + public boolean hasOneof1731() { + return hugeOneofCase_ == 1731; + } /** * int32 oneof_1731 = 1731; * @return The oneof1731. */ + @java.lang.Override public int getOneof1731() { if (hugeOneofCase_ == 1731) { return (java.lang.Integer) hugeOneof_; @@ -192432,10 +211024,19 @@ public int getOneof1731() { } public static final int ONEOF_1732_FIELD_NUMBER = 1732; + /** + * int32 oneof_1732 = 1732; + * @return Whether the oneof1732 field is set. + */ + @java.lang.Override + public boolean hasOneof1732() { + return hugeOneofCase_ == 1732; + } /** * int32 oneof_1732 = 1732; * @return The oneof1732. */ + @java.lang.Override public int getOneof1732() { if (hugeOneofCase_ == 1732) { return (java.lang.Integer) hugeOneof_; @@ -192444,10 +211045,19 @@ public int getOneof1732() { } public static final int ONEOF_1733_FIELD_NUMBER = 1733; + /** + * int32 oneof_1733 = 1733; + * @return Whether the oneof1733 field is set. + */ + @java.lang.Override + public boolean hasOneof1733() { + return hugeOneofCase_ == 1733; + } /** * int32 oneof_1733 = 1733; * @return The oneof1733. */ + @java.lang.Override public int getOneof1733() { if (hugeOneofCase_ == 1733) { return (java.lang.Integer) hugeOneof_; @@ -192456,10 +211066,19 @@ public int getOneof1733() { } public static final int ONEOF_1734_FIELD_NUMBER = 1734; + /** + * int32 oneof_1734 = 1734; + * @return Whether the oneof1734 field is set. + */ + @java.lang.Override + public boolean hasOneof1734() { + return hugeOneofCase_ == 1734; + } /** * int32 oneof_1734 = 1734; * @return The oneof1734. */ + @java.lang.Override public int getOneof1734() { if (hugeOneofCase_ == 1734) { return (java.lang.Integer) hugeOneof_; @@ -192468,10 +211087,19 @@ public int getOneof1734() { } public static final int ONEOF_1735_FIELD_NUMBER = 1735; + /** + * int32 oneof_1735 = 1735; + * @return Whether the oneof1735 field is set. + */ + @java.lang.Override + public boolean hasOneof1735() { + return hugeOneofCase_ == 1735; + } /** * int32 oneof_1735 = 1735; * @return The oneof1735. */ + @java.lang.Override public int getOneof1735() { if (hugeOneofCase_ == 1735) { return (java.lang.Integer) hugeOneof_; @@ -192480,10 +211108,19 @@ public int getOneof1735() { } public static final int ONEOF_1736_FIELD_NUMBER = 1736; + /** + * int32 oneof_1736 = 1736; + * @return Whether the oneof1736 field is set. + */ + @java.lang.Override + public boolean hasOneof1736() { + return hugeOneofCase_ == 1736; + } /** * int32 oneof_1736 = 1736; * @return The oneof1736. */ + @java.lang.Override public int getOneof1736() { if (hugeOneofCase_ == 1736) { return (java.lang.Integer) hugeOneof_; @@ -192492,10 +211129,19 @@ public int getOneof1736() { } public static final int ONEOF_1737_FIELD_NUMBER = 1737; + /** + * int32 oneof_1737 = 1737; + * @return Whether the oneof1737 field is set. + */ + @java.lang.Override + public boolean hasOneof1737() { + return hugeOneofCase_ == 1737; + } /** * int32 oneof_1737 = 1737; * @return The oneof1737. */ + @java.lang.Override public int getOneof1737() { if (hugeOneofCase_ == 1737) { return (java.lang.Integer) hugeOneof_; @@ -192504,10 +211150,19 @@ public int getOneof1737() { } public static final int ONEOF_1738_FIELD_NUMBER = 1738; + /** + * int32 oneof_1738 = 1738; + * @return Whether the oneof1738 field is set. + */ + @java.lang.Override + public boolean hasOneof1738() { + return hugeOneofCase_ == 1738; + } /** * int32 oneof_1738 = 1738; * @return The oneof1738. */ + @java.lang.Override public int getOneof1738() { if (hugeOneofCase_ == 1738) { return (java.lang.Integer) hugeOneof_; @@ -192516,10 +211171,19 @@ public int getOneof1738() { } public static final int ONEOF_1739_FIELD_NUMBER = 1739; + /** + * int32 oneof_1739 = 1739; + * @return Whether the oneof1739 field is set. + */ + @java.lang.Override + public boolean hasOneof1739() { + return hugeOneofCase_ == 1739; + } /** * int32 oneof_1739 = 1739; * @return The oneof1739. */ + @java.lang.Override public int getOneof1739() { if (hugeOneofCase_ == 1739) { return (java.lang.Integer) hugeOneof_; @@ -192528,10 +211192,19 @@ public int getOneof1739() { } public static final int ONEOF_1740_FIELD_NUMBER = 1740; + /** + * int32 oneof_1740 = 1740; + * @return Whether the oneof1740 field is set. + */ + @java.lang.Override + public boolean hasOneof1740() { + return hugeOneofCase_ == 1740; + } /** * int32 oneof_1740 = 1740; * @return The oneof1740. */ + @java.lang.Override public int getOneof1740() { if (hugeOneofCase_ == 1740) { return (java.lang.Integer) hugeOneof_; @@ -192540,10 +211213,19 @@ public int getOneof1740() { } public static final int ONEOF_1741_FIELD_NUMBER = 1741; + /** + * int32 oneof_1741 = 1741; + * @return Whether the oneof1741 field is set. + */ + @java.lang.Override + public boolean hasOneof1741() { + return hugeOneofCase_ == 1741; + } /** * int32 oneof_1741 = 1741; * @return The oneof1741. */ + @java.lang.Override public int getOneof1741() { if (hugeOneofCase_ == 1741) { return (java.lang.Integer) hugeOneof_; @@ -192552,10 +211234,19 @@ public int getOneof1741() { } public static final int ONEOF_1742_FIELD_NUMBER = 1742; + /** + * int32 oneof_1742 = 1742; + * @return Whether the oneof1742 field is set. + */ + @java.lang.Override + public boolean hasOneof1742() { + return hugeOneofCase_ == 1742; + } /** * int32 oneof_1742 = 1742; * @return The oneof1742. */ + @java.lang.Override public int getOneof1742() { if (hugeOneofCase_ == 1742) { return (java.lang.Integer) hugeOneof_; @@ -192564,10 +211255,19 @@ public int getOneof1742() { } public static final int ONEOF_1743_FIELD_NUMBER = 1743; + /** + * int32 oneof_1743 = 1743; + * @return Whether the oneof1743 field is set. + */ + @java.lang.Override + public boolean hasOneof1743() { + return hugeOneofCase_ == 1743; + } /** * int32 oneof_1743 = 1743; * @return The oneof1743. */ + @java.lang.Override public int getOneof1743() { if (hugeOneofCase_ == 1743) { return (java.lang.Integer) hugeOneof_; @@ -192576,10 +211276,19 @@ public int getOneof1743() { } public static final int ONEOF_1744_FIELD_NUMBER = 1744; + /** + * int32 oneof_1744 = 1744; + * @return Whether the oneof1744 field is set. + */ + @java.lang.Override + public boolean hasOneof1744() { + return hugeOneofCase_ == 1744; + } /** * int32 oneof_1744 = 1744; * @return The oneof1744. */ + @java.lang.Override public int getOneof1744() { if (hugeOneofCase_ == 1744) { return (java.lang.Integer) hugeOneof_; @@ -192588,10 +211297,19 @@ public int getOneof1744() { } public static final int ONEOF_1745_FIELD_NUMBER = 1745; + /** + * int32 oneof_1745 = 1745; + * @return Whether the oneof1745 field is set. + */ + @java.lang.Override + public boolean hasOneof1745() { + return hugeOneofCase_ == 1745; + } /** * int32 oneof_1745 = 1745; * @return The oneof1745. */ + @java.lang.Override public int getOneof1745() { if (hugeOneofCase_ == 1745) { return (java.lang.Integer) hugeOneof_; @@ -192600,10 +211318,19 @@ public int getOneof1745() { } public static final int ONEOF_1746_FIELD_NUMBER = 1746; + /** + * int32 oneof_1746 = 1746; + * @return Whether the oneof1746 field is set. + */ + @java.lang.Override + public boolean hasOneof1746() { + return hugeOneofCase_ == 1746; + } /** * int32 oneof_1746 = 1746; * @return The oneof1746. */ + @java.lang.Override public int getOneof1746() { if (hugeOneofCase_ == 1746) { return (java.lang.Integer) hugeOneof_; @@ -192612,10 +211339,19 @@ public int getOneof1746() { } public static final int ONEOF_1747_FIELD_NUMBER = 1747; + /** + * int32 oneof_1747 = 1747; + * @return Whether the oneof1747 field is set. + */ + @java.lang.Override + public boolean hasOneof1747() { + return hugeOneofCase_ == 1747; + } /** * int32 oneof_1747 = 1747; * @return The oneof1747. */ + @java.lang.Override public int getOneof1747() { if (hugeOneofCase_ == 1747) { return (java.lang.Integer) hugeOneof_; @@ -192624,10 +211360,19 @@ public int getOneof1747() { } public static final int ONEOF_1748_FIELD_NUMBER = 1748; + /** + * int32 oneof_1748 = 1748; + * @return Whether the oneof1748 field is set. + */ + @java.lang.Override + public boolean hasOneof1748() { + return hugeOneofCase_ == 1748; + } /** * int32 oneof_1748 = 1748; * @return The oneof1748. */ + @java.lang.Override public int getOneof1748() { if (hugeOneofCase_ == 1748) { return (java.lang.Integer) hugeOneof_; @@ -192636,10 +211381,19 @@ public int getOneof1748() { } public static final int ONEOF_1749_FIELD_NUMBER = 1749; + /** + * int32 oneof_1749 = 1749; + * @return Whether the oneof1749 field is set. + */ + @java.lang.Override + public boolean hasOneof1749() { + return hugeOneofCase_ == 1749; + } /** * int32 oneof_1749 = 1749; * @return The oneof1749. */ + @java.lang.Override public int getOneof1749() { if (hugeOneofCase_ == 1749) { return (java.lang.Integer) hugeOneof_; @@ -192648,10 +211402,19 @@ public int getOneof1749() { } public static final int ONEOF_1750_FIELD_NUMBER = 1750; + /** + * int32 oneof_1750 = 1750; + * @return Whether the oneof1750 field is set. + */ + @java.lang.Override + public boolean hasOneof1750() { + return hugeOneofCase_ == 1750; + } /** * int32 oneof_1750 = 1750; * @return The oneof1750. */ + @java.lang.Override public int getOneof1750() { if (hugeOneofCase_ == 1750) { return (java.lang.Integer) hugeOneof_; @@ -192660,10 +211423,19 @@ public int getOneof1750() { } public static final int ONEOF_1751_FIELD_NUMBER = 1751; + /** + * int32 oneof_1751 = 1751; + * @return Whether the oneof1751 field is set. + */ + @java.lang.Override + public boolean hasOneof1751() { + return hugeOneofCase_ == 1751; + } /** * int32 oneof_1751 = 1751; * @return The oneof1751. */ + @java.lang.Override public int getOneof1751() { if (hugeOneofCase_ == 1751) { return (java.lang.Integer) hugeOneof_; @@ -192672,10 +211444,19 @@ public int getOneof1751() { } public static final int ONEOF_1752_FIELD_NUMBER = 1752; + /** + * int32 oneof_1752 = 1752; + * @return Whether the oneof1752 field is set. + */ + @java.lang.Override + public boolean hasOneof1752() { + return hugeOneofCase_ == 1752; + } /** * int32 oneof_1752 = 1752; * @return The oneof1752. */ + @java.lang.Override public int getOneof1752() { if (hugeOneofCase_ == 1752) { return (java.lang.Integer) hugeOneof_; @@ -192684,10 +211465,19 @@ public int getOneof1752() { } public static final int ONEOF_1753_FIELD_NUMBER = 1753; + /** + * int32 oneof_1753 = 1753; + * @return Whether the oneof1753 field is set. + */ + @java.lang.Override + public boolean hasOneof1753() { + return hugeOneofCase_ == 1753; + } /** * int32 oneof_1753 = 1753; * @return The oneof1753. */ + @java.lang.Override public int getOneof1753() { if (hugeOneofCase_ == 1753) { return (java.lang.Integer) hugeOneof_; @@ -192696,10 +211486,19 @@ public int getOneof1753() { } public static final int ONEOF_1754_FIELD_NUMBER = 1754; + /** + * int32 oneof_1754 = 1754; + * @return Whether the oneof1754 field is set. + */ + @java.lang.Override + public boolean hasOneof1754() { + return hugeOneofCase_ == 1754; + } /** * int32 oneof_1754 = 1754; * @return The oneof1754. */ + @java.lang.Override public int getOneof1754() { if (hugeOneofCase_ == 1754) { return (java.lang.Integer) hugeOneof_; @@ -192708,10 +211507,19 @@ public int getOneof1754() { } public static final int ONEOF_1755_FIELD_NUMBER = 1755; + /** + * int32 oneof_1755 = 1755; + * @return Whether the oneof1755 field is set. + */ + @java.lang.Override + public boolean hasOneof1755() { + return hugeOneofCase_ == 1755; + } /** * int32 oneof_1755 = 1755; * @return The oneof1755. */ + @java.lang.Override public int getOneof1755() { if (hugeOneofCase_ == 1755) { return (java.lang.Integer) hugeOneof_; @@ -192720,10 +211528,19 @@ public int getOneof1755() { } public static final int ONEOF_1756_FIELD_NUMBER = 1756; + /** + * int32 oneof_1756 = 1756; + * @return Whether the oneof1756 field is set. + */ + @java.lang.Override + public boolean hasOneof1756() { + return hugeOneofCase_ == 1756; + } /** * int32 oneof_1756 = 1756; * @return The oneof1756. */ + @java.lang.Override public int getOneof1756() { if (hugeOneofCase_ == 1756) { return (java.lang.Integer) hugeOneof_; @@ -192732,10 +211549,19 @@ public int getOneof1756() { } public static final int ONEOF_1757_FIELD_NUMBER = 1757; + /** + * int32 oneof_1757 = 1757; + * @return Whether the oneof1757 field is set. + */ + @java.lang.Override + public boolean hasOneof1757() { + return hugeOneofCase_ == 1757; + } /** * int32 oneof_1757 = 1757; * @return The oneof1757. */ + @java.lang.Override public int getOneof1757() { if (hugeOneofCase_ == 1757) { return (java.lang.Integer) hugeOneof_; @@ -192744,10 +211570,19 @@ public int getOneof1757() { } public static final int ONEOF_1758_FIELD_NUMBER = 1758; + /** + * int32 oneof_1758 = 1758; + * @return Whether the oneof1758 field is set. + */ + @java.lang.Override + public boolean hasOneof1758() { + return hugeOneofCase_ == 1758; + } /** * int32 oneof_1758 = 1758; * @return The oneof1758. */ + @java.lang.Override public int getOneof1758() { if (hugeOneofCase_ == 1758) { return (java.lang.Integer) hugeOneof_; @@ -192756,10 +211591,19 @@ public int getOneof1758() { } public static final int ONEOF_1759_FIELD_NUMBER = 1759; + /** + * int32 oneof_1759 = 1759; + * @return Whether the oneof1759 field is set. + */ + @java.lang.Override + public boolean hasOneof1759() { + return hugeOneofCase_ == 1759; + } /** * int32 oneof_1759 = 1759; * @return The oneof1759. */ + @java.lang.Override public int getOneof1759() { if (hugeOneofCase_ == 1759) { return (java.lang.Integer) hugeOneof_; @@ -192768,10 +211612,19 @@ public int getOneof1759() { } public static final int ONEOF_1760_FIELD_NUMBER = 1760; + /** + * int32 oneof_1760 = 1760; + * @return Whether the oneof1760 field is set. + */ + @java.lang.Override + public boolean hasOneof1760() { + return hugeOneofCase_ == 1760; + } /** * int32 oneof_1760 = 1760; * @return The oneof1760. */ + @java.lang.Override public int getOneof1760() { if (hugeOneofCase_ == 1760) { return (java.lang.Integer) hugeOneof_; @@ -192780,10 +211633,19 @@ public int getOneof1760() { } public static final int ONEOF_1761_FIELD_NUMBER = 1761; + /** + * int32 oneof_1761 = 1761; + * @return Whether the oneof1761 field is set. + */ + @java.lang.Override + public boolean hasOneof1761() { + return hugeOneofCase_ == 1761; + } /** * int32 oneof_1761 = 1761; * @return The oneof1761. */ + @java.lang.Override public int getOneof1761() { if (hugeOneofCase_ == 1761) { return (java.lang.Integer) hugeOneof_; @@ -192792,10 +211654,19 @@ public int getOneof1761() { } public static final int ONEOF_1762_FIELD_NUMBER = 1762; + /** + * int32 oneof_1762 = 1762; + * @return Whether the oneof1762 field is set. + */ + @java.lang.Override + public boolean hasOneof1762() { + return hugeOneofCase_ == 1762; + } /** * int32 oneof_1762 = 1762; * @return The oneof1762. */ + @java.lang.Override public int getOneof1762() { if (hugeOneofCase_ == 1762) { return (java.lang.Integer) hugeOneof_; @@ -192804,10 +211675,19 @@ public int getOneof1762() { } public static final int ONEOF_1763_FIELD_NUMBER = 1763; + /** + * int32 oneof_1763 = 1763; + * @return Whether the oneof1763 field is set. + */ + @java.lang.Override + public boolean hasOneof1763() { + return hugeOneofCase_ == 1763; + } /** * int32 oneof_1763 = 1763; * @return The oneof1763. */ + @java.lang.Override public int getOneof1763() { if (hugeOneofCase_ == 1763) { return (java.lang.Integer) hugeOneof_; @@ -192816,10 +211696,19 @@ public int getOneof1763() { } public static final int ONEOF_1764_FIELD_NUMBER = 1764; + /** + * int32 oneof_1764 = 1764; + * @return Whether the oneof1764 field is set. + */ + @java.lang.Override + public boolean hasOneof1764() { + return hugeOneofCase_ == 1764; + } /** * int32 oneof_1764 = 1764; * @return The oneof1764. */ + @java.lang.Override public int getOneof1764() { if (hugeOneofCase_ == 1764) { return (java.lang.Integer) hugeOneof_; @@ -192828,10 +211717,19 @@ public int getOneof1764() { } public static final int ONEOF_1765_FIELD_NUMBER = 1765; + /** + * int32 oneof_1765 = 1765; + * @return Whether the oneof1765 field is set. + */ + @java.lang.Override + public boolean hasOneof1765() { + return hugeOneofCase_ == 1765; + } /** * int32 oneof_1765 = 1765; * @return The oneof1765. */ + @java.lang.Override public int getOneof1765() { if (hugeOneofCase_ == 1765) { return (java.lang.Integer) hugeOneof_; @@ -192840,10 +211738,19 @@ public int getOneof1765() { } public static final int ONEOF_1766_FIELD_NUMBER = 1766; + /** + * int32 oneof_1766 = 1766; + * @return Whether the oneof1766 field is set. + */ + @java.lang.Override + public boolean hasOneof1766() { + return hugeOneofCase_ == 1766; + } /** * int32 oneof_1766 = 1766; * @return The oneof1766. */ + @java.lang.Override public int getOneof1766() { if (hugeOneofCase_ == 1766) { return (java.lang.Integer) hugeOneof_; @@ -192852,10 +211759,19 @@ public int getOneof1766() { } public static final int ONEOF_1767_FIELD_NUMBER = 1767; + /** + * int32 oneof_1767 = 1767; + * @return Whether the oneof1767 field is set. + */ + @java.lang.Override + public boolean hasOneof1767() { + return hugeOneofCase_ == 1767; + } /** * int32 oneof_1767 = 1767; * @return The oneof1767. */ + @java.lang.Override public int getOneof1767() { if (hugeOneofCase_ == 1767) { return (java.lang.Integer) hugeOneof_; @@ -192864,10 +211780,19 @@ public int getOneof1767() { } public static final int ONEOF_1768_FIELD_NUMBER = 1768; + /** + * int32 oneof_1768 = 1768; + * @return Whether the oneof1768 field is set. + */ + @java.lang.Override + public boolean hasOneof1768() { + return hugeOneofCase_ == 1768; + } /** * int32 oneof_1768 = 1768; * @return The oneof1768. */ + @java.lang.Override public int getOneof1768() { if (hugeOneofCase_ == 1768) { return (java.lang.Integer) hugeOneof_; @@ -192876,10 +211801,19 @@ public int getOneof1768() { } public static final int ONEOF_1769_FIELD_NUMBER = 1769; + /** + * int32 oneof_1769 = 1769; + * @return Whether the oneof1769 field is set. + */ + @java.lang.Override + public boolean hasOneof1769() { + return hugeOneofCase_ == 1769; + } /** * int32 oneof_1769 = 1769; * @return The oneof1769. */ + @java.lang.Override public int getOneof1769() { if (hugeOneofCase_ == 1769) { return (java.lang.Integer) hugeOneof_; @@ -192888,10 +211822,19 @@ public int getOneof1769() { } public static final int ONEOF_1770_FIELD_NUMBER = 1770; + /** + * int32 oneof_1770 = 1770; + * @return Whether the oneof1770 field is set. + */ + @java.lang.Override + public boolean hasOneof1770() { + return hugeOneofCase_ == 1770; + } /** * int32 oneof_1770 = 1770; * @return The oneof1770. */ + @java.lang.Override public int getOneof1770() { if (hugeOneofCase_ == 1770) { return (java.lang.Integer) hugeOneof_; @@ -192900,10 +211843,19 @@ public int getOneof1770() { } public static final int ONEOF_1771_FIELD_NUMBER = 1771; + /** + * int32 oneof_1771 = 1771; + * @return Whether the oneof1771 field is set. + */ + @java.lang.Override + public boolean hasOneof1771() { + return hugeOneofCase_ == 1771; + } /** * int32 oneof_1771 = 1771; * @return The oneof1771. */ + @java.lang.Override public int getOneof1771() { if (hugeOneofCase_ == 1771) { return (java.lang.Integer) hugeOneof_; @@ -192912,10 +211864,19 @@ public int getOneof1771() { } public static final int ONEOF_1772_FIELD_NUMBER = 1772; + /** + * int32 oneof_1772 = 1772; + * @return Whether the oneof1772 field is set. + */ + @java.lang.Override + public boolean hasOneof1772() { + return hugeOneofCase_ == 1772; + } /** * int32 oneof_1772 = 1772; * @return The oneof1772. */ + @java.lang.Override public int getOneof1772() { if (hugeOneofCase_ == 1772) { return (java.lang.Integer) hugeOneof_; @@ -192924,10 +211885,19 @@ public int getOneof1772() { } public static final int ONEOF_1773_FIELD_NUMBER = 1773; + /** + * int32 oneof_1773 = 1773; + * @return Whether the oneof1773 field is set. + */ + @java.lang.Override + public boolean hasOneof1773() { + return hugeOneofCase_ == 1773; + } /** * int32 oneof_1773 = 1773; * @return The oneof1773. */ + @java.lang.Override public int getOneof1773() { if (hugeOneofCase_ == 1773) { return (java.lang.Integer) hugeOneof_; @@ -192936,10 +211906,19 @@ public int getOneof1773() { } public static final int ONEOF_1774_FIELD_NUMBER = 1774; + /** + * int32 oneof_1774 = 1774; + * @return Whether the oneof1774 field is set. + */ + @java.lang.Override + public boolean hasOneof1774() { + return hugeOneofCase_ == 1774; + } /** * int32 oneof_1774 = 1774; * @return The oneof1774. */ + @java.lang.Override public int getOneof1774() { if (hugeOneofCase_ == 1774) { return (java.lang.Integer) hugeOneof_; @@ -192948,10 +211927,19 @@ public int getOneof1774() { } public static final int ONEOF_1775_FIELD_NUMBER = 1775; + /** + * int32 oneof_1775 = 1775; + * @return Whether the oneof1775 field is set. + */ + @java.lang.Override + public boolean hasOneof1775() { + return hugeOneofCase_ == 1775; + } /** * int32 oneof_1775 = 1775; * @return The oneof1775. */ + @java.lang.Override public int getOneof1775() { if (hugeOneofCase_ == 1775) { return (java.lang.Integer) hugeOneof_; @@ -192960,10 +211948,19 @@ public int getOneof1775() { } public static final int ONEOF_1776_FIELD_NUMBER = 1776; + /** + * int32 oneof_1776 = 1776; + * @return Whether the oneof1776 field is set. + */ + @java.lang.Override + public boolean hasOneof1776() { + return hugeOneofCase_ == 1776; + } /** * int32 oneof_1776 = 1776; * @return The oneof1776. */ + @java.lang.Override public int getOneof1776() { if (hugeOneofCase_ == 1776) { return (java.lang.Integer) hugeOneof_; @@ -192972,10 +211969,19 @@ public int getOneof1776() { } public static final int ONEOF_1777_FIELD_NUMBER = 1777; + /** + * int32 oneof_1777 = 1777; + * @return Whether the oneof1777 field is set. + */ + @java.lang.Override + public boolean hasOneof1777() { + return hugeOneofCase_ == 1777; + } /** * int32 oneof_1777 = 1777; * @return The oneof1777. */ + @java.lang.Override public int getOneof1777() { if (hugeOneofCase_ == 1777) { return (java.lang.Integer) hugeOneof_; @@ -192984,10 +211990,19 @@ public int getOneof1777() { } public static final int ONEOF_1778_FIELD_NUMBER = 1778; + /** + * int32 oneof_1778 = 1778; + * @return Whether the oneof1778 field is set. + */ + @java.lang.Override + public boolean hasOneof1778() { + return hugeOneofCase_ == 1778; + } /** * int32 oneof_1778 = 1778; * @return The oneof1778. */ + @java.lang.Override public int getOneof1778() { if (hugeOneofCase_ == 1778) { return (java.lang.Integer) hugeOneof_; @@ -192996,10 +212011,19 @@ public int getOneof1778() { } public static final int ONEOF_1779_FIELD_NUMBER = 1779; + /** + * int32 oneof_1779 = 1779; + * @return Whether the oneof1779 field is set. + */ + @java.lang.Override + public boolean hasOneof1779() { + return hugeOneofCase_ == 1779; + } /** * int32 oneof_1779 = 1779; * @return The oneof1779. */ + @java.lang.Override public int getOneof1779() { if (hugeOneofCase_ == 1779) { return (java.lang.Integer) hugeOneof_; @@ -193008,10 +212032,19 @@ public int getOneof1779() { } public static final int ONEOF_1780_FIELD_NUMBER = 1780; + /** + * int32 oneof_1780 = 1780; + * @return Whether the oneof1780 field is set. + */ + @java.lang.Override + public boolean hasOneof1780() { + return hugeOneofCase_ == 1780; + } /** * int32 oneof_1780 = 1780; * @return The oneof1780. */ + @java.lang.Override public int getOneof1780() { if (hugeOneofCase_ == 1780) { return (java.lang.Integer) hugeOneof_; @@ -193020,10 +212053,19 @@ public int getOneof1780() { } public static final int ONEOF_1781_FIELD_NUMBER = 1781; + /** + * int32 oneof_1781 = 1781; + * @return Whether the oneof1781 field is set. + */ + @java.lang.Override + public boolean hasOneof1781() { + return hugeOneofCase_ == 1781; + } /** * int32 oneof_1781 = 1781; * @return The oneof1781. */ + @java.lang.Override public int getOneof1781() { if (hugeOneofCase_ == 1781) { return (java.lang.Integer) hugeOneof_; @@ -193032,10 +212074,19 @@ public int getOneof1781() { } public static final int ONEOF_1782_FIELD_NUMBER = 1782; + /** + * int32 oneof_1782 = 1782; + * @return Whether the oneof1782 field is set. + */ + @java.lang.Override + public boolean hasOneof1782() { + return hugeOneofCase_ == 1782; + } /** * int32 oneof_1782 = 1782; * @return The oneof1782. */ + @java.lang.Override public int getOneof1782() { if (hugeOneofCase_ == 1782) { return (java.lang.Integer) hugeOneof_; @@ -193044,10 +212095,19 @@ public int getOneof1782() { } public static final int ONEOF_1783_FIELD_NUMBER = 1783; + /** + * int32 oneof_1783 = 1783; + * @return Whether the oneof1783 field is set. + */ + @java.lang.Override + public boolean hasOneof1783() { + return hugeOneofCase_ == 1783; + } /** * int32 oneof_1783 = 1783; * @return The oneof1783. */ + @java.lang.Override public int getOneof1783() { if (hugeOneofCase_ == 1783) { return (java.lang.Integer) hugeOneof_; @@ -193056,10 +212116,19 @@ public int getOneof1783() { } public static final int ONEOF_1784_FIELD_NUMBER = 1784; + /** + * int32 oneof_1784 = 1784; + * @return Whether the oneof1784 field is set. + */ + @java.lang.Override + public boolean hasOneof1784() { + return hugeOneofCase_ == 1784; + } /** * int32 oneof_1784 = 1784; * @return The oneof1784. */ + @java.lang.Override public int getOneof1784() { if (hugeOneofCase_ == 1784) { return (java.lang.Integer) hugeOneof_; @@ -193068,10 +212137,19 @@ public int getOneof1784() { } public static final int ONEOF_1785_FIELD_NUMBER = 1785; + /** + * int32 oneof_1785 = 1785; + * @return Whether the oneof1785 field is set. + */ + @java.lang.Override + public boolean hasOneof1785() { + return hugeOneofCase_ == 1785; + } /** * int32 oneof_1785 = 1785; * @return The oneof1785. */ + @java.lang.Override public int getOneof1785() { if (hugeOneofCase_ == 1785) { return (java.lang.Integer) hugeOneof_; @@ -193080,10 +212158,19 @@ public int getOneof1785() { } public static final int ONEOF_1786_FIELD_NUMBER = 1786; + /** + * int32 oneof_1786 = 1786; + * @return Whether the oneof1786 field is set. + */ + @java.lang.Override + public boolean hasOneof1786() { + return hugeOneofCase_ == 1786; + } /** * int32 oneof_1786 = 1786; * @return The oneof1786. */ + @java.lang.Override public int getOneof1786() { if (hugeOneofCase_ == 1786) { return (java.lang.Integer) hugeOneof_; @@ -193092,10 +212179,19 @@ public int getOneof1786() { } public static final int ONEOF_1787_FIELD_NUMBER = 1787; + /** + * int32 oneof_1787 = 1787; + * @return Whether the oneof1787 field is set. + */ + @java.lang.Override + public boolean hasOneof1787() { + return hugeOneofCase_ == 1787; + } /** * int32 oneof_1787 = 1787; * @return The oneof1787. */ + @java.lang.Override public int getOneof1787() { if (hugeOneofCase_ == 1787) { return (java.lang.Integer) hugeOneof_; @@ -193104,10 +212200,19 @@ public int getOneof1787() { } public static final int ONEOF_1788_FIELD_NUMBER = 1788; + /** + * int32 oneof_1788 = 1788; + * @return Whether the oneof1788 field is set. + */ + @java.lang.Override + public boolean hasOneof1788() { + return hugeOneofCase_ == 1788; + } /** * int32 oneof_1788 = 1788; * @return The oneof1788. */ + @java.lang.Override public int getOneof1788() { if (hugeOneofCase_ == 1788) { return (java.lang.Integer) hugeOneof_; @@ -193116,10 +212221,19 @@ public int getOneof1788() { } public static final int ONEOF_1789_FIELD_NUMBER = 1789; + /** + * int32 oneof_1789 = 1789; + * @return Whether the oneof1789 field is set. + */ + @java.lang.Override + public boolean hasOneof1789() { + return hugeOneofCase_ == 1789; + } /** * int32 oneof_1789 = 1789; * @return The oneof1789. */ + @java.lang.Override public int getOneof1789() { if (hugeOneofCase_ == 1789) { return (java.lang.Integer) hugeOneof_; @@ -193128,10 +212242,19 @@ public int getOneof1789() { } public static final int ONEOF_1790_FIELD_NUMBER = 1790; + /** + * int32 oneof_1790 = 1790; + * @return Whether the oneof1790 field is set. + */ + @java.lang.Override + public boolean hasOneof1790() { + return hugeOneofCase_ == 1790; + } /** * int32 oneof_1790 = 1790; * @return The oneof1790. */ + @java.lang.Override public int getOneof1790() { if (hugeOneofCase_ == 1790) { return (java.lang.Integer) hugeOneof_; @@ -193140,10 +212263,19 @@ public int getOneof1790() { } public static final int ONEOF_1791_FIELD_NUMBER = 1791; + /** + * int32 oneof_1791 = 1791; + * @return Whether the oneof1791 field is set. + */ + @java.lang.Override + public boolean hasOneof1791() { + return hugeOneofCase_ == 1791; + } /** * int32 oneof_1791 = 1791; * @return The oneof1791. */ + @java.lang.Override public int getOneof1791() { if (hugeOneofCase_ == 1791) { return (java.lang.Integer) hugeOneof_; @@ -193152,10 +212284,19 @@ public int getOneof1791() { } public static final int ONEOF_1792_FIELD_NUMBER = 1792; + /** + * int32 oneof_1792 = 1792; + * @return Whether the oneof1792 field is set. + */ + @java.lang.Override + public boolean hasOneof1792() { + return hugeOneofCase_ == 1792; + } /** * int32 oneof_1792 = 1792; * @return The oneof1792. */ + @java.lang.Override public int getOneof1792() { if (hugeOneofCase_ == 1792) { return (java.lang.Integer) hugeOneof_; @@ -193164,10 +212305,19 @@ public int getOneof1792() { } public static final int ONEOF_1793_FIELD_NUMBER = 1793; + /** + * int32 oneof_1793 = 1793; + * @return Whether the oneof1793 field is set. + */ + @java.lang.Override + public boolean hasOneof1793() { + return hugeOneofCase_ == 1793; + } /** * int32 oneof_1793 = 1793; * @return The oneof1793. */ + @java.lang.Override public int getOneof1793() { if (hugeOneofCase_ == 1793) { return (java.lang.Integer) hugeOneof_; @@ -193176,10 +212326,19 @@ public int getOneof1793() { } public static final int ONEOF_1794_FIELD_NUMBER = 1794; + /** + * int32 oneof_1794 = 1794; + * @return Whether the oneof1794 field is set. + */ + @java.lang.Override + public boolean hasOneof1794() { + return hugeOneofCase_ == 1794; + } /** * int32 oneof_1794 = 1794; * @return The oneof1794. */ + @java.lang.Override public int getOneof1794() { if (hugeOneofCase_ == 1794) { return (java.lang.Integer) hugeOneof_; @@ -193188,10 +212347,19 @@ public int getOneof1794() { } public static final int ONEOF_1795_FIELD_NUMBER = 1795; + /** + * int32 oneof_1795 = 1795; + * @return Whether the oneof1795 field is set. + */ + @java.lang.Override + public boolean hasOneof1795() { + return hugeOneofCase_ == 1795; + } /** * int32 oneof_1795 = 1795; * @return The oneof1795. */ + @java.lang.Override public int getOneof1795() { if (hugeOneofCase_ == 1795) { return (java.lang.Integer) hugeOneof_; @@ -193200,10 +212368,19 @@ public int getOneof1795() { } public static final int ONEOF_1796_FIELD_NUMBER = 1796; + /** + * int32 oneof_1796 = 1796; + * @return Whether the oneof1796 field is set. + */ + @java.lang.Override + public boolean hasOneof1796() { + return hugeOneofCase_ == 1796; + } /** * int32 oneof_1796 = 1796; * @return The oneof1796. */ + @java.lang.Override public int getOneof1796() { if (hugeOneofCase_ == 1796) { return (java.lang.Integer) hugeOneof_; @@ -193212,10 +212389,19 @@ public int getOneof1796() { } public static final int ONEOF_1797_FIELD_NUMBER = 1797; + /** + * int32 oneof_1797 = 1797; + * @return Whether the oneof1797 field is set. + */ + @java.lang.Override + public boolean hasOneof1797() { + return hugeOneofCase_ == 1797; + } /** * int32 oneof_1797 = 1797; * @return The oneof1797. */ + @java.lang.Override public int getOneof1797() { if (hugeOneofCase_ == 1797) { return (java.lang.Integer) hugeOneof_; @@ -193224,10 +212410,19 @@ public int getOneof1797() { } public static final int ONEOF_1798_FIELD_NUMBER = 1798; + /** + * int32 oneof_1798 = 1798; + * @return Whether the oneof1798 field is set. + */ + @java.lang.Override + public boolean hasOneof1798() { + return hugeOneofCase_ == 1798; + } /** * int32 oneof_1798 = 1798; * @return The oneof1798. */ + @java.lang.Override public int getOneof1798() { if (hugeOneofCase_ == 1798) { return (java.lang.Integer) hugeOneof_; @@ -193236,10 +212431,19 @@ public int getOneof1798() { } public static final int ONEOF_1799_FIELD_NUMBER = 1799; + /** + * int32 oneof_1799 = 1799; + * @return Whether the oneof1799 field is set. + */ + @java.lang.Override + public boolean hasOneof1799() { + return hugeOneofCase_ == 1799; + } /** * int32 oneof_1799 = 1799; * @return The oneof1799. */ + @java.lang.Override public int getOneof1799() { if (hugeOneofCase_ == 1799) { return (java.lang.Integer) hugeOneof_; @@ -193248,10 +212452,19 @@ public int getOneof1799() { } public static final int ONEOF_1800_FIELD_NUMBER = 1800; + /** + * int32 oneof_1800 = 1800; + * @return Whether the oneof1800 field is set. + */ + @java.lang.Override + public boolean hasOneof1800() { + return hugeOneofCase_ == 1800; + } /** * int32 oneof_1800 = 1800; * @return The oneof1800. */ + @java.lang.Override public int getOneof1800() { if (hugeOneofCase_ == 1800) { return (java.lang.Integer) hugeOneof_; @@ -193260,10 +212473,19 @@ public int getOneof1800() { } public static final int ONEOF_1801_FIELD_NUMBER = 1801; + /** + * int32 oneof_1801 = 1801; + * @return Whether the oneof1801 field is set. + */ + @java.lang.Override + public boolean hasOneof1801() { + return hugeOneofCase_ == 1801; + } /** * int32 oneof_1801 = 1801; * @return The oneof1801. */ + @java.lang.Override public int getOneof1801() { if (hugeOneofCase_ == 1801) { return (java.lang.Integer) hugeOneof_; @@ -193272,10 +212494,19 @@ public int getOneof1801() { } public static final int ONEOF_1802_FIELD_NUMBER = 1802; + /** + * int32 oneof_1802 = 1802; + * @return Whether the oneof1802 field is set. + */ + @java.lang.Override + public boolean hasOneof1802() { + return hugeOneofCase_ == 1802; + } /** * int32 oneof_1802 = 1802; * @return The oneof1802. */ + @java.lang.Override public int getOneof1802() { if (hugeOneofCase_ == 1802) { return (java.lang.Integer) hugeOneof_; @@ -193284,10 +212515,19 @@ public int getOneof1802() { } public static final int ONEOF_1803_FIELD_NUMBER = 1803; + /** + * int32 oneof_1803 = 1803; + * @return Whether the oneof1803 field is set. + */ + @java.lang.Override + public boolean hasOneof1803() { + return hugeOneofCase_ == 1803; + } /** * int32 oneof_1803 = 1803; * @return The oneof1803. */ + @java.lang.Override public int getOneof1803() { if (hugeOneofCase_ == 1803) { return (java.lang.Integer) hugeOneof_; @@ -193296,10 +212536,19 @@ public int getOneof1803() { } public static final int ONEOF_1804_FIELD_NUMBER = 1804; + /** + * int32 oneof_1804 = 1804; + * @return Whether the oneof1804 field is set. + */ + @java.lang.Override + public boolean hasOneof1804() { + return hugeOneofCase_ == 1804; + } /** * int32 oneof_1804 = 1804; * @return The oneof1804. */ + @java.lang.Override public int getOneof1804() { if (hugeOneofCase_ == 1804) { return (java.lang.Integer) hugeOneof_; @@ -193308,10 +212557,19 @@ public int getOneof1804() { } public static final int ONEOF_1805_FIELD_NUMBER = 1805; + /** + * int32 oneof_1805 = 1805; + * @return Whether the oneof1805 field is set. + */ + @java.lang.Override + public boolean hasOneof1805() { + return hugeOneofCase_ == 1805; + } /** * int32 oneof_1805 = 1805; * @return The oneof1805. */ + @java.lang.Override public int getOneof1805() { if (hugeOneofCase_ == 1805) { return (java.lang.Integer) hugeOneof_; @@ -193320,10 +212578,19 @@ public int getOneof1805() { } public static final int ONEOF_1806_FIELD_NUMBER = 1806; + /** + * int32 oneof_1806 = 1806; + * @return Whether the oneof1806 field is set. + */ + @java.lang.Override + public boolean hasOneof1806() { + return hugeOneofCase_ == 1806; + } /** * int32 oneof_1806 = 1806; * @return The oneof1806. */ + @java.lang.Override public int getOneof1806() { if (hugeOneofCase_ == 1806) { return (java.lang.Integer) hugeOneof_; @@ -193332,10 +212599,19 @@ public int getOneof1806() { } public static final int ONEOF_1807_FIELD_NUMBER = 1807; + /** + * int32 oneof_1807 = 1807; + * @return Whether the oneof1807 field is set. + */ + @java.lang.Override + public boolean hasOneof1807() { + return hugeOneofCase_ == 1807; + } /** * int32 oneof_1807 = 1807; * @return The oneof1807. */ + @java.lang.Override public int getOneof1807() { if (hugeOneofCase_ == 1807) { return (java.lang.Integer) hugeOneof_; @@ -193344,10 +212620,19 @@ public int getOneof1807() { } public static final int ONEOF_1808_FIELD_NUMBER = 1808; + /** + * int32 oneof_1808 = 1808; + * @return Whether the oneof1808 field is set. + */ + @java.lang.Override + public boolean hasOneof1808() { + return hugeOneofCase_ == 1808; + } /** * int32 oneof_1808 = 1808; * @return The oneof1808. */ + @java.lang.Override public int getOneof1808() { if (hugeOneofCase_ == 1808) { return (java.lang.Integer) hugeOneof_; @@ -193356,10 +212641,19 @@ public int getOneof1808() { } public static final int ONEOF_1809_FIELD_NUMBER = 1809; + /** + * int32 oneof_1809 = 1809; + * @return Whether the oneof1809 field is set. + */ + @java.lang.Override + public boolean hasOneof1809() { + return hugeOneofCase_ == 1809; + } /** * int32 oneof_1809 = 1809; * @return The oneof1809. */ + @java.lang.Override public int getOneof1809() { if (hugeOneofCase_ == 1809) { return (java.lang.Integer) hugeOneof_; @@ -193368,10 +212662,19 @@ public int getOneof1809() { } public static final int ONEOF_1810_FIELD_NUMBER = 1810; + /** + * int32 oneof_1810 = 1810; + * @return Whether the oneof1810 field is set. + */ + @java.lang.Override + public boolean hasOneof1810() { + return hugeOneofCase_ == 1810; + } /** * int32 oneof_1810 = 1810; * @return The oneof1810. */ + @java.lang.Override public int getOneof1810() { if (hugeOneofCase_ == 1810) { return (java.lang.Integer) hugeOneof_; @@ -193380,10 +212683,19 @@ public int getOneof1810() { } public static final int ONEOF_1811_FIELD_NUMBER = 1811; + /** + * int32 oneof_1811 = 1811; + * @return Whether the oneof1811 field is set. + */ + @java.lang.Override + public boolean hasOneof1811() { + return hugeOneofCase_ == 1811; + } /** * int32 oneof_1811 = 1811; * @return The oneof1811. */ + @java.lang.Override public int getOneof1811() { if (hugeOneofCase_ == 1811) { return (java.lang.Integer) hugeOneof_; @@ -193392,10 +212704,19 @@ public int getOneof1811() { } public static final int ONEOF_1812_FIELD_NUMBER = 1812; + /** + * int32 oneof_1812 = 1812; + * @return Whether the oneof1812 field is set. + */ + @java.lang.Override + public boolean hasOneof1812() { + return hugeOneofCase_ == 1812; + } /** * int32 oneof_1812 = 1812; * @return The oneof1812. */ + @java.lang.Override public int getOneof1812() { if (hugeOneofCase_ == 1812) { return (java.lang.Integer) hugeOneof_; @@ -193404,10 +212725,19 @@ public int getOneof1812() { } public static final int ONEOF_1813_FIELD_NUMBER = 1813; + /** + * int32 oneof_1813 = 1813; + * @return Whether the oneof1813 field is set. + */ + @java.lang.Override + public boolean hasOneof1813() { + return hugeOneofCase_ == 1813; + } /** * int32 oneof_1813 = 1813; * @return The oneof1813. */ + @java.lang.Override public int getOneof1813() { if (hugeOneofCase_ == 1813) { return (java.lang.Integer) hugeOneof_; @@ -193416,10 +212746,19 @@ public int getOneof1813() { } public static final int ONEOF_1814_FIELD_NUMBER = 1814; + /** + * int32 oneof_1814 = 1814; + * @return Whether the oneof1814 field is set. + */ + @java.lang.Override + public boolean hasOneof1814() { + return hugeOneofCase_ == 1814; + } /** * int32 oneof_1814 = 1814; * @return The oneof1814. */ + @java.lang.Override public int getOneof1814() { if (hugeOneofCase_ == 1814) { return (java.lang.Integer) hugeOneof_; @@ -193428,10 +212767,19 @@ public int getOneof1814() { } public static final int ONEOF_1815_FIELD_NUMBER = 1815; + /** + * int32 oneof_1815 = 1815; + * @return Whether the oneof1815 field is set. + */ + @java.lang.Override + public boolean hasOneof1815() { + return hugeOneofCase_ == 1815; + } /** * int32 oneof_1815 = 1815; * @return The oneof1815. */ + @java.lang.Override public int getOneof1815() { if (hugeOneofCase_ == 1815) { return (java.lang.Integer) hugeOneof_; @@ -193440,10 +212788,19 @@ public int getOneof1815() { } public static final int ONEOF_1816_FIELD_NUMBER = 1816; + /** + * int32 oneof_1816 = 1816; + * @return Whether the oneof1816 field is set. + */ + @java.lang.Override + public boolean hasOneof1816() { + return hugeOneofCase_ == 1816; + } /** * int32 oneof_1816 = 1816; * @return The oneof1816. */ + @java.lang.Override public int getOneof1816() { if (hugeOneofCase_ == 1816) { return (java.lang.Integer) hugeOneof_; @@ -193452,10 +212809,19 @@ public int getOneof1816() { } public static final int ONEOF_1817_FIELD_NUMBER = 1817; + /** + * int32 oneof_1817 = 1817; + * @return Whether the oneof1817 field is set. + */ + @java.lang.Override + public boolean hasOneof1817() { + return hugeOneofCase_ == 1817; + } /** * int32 oneof_1817 = 1817; * @return The oneof1817. */ + @java.lang.Override public int getOneof1817() { if (hugeOneofCase_ == 1817) { return (java.lang.Integer) hugeOneof_; @@ -193464,10 +212830,19 @@ public int getOneof1817() { } public static final int ONEOF_1818_FIELD_NUMBER = 1818; + /** + * int32 oneof_1818 = 1818; + * @return Whether the oneof1818 field is set. + */ + @java.lang.Override + public boolean hasOneof1818() { + return hugeOneofCase_ == 1818; + } /** * int32 oneof_1818 = 1818; * @return The oneof1818. */ + @java.lang.Override public int getOneof1818() { if (hugeOneofCase_ == 1818) { return (java.lang.Integer) hugeOneof_; @@ -193476,10 +212851,19 @@ public int getOneof1818() { } public static final int ONEOF_1819_FIELD_NUMBER = 1819; + /** + * int32 oneof_1819 = 1819; + * @return Whether the oneof1819 field is set. + */ + @java.lang.Override + public boolean hasOneof1819() { + return hugeOneofCase_ == 1819; + } /** * int32 oneof_1819 = 1819; * @return The oneof1819. */ + @java.lang.Override public int getOneof1819() { if (hugeOneofCase_ == 1819) { return (java.lang.Integer) hugeOneof_; @@ -193488,10 +212872,19 @@ public int getOneof1819() { } public static final int ONEOF_1820_FIELD_NUMBER = 1820; + /** + * int32 oneof_1820 = 1820; + * @return Whether the oneof1820 field is set. + */ + @java.lang.Override + public boolean hasOneof1820() { + return hugeOneofCase_ == 1820; + } /** * int32 oneof_1820 = 1820; * @return The oneof1820. */ + @java.lang.Override public int getOneof1820() { if (hugeOneofCase_ == 1820) { return (java.lang.Integer) hugeOneof_; @@ -193500,10 +212893,19 @@ public int getOneof1820() { } public static final int ONEOF_1821_FIELD_NUMBER = 1821; + /** + * int32 oneof_1821 = 1821; + * @return Whether the oneof1821 field is set. + */ + @java.lang.Override + public boolean hasOneof1821() { + return hugeOneofCase_ == 1821; + } /** * int32 oneof_1821 = 1821; * @return The oneof1821. */ + @java.lang.Override public int getOneof1821() { if (hugeOneofCase_ == 1821) { return (java.lang.Integer) hugeOneof_; @@ -193512,10 +212914,19 @@ public int getOneof1821() { } public static final int ONEOF_1822_FIELD_NUMBER = 1822; + /** + * int32 oneof_1822 = 1822; + * @return Whether the oneof1822 field is set. + */ + @java.lang.Override + public boolean hasOneof1822() { + return hugeOneofCase_ == 1822; + } /** * int32 oneof_1822 = 1822; * @return The oneof1822. */ + @java.lang.Override public int getOneof1822() { if (hugeOneofCase_ == 1822) { return (java.lang.Integer) hugeOneof_; @@ -193524,10 +212935,19 @@ public int getOneof1822() { } public static final int ONEOF_1823_FIELD_NUMBER = 1823; + /** + * int32 oneof_1823 = 1823; + * @return Whether the oneof1823 field is set. + */ + @java.lang.Override + public boolean hasOneof1823() { + return hugeOneofCase_ == 1823; + } /** * int32 oneof_1823 = 1823; * @return The oneof1823. */ + @java.lang.Override public int getOneof1823() { if (hugeOneofCase_ == 1823) { return (java.lang.Integer) hugeOneof_; @@ -193536,10 +212956,19 @@ public int getOneof1823() { } public static final int ONEOF_1824_FIELD_NUMBER = 1824; + /** + * int32 oneof_1824 = 1824; + * @return Whether the oneof1824 field is set. + */ + @java.lang.Override + public boolean hasOneof1824() { + return hugeOneofCase_ == 1824; + } /** * int32 oneof_1824 = 1824; * @return The oneof1824. */ + @java.lang.Override public int getOneof1824() { if (hugeOneofCase_ == 1824) { return (java.lang.Integer) hugeOneof_; @@ -193548,10 +212977,19 @@ public int getOneof1824() { } public static final int ONEOF_1825_FIELD_NUMBER = 1825; + /** + * int32 oneof_1825 = 1825; + * @return Whether the oneof1825 field is set. + */ + @java.lang.Override + public boolean hasOneof1825() { + return hugeOneofCase_ == 1825; + } /** * int32 oneof_1825 = 1825; * @return The oneof1825. */ + @java.lang.Override public int getOneof1825() { if (hugeOneofCase_ == 1825) { return (java.lang.Integer) hugeOneof_; @@ -193560,10 +212998,19 @@ public int getOneof1825() { } public static final int ONEOF_1826_FIELD_NUMBER = 1826; + /** + * int32 oneof_1826 = 1826; + * @return Whether the oneof1826 field is set. + */ + @java.lang.Override + public boolean hasOneof1826() { + return hugeOneofCase_ == 1826; + } /** * int32 oneof_1826 = 1826; * @return The oneof1826. */ + @java.lang.Override public int getOneof1826() { if (hugeOneofCase_ == 1826) { return (java.lang.Integer) hugeOneof_; @@ -193572,10 +213019,19 @@ public int getOneof1826() { } public static final int ONEOF_1827_FIELD_NUMBER = 1827; + /** + * int32 oneof_1827 = 1827; + * @return Whether the oneof1827 field is set. + */ + @java.lang.Override + public boolean hasOneof1827() { + return hugeOneofCase_ == 1827; + } /** * int32 oneof_1827 = 1827; * @return The oneof1827. */ + @java.lang.Override public int getOneof1827() { if (hugeOneofCase_ == 1827) { return (java.lang.Integer) hugeOneof_; @@ -193584,10 +213040,19 @@ public int getOneof1827() { } public static final int ONEOF_1828_FIELD_NUMBER = 1828; + /** + * int32 oneof_1828 = 1828; + * @return Whether the oneof1828 field is set. + */ + @java.lang.Override + public boolean hasOneof1828() { + return hugeOneofCase_ == 1828; + } /** * int32 oneof_1828 = 1828; * @return The oneof1828. */ + @java.lang.Override public int getOneof1828() { if (hugeOneofCase_ == 1828) { return (java.lang.Integer) hugeOneof_; @@ -193596,10 +213061,19 @@ public int getOneof1828() { } public static final int ONEOF_1829_FIELD_NUMBER = 1829; + /** + * int32 oneof_1829 = 1829; + * @return Whether the oneof1829 field is set. + */ + @java.lang.Override + public boolean hasOneof1829() { + return hugeOneofCase_ == 1829; + } /** * int32 oneof_1829 = 1829; * @return The oneof1829. */ + @java.lang.Override public int getOneof1829() { if (hugeOneofCase_ == 1829) { return (java.lang.Integer) hugeOneof_; @@ -193608,10 +213082,19 @@ public int getOneof1829() { } public static final int ONEOF_1830_FIELD_NUMBER = 1830; + /** + * int32 oneof_1830 = 1830; + * @return Whether the oneof1830 field is set. + */ + @java.lang.Override + public boolean hasOneof1830() { + return hugeOneofCase_ == 1830; + } /** * int32 oneof_1830 = 1830; * @return The oneof1830. */ + @java.lang.Override public int getOneof1830() { if (hugeOneofCase_ == 1830) { return (java.lang.Integer) hugeOneof_; @@ -193620,10 +213103,19 @@ public int getOneof1830() { } public static final int ONEOF_1831_FIELD_NUMBER = 1831; + /** + * int32 oneof_1831 = 1831; + * @return Whether the oneof1831 field is set. + */ + @java.lang.Override + public boolean hasOneof1831() { + return hugeOneofCase_ == 1831; + } /** * int32 oneof_1831 = 1831; * @return The oneof1831. */ + @java.lang.Override public int getOneof1831() { if (hugeOneofCase_ == 1831) { return (java.lang.Integer) hugeOneof_; @@ -193632,10 +213124,19 @@ public int getOneof1831() { } public static final int ONEOF_1832_FIELD_NUMBER = 1832; + /** + * int32 oneof_1832 = 1832; + * @return Whether the oneof1832 field is set. + */ + @java.lang.Override + public boolean hasOneof1832() { + return hugeOneofCase_ == 1832; + } /** * int32 oneof_1832 = 1832; * @return The oneof1832. */ + @java.lang.Override public int getOneof1832() { if (hugeOneofCase_ == 1832) { return (java.lang.Integer) hugeOneof_; @@ -193644,10 +213145,19 @@ public int getOneof1832() { } public static final int ONEOF_1833_FIELD_NUMBER = 1833; + /** + * int32 oneof_1833 = 1833; + * @return Whether the oneof1833 field is set. + */ + @java.lang.Override + public boolean hasOneof1833() { + return hugeOneofCase_ == 1833; + } /** * int32 oneof_1833 = 1833; * @return The oneof1833. */ + @java.lang.Override public int getOneof1833() { if (hugeOneofCase_ == 1833) { return (java.lang.Integer) hugeOneof_; @@ -193656,10 +213166,19 @@ public int getOneof1833() { } public static final int ONEOF_1834_FIELD_NUMBER = 1834; + /** + * int32 oneof_1834 = 1834; + * @return Whether the oneof1834 field is set. + */ + @java.lang.Override + public boolean hasOneof1834() { + return hugeOneofCase_ == 1834; + } /** * int32 oneof_1834 = 1834; * @return The oneof1834. */ + @java.lang.Override public int getOneof1834() { if (hugeOneofCase_ == 1834) { return (java.lang.Integer) hugeOneof_; @@ -193668,10 +213187,19 @@ public int getOneof1834() { } public static final int ONEOF_1835_FIELD_NUMBER = 1835; + /** + * int32 oneof_1835 = 1835; + * @return Whether the oneof1835 field is set. + */ + @java.lang.Override + public boolean hasOneof1835() { + return hugeOneofCase_ == 1835; + } /** * int32 oneof_1835 = 1835; * @return The oneof1835. */ + @java.lang.Override public int getOneof1835() { if (hugeOneofCase_ == 1835) { return (java.lang.Integer) hugeOneof_; @@ -193680,10 +213208,19 @@ public int getOneof1835() { } public static final int ONEOF_1836_FIELD_NUMBER = 1836; + /** + * int32 oneof_1836 = 1836; + * @return Whether the oneof1836 field is set. + */ + @java.lang.Override + public boolean hasOneof1836() { + return hugeOneofCase_ == 1836; + } /** * int32 oneof_1836 = 1836; * @return The oneof1836. */ + @java.lang.Override public int getOneof1836() { if (hugeOneofCase_ == 1836) { return (java.lang.Integer) hugeOneof_; @@ -193692,10 +213229,19 @@ public int getOneof1836() { } public static final int ONEOF_1837_FIELD_NUMBER = 1837; + /** + * int32 oneof_1837 = 1837; + * @return Whether the oneof1837 field is set. + */ + @java.lang.Override + public boolean hasOneof1837() { + return hugeOneofCase_ == 1837; + } /** * int32 oneof_1837 = 1837; * @return The oneof1837. */ + @java.lang.Override public int getOneof1837() { if (hugeOneofCase_ == 1837) { return (java.lang.Integer) hugeOneof_; @@ -193704,10 +213250,19 @@ public int getOneof1837() { } public static final int ONEOF_1838_FIELD_NUMBER = 1838; + /** + * int32 oneof_1838 = 1838; + * @return Whether the oneof1838 field is set. + */ + @java.lang.Override + public boolean hasOneof1838() { + return hugeOneofCase_ == 1838; + } /** * int32 oneof_1838 = 1838; * @return The oneof1838. */ + @java.lang.Override public int getOneof1838() { if (hugeOneofCase_ == 1838) { return (java.lang.Integer) hugeOneof_; @@ -193716,10 +213271,19 @@ public int getOneof1838() { } public static final int ONEOF_1839_FIELD_NUMBER = 1839; + /** + * int32 oneof_1839 = 1839; + * @return Whether the oneof1839 field is set. + */ + @java.lang.Override + public boolean hasOneof1839() { + return hugeOneofCase_ == 1839; + } /** * int32 oneof_1839 = 1839; * @return The oneof1839. */ + @java.lang.Override public int getOneof1839() { if (hugeOneofCase_ == 1839) { return (java.lang.Integer) hugeOneof_; @@ -193728,22 +213292,40 @@ public int getOneof1839() { } public static final int ONEOF_1840_FIELD_NUMBER = 1840; + /** + * int32 oneof_1840 = 1840; + * @return Whether the oneof1840 field is set. + */ + @java.lang.Override + public boolean hasOneof1840() { + return hugeOneofCase_ == 1840; + } /** * int32 oneof_1840 = 1840; * @return The oneof1840. */ + @java.lang.Override public int getOneof1840() { if (hugeOneofCase_ == 1840) { return (java.lang.Integer) hugeOneof_; } return 0; } - - public static final int ONEOF_1841_FIELD_NUMBER = 1841; + + public static final int ONEOF_1841_FIELD_NUMBER = 1841; + /** + * int32 oneof_1841 = 1841; + * @return Whether the oneof1841 field is set. + */ + @java.lang.Override + public boolean hasOneof1841() { + return hugeOneofCase_ == 1841; + } /** * int32 oneof_1841 = 1841; * @return The oneof1841. */ + @java.lang.Override public int getOneof1841() { if (hugeOneofCase_ == 1841) { return (java.lang.Integer) hugeOneof_; @@ -193752,10 +213334,19 @@ public int getOneof1841() { } public static final int ONEOF_1842_FIELD_NUMBER = 1842; + /** + * int32 oneof_1842 = 1842; + * @return Whether the oneof1842 field is set. + */ + @java.lang.Override + public boolean hasOneof1842() { + return hugeOneofCase_ == 1842; + } /** * int32 oneof_1842 = 1842; * @return The oneof1842. */ + @java.lang.Override public int getOneof1842() { if (hugeOneofCase_ == 1842) { return (java.lang.Integer) hugeOneof_; @@ -193764,10 +213355,19 @@ public int getOneof1842() { } public static final int ONEOF_1843_FIELD_NUMBER = 1843; + /** + * int32 oneof_1843 = 1843; + * @return Whether the oneof1843 field is set. + */ + @java.lang.Override + public boolean hasOneof1843() { + return hugeOneofCase_ == 1843; + } /** * int32 oneof_1843 = 1843; * @return The oneof1843. */ + @java.lang.Override public int getOneof1843() { if (hugeOneofCase_ == 1843) { return (java.lang.Integer) hugeOneof_; @@ -193776,10 +213376,19 @@ public int getOneof1843() { } public static final int ONEOF_1844_FIELD_NUMBER = 1844; + /** + * int32 oneof_1844 = 1844; + * @return Whether the oneof1844 field is set. + */ + @java.lang.Override + public boolean hasOneof1844() { + return hugeOneofCase_ == 1844; + } /** * int32 oneof_1844 = 1844; * @return The oneof1844. */ + @java.lang.Override public int getOneof1844() { if (hugeOneofCase_ == 1844) { return (java.lang.Integer) hugeOneof_; @@ -193788,10 +213397,19 @@ public int getOneof1844() { } public static final int ONEOF_1845_FIELD_NUMBER = 1845; + /** + * int32 oneof_1845 = 1845; + * @return Whether the oneof1845 field is set. + */ + @java.lang.Override + public boolean hasOneof1845() { + return hugeOneofCase_ == 1845; + } /** * int32 oneof_1845 = 1845; * @return The oneof1845. */ + @java.lang.Override public int getOneof1845() { if (hugeOneofCase_ == 1845) { return (java.lang.Integer) hugeOneof_; @@ -193800,10 +213418,19 @@ public int getOneof1845() { } public static final int ONEOF_1846_FIELD_NUMBER = 1846; + /** + * int32 oneof_1846 = 1846; + * @return Whether the oneof1846 field is set. + */ + @java.lang.Override + public boolean hasOneof1846() { + return hugeOneofCase_ == 1846; + } /** * int32 oneof_1846 = 1846; * @return The oneof1846. */ + @java.lang.Override public int getOneof1846() { if (hugeOneofCase_ == 1846) { return (java.lang.Integer) hugeOneof_; @@ -193812,10 +213439,19 @@ public int getOneof1846() { } public static final int ONEOF_1847_FIELD_NUMBER = 1847; + /** + * int32 oneof_1847 = 1847; + * @return Whether the oneof1847 field is set. + */ + @java.lang.Override + public boolean hasOneof1847() { + return hugeOneofCase_ == 1847; + } /** * int32 oneof_1847 = 1847; * @return The oneof1847. */ + @java.lang.Override public int getOneof1847() { if (hugeOneofCase_ == 1847) { return (java.lang.Integer) hugeOneof_; @@ -193824,10 +213460,19 @@ public int getOneof1847() { } public static final int ONEOF_1848_FIELD_NUMBER = 1848; + /** + * int32 oneof_1848 = 1848; + * @return Whether the oneof1848 field is set. + */ + @java.lang.Override + public boolean hasOneof1848() { + return hugeOneofCase_ == 1848; + } /** * int32 oneof_1848 = 1848; * @return The oneof1848. */ + @java.lang.Override public int getOneof1848() { if (hugeOneofCase_ == 1848) { return (java.lang.Integer) hugeOneof_; @@ -193836,10 +213481,19 @@ public int getOneof1848() { } public static final int ONEOF_1849_FIELD_NUMBER = 1849; + /** + * int32 oneof_1849 = 1849; + * @return Whether the oneof1849 field is set. + */ + @java.lang.Override + public boolean hasOneof1849() { + return hugeOneofCase_ == 1849; + } /** * int32 oneof_1849 = 1849; * @return The oneof1849. */ + @java.lang.Override public int getOneof1849() { if (hugeOneofCase_ == 1849) { return (java.lang.Integer) hugeOneof_; @@ -193848,10 +213502,19 @@ public int getOneof1849() { } public static final int ONEOF_1850_FIELD_NUMBER = 1850; + /** + * int32 oneof_1850 = 1850; + * @return Whether the oneof1850 field is set. + */ + @java.lang.Override + public boolean hasOneof1850() { + return hugeOneofCase_ == 1850; + } /** * int32 oneof_1850 = 1850; * @return The oneof1850. */ + @java.lang.Override public int getOneof1850() { if (hugeOneofCase_ == 1850) { return (java.lang.Integer) hugeOneof_; @@ -193860,10 +213523,19 @@ public int getOneof1850() { } public static final int ONEOF_1851_FIELD_NUMBER = 1851; + /** + * int32 oneof_1851 = 1851; + * @return Whether the oneof1851 field is set. + */ + @java.lang.Override + public boolean hasOneof1851() { + return hugeOneofCase_ == 1851; + } /** * int32 oneof_1851 = 1851; * @return The oneof1851. */ + @java.lang.Override public int getOneof1851() { if (hugeOneofCase_ == 1851) { return (java.lang.Integer) hugeOneof_; @@ -193872,10 +213544,19 @@ public int getOneof1851() { } public static final int ONEOF_1852_FIELD_NUMBER = 1852; + /** + * int32 oneof_1852 = 1852; + * @return Whether the oneof1852 field is set. + */ + @java.lang.Override + public boolean hasOneof1852() { + return hugeOneofCase_ == 1852; + } /** * int32 oneof_1852 = 1852; * @return The oneof1852. */ + @java.lang.Override public int getOneof1852() { if (hugeOneofCase_ == 1852) { return (java.lang.Integer) hugeOneof_; @@ -193884,10 +213565,19 @@ public int getOneof1852() { } public static final int ONEOF_1853_FIELD_NUMBER = 1853; + /** + * int32 oneof_1853 = 1853; + * @return Whether the oneof1853 field is set. + */ + @java.lang.Override + public boolean hasOneof1853() { + return hugeOneofCase_ == 1853; + } /** * int32 oneof_1853 = 1853; * @return The oneof1853. */ + @java.lang.Override public int getOneof1853() { if (hugeOneofCase_ == 1853) { return (java.lang.Integer) hugeOneof_; @@ -193896,10 +213586,19 @@ public int getOneof1853() { } public static final int ONEOF_1854_FIELD_NUMBER = 1854; + /** + * int32 oneof_1854 = 1854; + * @return Whether the oneof1854 field is set. + */ + @java.lang.Override + public boolean hasOneof1854() { + return hugeOneofCase_ == 1854; + } /** * int32 oneof_1854 = 1854; * @return The oneof1854. */ + @java.lang.Override public int getOneof1854() { if (hugeOneofCase_ == 1854) { return (java.lang.Integer) hugeOneof_; @@ -193908,10 +213607,19 @@ public int getOneof1854() { } public static final int ONEOF_1855_FIELD_NUMBER = 1855; + /** + * int32 oneof_1855 = 1855; + * @return Whether the oneof1855 field is set. + */ + @java.lang.Override + public boolean hasOneof1855() { + return hugeOneofCase_ == 1855; + } /** * int32 oneof_1855 = 1855; * @return The oneof1855. */ + @java.lang.Override public int getOneof1855() { if (hugeOneofCase_ == 1855) { return (java.lang.Integer) hugeOneof_; @@ -193920,10 +213628,19 @@ public int getOneof1855() { } public static final int ONEOF_1856_FIELD_NUMBER = 1856; + /** + * int32 oneof_1856 = 1856; + * @return Whether the oneof1856 field is set. + */ + @java.lang.Override + public boolean hasOneof1856() { + return hugeOneofCase_ == 1856; + } /** * int32 oneof_1856 = 1856; * @return The oneof1856. */ + @java.lang.Override public int getOneof1856() { if (hugeOneofCase_ == 1856) { return (java.lang.Integer) hugeOneof_; @@ -193932,10 +213649,19 @@ public int getOneof1856() { } public static final int ONEOF_1857_FIELD_NUMBER = 1857; + /** + * int32 oneof_1857 = 1857; + * @return Whether the oneof1857 field is set. + */ + @java.lang.Override + public boolean hasOneof1857() { + return hugeOneofCase_ == 1857; + } /** * int32 oneof_1857 = 1857; * @return The oneof1857. */ + @java.lang.Override public int getOneof1857() { if (hugeOneofCase_ == 1857) { return (java.lang.Integer) hugeOneof_; @@ -193944,10 +213670,19 @@ public int getOneof1857() { } public static final int ONEOF_1858_FIELD_NUMBER = 1858; + /** + * int32 oneof_1858 = 1858; + * @return Whether the oneof1858 field is set. + */ + @java.lang.Override + public boolean hasOneof1858() { + return hugeOneofCase_ == 1858; + } /** * int32 oneof_1858 = 1858; * @return The oneof1858. */ + @java.lang.Override public int getOneof1858() { if (hugeOneofCase_ == 1858) { return (java.lang.Integer) hugeOneof_; @@ -193956,10 +213691,19 @@ public int getOneof1858() { } public static final int ONEOF_1859_FIELD_NUMBER = 1859; + /** + * int32 oneof_1859 = 1859; + * @return Whether the oneof1859 field is set. + */ + @java.lang.Override + public boolean hasOneof1859() { + return hugeOneofCase_ == 1859; + } /** * int32 oneof_1859 = 1859; * @return The oneof1859. */ + @java.lang.Override public int getOneof1859() { if (hugeOneofCase_ == 1859) { return (java.lang.Integer) hugeOneof_; @@ -193968,10 +213712,19 @@ public int getOneof1859() { } public static final int ONEOF_1860_FIELD_NUMBER = 1860; + /** + * int32 oneof_1860 = 1860; + * @return Whether the oneof1860 field is set. + */ + @java.lang.Override + public boolean hasOneof1860() { + return hugeOneofCase_ == 1860; + } /** * int32 oneof_1860 = 1860; * @return The oneof1860. */ + @java.lang.Override public int getOneof1860() { if (hugeOneofCase_ == 1860) { return (java.lang.Integer) hugeOneof_; @@ -193980,10 +213733,19 @@ public int getOneof1860() { } public static final int ONEOF_1861_FIELD_NUMBER = 1861; + /** + * int32 oneof_1861 = 1861; + * @return Whether the oneof1861 field is set. + */ + @java.lang.Override + public boolean hasOneof1861() { + return hugeOneofCase_ == 1861; + } /** * int32 oneof_1861 = 1861; * @return The oneof1861. */ + @java.lang.Override public int getOneof1861() { if (hugeOneofCase_ == 1861) { return (java.lang.Integer) hugeOneof_; @@ -193992,10 +213754,19 @@ public int getOneof1861() { } public static final int ONEOF_1862_FIELD_NUMBER = 1862; + /** + * int32 oneof_1862 = 1862; + * @return Whether the oneof1862 field is set. + */ + @java.lang.Override + public boolean hasOneof1862() { + return hugeOneofCase_ == 1862; + } /** * int32 oneof_1862 = 1862; * @return The oneof1862. */ + @java.lang.Override public int getOneof1862() { if (hugeOneofCase_ == 1862) { return (java.lang.Integer) hugeOneof_; @@ -194004,10 +213775,19 @@ public int getOneof1862() { } public static final int ONEOF_1863_FIELD_NUMBER = 1863; + /** + * int32 oneof_1863 = 1863; + * @return Whether the oneof1863 field is set. + */ + @java.lang.Override + public boolean hasOneof1863() { + return hugeOneofCase_ == 1863; + } /** * int32 oneof_1863 = 1863; * @return The oneof1863. */ + @java.lang.Override public int getOneof1863() { if (hugeOneofCase_ == 1863) { return (java.lang.Integer) hugeOneof_; @@ -194016,10 +213796,19 @@ public int getOneof1863() { } public static final int ONEOF_1864_FIELD_NUMBER = 1864; + /** + * int32 oneof_1864 = 1864; + * @return Whether the oneof1864 field is set. + */ + @java.lang.Override + public boolean hasOneof1864() { + return hugeOneofCase_ == 1864; + } /** * int32 oneof_1864 = 1864; * @return The oneof1864. */ + @java.lang.Override public int getOneof1864() { if (hugeOneofCase_ == 1864) { return (java.lang.Integer) hugeOneof_; @@ -194028,10 +213817,19 @@ public int getOneof1864() { } public static final int ONEOF_1865_FIELD_NUMBER = 1865; + /** + * int32 oneof_1865 = 1865; + * @return Whether the oneof1865 field is set. + */ + @java.lang.Override + public boolean hasOneof1865() { + return hugeOneofCase_ == 1865; + } /** * int32 oneof_1865 = 1865; * @return The oneof1865. */ + @java.lang.Override public int getOneof1865() { if (hugeOneofCase_ == 1865) { return (java.lang.Integer) hugeOneof_; @@ -194040,10 +213838,19 @@ public int getOneof1865() { } public static final int ONEOF_1866_FIELD_NUMBER = 1866; + /** + * int32 oneof_1866 = 1866; + * @return Whether the oneof1866 field is set. + */ + @java.lang.Override + public boolean hasOneof1866() { + return hugeOneofCase_ == 1866; + } /** * int32 oneof_1866 = 1866; * @return The oneof1866. */ + @java.lang.Override public int getOneof1866() { if (hugeOneofCase_ == 1866) { return (java.lang.Integer) hugeOneof_; @@ -194052,10 +213859,19 @@ public int getOneof1866() { } public static final int ONEOF_1867_FIELD_NUMBER = 1867; + /** + * int32 oneof_1867 = 1867; + * @return Whether the oneof1867 field is set. + */ + @java.lang.Override + public boolean hasOneof1867() { + return hugeOneofCase_ == 1867; + } /** * int32 oneof_1867 = 1867; * @return The oneof1867. */ + @java.lang.Override public int getOneof1867() { if (hugeOneofCase_ == 1867) { return (java.lang.Integer) hugeOneof_; @@ -194064,10 +213880,19 @@ public int getOneof1867() { } public static final int ONEOF_1868_FIELD_NUMBER = 1868; + /** + * int32 oneof_1868 = 1868; + * @return Whether the oneof1868 field is set. + */ + @java.lang.Override + public boolean hasOneof1868() { + return hugeOneofCase_ == 1868; + } /** * int32 oneof_1868 = 1868; * @return The oneof1868. */ + @java.lang.Override public int getOneof1868() { if (hugeOneofCase_ == 1868) { return (java.lang.Integer) hugeOneof_; @@ -194076,10 +213901,19 @@ public int getOneof1868() { } public static final int ONEOF_1869_FIELD_NUMBER = 1869; + /** + * int32 oneof_1869 = 1869; + * @return Whether the oneof1869 field is set. + */ + @java.lang.Override + public boolean hasOneof1869() { + return hugeOneofCase_ == 1869; + } /** * int32 oneof_1869 = 1869; * @return The oneof1869. */ + @java.lang.Override public int getOneof1869() { if (hugeOneofCase_ == 1869) { return (java.lang.Integer) hugeOneof_; @@ -194088,10 +213922,19 @@ public int getOneof1869() { } public static final int ONEOF_1870_FIELD_NUMBER = 1870; + /** + * int32 oneof_1870 = 1870; + * @return Whether the oneof1870 field is set. + */ + @java.lang.Override + public boolean hasOneof1870() { + return hugeOneofCase_ == 1870; + } /** * int32 oneof_1870 = 1870; * @return The oneof1870. */ + @java.lang.Override public int getOneof1870() { if (hugeOneofCase_ == 1870) { return (java.lang.Integer) hugeOneof_; @@ -194100,10 +213943,19 @@ public int getOneof1870() { } public static final int ONEOF_1871_FIELD_NUMBER = 1871; + /** + * int32 oneof_1871 = 1871; + * @return Whether the oneof1871 field is set. + */ + @java.lang.Override + public boolean hasOneof1871() { + return hugeOneofCase_ == 1871; + } /** * int32 oneof_1871 = 1871; * @return The oneof1871. */ + @java.lang.Override public int getOneof1871() { if (hugeOneofCase_ == 1871) { return (java.lang.Integer) hugeOneof_; @@ -194112,10 +213964,19 @@ public int getOneof1871() { } public static final int ONEOF_1872_FIELD_NUMBER = 1872; + /** + * int32 oneof_1872 = 1872; + * @return Whether the oneof1872 field is set. + */ + @java.lang.Override + public boolean hasOneof1872() { + return hugeOneofCase_ == 1872; + } /** * int32 oneof_1872 = 1872; * @return The oneof1872. */ + @java.lang.Override public int getOneof1872() { if (hugeOneofCase_ == 1872) { return (java.lang.Integer) hugeOneof_; @@ -194124,10 +213985,19 @@ public int getOneof1872() { } public static final int ONEOF_1873_FIELD_NUMBER = 1873; + /** + * int32 oneof_1873 = 1873; + * @return Whether the oneof1873 field is set. + */ + @java.lang.Override + public boolean hasOneof1873() { + return hugeOneofCase_ == 1873; + } /** * int32 oneof_1873 = 1873; * @return The oneof1873. */ + @java.lang.Override public int getOneof1873() { if (hugeOneofCase_ == 1873) { return (java.lang.Integer) hugeOneof_; @@ -194136,10 +214006,19 @@ public int getOneof1873() { } public static final int ONEOF_1874_FIELD_NUMBER = 1874; + /** + * int32 oneof_1874 = 1874; + * @return Whether the oneof1874 field is set. + */ + @java.lang.Override + public boolean hasOneof1874() { + return hugeOneofCase_ == 1874; + } /** * int32 oneof_1874 = 1874; * @return The oneof1874. */ + @java.lang.Override public int getOneof1874() { if (hugeOneofCase_ == 1874) { return (java.lang.Integer) hugeOneof_; @@ -194148,10 +214027,19 @@ public int getOneof1874() { } public static final int ONEOF_1875_FIELD_NUMBER = 1875; + /** + * int32 oneof_1875 = 1875; + * @return Whether the oneof1875 field is set. + */ + @java.lang.Override + public boolean hasOneof1875() { + return hugeOneofCase_ == 1875; + } /** * int32 oneof_1875 = 1875; * @return The oneof1875. */ + @java.lang.Override public int getOneof1875() { if (hugeOneofCase_ == 1875) { return (java.lang.Integer) hugeOneof_; @@ -194160,10 +214048,19 @@ public int getOneof1875() { } public static final int ONEOF_1876_FIELD_NUMBER = 1876; + /** + * int32 oneof_1876 = 1876; + * @return Whether the oneof1876 field is set. + */ + @java.lang.Override + public boolean hasOneof1876() { + return hugeOneofCase_ == 1876; + } /** * int32 oneof_1876 = 1876; * @return The oneof1876. */ + @java.lang.Override public int getOneof1876() { if (hugeOneofCase_ == 1876) { return (java.lang.Integer) hugeOneof_; @@ -194172,10 +214069,19 @@ public int getOneof1876() { } public static final int ONEOF_1877_FIELD_NUMBER = 1877; + /** + * int32 oneof_1877 = 1877; + * @return Whether the oneof1877 field is set. + */ + @java.lang.Override + public boolean hasOneof1877() { + return hugeOneofCase_ == 1877; + } /** * int32 oneof_1877 = 1877; * @return The oneof1877. */ + @java.lang.Override public int getOneof1877() { if (hugeOneofCase_ == 1877) { return (java.lang.Integer) hugeOneof_; @@ -194184,10 +214090,19 @@ public int getOneof1877() { } public static final int ONEOF_1878_FIELD_NUMBER = 1878; + /** + * int32 oneof_1878 = 1878; + * @return Whether the oneof1878 field is set. + */ + @java.lang.Override + public boolean hasOneof1878() { + return hugeOneofCase_ == 1878; + } /** * int32 oneof_1878 = 1878; * @return The oneof1878. */ + @java.lang.Override public int getOneof1878() { if (hugeOneofCase_ == 1878) { return (java.lang.Integer) hugeOneof_; @@ -194196,10 +214111,19 @@ public int getOneof1878() { } public static final int ONEOF_1879_FIELD_NUMBER = 1879; + /** + * int32 oneof_1879 = 1879; + * @return Whether the oneof1879 field is set. + */ + @java.lang.Override + public boolean hasOneof1879() { + return hugeOneofCase_ == 1879; + } /** * int32 oneof_1879 = 1879; * @return The oneof1879. */ + @java.lang.Override public int getOneof1879() { if (hugeOneofCase_ == 1879) { return (java.lang.Integer) hugeOneof_; @@ -194208,10 +214132,19 @@ public int getOneof1879() { } public static final int ONEOF_1880_FIELD_NUMBER = 1880; + /** + * int32 oneof_1880 = 1880; + * @return Whether the oneof1880 field is set. + */ + @java.lang.Override + public boolean hasOneof1880() { + return hugeOneofCase_ == 1880; + } /** * int32 oneof_1880 = 1880; * @return The oneof1880. */ + @java.lang.Override public int getOneof1880() { if (hugeOneofCase_ == 1880) { return (java.lang.Integer) hugeOneof_; @@ -194220,10 +214153,19 @@ public int getOneof1880() { } public static final int ONEOF_1881_FIELD_NUMBER = 1881; + /** + * int32 oneof_1881 = 1881; + * @return Whether the oneof1881 field is set. + */ + @java.lang.Override + public boolean hasOneof1881() { + return hugeOneofCase_ == 1881; + } /** * int32 oneof_1881 = 1881; * @return The oneof1881. */ + @java.lang.Override public int getOneof1881() { if (hugeOneofCase_ == 1881) { return (java.lang.Integer) hugeOneof_; @@ -194232,10 +214174,19 @@ public int getOneof1881() { } public static final int ONEOF_1882_FIELD_NUMBER = 1882; + /** + * int32 oneof_1882 = 1882; + * @return Whether the oneof1882 field is set. + */ + @java.lang.Override + public boolean hasOneof1882() { + return hugeOneofCase_ == 1882; + } /** * int32 oneof_1882 = 1882; * @return The oneof1882. */ + @java.lang.Override public int getOneof1882() { if (hugeOneofCase_ == 1882) { return (java.lang.Integer) hugeOneof_; @@ -194244,10 +214195,19 @@ public int getOneof1882() { } public static final int ONEOF_1883_FIELD_NUMBER = 1883; + /** + * int32 oneof_1883 = 1883; + * @return Whether the oneof1883 field is set. + */ + @java.lang.Override + public boolean hasOneof1883() { + return hugeOneofCase_ == 1883; + } /** * int32 oneof_1883 = 1883; * @return The oneof1883. */ + @java.lang.Override public int getOneof1883() { if (hugeOneofCase_ == 1883) { return (java.lang.Integer) hugeOneof_; @@ -194256,10 +214216,19 @@ public int getOneof1883() { } public static final int ONEOF_1884_FIELD_NUMBER = 1884; + /** + * int32 oneof_1884 = 1884; + * @return Whether the oneof1884 field is set. + */ + @java.lang.Override + public boolean hasOneof1884() { + return hugeOneofCase_ == 1884; + } /** * int32 oneof_1884 = 1884; * @return The oneof1884. */ + @java.lang.Override public int getOneof1884() { if (hugeOneofCase_ == 1884) { return (java.lang.Integer) hugeOneof_; @@ -194268,10 +214237,19 @@ public int getOneof1884() { } public static final int ONEOF_1885_FIELD_NUMBER = 1885; + /** + * int32 oneof_1885 = 1885; + * @return Whether the oneof1885 field is set. + */ + @java.lang.Override + public boolean hasOneof1885() { + return hugeOneofCase_ == 1885; + } /** * int32 oneof_1885 = 1885; * @return The oneof1885. */ + @java.lang.Override public int getOneof1885() { if (hugeOneofCase_ == 1885) { return (java.lang.Integer) hugeOneof_; @@ -194280,10 +214258,19 @@ public int getOneof1885() { } public static final int ONEOF_1886_FIELD_NUMBER = 1886; + /** + * int32 oneof_1886 = 1886; + * @return Whether the oneof1886 field is set. + */ + @java.lang.Override + public boolean hasOneof1886() { + return hugeOneofCase_ == 1886; + } /** * int32 oneof_1886 = 1886; * @return The oneof1886. */ + @java.lang.Override public int getOneof1886() { if (hugeOneofCase_ == 1886) { return (java.lang.Integer) hugeOneof_; @@ -194292,10 +214279,19 @@ public int getOneof1886() { } public static final int ONEOF_1887_FIELD_NUMBER = 1887; + /** + * int32 oneof_1887 = 1887; + * @return Whether the oneof1887 field is set. + */ + @java.lang.Override + public boolean hasOneof1887() { + return hugeOneofCase_ == 1887; + } /** * int32 oneof_1887 = 1887; * @return The oneof1887. */ + @java.lang.Override public int getOneof1887() { if (hugeOneofCase_ == 1887) { return (java.lang.Integer) hugeOneof_; @@ -194304,10 +214300,19 @@ public int getOneof1887() { } public static final int ONEOF_1888_FIELD_NUMBER = 1888; + /** + * int32 oneof_1888 = 1888; + * @return Whether the oneof1888 field is set. + */ + @java.lang.Override + public boolean hasOneof1888() { + return hugeOneofCase_ == 1888; + } /** * int32 oneof_1888 = 1888; * @return The oneof1888. */ + @java.lang.Override public int getOneof1888() { if (hugeOneofCase_ == 1888) { return (java.lang.Integer) hugeOneof_; @@ -194316,10 +214321,19 @@ public int getOneof1888() { } public static final int ONEOF_1889_FIELD_NUMBER = 1889; + /** + * int32 oneof_1889 = 1889; + * @return Whether the oneof1889 field is set. + */ + @java.lang.Override + public boolean hasOneof1889() { + return hugeOneofCase_ == 1889; + } /** * int32 oneof_1889 = 1889; * @return The oneof1889. */ + @java.lang.Override public int getOneof1889() { if (hugeOneofCase_ == 1889) { return (java.lang.Integer) hugeOneof_; @@ -194328,10 +214342,19 @@ public int getOneof1889() { } public static final int ONEOF_1890_FIELD_NUMBER = 1890; + /** + * int32 oneof_1890 = 1890; + * @return Whether the oneof1890 field is set. + */ + @java.lang.Override + public boolean hasOneof1890() { + return hugeOneofCase_ == 1890; + } /** * int32 oneof_1890 = 1890; * @return The oneof1890. */ + @java.lang.Override public int getOneof1890() { if (hugeOneofCase_ == 1890) { return (java.lang.Integer) hugeOneof_; @@ -194340,10 +214363,19 @@ public int getOneof1890() { } public static final int ONEOF_1891_FIELD_NUMBER = 1891; + /** + * int32 oneof_1891 = 1891; + * @return Whether the oneof1891 field is set. + */ + @java.lang.Override + public boolean hasOneof1891() { + return hugeOneofCase_ == 1891; + } /** * int32 oneof_1891 = 1891; * @return The oneof1891. */ + @java.lang.Override public int getOneof1891() { if (hugeOneofCase_ == 1891) { return (java.lang.Integer) hugeOneof_; @@ -194352,10 +214384,19 @@ public int getOneof1891() { } public static final int ONEOF_1892_FIELD_NUMBER = 1892; + /** + * int32 oneof_1892 = 1892; + * @return Whether the oneof1892 field is set. + */ + @java.lang.Override + public boolean hasOneof1892() { + return hugeOneofCase_ == 1892; + } /** * int32 oneof_1892 = 1892; * @return The oneof1892. */ + @java.lang.Override public int getOneof1892() { if (hugeOneofCase_ == 1892) { return (java.lang.Integer) hugeOneof_; @@ -194364,10 +214405,19 @@ public int getOneof1892() { } public static final int ONEOF_1893_FIELD_NUMBER = 1893; + /** + * int32 oneof_1893 = 1893; + * @return Whether the oneof1893 field is set. + */ + @java.lang.Override + public boolean hasOneof1893() { + return hugeOneofCase_ == 1893; + } /** * int32 oneof_1893 = 1893; * @return The oneof1893. */ + @java.lang.Override public int getOneof1893() { if (hugeOneofCase_ == 1893) { return (java.lang.Integer) hugeOneof_; @@ -194376,10 +214426,19 @@ public int getOneof1893() { } public static final int ONEOF_1894_FIELD_NUMBER = 1894; + /** + * int32 oneof_1894 = 1894; + * @return Whether the oneof1894 field is set. + */ + @java.lang.Override + public boolean hasOneof1894() { + return hugeOneofCase_ == 1894; + } /** * int32 oneof_1894 = 1894; * @return The oneof1894. */ + @java.lang.Override public int getOneof1894() { if (hugeOneofCase_ == 1894) { return (java.lang.Integer) hugeOneof_; @@ -194388,10 +214447,19 @@ public int getOneof1894() { } public static final int ONEOF_1895_FIELD_NUMBER = 1895; + /** + * int32 oneof_1895 = 1895; + * @return Whether the oneof1895 field is set. + */ + @java.lang.Override + public boolean hasOneof1895() { + return hugeOneofCase_ == 1895; + } /** * int32 oneof_1895 = 1895; * @return The oneof1895. */ + @java.lang.Override public int getOneof1895() { if (hugeOneofCase_ == 1895) { return (java.lang.Integer) hugeOneof_; @@ -194400,10 +214468,19 @@ public int getOneof1895() { } public static final int ONEOF_1896_FIELD_NUMBER = 1896; + /** + * int32 oneof_1896 = 1896; + * @return Whether the oneof1896 field is set. + */ + @java.lang.Override + public boolean hasOneof1896() { + return hugeOneofCase_ == 1896; + } /** * int32 oneof_1896 = 1896; * @return The oneof1896. */ + @java.lang.Override public int getOneof1896() { if (hugeOneofCase_ == 1896) { return (java.lang.Integer) hugeOneof_; @@ -194412,10 +214489,19 @@ public int getOneof1896() { } public static final int ONEOF_1897_FIELD_NUMBER = 1897; + /** + * int32 oneof_1897 = 1897; + * @return Whether the oneof1897 field is set. + */ + @java.lang.Override + public boolean hasOneof1897() { + return hugeOneofCase_ == 1897; + } /** * int32 oneof_1897 = 1897; * @return The oneof1897. */ + @java.lang.Override public int getOneof1897() { if (hugeOneofCase_ == 1897) { return (java.lang.Integer) hugeOneof_; @@ -194424,10 +214510,19 @@ public int getOneof1897() { } public static final int ONEOF_1898_FIELD_NUMBER = 1898; + /** + * int32 oneof_1898 = 1898; + * @return Whether the oneof1898 field is set. + */ + @java.lang.Override + public boolean hasOneof1898() { + return hugeOneofCase_ == 1898; + } /** * int32 oneof_1898 = 1898; * @return The oneof1898. */ + @java.lang.Override public int getOneof1898() { if (hugeOneofCase_ == 1898) { return (java.lang.Integer) hugeOneof_; @@ -194436,10 +214531,19 @@ public int getOneof1898() { } public static final int ONEOF_1899_FIELD_NUMBER = 1899; + /** + * int32 oneof_1899 = 1899; + * @return Whether the oneof1899 field is set. + */ + @java.lang.Override + public boolean hasOneof1899() { + return hugeOneofCase_ == 1899; + } /** * int32 oneof_1899 = 1899; * @return The oneof1899. */ + @java.lang.Override public int getOneof1899() { if (hugeOneofCase_ == 1899) { return (java.lang.Integer) hugeOneof_; @@ -194448,10 +214552,19 @@ public int getOneof1899() { } public static final int ONEOF_1900_FIELD_NUMBER = 1900; + /** + * int32 oneof_1900 = 1900; + * @return Whether the oneof1900 field is set. + */ + @java.lang.Override + public boolean hasOneof1900() { + return hugeOneofCase_ == 1900; + } /** * int32 oneof_1900 = 1900; * @return The oneof1900. */ + @java.lang.Override public int getOneof1900() { if (hugeOneofCase_ == 1900) { return (java.lang.Integer) hugeOneof_; @@ -194460,10 +214573,19 @@ public int getOneof1900() { } public static final int ONEOF_1901_FIELD_NUMBER = 1901; + /** + * int32 oneof_1901 = 1901; + * @return Whether the oneof1901 field is set. + */ + @java.lang.Override + public boolean hasOneof1901() { + return hugeOneofCase_ == 1901; + } /** * int32 oneof_1901 = 1901; * @return The oneof1901. */ + @java.lang.Override public int getOneof1901() { if (hugeOneofCase_ == 1901) { return (java.lang.Integer) hugeOneof_; @@ -194472,10 +214594,19 @@ public int getOneof1901() { } public static final int ONEOF_1902_FIELD_NUMBER = 1902; + /** + * int32 oneof_1902 = 1902; + * @return Whether the oneof1902 field is set. + */ + @java.lang.Override + public boolean hasOneof1902() { + return hugeOneofCase_ == 1902; + } /** * int32 oneof_1902 = 1902; * @return The oneof1902. */ + @java.lang.Override public int getOneof1902() { if (hugeOneofCase_ == 1902) { return (java.lang.Integer) hugeOneof_; @@ -194484,10 +214615,19 @@ public int getOneof1902() { } public static final int ONEOF_1903_FIELD_NUMBER = 1903; + /** + * int32 oneof_1903 = 1903; + * @return Whether the oneof1903 field is set. + */ + @java.lang.Override + public boolean hasOneof1903() { + return hugeOneofCase_ == 1903; + } /** * int32 oneof_1903 = 1903; * @return The oneof1903. */ + @java.lang.Override public int getOneof1903() { if (hugeOneofCase_ == 1903) { return (java.lang.Integer) hugeOneof_; @@ -194496,10 +214636,19 @@ public int getOneof1903() { } public static final int ONEOF_1904_FIELD_NUMBER = 1904; + /** + * int32 oneof_1904 = 1904; + * @return Whether the oneof1904 field is set. + */ + @java.lang.Override + public boolean hasOneof1904() { + return hugeOneofCase_ == 1904; + } /** * int32 oneof_1904 = 1904; * @return The oneof1904. */ + @java.lang.Override public int getOneof1904() { if (hugeOneofCase_ == 1904) { return (java.lang.Integer) hugeOneof_; @@ -194508,10 +214657,19 @@ public int getOneof1904() { } public static final int ONEOF_1905_FIELD_NUMBER = 1905; + /** + * int32 oneof_1905 = 1905; + * @return Whether the oneof1905 field is set. + */ + @java.lang.Override + public boolean hasOneof1905() { + return hugeOneofCase_ == 1905; + } /** * int32 oneof_1905 = 1905; * @return The oneof1905. */ + @java.lang.Override public int getOneof1905() { if (hugeOneofCase_ == 1905) { return (java.lang.Integer) hugeOneof_; @@ -194520,10 +214678,19 @@ public int getOneof1905() { } public static final int ONEOF_1906_FIELD_NUMBER = 1906; + /** + * int32 oneof_1906 = 1906; + * @return Whether the oneof1906 field is set. + */ + @java.lang.Override + public boolean hasOneof1906() { + return hugeOneofCase_ == 1906; + } /** * int32 oneof_1906 = 1906; * @return The oneof1906. */ + @java.lang.Override public int getOneof1906() { if (hugeOneofCase_ == 1906) { return (java.lang.Integer) hugeOneof_; @@ -194532,10 +214699,19 @@ public int getOneof1906() { } public static final int ONEOF_1907_FIELD_NUMBER = 1907; + /** + * int32 oneof_1907 = 1907; + * @return Whether the oneof1907 field is set. + */ + @java.lang.Override + public boolean hasOneof1907() { + return hugeOneofCase_ == 1907; + } /** * int32 oneof_1907 = 1907; * @return The oneof1907. */ + @java.lang.Override public int getOneof1907() { if (hugeOneofCase_ == 1907) { return (java.lang.Integer) hugeOneof_; @@ -194544,10 +214720,19 @@ public int getOneof1907() { } public static final int ONEOF_1908_FIELD_NUMBER = 1908; + /** + * int32 oneof_1908 = 1908; + * @return Whether the oneof1908 field is set. + */ + @java.lang.Override + public boolean hasOneof1908() { + return hugeOneofCase_ == 1908; + } /** * int32 oneof_1908 = 1908; * @return The oneof1908. */ + @java.lang.Override public int getOneof1908() { if (hugeOneofCase_ == 1908) { return (java.lang.Integer) hugeOneof_; @@ -194556,10 +214741,19 @@ public int getOneof1908() { } public static final int ONEOF_1909_FIELD_NUMBER = 1909; + /** + * int32 oneof_1909 = 1909; + * @return Whether the oneof1909 field is set. + */ + @java.lang.Override + public boolean hasOneof1909() { + return hugeOneofCase_ == 1909; + } /** * int32 oneof_1909 = 1909; * @return The oneof1909. */ + @java.lang.Override public int getOneof1909() { if (hugeOneofCase_ == 1909) { return (java.lang.Integer) hugeOneof_; @@ -194568,10 +214762,19 @@ public int getOneof1909() { } public static final int ONEOF_1910_FIELD_NUMBER = 1910; + /** + * int32 oneof_1910 = 1910; + * @return Whether the oneof1910 field is set. + */ + @java.lang.Override + public boolean hasOneof1910() { + return hugeOneofCase_ == 1910; + } /** * int32 oneof_1910 = 1910; * @return The oneof1910. */ + @java.lang.Override public int getOneof1910() { if (hugeOneofCase_ == 1910) { return (java.lang.Integer) hugeOneof_; @@ -194580,10 +214783,19 @@ public int getOneof1910() { } public static final int ONEOF_1911_FIELD_NUMBER = 1911; + /** + * int32 oneof_1911 = 1911; + * @return Whether the oneof1911 field is set. + */ + @java.lang.Override + public boolean hasOneof1911() { + return hugeOneofCase_ == 1911; + } /** * int32 oneof_1911 = 1911; * @return The oneof1911. */ + @java.lang.Override public int getOneof1911() { if (hugeOneofCase_ == 1911) { return (java.lang.Integer) hugeOneof_; @@ -194592,10 +214804,19 @@ public int getOneof1911() { } public static final int ONEOF_1912_FIELD_NUMBER = 1912; + /** + * int32 oneof_1912 = 1912; + * @return Whether the oneof1912 field is set. + */ + @java.lang.Override + public boolean hasOneof1912() { + return hugeOneofCase_ == 1912; + } /** * int32 oneof_1912 = 1912; * @return The oneof1912. */ + @java.lang.Override public int getOneof1912() { if (hugeOneofCase_ == 1912) { return (java.lang.Integer) hugeOneof_; @@ -194604,10 +214825,19 @@ public int getOneof1912() { } public static final int ONEOF_1913_FIELD_NUMBER = 1913; + /** + * int32 oneof_1913 = 1913; + * @return Whether the oneof1913 field is set. + */ + @java.lang.Override + public boolean hasOneof1913() { + return hugeOneofCase_ == 1913; + } /** * int32 oneof_1913 = 1913; * @return The oneof1913. */ + @java.lang.Override public int getOneof1913() { if (hugeOneofCase_ == 1913) { return (java.lang.Integer) hugeOneof_; @@ -194616,10 +214846,19 @@ public int getOneof1913() { } public static final int ONEOF_1914_FIELD_NUMBER = 1914; + /** + * int32 oneof_1914 = 1914; + * @return Whether the oneof1914 field is set. + */ + @java.lang.Override + public boolean hasOneof1914() { + return hugeOneofCase_ == 1914; + } /** * int32 oneof_1914 = 1914; * @return The oneof1914. */ + @java.lang.Override public int getOneof1914() { if (hugeOneofCase_ == 1914) { return (java.lang.Integer) hugeOneof_; @@ -194628,10 +214867,19 @@ public int getOneof1914() { } public static final int ONEOF_1915_FIELD_NUMBER = 1915; + /** + * int32 oneof_1915 = 1915; + * @return Whether the oneof1915 field is set. + */ + @java.lang.Override + public boolean hasOneof1915() { + return hugeOneofCase_ == 1915; + } /** * int32 oneof_1915 = 1915; * @return The oneof1915. */ + @java.lang.Override public int getOneof1915() { if (hugeOneofCase_ == 1915) { return (java.lang.Integer) hugeOneof_; @@ -194640,10 +214888,19 @@ public int getOneof1915() { } public static final int ONEOF_1916_FIELD_NUMBER = 1916; + /** + * int32 oneof_1916 = 1916; + * @return Whether the oneof1916 field is set. + */ + @java.lang.Override + public boolean hasOneof1916() { + return hugeOneofCase_ == 1916; + } /** * int32 oneof_1916 = 1916; * @return The oneof1916. */ + @java.lang.Override public int getOneof1916() { if (hugeOneofCase_ == 1916) { return (java.lang.Integer) hugeOneof_; @@ -194652,10 +214909,19 @@ public int getOneof1916() { } public static final int ONEOF_1917_FIELD_NUMBER = 1917; + /** + * int32 oneof_1917 = 1917; + * @return Whether the oneof1917 field is set. + */ + @java.lang.Override + public boolean hasOneof1917() { + return hugeOneofCase_ == 1917; + } /** * int32 oneof_1917 = 1917; * @return The oneof1917. */ + @java.lang.Override public int getOneof1917() { if (hugeOneofCase_ == 1917) { return (java.lang.Integer) hugeOneof_; @@ -194664,10 +214930,19 @@ public int getOneof1917() { } public static final int ONEOF_1918_FIELD_NUMBER = 1918; + /** + * int32 oneof_1918 = 1918; + * @return Whether the oneof1918 field is set. + */ + @java.lang.Override + public boolean hasOneof1918() { + return hugeOneofCase_ == 1918; + } /** * int32 oneof_1918 = 1918; * @return The oneof1918. */ + @java.lang.Override public int getOneof1918() { if (hugeOneofCase_ == 1918) { return (java.lang.Integer) hugeOneof_; @@ -194676,10 +214951,19 @@ public int getOneof1918() { } public static final int ONEOF_1919_FIELD_NUMBER = 1919; + /** + * int32 oneof_1919 = 1919; + * @return Whether the oneof1919 field is set. + */ + @java.lang.Override + public boolean hasOneof1919() { + return hugeOneofCase_ == 1919; + } /** * int32 oneof_1919 = 1919; * @return The oneof1919. */ + @java.lang.Override public int getOneof1919() { if (hugeOneofCase_ == 1919) { return (java.lang.Integer) hugeOneof_; @@ -194688,10 +214972,19 @@ public int getOneof1919() { } public static final int ONEOF_1920_FIELD_NUMBER = 1920; + /** + * int32 oneof_1920 = 1920; + * @return Whether the oneof1920 field is set. + */ + @java.lang.Override + public boolean hasOneof1920() { + return hugeOneofCase_ == 1920; + } /** * int32 oneof_1920 = 1920; * @return The oneof1920. */ + @java.lang.Override public int getOneof1920() { if (hugeOneofCase_ == 1920) { return (java.lang.Integer) hugeOneof_; @@ -194700,10 +214993,19 @@ public int getOneof1920() { } public static final int ONEOF_1921_FIELD_NUMBER = 1921; + /** + * int32 oneof_1921 = 1921; + * @return Whether the oneof1921 field is set. + */ + @java.lang.Override + public boolean hasOneof1921() { + return hugeOneofCase_ == 1921; + } /** * int32 oneof_1921 = 1921; * @return The oneof1921. */ + @java.lang.Override public int getOneof1921() { if (hugeOneofCase_ == 1921) { return (java.lang.Integer) hugeOneof_; @@ -194712,10 +215014,19 @@ public int getOneof1921() { } public static final int ONEOF_1922_FIELD_NUMBER = 1922; + /** + * int32 oneof_1922 = 1922; + * @return Whether the oneof1922 field is set. + */ + @java.lang.Override + public boolean hasOneof1922() { + return hugeOneofCase_ == 1922; + } /** * int32 oneof_1922 = 1922; * @return The oneof1922. */ + @java.lang.Override public int getOneof1922() { if (hugeOneofCase_ == 1922) { return (java.lang.Integer) hugeOneof_; @@ -194724,10 +215035,19 @@ public int getOneof1922() { } public static final int ONEOF_1923_FIELD_NUMBER = 1923; + /** + * int32 oneof_1923 = 1923; + * @return Whether the oneof1923 field is set. + */ + @java.lang.Override + public boolean hasOneof1923() { + return hugeOneofCase_ == 1923; + } /** * int32 oneof_1923 = 1923; * @return The oneof1923. */ + @java.lang.Override public int getOneof1923() { if (hugeOneofCase_ == 1923) { return (java.lang.Integer) hugeOneof_; @@ -194736,10 +215056,19 @@ public int getOneof1923() { } public static final int ONEOF_1924_FIELD_NUMBER = 1924; + /** + * int32 oneof_1924 = 1924; + * @return Whether the oneof1924 field is set. + */ + @java.lang.Override + public boolean hasOneof1924() { + return hugeOneofCase_ == 1924; + } /** * int32 oneof_1924 = 1924; * @return The oneof1924. */ + @java.lang.Override public int getOneof1924() { if (hugeOneofCase_ == 1924) { return (java.lang.Integer) hugeOneof_; @@ -194748,10 +215077,19 @@ public int getOneof1924() { } public static final int ONEOF_1925_FIELD_NUMBER = 1925; + /** + * int32 oneof_1925 = 1925; + * @return Whether the oneof1925 field is set. + */ + @java.lang.Override + public boolean hasOneof1925() { + return hugeOneofCase_ == 1925; + } /** * int32 oneof_1925 = 1925; * @return The oneof1925. */ + @java.lang.Override public int getOneof1925() { if (hugeOneofCase_ == 1925) { return (java.lang.Integer) hugeOneof_; @@ -194760,10 +215098,19 @@ public int getOneof1925() { } public static final int ONEOF_1926_FIELD_NUMBER = 1926; + /** + * int32 oneof_1926 = 1926; + * @return Whether the oneof1926 field is set. + */ + @java.lang.Override + public boolean hasOneof1926() { + return hugeOneofCase_ == 1926; + } /** * int32 oneof_1926 = 1926; * @return The oneof1926. */ + @java.lang.Override public int getOneof1926() { if (hugeOneofCase_ == 1926) { return (java.lang.Integer) hugeOneof_; @@ -194772,10 +215119,19 @@ public int getOneof1926() { } public static final int ONEOF_1927_FIELD_NUMBER = 1927; + /** + * int32 oneof_1927 = 1927; + * @return Whether the oneof1927 field is set. + */ + @java.lang.Override + public boolean hasOneof1927() { + return hugeOneofCase_ == 1927; + } /** * int32 oneof_1927 = 1927; * @return The oneof1927. */ + @java.lang.Override public int getOneof1927() { if (hugeOneofCase_ == 1927) { return (java.lang.Integer) hugeOneof_; @@ -194784,10 +215140,19 @@ public int getOneof1927() { } public static final int ONEOF_1928_FIELD_NUMBER = 1928; + /** + * int32 oneof_1928 = 1928; + * @return Whether the oneof1928 field is set. + */ + @java.lang.Override + public boolean hasOneof1928() { + return hugeOneofCase_ == 1928; + } /** * int32 oneof_1928 = 1928; * @return The oneof1928. */ + @java.lang.Override public int getOneof1928() { if (hugeOneofCase_ == 1928) { return (java.lang.Integer) hugeOneof_; @@ -194796,10 +215161,19 @@ public int getOneof1928() { } public static final int ONEOF_1929_FIELD_NUMBER = 1929; + /** + * int32 oneof_1929 = 1929; + * @return Whether the oneof1929 field is set. + */ + @java.lang.Override + public boolean hasOneof1929() { + return hugeOneofCase_ == 1929; + } /** * int32 oneof_1929 = 1929; * @return The oneof1929. */ + @java.lang.Override public int getOneof1929() { if (hugeOneofCase_ == 1929) { return (java.lang.Integer) hugeOneof_; @@ -194808,10 +215182,19 @@ public int getOneof1929() { } public static final int ONEOF_1930_FIELD_NUMBER = 1930; + /** + * int32 oneof_1930 = 1930; + * @return Whether the oneof1930 field is set. + */ + @java.lang.Override + public boolean hasOneof1930() { + return hugeOneofCase_ == 1930; + } /** * int32 oneof_1930 = 1930; * @return The oneof1930. */ + @java.lang.Override public int getOneof1930() { if (hugeOneofCase_ == 1930) { return (java.lang.Integer) hugeOneof_; @@ -194820,10 +215203,19 @@ public int getOneof1930() { } public static final int ONEOF_1931_FIELD_NUMBER = 1931; + /** + * int32 oneof_1931 = 1931; + * @return Whether the oneof1931 field is set. + */ + @java.lang.Override + public boolean hasOneof1931() { + return hugeOneofCase_ == 1931; + } /** * int32 oneof_1931 = 1931; * @return The oneof1931. */ + @java.lang.Override public int getOneof1931() { if (hugeOneofCase_ == 1931) { return (java.lang.Integer) hugeOneof_; @@ -194832,10 +215224,19 @@ public int getOneof1931() { } public static final int ONEOF_1932_FIELD_NUMBER = 1932; + /** + * int32 oneof_1932 = 1932; + * @return Whether the oneof1932 field is set. + */ + @java.lang.Override + public boolean hasOneof1932() { + return hugeOneofCase_ == 1932; + } /** * int32 oneof_1932 = 1932; * @return The oneof1932. */ + @java.lang.Override public int getOneof1932() { if (hugeOneofCase_ == 1932) { return (java.lang.Integer) hugeOneof_; @@ -194844,10 +215245,19 @@ public int getOneof1932() { } public static final int ONEOF_1933_FIELD_NUMBER = 1933; + /** + * int32 oneof_1933 = 1933; + * @return Whether the oneof1933 field is set. + */ + @java.lang.Override + public boolean hasOneof1933() { + return hugeOneofCase_ == 1933; + } /** * int32 oneof_1933 = 1933; * @return The oneof1933. */ + @java.lang.Override public int getOneof1933() { if (hugeOneofCase_ == 1933) { return (java.lang.Integer) hugeOneof_; @@ -194856,10 +215266,19 @@ public int getOneof1933() { } public static final int ONEOF_1934_FIELD_NUMBER = 1934; + /** + * int32 oneof_1934 = 1934; + * @return Whether the oneof1934 field is set. + */ + @java.lang.Override + public boolean hasOneof1934() { + return hugeOneofCase_ == 1934; + } /** * int32 oneof_1934 = 1934; * @return The oneof1934. */ + @java.lang.Override public int getOneof1934() { if (hugeOneofCase_ == 1934) { return (java.lang.Integer) hugeOneof_; @@ -194868,10 +215287,19 @@ public int getOneof1934() { } public static final int ONEOF_1935_FIELD_NUMBER = 1935; + /** + * int32 oneof_1935 = 1935; + * @return Whether the oneof1935 field is set. + */ + @java.lang.Override + public boolean hasOneof1935() { + return hugeOneofCase_ == 1935; + } /** * int32 oneof_1935 = 1935; * @return The oneof1935. */ + @java.lang.Override public int getOneof1935() { if (hugeOneofCase_ == 1935) { return (java.lang.Integer) hugeOneof_; @@ -194880,10 +215308,19 @@ public int getOneof1935() { } public static final int ONEOF_1936_FIELD_NUMBER = 1936; + /** + * int32 oneof_1936 = 1936; + * @return Whether the oneof1936 field is set. + */ + @java.lang.Override + public boolean hasOneof1936() { + return hugeOneofCase_ == 1936; + } /** * int32 oneof_1936 = 1936; * @return The oneof1936. */ + @java.lang.Override public int getOneof1936() { if (hugeOneofCase_ == 1936) { return (java.lang.Integer) hugeOneof_; @@ -194892,10 +215329,19 @@ public int getOneof1936() { } public static final int ONEOF_1937_FIELD_NUMBER = 1937; + /** + * int32 oneof_1937 = 1937; + * @return Whether the oneof1937 field is set. + */ + @java.lang.Override + public boolean hasOneof1937() { + return hugeOneofCase_ == 1937; + } /** * int32 oneof_1937 = 1937; * @return The oneof1937. */ + @java.lang.Override public int getOneof1937() { if (hugeOneofCase_ == 1937) { return (java.lang.Integer) hugeOneof_; @@ -194904,10 +215350,19 @@ public int getOneof1937() { } public static final int ONEOF_1938_FIELD_NUMBER = 1938; + /** + * int32 oneof_1938 = 1938; + * @return Whether the oneof1938 field is set. + */ + @java.lang.Override + public boolean hasOneof1938() { + return hugeOneofCase_ == 1938; + } /** * int32 oneof_1938 = 1938; * @return The oneof1938. */ + @java.lang.Override public int getOneof1938() { if (hugeOneofCase_ == 1938) { return (java.lang.Integer) hugeOneof_; @@ -194916,10 +215371,19 @@ public int getOneof1938() { } public static final int ONEOF_1939_FIELD_NUMBER = 1939; + /** + * int32 oneof_1939 = 1939; + * @return Whether the oneof1939 field is set. + */ + @java.lang.Override + public boolean hasOneof1939() { + return hugeOneofCase_ == 1939; + } /** * int32 oneof_1939 = 1939; * @return The oneof1939. */ + @java.lang.Override public int getOneof1939() { if (hugeOneofCase_ == 1939) { return (java.lang.Integer) hugeOneof_; @@ -194928,10 +215392,19 @@ public int getOneof1939() { } public static final int ONEOF_1940_FIELD_NUMBER = 1940; + /** + * int32 oneof_1940 = 1940; + * @return Whether the oneof1940 field is set. + */ + @java.lang.Override + public boolean hasOneof1940() { + return hugeOneofCase_ == 1940; + } /** * int32 oneof_1940 = 1940; * @return The oneof1940. */ + @java.lang.Override public int getOneof1940() { if (hugeOneofCase_ == 1940) { return (java.lang.Integer) hugeOneof_; @@ -194940,10 +215413,19 @@ public int getOneof1940() { } public static final int ONEOF_1941_FIELD_NUMBER = 1941; + /** + * int32 oneof_1941 = 1941; + * @return Whether the oneof1941 field is set. + */ + @java.lang.Override + public boolean hasOneof1941() { + return hugeOneofCase_ == 1941; + } /** * int32 oneof_1941 = 1941; * @return The oneof1941. */ + @java.lang.Override public int getOneof1941() { if (hugeOneofCase_ == 1941) { return (java.lang.Integer) hugeOneof_; @@ -194952,10 +215434,19 @@ public int getOneof1941() { } public static final int ONEOF_1942_FIELD_NUMBER = 1942; + /** + * int32 oneof_1942 = 1942; + * @return Whether the oneof1942 field is set. + */ + @java.lang.Override + public boolean hasOneof1942() { + return hugeOneofCase_ == 1942; + } /** * int32 oneof_1942 = 1942; * @return The oneof1942. */ + @java.lang.Override public int getOneof1942() { if (hugeOneofCase_ == 1942) { return (java.lang.Integer) hugeOneof_; @@ -194964,10 +215455,19 @@ public int getOneof1942() { } public static final int ONEOF_1943_FIELD_NUMBER = 1943; + /** + * int32 oneof_1943 = 1943; + * @return Whether the oneof1943 field is set. + */ + @java.lang.Override + public boolean hasOneof1943() { + return hugeOneofCase_ == 1943; + } /** * int32 oneof_1943 = 1943; * @return The oneof1943. */ + @java.lang.Override public int getOneof1943() { if (hugeOneofCase_ == 1943) { return (java.lang.Integer) hugeOneof_; @@ -194976,10 +215476,19 @@ public int getOneof1943() { } public static final int ONEOF_1944_FIELD_NUMBER = 1944; + /** + * int32 oneof_1944 = 1944; + * @return Whether the oneof1944 field is set. + */ + @java.lang.Override + public boolean hasOneof1944() { + return hugeOneofCase_ == 1944; + } /** * int32 oneof_1944 = 1944; * @return The oneof1944. */ + @java.lang.Override public int getOneof1944() { if (hugeOneofCase_ == 1944) { return (java.lang.Integer) hugeOneof_; @@ -194988,10 +215497,19 @@ public int getOneof1944() { } public static final int ONEOF_1945_FIELD_NUMBER = 1945; + /** + * int32 oneof_1945 = 1945; + * @return Whether the oneof1945 field is set. + */ + @java.lang.Override + public boolean hasOneof1945() { + return hugeOneofCase_ == 1945; + } /** * int32 oneof_1945 = 1945; * @return The oneof1945. */ + @java.lang.Override public int getOneof1945() { if (hugeOneofCase_ == 1945) { return (java.lang.Integer) hugeOneof_; @@ -195000,10 +215518,19 @@ public int getOneof1945() { } public static final int ONEOF_1946_FIELD_NUMBER = 1946; + /** + * int32 oneof_1946 = 1946; + * @return Whether the oneof1946 field is set. + */ + @java.lang.Override + public boolean hasOneof1946() { + return hugeOneofCase_ == 1946; + } /** * int32 oneof_1946 = 1946; * @return The oneof1946. */ + @java.lang.Override public int getOneof1946() { if (hugeOneofCase_ == 1946) { return (java.lang.Integer) hugeOneof_; @@ -195012,10 +215539,19 @@ public int getOneof1946() { } public static final int ONEOF_1947_FIELD_NUMBER = 1947; + /** + * int32 oneof_1947 = 1947; + * @return Whether the oneof1947 field is set. + */ + @java.lang.Override + public boolean hasOneof1947() { + return hugeOneofCase_ == 1947; + } /** * int32 oneof_1947 = 1947; * @return The oneof1947. */ + @java.lang.Override public int getOneof1947() { if (hugeOneofCase_ == 1947) { return (java.lang.Integer) hugeOneof_; @@ -195024,10 +215560,19 @@ public int getOneof1947() { } public static final int ONEOF_1948_FIELD_NUMBER = 1948; + /** + * int32 oneof_1948 = 1948; + * @return Whether the oneof1948 field is set. + */ + @java.lang.Override + public boolean hasOneof1948() { + return hugeOneofCase_ == 1948; + } /** * int32 oneof_1948 = 1948; * @return The oneof1948. */ + @java.lang.Override public int getOneof1948() { if (hugeOneofCase_ == 1948) { return (java.lang.Integer) hugeOneof_; @@ -195036,10 +215581,19 @@ public int getOneof1948() { } public static final int ONEOF_1949_FIELD_NUMBER = 1949; + /** + * int32 oneof_1949 = 1949; + * @return Whether the oneof1949 field is set. + */ + @java.lang.Override + public boolean hasOneof1949() { + return hugeOneofCase_ == 1949; + } /** * int32 oneof_1949 = 1949; * @return The oneof1949. */ + @java.lang.Override public int getOneof1949() { if (hugeOneofCase_ == 1949) { return (java.lang.Integer) hugeOneof_; @@ -195048,10 +215602,19 @@ public int getOneof1949() { } public static final int ONEOF_1950_FIELD_NUMBER = 1950; + /** + * int32 oneof_1950 = 1950; + * @return Whether the oneof1950 field is set. + */ + @java.lang.Override + public boolean hasOneof1950() { + return hugeOneofCase_ == 1950; + } /** * int32 oneof_1950 = 1950; * @return The oneof1950. */ + @java.lang.Override public int getOneof1950() { if (hugeOneofCase_ == 1950) { return (java.lang.Integer) hugeOneof_; @@ -195060,10 +215623,19 @@ public int getOneof1950() { } public static final int ONEOF_1951_FIELD_NUMBER = 1951; + /** + * int32 oneof_1951 = 1951; + * @return Whether the oneof1951 field is set. + */ + @java.lang.Override + public boolean hasOneof1951() { + return hugeOneofCase_ == 1951; + } /** * int32 oneof_1951 = 1951; * @return The oneof1951. */ + @java.lang.Override public int getOneof1951() { if (hugeOneofCase_ == 1951) { return (java.lang.Integer) hugeOneof_; @@ -195072,10 +215644,19 @@ public int getOneof1951() { } public static final int ONEOF_1952_FIELD_NUMBER = 1952; + /** + * int32 oneof_1952 = 1952; + * @return Whether the oneof1952 field is set. + */ + @java.lang.Override + public boolean hasOneof1952() { + return hugeOneofCase_ == 1952; + } /** * int32 oneof_1952 = 1952; * @return The oneof1952. */ + @java.lang.Override public int getOneof1952() { if (hugeOneofCase_ == 1952) { return (java.lang.Integer) hugeOneof_; @@ -195084,10 +215665,19 @@ public int getOneof1952() { } public static final int ONEOF_1953_FIELD_NUMBER = 1953; + /** + * int32 oneof_1953 = 1953; + * @return Whether the oneof1953 field is set. + */ + @java.lang.Override + public boolean hasOneof1953() { + return hugeOneofCase_ == 1953; + } /** * int32 oneof_1953 = 1953; * @return The oneof1953. */ + @java.lang.Override public int getOneof1953() { if (hugeOneofCase_ == 1953) { return (java.lang.Integer) hugeOneof_; @@ -195096,10 +215686,19 @@ public int getOneof1953() { } public static final int ONEOF_1954_FIELD_NUMBER = 1954; + /** + * int32 oneof_1954 = 1954; + * @return Whether the oneof1954 field is set. + */ + @java.lang.Override + public boolean hasOneof1954() { + return hugeOneofCase_ == 1954; + } /** * int32 oneof_1954 = 1954; * @return The oneof1954. */ + @java.lang.Override public int getOneof1954() { if (hugeOneofCase_ == 1954) { return (java.lang.Integer) hugeOneof_; @@ -195108,10 +215707,19 @@ public int getOneof1954() { } public static final int ONEOF_1955_FIELD_NUMBER = 1955; + /** + * int32 oneof_1955 = 1955; + * @return Whether the oneof1955 field is set. + */ + @java.lang.Override + public boolean hasOneof1955() { + return hugeOneofCase_ == 1955; + } /** * int32 oneof_1955 = 1955; * @return The oneof1955. */ + @java.lang.Override public int getOneof1955() { if (hugeOneofCase_ == 1955) { return (java.lang.Integer) hugeOneof_; @@ -195120,10 +215728,19 @@ public int getOneof1955() { } public static final int ONEOF_1956_FIELD_NUMBER = 1956; + /** + * int32 oneof_1956 = 1956; + * @return Whether the oneof1956 field is set. + */ + @java.lang.Override + public boolean hasOneof1956() { + return hugeOneofCase_ == 1956; + } /** * int32 oneof_1956 = 1956; * @return The oneof1956. */ + @java.lang.Override public int getOneof1956() { if (hugeOneofCase_ == 1956) { return (java.lang.Integer) hugeOneof_; @@ -195132,10 +215749,19 @@ public int getOneof1956() { } public static final int ONEOF_1957_FIELD_NUMBER = 1957; + /** + * int32 oneof_1957 = 1957; + * @return Whether the oneof1957 field is set. + */ + @java.lang.Override + public boolean hasOneof1957() { + return hugeOneofCase_ == 1957; + } /** * int32 oneof_1957 = 1957; * @return The oneof1957. */ + @java.lang.Override public int getOneof1957() { if (hugeOneofCase_ == 1957) { return (java.lang.Integer) hugeOneof_; @@ -195144,10 +215770,19 @@ public int getOneof1957() { } public static final int ONEOF_1958_FIELD_NUMBER = 1958; + /** + * int32 oneof_1958 = 1958; + * @return Whether the oneof1958 field is set. + */ + @java.lang.Override + public boolean hasOneof1958() { + return hugeOneofCase_ == 1958; + } /** * int32 oneof_1958 = 1958; * @return The oneof1958. */ + @java.lang.Override public int getOneof1958() { if (hugeOneofCase_ == 1958) { return (java.lang.Integer) hugeOneof_; @@ -195156,10 +215791,19 @@ public int getOneof1958() { } public static final int ONEOF_1959_FIELD_NUMBER = 1959; + /** + * int32 oneof_1959 = 1959; + * @return Whether the oneof1959 field is set. + */ + @java.lang.Override + public boolean hasOneof1959() { + return hugeOneofCase_ == 1959; + } /** * int32 oneof_1959 = 1959; * @return The oneof1959. */ + @java.lang.Override public int getOneof1959() { if (hugeOneofCase_ == 1959) { return (java.lang.Integer) hugeOneof_; @@ -195168,10 +215812,19 @@ public int getOneof1959() { } public static final int ONEOF_1960_FIELD_NUMBER = 1960; + /** + * int32 oneof_1960 = 1960; + * @return Whether the oneof1960 field is set. + */ + @java.lang.Override + public boolean hasOneof1960() { + return hugeOneofCase_ == 1960; + } /** * int32 oneof_1960 = 1960; * @return The oneof1960. */ + @java.lang.Override public int getOneof1960() { if (hugeOneofCase_ == 1960) { return (java.lang.Integer) hugeOneof_; @@ -195180,10 +215833,19 @@ public int getOneof1960() { } public static final int ONEOF_1961_FIELD_NUMBER = 1961; + /** + * int32 oneof_1961 = 1961; + * @return Whether the oneof1961 field is set. + */ + @java.lang.Override + public boolean hasOneof1961() { + return hugeOneofCase_ == 1961; + } /** * int32 oneof_1961 = 1961; * @return The oneof1961. */ + @java.lang.Override public int getOneof1961() { if (hugeOneofCase_ == 1961) { return (java.lang.Integer) hugeOneof_; @@ -195192,10 +215854,19 @@ public int getOneof1961() { } public static final int ONEOF_1962_FIELD_NUMBER = 1962; + /** + * int32 oneof_1962 = 1962; + * @return Whether the oneof1962 field is set. + */ + @java.lang.Override + public boolean hasOneof1962() { + return hugeOneofCase_ == 1962; + } /** * int32 oneof_1962 = 1962; * @return The oneof1962. */ + @java.lang.Override public int getOneof1962() { if (hugeOneofCase_ == 1962) { return (java.lang.Integer) hugeOneof_; @@ -195204,10 +215875,19 @@ public int getOneof1962() { } public static final int ONEOF_1963_FIELD_NUMBER = 1963; + /** + * int32 oneof_1963 = 1963; + * @return Whether the oneof1963 field is set. + */ + @java.lang.Override + public boolean hasOneof1963() { + return hugeOneofCase_ == 1963; + } /** * int32 oneof_1963 = 1963; * @return The oneof1963. */ + @java.lang.Override public int getOneof1963() { if (hugeOneofCase_ == 1963) { return (java.lang.Integer) hugeOneof_; @@ -195216,10 +215896,19 @@ public int getOneof1963() { } public static final int ONEOF_1964_FIELD_NUMBER = 1964; + /** + * int32 oneof_1964 = 1964; + * @return Whether the oneof1964 field is set. + */ + @java.lang.Override + public boolean hasOneof1964() { + return hugeOneofCase_ == 1964; + } /** * int32 oneof_1964 = 1964; * @return The oneof1964. */ + @java.lang.Override public int getOneof1964() { if (hugeOneofCase_ == 1964) { return (java.lang.Integer) hugeOneof_; @@ -195228,10 +215917,19 @@ public int getOneof1964() { } public static final int ONEOF_1965_FIELD_NUMBER = 1965; + /** + * int32 oneof_1965 = 1965; + * @return Whether the oneof1965 field is set. + */ + @java.lang.Override + public boolean hasOneof1965() { + return hugeOneofCase_ == 1965; + } /** * int32 oneof_1965 = 1965; * @return The oneof1965. */ + @java.lang.Override public int getOneof1965() { if (hugeOneofCase_ == 1965) { return (java.lang.Integer) hugeOneof_; @@ -195240,10 +215938,19 @@ public int getOneof1965() { } public static final int ONEOF_1966_FIELD_NUMBER = 1966; + /** + * int32 oneof_1966 = 1966; + * @return Whether the oneof1966 field is set. + */ + @java.lang.Override + public boolean hasOneof1966() { + return hugeOneofCase_ == 1966; + } /** * int32 oneof_1966 = 1966; * @return The oneof1966. */ + @java.lang.Override public int getOneof1966() { if (hugeOneofCase_ == 1966) { return (java.lang.Integer) hugeOneof_; @@ -195252,10 +215959,19 @@ public int getOneof1966() { } public static final int ONEOF_1967_FIELD_NUMBER = 1967; + /** + * int32 oneof_1967 = 1967; + * @return Whether the oneof1967 field is set. + */ + @java.lang.Override + public boolean hasOneof1967() { + return hugeOneofCase_ == 1967; + } /** * int32 oneof_1967 = 1967; * @return The oneof1967. */ + @java.lang.Override public int getOneof1967() { if (hugeOneofCase_ == 1967) { return (java.lang.Integer) hugeOneof_; @@ -195264,10 +215980,19 @@ public int getOneof1967() { } public static final int ONEOF_1968_FIELD_NUMBER = 1968; + /** + * int32 oneof_1968 = 1968; + * @return Whether the oneof1968 field is set. + */ + @java.lang.Override + public boolean hasOneof1968() { + return hugeOneofCase_ == 1968; + } /** * int32 oneof_1968 = 1968; * @return The oneof1968. */ + @java.lang.Override public int getOneof1968() { if (hugeOneofCase_ == 1968) { return (java.lang.Integer) hugeOneof_; @@ -195276,10 +216001,19 @@ public int getOneof1968() { } public static final int ONEOF_1969_FIELD_NUMBER = 1969; + /** + * int32 oneof_1969 = 1969; + * @return Whether the oneof1969 field is set. + */ + @java.lang.Override + public boolean hasOneof1969() { + return hugeOneofCase_ == 1969; + } /** * int32 oneof_1969 = 1969; * @return The oneof1969. */ + @java.lang.Override public int getOneof1969() { if (hugeOneofCase_ == 1969) { return (java.lang.Integer) hugeOneof_; @@ -195288,10 +216022,19 @@ public int getOneof1969() { } public static final int ONEOF_1970_FIELD_NUMBER = 1970; + /** + * int32 oneof_1970 = 1970; + * @return Whether the oneof1970 field is set. + */ + @java.lang.Override + public boolean hasOneof1970() { + return hugeOneofCase_ == 1970; + } /** * int32 oneof_1970 = 1970; * @return The oneof1970. */ + @java.lang.Override public int getOneof1970() { if (hugeOneofCase_ == 1970) { return (java.lang.Integer) hugeOneof_; @@ -195300,10 +216043,19 @@ public int getOneof1970() { } public static final int ONEOF_1971_FIELD_NUMBER = 1971; + /** + * int32 oneof_1971 = 1971; + * @return Whether the oneof1971 field is set. + */ + @java.lang.Override + public boolean hasOneof1971() { + return hugeOneofCase_ == 1971; + } /** * int32 oneof_1971 = 1971; * @return The oneof1971. */ + @java.lang.Override public int getOneof1971() { if (hugeOneofCase_ == 1971) { return (java.lang.Integer) hugeOneof_; @@ -195312,10 +216064,19 @@ public int getOneof1971() { } public static final int ONEOF_1972_FIELD_NUMBER = 1972; + /** + * int32 oneof_1972 = 1972; + * @return Whether the oneof1972 field is set. + */ + @java.lang.Override + public boolean hasOneof1972() { + return hugeOneofCase_ == 1972; + } /** * int32 oneof_1972 = 1972; * @return The oneof1972. */ + @java.lang.Override public int getOneof1972() { if (hugeOneofCase_ == 1972) { return (java.lang.Integer) hugeOneof_; @@ -195324,10 +216085,19 @@ public int getOneof1972() { } public static final int ONEOF_1973_FIELD_NUMBER = 1973; + /** + * int32 oneof_1973 = 1973; + * @return Whether the oneof1973 field is set. + */ + @java.lang.Override + public boolean hasOneof1973() { + return hugeOneofCase_ == 1973; + } /** * int32 oneof_1973 = 1973; * @return The oneof1973. */ + @java.lang.Override public int getOneof1973() { if (hugeOneofCase_ == 1973) { return (java.lang.Integer) hugeOneof_; @@ -195336,10 +216106,19 @@ public int getOneof1973() { } public static final int ONEOF_1974_FIELD_NUMBER = 1974; + /** + * int32 oneof_1974 = 1974; + * @return Whether the oneof1974 field is set. + */ + @java.lang.Override + public boolean hasOneof1974() { + return hugeOneofCase_ == 1974; + } /** * int32 oneof_1974 = 1974; * @return The oneof1974. */ + @java.lang.Override public int getOneof1974() { if (hugeOneofCase_ == 1974) { return (java.lang.Integer) hugeOneof_; @@ -195348,10 +216127,19 @@ public int getOneof1974() { } public static final int ONEOF_1975_FIELD_NUMBER = 1975; + /** + * int32 oneof_1975 = 1975; + * @return Whether the oneof1975 field is set. + */ + @java.lang.Override + public boolean hasOneof1975() { + return hugeOneofCase_ == 1975; + } /** * int32 oneof_1975 = 1975; * @return The oneof1975. */ + @java.lang.Override public int getOneof1975() { if (hugeOneofCase_ == 1975) { return (java.lang.Integer) hugeOneof_; @@ -195360,10 +216148,19 @@ public int getOneof1975() { } public static final int ONEOF_1976_FIELD_NUMBER = 1976; + /** + * int32 oneof_1976 = 1976; + * @return Whether the oneof1976 field is set. + */ + @java.lang.Override + public boolean hasOneof1976() { + return hugeOneofCase_ == 1976; + } /** * int32 oneof_1976 = 1976; * @return The oneof1976. */ + @java.lang.Override public int getOneof1976() { if (hugeOneofCase_ == 1976) { return (java.lang.Integer) hugeOneof_; @@ -195372,10 +216169,19 @@ public int getOneof1976() { } public static final int ONEOF_1977_FIELD_NUMBER = 1977; + /** + * int32 oneof_1977 = 1977; + * @return Whether the oneof1977 field is set. + */ + @java.lang.Override + public boolean hasOneof1977() { + return hugeOneofCase_ == 1977; + } /** * int32 oneof_1977 = 1977; * @return The oneof1977. */ + @java.lang.Override public int getOneof1977() { if (hugeOneofCase_ == 1977) { return (java.lang.Integer) hugeOneof_; @@ -195384,10 +216190,19 @@ public int getOneof1977() { } public static final int ONEOF_1978_FIELD_NUMBER = 1978; + /** + * int32 oneof_1978 = 1978; + * @return Whether the oneof1978 field is set. + */ + @java.lang.Override + public boolean hasOneof1978() { + return hugeOneofCase_ == 1978; + } /** * int32 oneof_1978 = 1978; * @return The oneof1978. */ + @java.lang.Override public int getOneof1978() { if (hugeOneofCase_ == 1978) { return (java.lang.Integer) hugeOneof_; @@ -195396,10 +216211,19 @@ public int getOneof1978() { } public static final int ONEOF_1979_FIELD_NUMBER = 1979; + /** + * int32 oneof_1979 = 1979; + * @return Whether the oneof1979 field is set. + */ + @java.lang.Override + public boolean hasOneof1979() { + return hugeOneofCase_ == 1979; + } /** * int32 oneof_1979 = 1979; * @return The oneof1979. */ + @java.lang.Override public int getOneof1979() { if (hugeOneofCase_ == 1979) { return (java.lang.Integer) hugeOneof_; @@ -195408,10 +216232,19 @@ public int getOneof1979() { } public static final int ONEOF_1980_FIELD_NUMBER = 1980; + /** + * int32 oneof_1980 = 1980; + * @return Whether the oneof1980 field is set. + */ + @java.lang.Override + public boolean hasOneof1980() { + return hugeOneofCase_ == 1980; + } /** * int32 oneof_1980 = 1980; * @return The oneof1980. */ + @java.lang.Override public int getOneof1980() { if (hugeOneofCase_ == 1980) { return (java.lang.Integer) hugeOneof_; @@ -195420,10 +216253,19 @@ public int getOneof1980() { } public static final int ONEOF_1981_FIELD_NUMBER = 1981; + /** + * int32 oneof_1981 = 1981; + * @return Whether the oneof1981 field is set. + */ + @java.lang.Override + public boolean hasOneof1981() { + return hugeOneofCase_ == 1981; + } /** * int32 oneof_1981 = 1981; * @return The oneof1981. */ + @java.lang.Override public int getOneof1981() { if (hugeOneofCase_ == 1981) { return (java.lang.Integer) hugeOneof_; @@ -195432,10 +216274,19 @@ public int getOneof1981() { } public static final int ONEOF_1982_FIELD_NUMBER = 1982; + /** + * int32 oneof_1982 = 1982; + * @return Whether the oneof1982 field is set. + */ + @java.lang.Override + public boolean hasOneof1982() { + return hugeOneofCase_ == 1982; + } /** * int32 oneof_1982 = 1982; * @return The oneof1982. */ + @java.lang.Override public int getOneof1982() { if (hugeOneofCase_ == 1982) { return (java.lang.Integer) hugeOneof_; @@ -195444,10 +216295,19 @@ public int getOneof1982() { } public static final int ONEOF_1983_FIELD_NUMBER = 1983; + /** + * int32 oneof_1983 = 1983; + * @return Whether the oneof1983 field is set. + */ + @java.lang.Override + public boolean hasOneof1983() { + return hugeOneofCase_ == 1983; + } /** * int32 oneof_1983 = 1983; * @return The oneof1983. */ + @java.lang.Override public int getOneof1983() { if (hugeOneofCase_ == 1983) { return (java.lang.Integer) hugeOneof_; @@ -195456,10 +216316,19 @@ public int getOneof1983() { } public static final int ONEOF_1984_FIELD_NUMBER = 1984; + /** + * int32 oneof_1984 = 1984; + * @return Whether the oneof1984 field is set. + */ + @java.lang.Override + public boolean hasOneof1984() { + return hugeOneofCase_ == 1984; + } /** * int32 oneof_1984 = 1984; * @return The oneof1984. */ + @java.lang.Override public int getOneof1984() { if (hugeOneofCase_ == 1984) { return (java.lang.Integer) hugeOneof_; @@ -195468,10 +216337,19 @@ public int getOneof1984() { } public static final int ONEOF_1985_FIELD_NUMBER = 1985; + /** + * int32 oneof_1985 = 1985; + * @return Whether the oneof1985 field is set. + */ + @java.lang.Override + public boolean hasOneof1985() { + return hugeOneofCase_ == 1985; + } /** * int32 oneof_1985 = 1985; * @return The oneof1985. */ + @java.lang.Override public int getOneof1985() { if (hugeOneofCase_ == 1985) { return (java.lang.Integer) hugeOneof_; @@ -195480,10 +216358,19 @@ public int getOneof1985() { } public static final int ONEOF_1986_FIELD_NUMBER = 1986; + /** + * int32 oneof_1986 = 1986; + * @return Whether the oneof1986 field is set. + */ + @java.lang.Override + public boolean hasOneof1986() { + return hugeOneofCase_ == 1986; + } /** * int32 oneof_1986 = 1986; * @return The oneof1986. */ + @java.lang.Override public int getOneof1986() { if (hugeOneofCase_ == 1986) { return (java.lang.Integer) hugeOneof_; @@ -195492,10 +216379,19 @@ public int getOneof1986() { } public static final int ONEOF_1987_FIELD_NUMBER = 1987; + /** + * int32 oneof_1987 = 1987; + * @return Whether the oneof1987 field is set. + */ + @java.lang.Override + public boolean hasOneof1987() { + return hugeOneofCase_ == 1987; + } /** * int32 oneof_1987 = 1987; * @return The oneof1987. */ + @java.lang.Override public int getOneof1987() { if (hugeOneofCase_ == 1987) { return (java.lang.Integer) hugeOneof_; @@ -195504,10 +216400,19 @@ public int getOneof1987() { } public static final int ONEOF_1988_FIELD_NUMBER = 1988; + /** + * int32 oneof_1988 = 1988; + * @return Whether the oneof1988 field is set. + */ + @java.lang.Override + public boolean hasOneof1988() { + return hugeOneofCase_ == 1988; + } /** * int32 oneof_1988 = 1988; * @return The oneof1988. */ + @java.lang.Override public int getOneof1988() { if (hugeOneofCase_ == 1988) { return (java.lang.Integer) hugeOneof_; @@ -195516,10 +216421,19 @@ public int getOneof1988() { } public static final int ONEOF_1989_FIELD_NUMBER = 1989; + /** + * int32 oneof_1989 = 1989; + * @return Whether the oneof1989 field is set. + */ + @java.lang.Override + public boolean hasOneof1989() { + return hugeOneofCase_ == 1989; + } /** * int32 oneof_1989 = 1989; * @return The oneof1989. */ + @java.lang.Override public int getOneof1989() { if (hugeOneofCase_ == 1989) { return (java.lang.Integer) hugeOneof_; @@ -195528,10 +216442,19 @@ public int getOneof1989() { } public static final int ONEOF_1990_FIELD_NUMBER = 1990; + /** + * int32 oneof_1990 = 1990; + * @return Whether the oneof1990 field is set. + */ + @java.lang.Override + public boolean hasOneof1990() { + return hugeOneofCase_ == 1990; + } /** * int32 oneof_1990 = 1990; * @return The oneof1990. */ + @java.lang.Override public int getOneof1990() { if (hugeOneofCase_ == 1990) { return (java.lang.Integer) hugeOneof_; @@ -195540,10 +216463,19 @@ public int getOneof1990() { } public static final int ONEOF_1991_FIELD_NUMBER = 1991; + /** + * int32 oneof_1991 = 1991; + * @return Whether the oneof1991 field is set. + */ + @java.lang.Override + public boolean hasOneof1991() { + return hugeOneofCase_ == 1991; + } /** * int32 oneof_1991 = 1991; * @return The oneof1991. */ + @java.lang.Override public int getOneof1991() { if (hugeOneofCase_ == 1991) { return (java.lang.Integer) hugeOneof_; @@ -195552,10 +216484,19 @@ public int getOneof1991() { } public static final int ONEOF_1992_FIELD_NUMBER = 1992; + /** + * int32 oneof_1992 = 1992; + * @return Whether the oneof1992 field is set. + */ + @java.lang.Override + public boolean hasOneof1992() { + return hugeOneofCase_ == 1992; + } /** * int32 oneof_1992 = 1992; * @return The oneof1992. */ + @java.lang.Override public int getOneof1992() { if (hugeOneofCase_ == 1992) { return (java.lang.Integer) hugeOneof_; @@ -195564,10 +216505,19 @@ public int getOneof1992() { } public static final int ONEOF_1993_FIELD_NUMBER = 1993; + /** + * int32 oneof_1993 = 1993; + * @return Whether the oneof1993 field is set. + */ + @java.lang.Override + public boolean hasOneof1993() { + return hugeOneofCase_ == 1993; + } /** * int32 oneof_1993 = 1993; * @return The oneof1993. */ + @java.lang.Override public int getOneof1993() { if (hugeOneofCase_ == 1993) { return (java.lang.Integer) hugeOneof_; @@ -195576,10 +216526,19 @@ public int getOneof1993() { } public static final int ONEOF_1994_FIELD_NUMBER = 1994; + /** + * int32 oneof_1994 = 1994; + * @return Whether the oneof1994 field is set. + */ + @java.lang.Override + public boolean hasOneof1994() { + return hugeOneofCase_ == 1994; + } /** * int32 oneof_1994 = 1994; * @return The oneof1994. */ + @java.lang.Override public int getOneof1994() { if (hugeOneofCase_ == 1994) { return (java.lang.Integer) hugeOneof_; @@ -195588,10 +216547,19 @@ public int getOneof1994() { } public static final int ONEOF_1995_FIELD_NUMBER = 1995; + /** + * int32 oneof_1995 = 1995; + * @return Whether the oneof1995 field is set. + */ + @java.lang.Override + public boolean hasOneof1995() { + return hugeOneofCase_ == 1995; + } /** * int32 oneof_1995 = 1995; * @return The oneof1995. */ + @java.lang.Override public int getOneof1995() { if (hugeOneofCase_ == 1995) { return (java.lang.Integer) hugeOneof_; @@ -195600,10 +216568,19 @@ public int getOneof1995() { } public static final int ONEOF_1996_FIELD_NUMBER = 1996; + /** + * int32 oneof_1996 = 1996; + * @return Whether the oneof1996 field is set. + */ + @java.lang.Override + public boolean hasOneof1996() { + return hugeOneofCase_ == 1996; + } /** * int32 oneof_1996 = 1996; * @return The oneof1996. */ + @java.lang.Override public int getOneof1996() { if (hugeOneofCase_ == 1996) { return (java.lang.Integer) hugeOneof_; @@ -195612,10 +216589,19 @@ public int getOneof1996() { } public static final int ONEOF_1997_FIELD_NUMBER = 1997; + /** + * int32 oneof_1997 = 1997; + * @return Whether the oneof1997 field is set. + */ + @java.lang.Override + public boolean hasOneof1997() { + return hugeOneofCase_ == 1997; + } /** * int32 oneof_1997 = 1997; * @return The oneof1997. */ + @java.lang.Override public int getOneof1997() { if (hugeOneofCase_ == 1997) { return (java.lang.Integer) hugeOneof_; @@ -195624,10 +216610,19 @@ public int getOneof1997() { } public static final int ONEOF_1998_FIELD_NUMBER = 1998; + /** + * int32 oneof_1998 = 1998; + * @return Whether the oneof1998 field is set. + */ + @java.lang.Override + public boolean hasOneof1998() { + return hugeOneofCase_ == 1998; + } /** * int32 oneof_1998 = 1998; * @return The oneof1998. */ + @java.lang.Override public int getOneof1998() { if (hugeOneofCase_ == 1998) { return (java.lang.Integer) hugeOneof_; @@ -195636,10 +216631,19 @@ public int getOneof1998() { } public static final int ONEOF_1999_FIELD_NUMBER = 1999; + /** + * int32 oneof_1999 = 1999; + * @return Whether the oneof1999 field is set. + */ + @java.lang.Override + public boolean hasOneof1999() { + return hugeOneofCase_ == 1999; + } /** * int32 oneof_1999 = 1999; * @return The oneof1999. */ + @java.lang.Override public int getOneof1999() { if (hugeOneofCase_ == 1999) { return (java.lang.Integer) hugeOneof_; @@ -195648,10 +216652,19 @@ public int getOneof1999() { } public static final int ONEOF_2000_FIELD_NUMBER = 2000; + /** + * int32 oneof_2000 = 2000; + * @return Whether the oneof2000 field is set. + */ + @java.lang.Override + public boolean hasOneof2000() { + return hugeOneofCase_ == 2000; + } /** * int32 oneof_2000 = 2000; * @return The oneof2000. */ + @java.lang.Override public int getOneof2000() { if (hugeOneofCase_ == 2000) { return (java.lang.Integer) hugeOneof_; @@ -195660,10 +216673,19 @@ public int getOneof2000() { } public static final int ONEOF_2001_FIELD_NUMBER = 2001; + /** + * int32 oneof_2001 = 2001; + * @return Whether the oneof2001 field is set. + */ + @java.lang.Override + public boolean hasOneof2001() { + return hugeOneofCase_ == 2001; + } /** * int32 oneof_2001 = 2001; * @return The oneof2001. */ + @java.lang.Override public int getOneof2001() { if (hugeOneofCase_ == 2001) { return (java.lang.Integer) hugeOneof_; @@ -195672,10 +216694,19 @@ public int getOneof2001() { } public static final int ONEOF_2002_FIELD_NUMBER = 2002; + /** + * int32 oneof_2002 = 2002; + * @return Whether the oneof2002 field is set. + */ + @java.lang.Override + public boolean hasOneof2002() { + return hugeOneofCase_ == 2002; + } /** * int32 oneof_2002 = 2002; * @return The oneof2002. */ + @java.lang.Override public int getOneof2002() { if (hugeOneofCase_ == 2002) { return (java.lang.Integer) hugeOneof_; @@ -195684,10 +216715,19 @@ public int getOneof2002() { } public static final int ONEOF_2003_FIELD_NUMBER = 2003; + /** + * int32 oneof_2003 = 2003; + * @return Whether the oneof2003 field is set. + */ + @java.lang.Override + public boolean hasOneof2003() { + return hugeOneofCase_ == 2003; + } /** * int32 oneof_2003 = 2003; * @return The oneof2003. */ + @java.lang.Override public int getOneof2003() { if (hugeOneofCase_ == 2003) { return (java.lang.Integer) hugeOneof_; @@ -195696,10 +216736,19 @@ public int getOneof2003() { } public static final int ONEOF_2004_FIELD_NUMBER = 2004; + /** + * int32 oneof_2004 = 2004; + * @return Whether the oneof2004 field is set. + */ + @java.lang.Override + public boolean hasOneof2004() { + return hugeOneofCase_ == 2004; + } /** * int32 oneof_2004 = 2004; * @return The oneof2004. */ + @java.lang.Override public int getOneof2004() { if (hugeOneofCase_ == 2004) { return (java.lang.Integer) hugeOneof_; @@ -195708,10 +216757,19 @@ public int getOneof2004() { } public static final int ONEOF_2005_FIELD_NUMBER = 2005; + /** + * int32 oneof_2005 = 2005; + * @return Whether the oneof2005 field is set. + */ + @java.lang.Override + public boolean hasOneof2005() { + return hugeOneofCase_ == 2005; + } /** * int32 oneof_2005 = 2005; * @return The oneof2005. */ + @java.lang.Override public int getOneof2005() { if (hugeOneofCase_ == 2005) { return (java.lang.Integer) hugeOneof_; @@ -195720,10 +216778,19 @@ public int getOneof2005() { } public static final int ONEOF_2006_FIELD_NUMBER = 2006; + /** + * int32 oneof_2006 = 2006; + * @return Whether the oneof2006 field is set. + */ + @java.lang.Override + public boolean hasOneof2006() { + return hugeOneofCase_ == 2006; + } /** * int32 oneof_2006 = 2006; * @return The oneof2006. */ + @java.lang.Override public int getOneof2006() { if (hugeOneofCase_ == 2006) { return (java.lang.Integer) hugeOneof_; @@ -195732,10 +216799,19 @@ public int getOneof2006() { } public static final int ONEOF_2007_FIELD_NUMBER = 2007; + /** + * int32 oneof_2007 = 2007; + * @return Whether the oneof2007 field is set. + */ + @java.lang.Override + public boolean hasOneof2007() { + return hugeOneofCase_ == 2007; + } /** * int32 oneof_2007 = 2007; * @return The oneof2007. */ + @java.lang.Override public int getOneof2007() { if (hugeOneofCase_ == 2007) { return (java.lang.Integer) hugeOneof_; @@ -195744,10 +216820,19 @@ public int getOneof2007() { } public static final int ONEOF_2008_FIELD_NUMBER = 2008; + /** + * int32 oneof_2008 = 2008; + * @return Whether the oneof2008 field is set. + */ + @java.lang.Override + public boolean hasOneof2008() { + return hugeOneofCase_ == 2008; + } /** * int32 oneof_2008 = 2008; * @return The oneof2008. */ + @java.lang.Override public int getOneof2008() { if (hugeOneofCase_ == 2008) { return (java.lang.Integer) hugeOneof_; @@ -195756,10 +216841,19 @@ public int getOneof2008() { } public static final int ONEOF_2009_FIELD_NUMBER = 2009; + /** + * int32 oneof_2009 = 2009; + * @return Whether the oneof2009 field is set. + */ + @java.lang.Override + public boolean hasOneof2009() { + return hugeOneofCase_ == 2009; + } /** * int32 oneof_2009 = 2009; * @return The oneof2009. */ + @java.lang.Override public int getOneof2009() { if (hugeOneofCase_ == 2009) { return (java.lang.Integer) hugeOneof_; @@ -195768,22 +216862,40 @@ public int getOneof2009() { } public static final int ONEOF_2010_FIELD_NUMBER = 2010; + /** + * int32 oneof_2010 = 2010; + * @return Whether the oneof2010 field is set. + */ + @java.lang.Override + public boolean hasOneof2010() { + return hugeOneofCase_ == 2010; + } /** * int32 oneof_2010 = 2010; * @return The oneof2010. */ + @java.lang.Override public int getOneof2010() { if (hugeOneofCase_ == 2010) { return (java.lang.Integer) hugeOneof_; } return 0; } - - public static final int ONEOF_2011_FIELD_NUMBER = 2011; + + public static final int ONEOF_2011_FIELD_NUMBER = 2011; + /** + * int32 oneof_2011 = 2011; + * @return Whether the oneof2011 field is set. + */ + @java.lang.Override + public boolean hasOneof2011() { + return hugeOneofCase_ == 2011; + } /** * int32 oneof_2011 = 2011; * @return The oneof2011. */ + @java.lang.Override public int getOneof2011() { if (hugeOneofCase_ == 2011) { return (java.lang.Integer) hugeOneof_; @@ -195792,10 +216904,19 @@ public int getOneof2011() { } public static final int ONEOF_2012_FIELD_NUMBER = 2012; + /** + * int32 oneof_2012 = 2012; + * @return Whether the oneof2012 field is set. + */ + @java.lang.Override + public boolean hasOneof2012() { + return hugeOneofCase_ == 2012; + } /** * int32 oneof_2012 = 2012; * @return The oneof2012. */ + @java.lang.Override public int getOneof2012() { if (hugeOneofCase_ == 2012) { return (java.lang.Integer) hugeOneof_; @@ -195804,10 +216925,19 @@ public int getOneof2012() { } public static final int ONEOF_2013_FIELD_NUMBER = 2013; + /** + * int32 oneof_2013 = 2013; + * @return Whether the oneof2013 field is set. + */ + @java.lang.Override + public boolean hasOneof2013() { + return hugeOneofCase_ == 2013; + } /** * int32 oneof_2013 = 2013; * @return The oneof2013. */ + @java.lang.Override public int getOneof2013() { if (hugeOneofCase_ == 2013) { return (java.lang.Integer) hugeOneof_; @@ -195816,10 +216946,19 @@ public int getOneof2013() { } public static final int ONEOF_2014_FIELD_NUMBER = 2014; + /** + * int32 oneof_2014 = 2014; + * @return Whether the oneof2014 field is set. + */ + @java.lang.Override + public boolean hasOneof2014() { + return hugeOneofCase_ == 2014; + } /** * int32 oneof_2014 = 2014; * @return The oneof2014. */ + @java.lang.Override public int getOneof2014() { if (hugeOneofCase_ == 2014) { return (java.lang.Integer) hugeOneof_; @@ -195828,10 +216967,19 @@ public int getOneof2014() { } public static final int ONEOF_2015_FIELD_NUMBER = 2015; + /** + * int32 oneof_2015 = 2015; + * @return Whether the oneof2015 field is set. + */ + @java.lang.Override + public boolean hasOneof2015() { + return hugeOneofCase_ == 2015; + } /** * int32 oneof_2015 = 2015; * @return The oneof2015. */ + @java.lang.Override public int getOneof2015() { if (hugeOneofCase_ == 2015) { return (java.lang.Integer) hugeOneof_; @@ -195840,10 +216988,19 @@ public int getOneof2015() { } public static final int ONEOF_2016_FIELD_NUMBER = 2016; + /** + * int32 oneof_2016 = 2016; + * @return Whether the oneof2016 field is set. + */ + @java.lang.Override + public boolean hasOneof2016() { + return hugeOneofCase_ == 2016; + } /** * int32 oneof_2016 = 2016; * @return The oneof2016. */ + @java.lang.Override public int getOneof2016() { if (hugeOneofCase_ == 2016) { return (java.lang.Integer) hugeOneof_; @@ -195852,10 +217009,19 @@ public int getOneof2016() { } public static final int ONEOF_2017_FIELD_NUMBER = 2017; + /** + * int32 oneof_2017 = 2017; + * @return Whether the oneof2017 field is set. + */ + @java.lang.Override + public boolean hasOneof2017() { + return hugeOneofCase_ == 2017; + } /** * int32 oneof_2017 = 2017; * @return The oneof2017. */ + @java.lang.Override public int getOneof2017() { if (hugeOneofCase_ == 2017) { return (java.lang.Integer) hugeOneof_; @@ -195864,10 +217030,19 @@ public int getOneof2017() { } public static final int ONEOF_2018_FIELD_NUMBER = 2018; + /** + * int32 oneof_2018 = 2018; + * @return Whether the oneof2018 field is set. + */ + @java.lang.Override + public boolean hasOneof2018() { + return hugeOneofCase_ == 2018; + } /** * int32 oneof_2018 = 2018; * @return The oneof2018. */ + @java.lang.Override public int getOneof2018() { if (hugeOneofCase_ == 2018) { return (java.lang.Integer) hugeOneof_; @@ -195876,10 +217051,19 @@ public int getOneof2018() { } public static final int ONEOF_2019_FIELD_NUMBER = 2019; + /** + * int32 oneof_2019 = 2019; + * @return Whether the oneof2019 field is set. + */ + @java.lang.Override + public boolean hasOneof2019() { + return hugeOneofCase_ == 2019; + } /** * int32 oneof_2019 = 2019; * @return The oneof2019. */ + @java.lang.Override public int getOneof2019() { if (hugeOneofCase_ == 2019) { return (java.lang.Integer) hugeOneof_; @@ -195888,10 +217072,19 @@ public int getOneof2019() { } public static final int ONEOF_2020_FIELD_NUMBER = 2020; + /** + * int32 oneof_2020 = 2020; + * @return Whether the oneof2020 field is set. + */ + @java.lang.Override + public boolean hasOneof2020() { + return hugeOneofCase_ == 2020; + } /** * int32 oneof_2020 = 2020; * @return The oneof2020. */ + @java.lang.Override public int getOneof2020() { if (hugeOneofCase_ == 2020) { return (java.lang.Integer) hugeOneof_; @@ -195900,10 +217093,19 @@ public int getOneof2020() { } public static final int ONEOF_2021_FIELD_NUMBER = 2021; + /** + * int32 oneof_2021 = 2021; + * @return Whether the oneof2021 field is set. + */ + @java.lang.Override + public boolean hasOneof2021() { + return hugeOneofCase_ == 2021; + } /** * int32 oneof_2021 = 2021; * @return The oneof2021. */ + @java.lang.Override public int getOneof2021() { if (hugeOneofCase_ == 2021) { return (java.lang.Integer) hugeOneof_; @@ -195912,10 +217114,19 @@ public int getOneof2021() { } public static final int ONEOF_2022_FIELD_NUMBER = 2022; + /** + * int32 oneof_2022 = 2022; + * @return Whether the oneof2022 field is set. + */ + @java.lang.Override + public boolean hasOneof2022() { + return hugeOneofCase_ == 2022; + } /** * int32 oneof_2022 = 2022; * @return The oneof2022. */ + @java.lang.Override public int getOneof2022() { if (hugeOneofCase_ == 2022) { return (java.lang.Integer) hugeOneof_; @@ -195924,10 +217135,19 @@ public int getOneof2022() { } public static final int ONEOF_2023_FIELD_NUMBER = 2023; + /** + * int32 oneof_2023 = 2023; + * @return Whether the oneof2023 field is set. + */ + @java.lang.Override + public boolean hasOneof2023() { + return hugeOneofCase_ == 2023; + } /** * int32 oneof_2023 = 2023; * @return The oneof2023. */ + @java.lang.Override public int getOneof2023() { if (hugeOneofCase_ == 2023) { return (java.lang.Integer) hugeOneof_; @@ -195936,10 +217156,19 @@ public int getOneof2023() { } public static final int ONEOF_2024_FIELD_NUMBER = 2024; + /** + * int32 oneof_2024 = 2024; + * @return Whether the oneof2024 field is set. + */ + @java.lang.Override + public boolean hasOneof2024() { + return hugeOneofCase_ == 2024; + } /** * int32 oneof_2024 = 2024; * @return The oneof2024. */ + @java.lang.Override public int getOneof2024() { if (hugeOneofCase_ == 2024) { return (java.lang.Integer) hugeOneof_; @@ -195948,10 +217177,19 @@ public int getOneof2024() { } public static final int ONEOF_2025_FIELD_NUMBER = 2025; + /** + * int32 oneof_2025 = 2025; + * @return Whether the oneof2025 field is set. + */ + @java.lang.Override + public boolean hasOneof2025() { + return hugeOneofCase_ == 2025; + } /** * int32 oneof_2025 = 2025; * @return The oneof2025. */ + @java.lang.Override public int getOneof2025() { if (hugeOneofCase_ == 2025) { return (java.lang.Integer) hugeOneof_; @@ -195960,10 +217198,19 @@ public int getOneof2025() { } public static final int ONEOF_2026_FIELD_NUMBER = 2026; + /** + * int32 oneof_2026 = 2026; + * @return Whether the oneof2026 field is set. + */ + @java.lang.Override + public boolean hasOneof2026() { + return hugeOneofCase_ == 2026; + } /** * int32 oneof_2026 = 2026; * @return The oneof2026. */ + @java.lang.Override public int getOneof2026() { if (hugeOneofCase_ == 2026) { return (java.lang.Integer) hugeOneof_; @@ -195972,10 +217219,19 @@ public int getOneof2026() { } public static final int ONEOF_2027_FIELD_NUMBER = 2027; + /** + * int32 oneof_2027 = 2027; + * @return Whether the oneof2027 field is set. + */ + @java.lang.Override + public boolean hasOneof2027() { + return hugeOneofCase_ == 2027; + } /** * int32 oneof_2027 = 2027; * @return The oneof2027. */ + @java.lang.Override public int getOneof2027() { if (hugeOneofCase_ == 2027) { return (java.lang.Integer) hugeOneof_; @@ -195984,10 +217240,19 @@ public int getOneof2027() { } public static final int ONEOF_2028_FIELD_NUMBER = 2028; + /** + * int32 oneof_2028 = 2028; + * @return Whether the oneof2028 field is set. + */ + @java.lang.Override + public boolean hasOneof2028() { + return hugeOneofCase_ == 2028; + } /** * int32 oneof_2028 = 2028; * @return The oneof2028. */ + @java.lang.Override public int getOneof2028() { if (hugeOneofCase_ == 2028) { return (java.lang.Integer) hugeOneof_; @@ -195996,10 +217261,19 @@ public int getOneof2028() { } public static final int ONEOF_2029_FIELD_NUMBER = 2029; + /** + * int32 oneof_2029 = 2029; + * @return Whether the oneof2029 field is set. + */ + @java.lang.Override + public boolean hasOneof2029() { + return hugeOneofCase_ == 2029; + } /** * int32 oneof_2029 = 2029; * @return The oneof2029. */ + @java.lang.Override public int getOneof2029() { if (hugeOneofCase_ == 2029) { return (java.lang.Integer) hugeOneof_; @@ -196008,10 +217282,19 @@ public int getOneof2029() { } public static final int ONEOF_2030_FIELD_NUMBER = 2030; + /** + * int32 oneof_2030 = 2030; + * @return Whether the oneof2030 field is set. + */ + @java.lang.Override + public boolean hasOneof2030() { + return hugeOneofCase_ == 2030; + } /** * int32 oneof_2030 = 2030; * @return The oneof2030. */ + @java.lang.Override public int getOneof2030() { if (hugeOneofCase_ == 2030) { return (java.lang.Integer) hugeOneof_; @@ -196020,10 +217303,19 @@ public int getOneof2030() { } public static final int ONEOF_2031_FIELD_NUMBER = 2031; + /** + * int32 oneof_2031 = 2031; + * @return Whether the oneof2031 field is set. + */ + @java.lang.Override + public boolean hasOneof2031() { + return hugeOneofCase_ == 2031; + } /** * int32 oneof_2031 = 2031; * @return The oneof2031. */ + @java.lang.Override public int getOneof2031() { if (hugeOneofCase_ == 2031) { return (java.lang.Integer) hugeOneof_; @@ -196032,10 +217324,19 @@ public int getOneof2031() { } public static final int ONEOF_2032_FIELD_NUMBER = 2032; + /** + * int32 oneof_2032 = 2032; + * @return Whether the oneof2032 field is set. + */ + @java.lang.Override + public boolean hasOneof2032() { + return hugeOneofCase_ == 2032; + } /** * int32 oneof_2032 = 2032; * @return The oneof2032. */ + @java.lang.Override public int getOneof2032() { if (hugeOneofCase_ == 2032) { return (java.lang.Integer) hugeOneof_; @@ -196044,10 +217345,19 @@ public int getOneof2032() { } public static final int ONEOF_2033_FIELD_NUMBER = 2033; + /** + * int32 oneof_2033 = 2033; + * @return Whether the oneof2033 field is set. + */ + @java.lang.Override + public boolean hasOneof2033() { + return hugeOneofCase_ == 2033; + } /** * int32 oneof_2033 = 2033; * @return The oneof2033. */ + @java.lang.Override public int getOneof2033() { if (hugeOneofCase_ == 2033) { return (java.lang.Integer) hugeOneof_; @@ -196056,10 +217366,19 @@ public int getOneof2033() { } public static final int ONEOF_2034_FIELD_NUMBER = 2034; + /** + * int32 oneof_2034 = 2034; + * @return Whether the oneof2034 field is set. + */ + @java.lang.Override + public boolean hasOneof2034() { + return hugeOneofCase_ == 2034; + } /** * int32 oneof_2034 = 2034; * @return The oneof2034. */ + @java.lang.Override public int getOneof2034() { if (hugeOneofCase_ == 2034) { return (java.lang.Integer) hugeOneof_; @@ -196068,10 +217387,19 @@ public int getOneof2034() { } public static final int ONEOF_2035_FIELD_NUMBER = 2035; + /** + * int32 oneof_2035 = 2035; + * @return Whether the oneof2035 field is set. + */ + @java.lang.Override + public boolean hasOneof2035() { + return hugeOneofCase_ == 2035; + } /** * int32 oneof_2035 = 2035; * @return The oneof2035. */ + @java.lang.Override public int getOneof2035() { if (hugeOneofCase_ == 2035) { return (java.lang.Integer) hugeOneof_; @@ -196080,10 +217408,19 @@ public int getOneof2035() { } public static final int ONEOF_2036_FIELD_NUMBER = 2036; + /** + * int32 oneof_2036 = 2036; + * @return Whether the oneof2036 field is set. + */ + @java.lang.Override + public boolean hasOneof2036() { + return hugeOneofCase_ == 2036; + } /** * int32 oneof_2036 = 2036; * @return The oneof2036. */ + @java.lang.Override public int getOneof2036() { if (hugeOneofCase_ == 2036) { return (java.lang.Integer) hugeOneof_; @@ -196092,10 +217429,19 @@ public int getOneof2036() { } public static final int ONEOF_2037_FIELD_NUMBER = 2037; + /** + * int32 oneof_2037 = 2037; + * @return Whether the oneof2037 field is set. + */ + @java.lang.Override + public boolean hasOneof2037() { + return hugeOneofCase_ == 2037; + } /** * int32 oneof_2037 = 2037; * @return The oneof2037. */ + @java.lang.Override public int getOneof2037() { if (hugeOneofCase_ == 2037) { return (java.lang.Integer) hugeOneof_; @@ -196104,10 +217450,19 @@ public int getOneof2037() { } public static final int ONEOF_2038_FIELD_NUMBER = 2038; + /** + * int32 oneof_2038 = 2038; + * @return Whether the oneof2038 field is set. + */ + @java.lang.Override + public boolean hasOneof2038() { + return hugeOneofCase_ == 2038; + } /** * int32 oneof_2038 = 2038; * @return The oneof2038. */ + @java.lang.Override public int getOneof2038() { if (hugeOneofCase_ == 2038) { return (java.lang.Integer) hugeOneof_; @@ -196116,10 +217471,19 @@ public int getOneof2038() { } public static final int ONEOF_2039_FIELD_NUMBER = 2039; + /** + * int32 oneof_2039 = 2039; + * @return Whether the oneof2039 field is set. + */ + @java.lang.Override + public boolean hasOneof2039() { + return hugeOneofCase_ == 2039; + } /** * int32 oneof_2039 = 2039; * @return The oneof2039. */ + @java.lang.Override public int getOneof2039() { if (hugeOneofCase_ == 2039) { return (java.lang.Integer) hugeOneof_; @@ -196128,10 +217492,19 @@ public int getOneof2039() { } public static final int ONEOF_2040_FIELD_NUMBER = 2040; + /** + * int32 oneof_2040 = 2040; + * @return Whether the oneof2040 field is set. + */ + @java.lang.Override + public boolean hasOneof2040() { + return hugeOneofCase_ == 2040; + } /** * int32 oneof_2040 = 2040; * @return The oneof2040. */ + @java.lang.Override public int getOneof2040() { if (hugeOneofCase_ == 2040) { return (java.lang.Integer) hugeOneof_; @@ -196140,10 +217513,19 @@ public int getOneof2040() { } public static final int ONEOF_2041_FIELD_NUMBER = 2041; + /** + * int32 oneof_2041 = 2041; + * @return Whether the oneof2041 field is set. + */ + @java.lang.Override + public boolean hasOneof2041() { + return hugeOneofCase_ == 2041; + } /** * int32 oneof_2041 = 2041; * @return The oneof2041. */ + @java.lang.Override public int getOneof2041() { if (hugeOneofCase_ == 2041) { return (java.lang.Integer) hugeOneof_; @@ -196152,10 +217534,19 @@ public int getOneof2041() { } public static final int ONEOF_2042_FIELD_NUMBER = 2042; + /** + * int32 oneof_2042 = 2042; + * @return Whether the oneof2042 field is set. + */ + @java.lang.Override + public boolean hasOneof2042() { + return hugeOneofCase_ == 2042; + } /** * int32 oneof_2042 = 2042; * @return The oneof2042. */ + @java.lang.Override public int getOneof2042() { if (hugeOneofCase_ == 2042) { return (java.lang.Integer) hugeOneof_; @@ -196164,10 +217555,19 @@ public int getOneof2042() { } public static final int ONEOF_2043_FIELD_NUMBER = 2043; + /** + * int32 oneof_2043 = 2043; + * @return Whether the oneof2043 field is set. + */ + @java.lang.Override + public boolean hasOneof2043() { + return hugeOneofCase_ == 2043; + } /** * int32 oneof_2043 = 2043; * @return The oneof2043. */ + @java.lang.Override public int getOneof2043() { if (hugeOneofCase_ == 2043) { return (java.lang.Integer) hugeOneof_; @@ -196176,10 +217576,19 @@ public int getOneof2043() { } public static final int ONEOF_2044_FIELD_NUMBER = 2044; + /** + * int32 oneof_2044 = 2044; + * @return Whether the oneof2044 field is set. + */ + @java.lang.Override + public boolean hasOneof2044() { + return hugeOneofCase_ == 2044; + } /** * int32 oneof_2044 = 2044; * @return The oneof2044. */ + @java.lang.Override public int getOneof2044() { if (hugeOneofCase_ == 2044) { return (java.lang.Integer) hugeOneof_; @@ -196188,10 +217597,19 @@ public int getOneof2044() { } public static final int ONEOF_2045_FIELD_NUMBER = 2045; + /** + * int32 oneof_2045 = 2045; + * @return Whether the oneof2045 field is set. + */ + @java.lang.Override + public boolean hasOneof2045() { + return hugeOneofCase_ == 2045; + } /** * int32 oneof_2045 = 2045; * @return The oneof2045. */ + @java.lang.Override public int getOneof2045() { if (hugeOneofCase_ == 2045) { return (java.lang.Integer) hugeOneof_; @@ -196200,10 +217618,19 @@ public int getOneof2045() { } public static final int ONEOF_2046_FIELD_NUMBER = 2046; + /** + * int32 oneof_2046 = 2046; + * @return Whether the oneof2046 field is set. + */ + @java.lang.Override + public boolean hasOneof2046() { + return hugeOneofCase_ == 2046; + } /** * int32 oneof_2046 = 2046; * @return The oneof2046. */ + @java.lang.Override public int getOneof2046() { if (hugeOneofCase_ == 2046) { return (java.lang.Integer) hugeOneof_; @@ -196212,10 +217639,19 @@ public int getOneof2046() { } public static final int ONEOF_2047_FIELD_NUMBER = 2047; + /** + * int32 oneof_2047 = 2047; + * @return Whether the oneof2047 field is set. + */ + @java.lang.Override + public boolean hasOneof2047() { + return hugeOneofCase_ == 2047; + } /** * int32 oneof_2047 = 2047; * @return The oneof2047. */ + @java.lang.Override public int getOneof2047() { if (hugeOneofCase_ == 2047) { return (java.lang.Integer) hugeOneof_; @@ -196224,10 +217660,19 @@ public int getOneof2047() { } public static final int ONEOF_2048_FIELD_NUMBER = 2048; + /** + * int32 oneof_2048 = 2048; + * @return Whether the oneof2048 field is set. + */ + @java.lang.Override + public boolean hasOneof2048() { + return hugeOneofCase_ == 2048; + } /** * int32 oneof_2048 = 2048; * @return The oneof2048. */ + @java.lang.Override public int getOneof2048() { if (hugeOneofCase_ == 2048) { return (java.lang.Integer) hugeOneof_; @@ -196236,10 +217681,19 @@ public int getOneof2048() { } public static final int ONEOF_2049_FIELD_NUMBER = 2049; + /** + * int32 oneof_2049 = 2049; + * @return Whether the oneof2049 field is set. + */ + @java.lang.Override + public boolean hasOneof2049() { + return hugeOneofCase_ == 2049; + } /** * int32 oneof_2049 = 2049; * @return The oneof2049. */ + @java.lang.Override public int getOneof2049() { if (hugeOneofCase_ == 2049) { return (java.lang.Integer) hugeOneof_; @@ -196248,10 +217702,19 @@ public int getOneof2049() { } public static final int ONEOF_2050_FIELD_NUMBER = 2050; + /** + * int32 oneof_2050 = 2050; + * @return Whether the oneof2050 field is set. + */ + @java.lang.Override + public boolean hasOneof2050() { + return hugeOneofCase_ == 2050; + } /** * int32 oneof_2050 = 2050; * @return The oneof2050. */ + @java.lang.Override public int getOneof2050() { if (hugeOneofCase_ == 2050) { return (java.lang.Integer) hugeOneof_; @@ -196260,10 +217723,19 @@ public int getOneof2050() { } public static final int ONEOF_2051_FIELD_NUMBER = 2051; + /** + * int32 oneof_2051 = 2051; + * @return Whether the oneof2051 field is set. + */ + @java.lang.Override + public boolean hasOneof2051() { + return hugeOneofCase_ == 2051; + } /** * int32 oneof_2051 = 2051; * @return The oneof2051. */ + @java.lang.Override public int getOneof2051() { if (hugeOneofCase_ == 2051) { return (java.lang.Integer) hugeOneof_; @@ -196272,10 +217744,19 @@ public int getOneof2051() { } public static final int ONEOF_2052_FIELD_NUMBER = 2052; + /** + * int32 oneof_2052 = 2052; + * @return Whether the oneof2052 field is set. + */ + @java.lang.Override + public boolean hasOneof2052() { + return hugeOneofCase_ == 2052; + } /** * int32 oneof_2052 = 2052; * @return The oneof2052. */ + @java.lang.Override public int getOneof2052() { if (hugeOneofCase_ == 2052) { return (java.lang.Integer) hugeOneof_; @@ -196284,10 +217765,19 @@ public int getOneof2052() { } public static final int ONEOF_2053_FIELD_NUMBER = 2053; + /** + * int32 oneof_2053 = 2053; + * @return Whether the oneof2053 field is set. + */ + @java.lang.Override + public boolean hasOneof2053() { + return hugeOneofCase_ == 2053; + } /** * int32 oneof_2053 = 2053; * @return The oneof2053. */ + @java.lang.Override public int getOneof2053() { if (hugeOneofCase_ == 2053) { return (java.lang.Integer) hugeOneof_; @@ -196296,10 +217786,19 @@ public int getOneof2053() { } public static final int ONEOF_2054_FIELD_NUMBER = 2054; + /** + * int32 oneof_2054 = 2054; + * @return Whether the oneof2054 field is set. + */ + @java.lang.Override + public boolean hasOneof2054() { + return hugeOneofCase_ == 2054; + } /** * int32 oneof_2054 = 2054; * @return The oneof2054. */ + @java.lang.Override public int getOneof2054() { if (hugeOneofCase_ == 2054) { return (java.lang.Integer) hugeOneof_; @@ -196308,10 +217807,19 @@ public int getOneof2054() { } public static final int ONEOF_2055_FIELD_NUMBER = 2055; + /** + * int32 oneof_2055 = 2055; + * @return Whether the oneof2055 field is set. + */ + @java.lang.Override + public boolean hasOneof2055() { + return hugeOneofCase_ == 2055; + } /** * int32 oneof_2055 = 2055; * @return The oneof2055. */ + @java.lang.Override public int getOneof2055() { if (hugeOneofCase_ == 2055) { return (java.lang.Integer) hugeOneof_; @@ -196320,10 +217828,19 @@ public int getOneof2055() { } public static final int ONEOF_2056_FIELD_NUMBER = 2056; + /** + * int32 oneof_2056 = 2056; + * @return Whether the oneof2056 field is set. + */ + @java.lang.Override + public boolean hasOneof2056() { + return hugeOneofCase_ == 2056; + } /** * int32 oneof_2056 = 2056; * @return The oneof2056. */ + @java.lang.Override public int getOneof2056() { if (hugeOneofCase_ == 2056) { return (java.lang.Integer) hugeOneof_; @@ -196332,10 +217849,19 @@ public int getOneof2056() { } public static final int ONEOF_2057_FIELD_NUMBER = 2057; + /** + * int32 oneof_2057 = 2057; + * @return Whether the oneof2057 field is set. + */ + @java.lang.Override + public boolean hasOneof2057() { + return hugeOneofCase_ == 2057; + } /** * int32 oneof_2057 = 2057; * @return The oneof2057. */ + @java.lang.Override public int getOneof2057() { if (hugeOneofCase_ == 2057) { return (java.lang.Integer) hugeOneof_; @@ -196344,10 +217870,19 @@ public int getOneof2057() { } public static final int ONEOF_2058_FIELD_NUMBER = 2058; + /** + * int32 oneof_2058 = 2058; + * @return Whether the oneof2058 field is set. + */ + @java.lang.Override + public boolean hasOneof2058() { + return hugeOneofCase_ == 2058; + } /** * int32 oneof_2058 = 2058; * @return The oneof2058. */ + @java.lang.Override public int getOneof2058() { if (hugeOneofCase_ == 2058) { return (java.lang.Integer) hugeOneof_; @@ -196356,10 +217891,19 @@ public int getOneof2058() { } public static final int ONEOF_2059_FIELD_NUMBER = 2059; + /** + * int32 oneof_2059 = 2059; + * @return Whether the oneof2059 field is set. + */ + @java.lang.Override + public boolean hasOneof2059() { + return hugeOneofCase_ == 2059; + } /** * int32 oneof_2059 = 2059; * @return The oneof2059. */ + @java.lang.Override public int getOneof2059() { if (hugeOneofCase_ == 2059) { return (java.lang.Integer) hugeOneof_; @@ -196368,10 +217912,19 @@ public int getOneof2059() { } public static final int ONEOF_2060_FIELD_NUMBER = 2060; + /** + * int32 oneof_2060 = 2060; + * @return Whether the oneof2060 field is set. + */ + @java.lang.Override + public boolean hasOneof2060() { + return hugeOneofCase_ == 2060; + } /** * int32 oneof_2060 = 2060; * @return The oneof2060. */ + @java.lang.Override public int getOneof2060() { if (hugeOneofCase_ == 2060) { return (java.lang.Integer) hugeOneof_; @@ -196380,10 +217933,19 @@ public int getOneof2060() { } public static final int ONEOF_2061_FIELD_NUMBER = 2061; + /** + * int32 oneof_2061 = 2061; + * @return Whether the oneof2061 field is set. + */ + @java.lang.Override + public boolean hasOneof2061() { + return hugeOneofCase_ == 2061; + } /** * int32 oneof_2061 = 2061; * @return The oneof2061. */ + @java.lang.Override public int getOneof2061() { if (hugeOneofCase_ == 2061) { return (java.lang.Integer) hugeOneof_; @@ -196392,10 +217954,19 @@ public int getOneof2061() { } public static final int ONEOF_2062_FIELD_NUMBER = 2062; + /** + * int32 oneof_2062 = 2062; + * @return Whether the oneof2062 field is set. + */ + @java.lang.Override + public boolean hasOneof2062() { + return hugeOneofCase_ == 2062; + } /** * int32 oneof_2062 = 2062; * @return The oneof2062. */ + @java.lang.Override public int getOneof2062() { if (hugeOneofCase_ == 2062) { return (java.lang.Integer) hugeOneof_; @@ -196404,10 +217975,19 @@ public int getOneof2062() { } public static final int ONEOF_2063_FIELD_NUMBER = 2063; + /** + * int32 oneof_2063 = 2063; + * @return Whether the oneof2063 field is set. + */ + @java.lang.Override + public boolean hasOneof2063() { + return hugeOneofCase_ == 2063; + } /** * int32 oneof_2063 = 2063; * @return The oneof2063. */ + @java.lang.Override public int getOneof2063() { if (hugeOneofCase_ == 2063) { return (java.lang.Integer) hugeOneof_; @@ -196416,10 +217996,19 @@ public int getOneof2063() { } public static final int ONEOF_2064_FIELD_NUMBER = 2064; + /** + * int32 oneof_2064 = 2064; + * @return Whether the oneof2064 field is set. + */ + @java.lang.Override + public boolean hasOneof2064() { + return hugeOneofCase_ == 2064; + } /** * int32 oneof_2064 = 2064; * @return The oneof2064. */ + @java.lang.Override public int getOneof2064() { if (hugeOneofCase_ == 2064) { return (java.lang.Integer) hugeOneof_; @@ -196428,10 +218017,19 @@ public int getOneof2064() { } public static final int ONEOF_2065_FIELD_NUMBER = 2065; + /** + * int32 oneof_2065 = 2065; + * @return Whether the oneof2065 field is set. + */ + @java.lang.Override + public boolean hasOneof2065() { + return hugeOneofCase_ == 2065; + } /** * int32 oneof_2065 = 2065; * @return The oneof2065. */ + @java.lang.Override public int getOneof2065() { if (hugeOneofCase_ == 2065) { return (java.lang.Integer) hugeOneof_; @@ -196440,10 +218038,19 @@ public int getOneof2065() { } public static final int ONEOF_2066_FIELD_NUMBER = 2066; + /** + * int32 oneof_2066 = 2066; + * @return Whether the oneof2066 field is set. + */ + @java.lang.Override + public boolean hasOneof2066() { + return hugeOneofCase_ == 2066; + } /** * int32 oneof_2066 = 2066; * @return The oneof2066. */ + @java.lang.Override public int getOneof2066() { if (hugeOneofCase_ == 2066) { return (java.lang.Integer) hugeOneof_; @@ -196452,10 +218059,19 @@ public int getOneof2066() { } public static final int ONEOF_2067_FIELD_NUMBER = 2067; + /** + * int32 oneof_2067 = 2067; + * @return Whether the oneof2067 field is set. + */ + @java.lang.Override + public boolean hasOneof2067() { + return hugeOneofCase_ == 2067; + } /** * int32 oneof_2067 = 2067; * @return The oneof2067. */ + @java.lang.Override public int getOneof2067() { if (hugeOneofCase_ == 2067) { return (java.lang.Integer) hugeOneof_; @@ -196464,10 +218080,19 @@ public int getOneof2067() { } public static final int ONEOF_2068_FIELD_NUMBER = 2068; + /** + * int32 oneof_2068 = 2068; + * @return Whether the oneof2068 field is set. + */ + @java.lang.Override + public boolean hasOneof2068() { + return hugeOneofCase_ == 2068; + } /** * int32 oneof_2068 = 2068; * @return The oneof2068. */ + @java.lang.Override public int getOneof2068() { if (hugeOneofCase_ == 2068) { return (java.lang.Integer) hugeOneof_; @@ -196476,10 +218101,19 @@ public int getOneof2068() { } public static final int ONEOF_2069_FIELD_NUMBER = 2069; + /** + * int32 oneof_2069 = 2069; + * @return Whether the oneof2069 field is set. + */ + @java.lang.Override + public boolean hasOneof2069() { + return hugeOneofCase_ == 2069; + } /** * int32 oneof_2069 = 2069; * @return The oneof2069. */ + @java.lang.Override public int getOneof2069() { if (hugeOneofCase_ == 2069) { return (java.lang.Integer) hugeOneof_; @@ -196488,10 +218122,19 @@ public int getOneof2069() { } public static final int ONEOF_2070_FIELD_NUMBER = 2070; + /** + * int32 oneof_2070 = 2070; + * @return Whether the oneof2070 field is set. + */ + @java.lang.Override + public boolean hasOneof2070() { + return hugeOneofCase_ == 2070; + } /** * int32 oneof_2070 = 2070; * @return The oneof2070. */ + @java.lang.Override public int getOneof2070() { if (hugeOneofCase_ == 2070) { return (java.lang.Integer) hugeOneof_; @@ -196500,10 +218143,19 @@ public int getOneof2070() { } public static final int ONEOF_2071_FIELD_NUMBER = 2071; + /** + * int32 oneof_2071 = 2071; + * @return Whether the oneof2071 field is set. + */ + @java.lang.Override + public boolean hasOneof2071() { + return hugeOneofCase_ == 2071; + } /** * int32 oneof_2071 = 2071; * @return The oneof2071. */ + @java.lang.Override public int getOneof2071() { if (hugeOneofCase_ == 2071) { return (java.lang.Integer) hugeOneof_; @@ -196512,10 +218164,19 @@ public int getOneof2071() { } public static final int ONEOF_2072_FIELD_NUMBER = 2072; + /** + * int32 oneof_2072 = 2072; + * @return Whether the oneof2072 field is set. + */ + @java.lang.Override + public boolean hasOneof2072() { + return hugeOneofCase_ == 2072; + } /** * int32 oneof_2072 = 2072; * @return The oneof2072. */ + @java.lang.Override public int getOneof2072() { if (hugeOneofCase_ == 2072) { return (java.lang.Integer) hugeOneof_; @@ -196524,10 +218185,19 @@ public int getOneof2072() { } public static final int ONEOF_2073_FIELD_NUMBER = 2073; + /** + * int32 oneof_2073 = 2073; + * @return Whether the oneof2073 field is set. + */ + @java.lang.Override + public boolean hasOneof2073() { + return hugeOneofCase_ == 2073; + } /** * int32 oneof_2073 = 2073; * @return The oneof2073. */ + @java.lang.Override public int getOneof2073() { if (hugeOneofCase_ == 2073) { return (java.lang.Integer) hugeOneof_; @@ -196536,10 +218206,19 @@ public int getOneof2073() { } public static final int ONEOF_2074_FIELD_NUMBER = 2074; + /** + * int32 oneof_2074 = 2074; + * @return Whether the oneof2074 field is set. + */ + @java.lang.Override + public boolean hasOneof2074() { + return hugeOneofCase_ == 2074; + } /** * int32 oneof_2074 = 2074; * @return The oneof2074. */ + @java.lang.Override public int getOneof2074() { if (hugeOneofCase_ == 2074) { return (java.lang.Integer) hugeOneof_; @@ -196548,10 +218227,19 @@ public int getOneof2074() { } public static final int ONEOF_2075_FIELD_NUMBER = 2075; + /** + * int32 oneof_2075 = 2075; + * @return Whether the oneof2075 field is set. + */ + @java.lang.Override + public boolean hasOneof2075() { + return hugeOneofCase_ == 2075; + } /** * int32 oneof_2075 = 2075; * @return The oneof2075. */ + @java.lang.Override public int getOneof2075() { if (hugeOneofCase_ == 2075) { return (java.lang.Integer) hugeOneof_; @@ -196560,10 +218248,19 @@ public int getOneof2075() { } public static final int ONEOF_2076_FIELD_NUMBER = 2076; + /** + * int32 oneof_2076 = 2076; + * @return Whether the oneof2076 field is set. + */ + @java.lang.Override + public boolean hasOneof2076() { + return hugeOneofCase_ == 2076; + } /** * int32 oneof_2076 = 2076; * @return The oneof2076. */ + @java.lang.Override public int getOneof2076() { if (hugeOneofCase_ == 2076) { return (java.lang.Integer) hugeOneof_; @@ -196572,10 +218269,19 @@ public int getOneof2076() { } public static final int ONEOF_2077_FIELD_NUMBER = 2077; + /** + * int32 oneof_2077 = 2077; + * @return Whether the oneof2077 field is set. + */ + @java.lang.Override + public boolean hasOneof2077() { + return hugeOneofCase_ == 2077; + } /** * int32 oneof_2077 = 2077; * @return The oneof2077. */ + @java.lang.Override public int getOneof2077() { if (hugeOneofCase_ == 2077) { return (java.lang.Integer) hugeOneof_; @@ -196584,10 +218290,19 @@ public int getOneof2077() { } public static final int ONEOF_2078_FIELD_NUMBER = 2078; + /** + * int32 oneof_2078 = 2078; + * @return Whether the oneof2078 field is set. + */ + @java.lang.Override + public boolean hasOneof2078() { + return hugeOneofCase_ == 2078; + } /** * int32 oneof_2078 = 2078; * @return The oneof2078. */ + @java.lang.Override public int getOneof2078() { if (hugeOneofCase_ == 2078) { return (java.lang.Integer) hugeOneof_; @@ -196596,10 +218311,19 @@ public int getOneof2078() { } public static final int ONEOF_2079_FIELD_NUMBER = 2079; + /** + * int32 oneof_2079 = 2079; + * @return Whether the oneof2079 field is set. + */ + @java.lang.Override + public boolean hasOneof2079() { + return hugeOneofCase_ == 2079; + } /** * int32 oneof_2079 = 2079; * @return The oneof2079. */ + @java.lang.Override public int getOneof2079() { if (hugeOneofCase_ == 2079) { return (java.lang.Integer) hugeOneof_; @@ -196608,10 +218332,19 @@ public int getOneof2079() { } public static final int ONEOF_2080_FIELD_NUMBER = 2080; + /** + * int32 oneof_2080 = 2080; + * @return Whether the oneof2080 field is set. + */ + @java.lang.Override + public boolean hasOneof2080() { + return hugeOneofCase_ == 2080; + } /** * int32 oneof_2080 = 2080; * @return The oneof2080. */ + @java.lang.Override public int getOneof2080() { if (hugeOneofCase_ == 2080) { return (java.lang.Integer) hugeOneof_; @@ -196620,10 +218353,19 @@ public int getOneof2080() { } public static final int ONEOF_2081_FIELD_NUMBER = 2081; + /** + * int32 oneof_2081 = 2081; + * @return Whether the oneof2081 field is set. + */ + @java.lang.Override + public boolean hasOneof2081() { + return hugeOneofCase_ == 2081; + } /** * int32 oneof_2081 = 2081; * @return The oneof2081. */ + @java.lang.Override public int getOneof2081() { if (hugeOneofCase_ == 2081) { return (java.lang.Integer) hugeOneof_; @@ -196632,10 +218374,19 @@ public int getOneof2081() { } public static final int ONEOF_2082_FIELD_NUMBER = 2082; + /** + * int32 oneof_2082 = 2082; + * @return Whether the oneof2082 field is set. + */ + @java.lang.Override + public boolean hasOneof2082() { + return hugeOneofCase_ == 2082; + } /** * int32 oneof_2082 = 2082; * @return The oneof2082. */ + @java.lang.Override public int getOneof2082() { if (hugeOneofCase_ == 2082) { return (java.lang.Integer) hugeOneof_; @@ -196644,10 +218395,19 @@ public int getOneof2082() { } public static final int ONEOF_2083_FIELD_NUMBER = 2083; + /** + * int32 oneof_2083 = 2083; + * @return Whether the oneof2083 field is set. + */ + @java.lang.Override + public boolean hasOneof2083() { + return hugeOneofCase_ == 2083; + } /** * int32 oneof_2083 = 2083; * @return The oneof2083. */ + @java.lang.Override public int getOneof2083() { if (hugeOneofCase_ == 2083) { return (java.lang.Integer) hugeOneof_; @@ -196656,10 +218416,19 @@ public int getOneof2083() { } public static final int ONEOF_2084_FIELD_NUMBER = 2084; + /** + * int32 oneof_2084 = 2084; + * @return Whether the oneof2084 field is set. + */ + @java.lang.Override + public boolean hasOneof2084() { + return hugeOneofCase_ == 2084; + } /** * int32 oneof_2084 = 2084; * @return The oneof2084. */ + @java.lang.Override public int getOneof2084() { if (hugeOneofCase_ == 2084) { return (java.lang.Integer) hugeOneof_; @@ -196668,10 +218437,19 @@ public int getOneof2084() { } public static final int ONEOF_2085_FIELD_NUMBER = 2085; + /** + * int32 oneof_2085 = 2085; + * @return Whether the oneof2085 field is set. + */ + @java.lang.Override + public boolean hasOneof2085() { + return hugeOneofCase_ == 2085; + } /** * int32 oneof_2085 = 2085; * @return The oneof2085. */ + @java.lang.Override public int getOneof2085() { if (hugeOneofCase_ == 2085) { return (java.lang.Integer) hugeOneof_; @@ -196680,10 +218458,19 @@ public int getOneof2085() { } public static final int ONEOF_2086_FIELD_NUMBER = 2086; + /** + * int32 oneof_2086 = 2086; + * @return Whether the oneof2086 field is set. + */ + @java.lang.Override + public boolean hasOneof2086() { + return hugeOneofCase_ == 2086; + } /** * int32 oneof_2086 = 2086; * @return The oneof2086. */ + @java.lang.Override public int getOneof2086() { if (hugeOneofCase_ == 2086) { return (java.lang.Integer) hugeOneof_; @@ -196692,10 +218479,19 @@ public int getOneof2086() { } public static final int ONEOF_2087_FIELD_NUMBER = 2087; + /** + * int32 oneof_2087 = 2087; + * @return Whether the oneof2087 field is set. + */ + @java.lang.Override + public boolean hasOneof2087() { + return hugeOneofCase_ == 2087; + } /** * int32 oneof_2087 = 2087; * @return The oneof2087. */ + @java.lang.Override public int getOneof2087() { if (hugeOneofCase_ == 2087) { return (java.lang.Integer) hugeOneof_; @@ -196704,10 +218500,19 @@ public int getOneof2087() { } public static final int ONEOF_2088_FIELD_NUMBER = 2088; + /** + * int32 oneof_2088 = 2088; + * @return Whether the oneof2088 field is set. + */ + @java.lang.Override + public boolean hasOneof2088() { + return hugeOneofCase_ == 2088; + } /** * int32 oneof_2088 = 2088; * @return The oneof2088. */ + @java.lang.Override public int getOneof2088() { if (hugeOneofCase_ == 2088) { return (java.lang.Integer) hugeOneof_; @@ -196716,10 +218521,19 @@ public int getOneof2088() { } public static final int ONEOF_2089_FIELD_NUMBER = 2089; + /** + * int32 oneof_2089 = 2089; + * @return Whether the oneof2089 field is set. + */ + @java.lang.Override + public boolean hasOneof2089() { + return hugeOneofCase_ == 2089; + } /** * int32 oneof_2089 = 2089; * @return The oneof2089. */ + @java.lang.Override public int getOneof2089() { if (hugeOneofCase_ == 2089) { return (java.lang.Integer) hugeOneof_; @@ -196728,10 +218542,19 @@ public int getOneof2089() { } public static final int ONEOF_2090_FIELD_NUMBER = 2090; + /** + * int32 oneof_2090 = 2090; + * @return Whether the oneof2090 field is set. + */ + @java.lang.Override + public boolean hasOneof2090() { + return hugeOneofCase_ == 2090; + } /** * int32 oneof_2090 = 2090; * @return The oneof2090. */ + @java.lang.Override public int getOneof2090() { if (hugeOneofCase_ == 2090) { return (java.lang.Integer) hugeOneof_; @@ -196740,10 +218563,19 @@ public int getOneof2090() { } public static final int ONEOF_2091_FIELD_NUMBER = 2091; + /** + * int32 oneof_2091 = 2091; + * @return Whether the oneof2091 field is set. + */ + @java.lang.Override + public boolean hasOneof2091() { + return hugeOneofCase_ == 2091; + } /** * int32 oneof_2091 = 2091; * @return The oneof2091. */ + @java.lang.Override public int getOneof2091() { if (hugeOneofCase_ == 2091) { return (java.lang.Integer) hugeOneof_; @@ -196752,10 +218584,19 @@ public int getOneof2091() { } public static final int ONEOF_2092_FIELD_NUMBER = 2092; + /** + * int32 oneof_2092 = 2092; + * @return Whether the oneof2092 field is set. + */ + @java.lang.Override + public boolean hasOneof2092() { + return hugeOneofCase_ == 2092; + } /** * int32 oneof_2092 = 2092; * @return The oneof2092. */ + @java.lang.Override public int getOneof2092() { if (hugeOneofCase_ == 2092) { return (java.lang.Integer) hugeOneof_; @@ -196764,10 +218605,19 @@ public int getOneof2092() { } public static final int ONEOF_2093_FIELD_NUMBER = 2093; + /** + * int32 oneof_2093 = 2093; + * @return Whether the oneof2093 field is set. + */ + @java.lang.Override + public boolean hasOneof2093() { + return hugeOneofCase_ == 2093; + } /** * int32 oneof_2093 = 2093; * @return The oneof2093. */ + @java.lang.Override public int getOneof2093() { if (hugeOneofCase_ == 2093) { return (java.lang.Integer) hugeOneof_; @@ -196776,10 +218626,19 @@ public int getOneof2093() { } public static final int ONEOF_2094_FIELD_NUMBER = 2094; + /** + * int32 oneof_2094 = 2094; + * @return Whether the oneof2094 field is set. + */ + @java.lang.Override + public boolean hasOneof2094() { + return hugeOneofCase_ == 2094; + } /** * int32 oneof_2094 = 2094; * @return The oneof2094. */ + @java.lang.Override public int getOneof2094() { if (hugeOneofCase_ == 2094) { return (java.lang.Integer) hugeOneof_; @@ -196788,10 +218647,19 @@ public int getOneof2094() { } public static final int ONEOF_2095_FIELD_NUMBER = 2095; + /** + * int32 oneof_2095 = 2095; + * @return Whether the oneof2095 field is set. + */ + @java.lang.Override + public boolean hasOneof2095() { + return hugeOneofCase_ == 2095; + } /** * int32 oneof_2095 = 2095; * @return The oneof2095. */ + @java.lang.Override public int getOneof2095() { if (hugeOneofCase_ == 2095) { return (java.lang.Integer) hugeOneof_; @@ -196800,10 +218668,19 @@ public int getOneof2095() { } public static final int ONEOF_2096_FIELD_NUMBER = 2096; + /** + * int32 oneof_2096 = 2096; + * @return Whether the oneof2096 field is set. + */ + @java.lang.Override + public boolean hasOneof2096() { + return hugeOneofCase_ == 2096; + } /** * int32 oneof_2096 = 2096; * @return The oneof2096. */ + @java.lang.Override public int getOneof2096() { if (hugeOneofCase_ == 2096) { return (java.lang.Integer) hugeOneof_; @@ -196812,10 +218689,19 @@ public int getOneof2096() { } public static final int ONEOF_2097_FIELD_NUMBER = 2097; + /** + * int32 oneof_2097 = 2097; + * @return Whether the oneof2097 field is set. + */ + @java.lang.Override + public boolean hasOneof2097() { + return hugeOneofCase_ == 2097; + } /** * int32 oneof_2097 = 2097; * @return The oneof2097. */ + @java.lang.Override public int getOneof2097() { if (hugeOneofCase_ == 2097) { return (java.lang.Integer) hugeOneof_; @@ -196824,10 +218710,19 @@ public int getOneof2097() { } public static final int ONEOF_2098_FIELD_NUMBER = 2098; + /** + * int32 oneof_2098 = 2098; + * @return Whether the oneof2098 field is set. + */ + @java.lang.Override + public boolean hasOneof2098() { + return hugeOneofCase_ == 2098; + } /** * int32 oneof_2098 = 2098; * @return The oneof2098. */ + @java.lang.Override public int getOneof2098() { if (hugeOneofCase_ == 2098) { return (java.lang.Integer) hugeOneof_; @@ -196836,10 +218731,19 @@ public int getOneof2098() { } public static final int ONEOF_2099_FIELD_NUMBER = 2099; + /** + * int32 oneof_2099 = 2099; + * @return Whether the oneof2099 field is set. + */ + @java.lang.Override + public boolean hasOneof2099() { + return hugeOneofCase_ == 2099; + } /** * int32 oneof_2099 = 2099; * @return The oneof2099. */ + @java.lang.Override public int getOneof2099() { if (hugeOneofCase_ == 2099) { return (java.lang.Integer) hugeOneof_; @@ -196848,10 +218752,19 @@ public int getOneof2099() { } public static final int ONEOF_2100_FIELD_NUMBER = 2100; + /** + * int32 oneof_2100 = 2100; + * @return Whether the oneof2100 field is set. + */ + @java.lang.Override + public boolean hasOneof2100() { + return hugeOneofCase_ == 2100; + } /** * int32 oneof_2100 = 2100; * @return The oneof2100. */ + @java.lang.Override public int getOneof2100() { if (hugeOneofCase_ == 2100) { return (java.lang.Integer) hugeOneof_; @@ -196860,10 +218773,19 @@ public int getOneof2100() { } public static final int ONEOF_2101_FIELD_NUMBER = 2101; + /** + * int32 oneof_2101 = 2101; + * @return Whether the oneof2101 field is set. + */ + @java.lang.Override + public boolean hasOneof2101() { + return hugeOneofCase_ == 2101; + } /** * int32 oneof_2101 = 2101; * @return The oneof2101. */ + @java.lang.Override public int getOneof2101() { if (hugeOneofCase_ == 2101) { return (java.lang.Integer) hugeOneof_; @@ -196872,10 +218794,19 @@ public int getOneof2101() { } public static final int ONEOF_2102_FIELD_NUMBER = 2102; + /** + * int32 oneof_2102 = 2102; + * @return Whether the oneof2102 field is set. + */ + @java.lang.Override + public boolean hasOneof2102() { + return hugeOneofCase_ == 2102; + } /** * int32 oneof_2102 = 2102; * @return The oneof2102. */ + @java.lang.Override public int getOneof2102() { if (hugeOneofCase_ == 2102) { return (java.lang.Integer) hugeOneof_; @@ -196884,10 +218815,19 @@ public int getOneof2102() { } public static final int ONEOF_2103_FIELD_NUMBER = 2103; + /** + * int32 oneof_2103 = 2103; + * @return Whether the oneof2103 field is set. + */ + @java.lang.Override + public boolean hasOneof2103() { + return hugeOneofCase_ == 2103; + } /** * int32 oneof_2103 = 2103; * @return The oneof2103. */ + @java.lang.Override public int getOneof2103() { if (hugeOneofCase_ == 2103) { return (java.lang.Integer) hugeOneof_; @@ -196896,10 +218836,19 @@ public int getOneof2103() { } public static final int ONEOF_2104_FIELD_NUMBER = 2104; + /** + * int32 oneof_2104 = 2104; + * @return Whether the oneof2104 field is set. + */ + @java.lang.Override + public boolean hasOneof2104() { + return hugeOneofCase_ == 2104; + } /** * int32 oneof_2104 = 2104; * @return The oneof2104. */ + @java.lang.Override public int getOneof2104() { if (hugeOneofCase_ == 2104) { return (java.lang.Integer) hugeOneof_; @@ -196908,10 +218857,19 @@ public int getOneof2104() { } public static final int ONEOF_2105_FIELD_NUMBER = 2105; + /** + * int32 oneof_2105 = 2105; + * @return Whether the oneof2105 field is set. + */ + @java.lang.Override + public boolean hasOneof2105() { + return hugeOneofCase_ == 2105; + } /** * int32 oneof_2105 = 2105; * @return The oneof2105. */ + @java.lang.Override public int getOneof2105() { if (hugeOneofCase_ == 2105) { return (java.lang.Integer) hugeOneof_; @@ -196920,10 +218878,19 @@ public int getOneof2105() { } public static final int ONEOF_2106_FIELD_NUMBER = 2106; + /** + * int32 oneof_2106 = 2106; + * @return Whether the oneof2106 field is set. + */ + @java.lang.Override + public boolean hasOneof2106() { + return hugeOneofCase_ == 2106; + } /** * int32 oneof_2106 = 2106; * @return The oneof2106. */ + @java.lang.Override public int getOneof2106() { if (hugeOneofCase_ == 2106) { return (java.lang.Integer) hugeOneof_; @@ -196932,10 +218899,19 @@ public int getOneof2106() { } public static final int ONEOF_2107_FIELD_NUMBER = 2107; + /** + * int32 oneof_2107 = 2107; + * @return Whether the oneof2107 field is set. + */ + @java.lang.Override + public boolean hasOneof2107() { + return hugeOneofCase_ == 2107; + } /** * int32 oneof_2107 = 2107; * @return The oneof2107. */ + @java.lang.Override public int getOneof2107() { if (hugeOneofCase_ == 2107) { return (java.lang.Integer) hugeOneof_; @@ -196944,10 +218920,19 @@ public int getOneof2107() { } public static final int ONEOF_2108_FIELD_NUMBER = 2108; + /** + * int32 oneof_2108 = 2108; + * @return Whether the oneof2108 field is set. + */ + @java.lang.Override + public boolean hasOneof2108() { + return hugeOneofCase_ == 2108; + } /** * int32 oneof_2108 = 2108; * @return The oneof2108. */ + @java.lang.Override public int getOneof2108() { if (hugeOneofCase_ == 2108) { return (java.lang.Integer) hugeOneof_; @@ -196956,10 +218941,19 @@ public int getOneof2108() { } public static final int ONEOF_2109_FIELD_NUMBER = 2109; + /** + * int32 oneof_2109 = 2109; + * @return Whether the oneof2109 field is set. + */ + @java.lang.Override + public boolean hasOneof2109() { + return hugeOneofCase_ == 2109; + } /** * int32 oneof_2109 = 2109; * @return The oneof2109. */ + @java.lang.Override public int getOneof2109() { if (hugeOneofCase_ == 2109) { return (java.lang.Integer) hugeOneof_; @@ -196968,10 +218962,19 @@ public int getOneof2109() { } public static final int ONEOF_2110_FIELD_NUMBER = 2110; + /** + * int32 oneof_2110 = 2110; + * @return Whether the oneof2110 field is set. + */ + @java.lang.Override + public boolean hasOneof2110() { + return hugeOneofCase_ == 2110; + } /** * int32 oneof_2110 = 2110; * @return The oneof2110. */ + @java.lang.Override public int getOneof2110() { if (hugeOneofCase_ == 2110) { return (java.lang.Integer) hugeOneof_; @@ -196980,10 +218983,19 @@ public int getOneof2110() { } public static final int ONEOF_2111_FIELD_NUMBER = 2111; + /** + * int32 oneof_2111 = 2111; + * @return Whether the oneof2111 field is set. + */ + @java.lang.Override + public boolean hasOneof2111() { + return hugeOneofCase_ == 2111; + } /** * int32 oneof_2111 = 2111; * @return The oneof2111. */ + @java.lang.Override public int getOneof2111() { if (hugeOneofCase_ == 2111) { return (java.lang.Integer) hugeOneof_; @@ -196992,10 +219004,19 @@ public int getOneof2111() { } public static final int ONEOF_2112_FIELD_NUMBER = 2112; + /** + * int32 oneof_2112 = 2112; + * @return Whether the oneof2112 field is set. + */ + @java.lang.Override + public boolean hasOneof2112() { + return hugeOneofCase_ == 2112; + } /** * int32 oneof_2112 = 2112; * @return The oneof2112. */ + @java.lang.Override public int getOneof2112() { if (hugeOneofCase_ == 2112) { return (java.lang.Integer) hugeOneof_; @@ -197004,10 +219025,19 @@ public int getOneof2112() { } public static final int ONEOF_2113_FIELD_NUMBER = 2113; + /** + * int32 oneof_2113 = 2113; + * @return Whether the oneof2113 field is set. + */ + @java.lang.Override + public boolean hasOneof2113() { + return hugeOneofCase_ == 2113; + } /** * int32 oneof_2113 = 2113; * @return The oneof2113. */ + @java.lang.Override public int getOneof2113() { if (hugeOneofCase_ == 2113) { return (java.lang.Integer) hugeOneof_; @@ -197016,10 +219046,19 @@ public int getOneof2113() { } public static final int ONEOF_2114_FIELD_NUMBER = 2114; + /** + * int32 oneof_2114 = 2114; + * @return Whether the oneof2114 field is set. + */ + @java.lang.Override + public boolean hasOneof2114() { + return hugeOneofCase_ == 2114; + } /** * int32 oneof_2114 = 2114; * @return The oneof2114. */ + @java.lang.Override public int getOneof2114() { if (hugeOneofCase_ == 2114) { return (java.lang.Integer) hugeOneof_; @@ -197028,10 +219067,19 @@ public int getOneof2114() { } public static final int ONEOF_2115_FIELD_NUMBER = 2115; + /** + * int32 oneof_2115 = 2115; + * @return Whether the oneof2115 field is set. + */ + @java.lang.Override + public boolean hasOneof2115() { + return hugeOneofCase_ == 2115; + } /** * int32 oneof_2115 = 2115; * @return The oneof2115. */ + @java.lang.Override public int getOneof2115() { if (hugeOneofCase_ == 2115) { return (java.lang.Integer) hugeOneof_; @@ -197040,10 +219088,19 @@ public int getOneof2115() { } public static final int ONEOF_2116_FIELD_NUMBER = 2116; + /** + * int32 oneof_2116 = 2116; + * @return Whether the oneof2116 field is set. + */ + @java.lang.Override + public boolean hasOneof2116() { + return hugeOneofCase_ == 2116; + } /** * int32 oneof_2116 = 2116; * @return The oneof2116. */ + @java.lang.Override public int getOneof2116() { if (hugeOneofCase_ == 2116) { return (java.lang.Integer) hugeOneof_; @@ -197052,10 +219109,19 @@ public int getOneof2116() { } public static final int ONEOF_2117_FIELD_NUMBER = 2117; + /** + * int32 oneof_2117 = 2117; + * @return Whether the oneof2117 field is set. + */ + @java.lang.Override + public boolean hasOneof2117() { + return hugeOneofCase_ == 2117; + } /** * int32 oneof_2117 = 2117; * @return The oneof2117. */ + @java.lang.Override public int getOneof2117() { if (hugeOneofCase_ == 2117) { return (java.lang.Integer) hugeOneof_; @@ -197064,10 +219130,19 @@ public int getOneof2117() { } public static final int ONEOF_2118_FIELD_NUMBER = 2118; + /** + * int32 oneof_2118 = 2118; + * @return Whether the oneof2118 field is set. + */ + @java.lang.Override + public boolean hasOneof2118() { + return hugeOneofCase_ == 2118; + } /** * int32 oneof_2118 = 2118; * @return The oneof2118. */ + @java.lang.Override public int getOneof2118() { if (hugeOneofCase_ == 2118) { return (java.lang.Integer) hugeOneof_; @@ -197076,10 +219151,19 @@ public int getOneof2118() { } public static final int ONEOF_2119_FIELD_NUMBER = 2119; + /** + * int32 oneof_2119 = 2119; + * @return Whether the oneof2119 field is set. + */ + @java.lang.Override + public boolean hasOneof2119() { + return hugeOneofCase_ == 2119; + } /** * int32 oneof_2119 = 2119; * @return The oneof2119. */ + @java.lang.Override public int getOneof2119() { if (hugeOneofCase_ == 2119) { return (java.lang.Integer) hugeOneof_; @@ -197088,10 +219172,19 @@ public int getOneof2119() { } public static final int ONEOF_2120_FIELD_NUMBER = 2120; + /** + * int32 oneof_2120 = 2120; + * @return Whether the oneof2120 field is set. + */ + @java.lang.Override + public boolean hasOneof2120() { + return hugeOneofCase_ == 2120; + } /** * int32 oneof_2120 = 2120; * @return The oneof2120. */ + @java.lang.Override public int getOneof2120() { if (hugeOneofCase_ == 2120) { return (java.lang.Integer) hugeOneof_; @@ -197100,10 +219193,19 @@ public int getOneof2120() { } public static final int ONEOF_2121_FIELD_NUMBER = 2121; + /** + * int32 oneof_2121 = 2121; + * @return Whether the oneof2121 field is set. + */ + @java.lang.Override + public boolean hasOneof2121() { + return hugeOneofCase_ == 2121; + } /** * int32 oneof_2121 = 2121; * @return The oneof2121. */ + @java.lang.Override public int getOneof2121() { if (hugeOneofCase_ == 2121) { return (java.lang.Integer) hugeOneof_; @@ -197112,10 +219214,19 @@ public int getOneof2121() { } public static final int ONEOF_2122_FIELD_NUMBER = 2122; + /** + * int32 oneof_2122 = 2122; + * @return Whether the oneof2122 field is set. + */ + @java.lang.Override + public boolean hasOneof2122() { + return hugeOneofCase_ == 2122; + } /** * int32 oneof_2122 = 2122; * @return The oneof2122. */ + @java.lang.Override public int getOneof2122() { if (hugeOneofCase_ == 2122) { return (java.lang.Integer) hugeOneof_; @@ -197124,10 +219235,19 @@ public int getOneof2122() { } public static final int ONEOF_2123_FIELD_NUMBER = 2123; + /** + * int32 oneof_2123 = 2123; + * @return Whether the oneof2123 field is set. + */ + @java.lang.Override + public boolean hasOneof2123() { + return hugeOneofCase_ == 2123; + } /** * int32 oneof_2123 = 2123; * @return The oneof2123. */ + @java.lang.Override public int getOneof2123() { if (hugeOneofCase_ == 2123) { return (java.lang.Integer) hugeOneof_; @@ -197136,10 +219256,19 @@ public int getOneof2123() { } public static final int ONEOF_2124_FIELD_NUMBER = 2124; + /** + * int32 oneof_2124 = 2124; + * @return Whether the oneof2124 field is set. + */ + @java.lang.Override + public boolean hasOneof2124() { + return hugeOneofCase_ == 2124; + } /** * int32 oneof_2124 = 2124; * @return The oneof2124. */ + @java.lang.Override public int getOneof2124() { if (hugeOneofCase_ == 2124) { return (java.lang.Integer) hugeOneof_; @@ -197148,10 +219277,19 @@ public int getOneof2124() { } public static final int ONEOF_2125_FIELD_NUMBER = 2125; + /** + * int32 oneof_2125 = 2125; + * @return Whether the oneof2125 field is set. + */ + @java.lang.Override + public boolean hasOneof2125() { + return hugeOneofCase_ == 2125; + } /** * int32 oneof_2125 = 2125; * @return The oneof2125. */ + @java.lang.Override public int getOneof2125() { if (hugeOneofCase_ == 2125) { return (java.lang.Integer) hugeOneof_; @@ -197160,10 +219298,19 @@ public int getOneof2125() { } public static final int ONEOF_2126_FIELD_NUMBER = 2126; + /** + * int32 oneof_2126 = 2126; + * @return Whether the oneof2126 field is set. + */ + @java.lang.Override + public boolean hasOneof2126() { + return hugeOneofCase_ == 2126; + } /** * int32 oneof_2126 = 2126; * @return The oneof2126. */ + @java.lang.Override public int getOneof2126() { if (hugeOneofCase_ == 2126) { return (java.lang.Integer) hugeOneof_; @@ -197172,10 +219319,19 @@ public int getOneof2126() { } public static final int ONEOF_2127_FIELD_NUMBER = 2127; + /** + * int32 oneof_2127 = 2127; + * @return Whether the oneof2127 field is set. + */ + @java.lang.Override + public boolean hasOneof2127() { + return hugeOneofCase_ == 2127; + } /** * int32 oneof_2127 = 2127; * @return The oneof2127. */ + @java.lang.Override public int getOneof2127() { if (hugeOneofCase_ == 2127) { return (java.lang.Integer) hugeOneof_; @@ -197184,10 +219340,19 @@ public int getOneof2127() { } public static final int ONEOF_2128_FIELD_NUMBER = 2128; + /** + * int32 oneof_2128 = 2128; + * @return Whether the oneof2128 field is set. + */ + @java.lang.Override + public boolean hasOneof2128() { + return hugeOneofCase_ == 2128; + } /** * int32 oneof_2128 = 2128; * @return The oneof2128. */ + @java.lang.Override public int getOneof2128() { if (hugeOneofCase_ == 2128) { return (java.lang.Integer) hugeOneof_; @@ -197196,10 +219361,19 @@ public int getOneof2128() { } public static final int ONEOF_2129_FIELD_NUMBER = 2129; + /** + * int32 oneof_2129 = 2129; + * @return Whether the oneof2129 field is set. + */ + @java.lang.Override + public boolean hasOneof2129() { + return hugeOneofCase_ == 2129; + } /** * int32 oneof_2129 = 2129; * @return The oneof2129. */ + @java.lang.Override public int getOneof2129() { if (hugeOneofCase_ == 2129) { return (java.lang.Integer) hugeOneof_; @@ -197208,10 +219382,19 @@ public int getOneof2129() { } public static final int ONEOF_2130_FIELD_NUMBER = 2130; + /** + * int32 oneof_2130 = 2130; + * @return Whether the oneof2130 field is set. + */ + @java.lang.Override + public boolean hasOneof2130() { + return hugeOneofCase_ == 2130; + } /** * int32 oneof_2130 = 2130; * @return The oneof2130. */ + @java.lang.Override public int getOneof2130() { if (hugeOneofCase_ == 2130) { return (java.lang.Integer) hugeOneof_; @@ -197220,10 +219403,19 @@ public int getOneof2130() { } public static final int ONEOF_2131_FIELD_NUMBER = 2131; + /** + * int32 oneof_2131 = 2131; + * @return Whether the oneof2131 field is set. + */ + @java.lang.Override + public boolean hasOneof2131() { + return hugeOneofCase_ == 2131; + } /** * int32 oneof_2131 = 2131; * @return The oneof2131. */ + @java.lang.Override public int getOneof2131() { if (hugeOneofCase_ == 2131) { return (java.lang.Integer) hugeOneof_; @@ -197232,10 +219424,19 @@ public int getOneof2131() { } public static final int ONEOF_2132_FIELD_NUMBER = 2132; + /** + * int32 oneof_2132 = 2132; + * @return Whether the oneof2132 field is set. + */ + @java.lang.Override + public boolean hasOneof2132() { + return hugeOneofCase_ == 2132; + } /** * int32 oneof_2132 = 2132; * @return The oneof2132. */ + @java.lang.Override public int getOneof2132() { if (hugeOneofCase_ == 2132) { return (java.lang.Integer) hugeOneof_; @@ -197244,10 +219445,19 @@ public int getOneof2132() { } public static final int ONEOF_2133_FIELD_NUMBER = 2133; + /** + * int32 oneof_2133 = 2133; + * @return Whether the oneof2133 field is set. + */ + @java.lang.Override + public boolean hasOneof2133() { + return hugeOneofCase_ == 2133; + } /** * int32 oneof_2133 = 2133; * @return The oneof2133. */ + @java.lang.Override public int getOneof2133() { if (hugeOneofCase_ == 2133) { return (java.lang.Integer) hugeOneof_; @@ -197256,10 +219466,19 @@ public int getOneof2133() { } public static final int ONEOF_2134_FIELD_NUMBER = 2134; + /** + * int32 oneof_2134 = 2134; + * @return Whether the oneof2134 field is set. + */ + @java.lang.Override + public boolean hasOneof2134() { + return hugeOneofCase_ == 2134; + } /** * int32 oneof_2134 = 2134; * @return The oneof2134. */ + @java.lang.Override public int getOneof2134() { if (hugeOneofCase_ == 2134) { return (java.lang.Integer) hugeOneof_; @@ -197268,10 +219487,19 @@ public int getOneof2134() { } public static final int ONEOF_2135_FIELD_NUMBER = 2135; + /** + * int32 oneof_2135 = 2135; + * @return Whether the oneof2135 field is set. + */ + @java.lang.Override + public boolean hasOneof2135() { + return hugeOneofCase_ == 2135; + } /** * int32 oneof_2135 = 2135; * @return The oneof2135. */ + @java.lang.Override public int getOneof2135() { if (hugeOneofCase_ == 2135) { return (java.lang.Integer) hugeOneof_; @@ -197280,10 +219508,19 @@ public int getOneof2135() { } public static final int ONEOF_2136_FIELD_NUMBER = 2136; + /** + * int32 oneof_2136 = 2136; + * @return Whether the oneof2136 field is set. + */ + @java.lang.Override + public boolean hasOneof2136() { + return hugeOneofCase_ == 2136; + } /** * int32 oneof_2136 = 2136; * @return The oneof2136. */ + @java.lang.Override public int getOneof2136() { if (hugeOneofCase_ == 2136) { return (java.lang.Integer) hugeOneof_; @@ -197292,10 +219529,19 @@ public int getOneof2136() { } public static final int ONEOF_2137_FIELD_NUMBER = 2137; + /** + * int32 oneof_2137 = 2137; + * @return Whether the oneof2137 field is set. + */ + @java.lang.Override + public boolean hasOneof2137() { + return hugeOneofCase_ == 2137; + } /** * int32 oneof_2137 = 2137; * @return The oneof2137. */ + @java.lang.Override public int getOneof2137() { if (hugeOneofCase_ == 2137) { return (java.lang.Integer) hugeOneof_; @@ -197304,10 +219550,19 @@ public int getOneof2137() { } public static final int ONEOF_2138_FIELD_NUMBER = 2138; + /** + * int32 oneof_2138 = 2138; + * @return Whether the oneof2138 field is set. + */ + @java.lang.Override + public boolean hasOneof2138() { + return hugeOneofCase_ == 2138; + } /** * int32 oneof_2138 = 2138; * @return The oneof2138. */ + @java.lang.Override public int getOneof2138() { if (hugeOneofCase_ == 2138) { return (java.lang.Integer) hugeOneof_; @@ -197316,10 +219571,19 @@ public int getOneof2138() { } public static final int ONEOF_2139_FIELD_NUMBER = 2139; + /** + * int32 oneof_2139 = 2139; + * @return Whether the oneof2139 field is set. + */ + @java.lang.Override + public boolean hasOneof2139() { + return hugeOneofCase_ == 2139; + } /** * int32 oneof_2139 = 2139; * @return The oneof2139. */ + @java.lang.Override public int getOneof2139() { if (hugeOneofCase_ == 2139) { return (java.lang.Integer) hugeOneof_; @@ -197328,10 +219592,19 @@ public int getOneof2139() { } public static final int ONEOF_2140_FIELD_NUMBER = 2140; + /** + * int32 oneof_2140 = 2140; + * @return Whether the oneof2140 field is set. + */ + @java.lang.Override + public boolean hasOneof2140() { + return hugeOneofCase_ == 2140; + } /** * int32 oneof_2140 = 2140; * @return The oneof2140. */ + @java.lang.Override public int getOneof2140() { if (hugeOneofCase_ == 2140) { return (java.lang.Integer) hugeOneof_; @@ -197340,10 +219613,19 @@ public int getOneof2140() { } public static final int ONEOF_2141_FIELD_NUMBER = 2141; + /** + * int32 oneof_2141 = 2141; + * @return Whether the oneof2141 field is set. + */ + @java.lang.Override + public boolean hasOneof2141() { + return hugeOneofCase_ == 2141; + } /** * int32 oneof_2141 = 2141; * @return The oneof2141. */ + @java.lang.Override public int getOneof2141() { if (hugeOneofCase_ == 2141) { return (java.lang.Integer) hugeOneof_; @@ -197352,10 +219634,19 @@ public int getOneof2141() { } public static final int ONEOF_2142_FIELD_NUMBER = 2142; + /** + * int32 oneof_2142 = 2142; + * @return Whether the oneof2142 field is set. + */ + @java.lang.Override + public boolean hasOneof2142() { + return hugeOneofCase_ == 2142; + } /** * int32 oneof_2142 = 2142; * @return The oneof2142. */ + @java.lang.Override public int getOneof2142() { if (hugeOneofCase_ == 2142) { return (java.lang.Integer) hugeOneof_; @@ -197364,10 +219655,19 @@ public int getOneof2142() { } public static final int ONEOF_2143_FIELD_NUMBER = 2143; + /** + * int32 oneof_2143 = 2143; + * @return Whether the oneof2143 field is set. + */ + @java.lang.Override + public boolean hasOneof2143() { + return hugeOneofCase_ == 2143; + } /** * int32 oneof_2143 = 2143; * @return The oneof2143. */ + @java.lang.Override public int getOneof2143() { if (hugeOneofCase_ == 2143) { return (java.lang.Integer) hugeOneof_; @@ -197376,10 +219676,19 @@ public int getOneof2143() { } public static final int ONEOF_2144_FIELD_NUMBER = 2144; + /** + * int32 oneof_2144 = 2144; + * @return Whether the oneof2144 field is set. + */ + @java.lang.Override + public boolean hasOneof2144() { + return hugeOneofCase_ == 2144; + } /** * int32 oneof_2144 = 2144; * @return The oneof2144. */ + @java.lang.Override public int getOneof2144() { if (hugeOneofCase_ == 2144) { return (java.lang.Integer) hugeOneof_; @@ -197388,10 +219697,19 @@ public int getOneof2144() { } public static final int ONEOF_2145_FIELD_NUMBER = 2145; + /** + * int32 oneof_2145 = 2145; + * @return Whether the oneof2145 field is set. + */ + @java.lang.Override + public boolean hasOneof2145() { + return hugeOneofCase_ == 2145; + } /** * int32 oneof_2145 = 2145; * @return The oneof2145. */ + @java.lang.Override public int getOneof2145() { if (hugeOneofCase_ == 2145) { return (java.lang.Integer) hugeOneof_; @@ -197400,10 +219718,19 @@ public int getOneof2145() { } public static final int ONEOF_2146_FIELD_NUMBER = 2146; + /** + * int32 oneof_2146 = 2146; + * @return Whether the oneof2146 field is set. + */ + @java.lang.Override + public boolean hasOneof2146() { + return hugeOneofCase_ == 2146; + } /** * int32 oneof_2146 = 2146; * @return The oneof2146. */ + @java.lang.Override public int getOneof2146() { if (hugeOneofCase_ == 2146) { return (java.lang.Integer) hugeOneof_; @@ -197412,10 +219739,19 @@ public int getOneof2146() { } public static final int ONEOF_2147_FIELD_NUMBER = 2147; + /** + * int32 oneof_2147 = 2147; + * @return Whether the oneof2147 field is set. + */ + @java.lang.Override + public boolean hasOneof2147() { + return hugeOneofCase_ == 2147; + } /** * int32 oneof_2147 = 2147; * @return The oneof2147. */ + @java.lang.Override public int getOneof2147() { if (hugeOneofCase_ == 2147) { return (java.lang.Integer) hugeOneof_; @@ -197424,10 +219760,19 @@ public int getOneof2147() { } public static final int ONEOF_2148_FIELD_NUMBER = 2148; + /** + * int32 oneof_2148 = 2148; + * @return Whether the oneof2148 field is set. + */ + @java.lang.Override + public boolean hasOneof2148() { + return hugeOneofCase_ == 2148; + } /** * int32 oneof_2148 = 2148; * @return The oneof2148. */ + @java.lang.Override public int getOneof2148() { if (hugeOneofCase_ == 2148) { return (java.lang.Integer) hugeOneof_; @@ -197436,10 +219781,19 @@ public int getOneof2148() { } public static final int ONEOF_2149_FIELD_NUMBER = 2149; + /** + * int32 oneof_2149 = 2149; + * @return Whether the oneof2149 field is set. + */ + @java.lang.Override + public boolean hasOneof2149() { + return hugeOneofCase_ == 2149; + } /** * int32 oneof_2149 = 2149; * @return The oneof2149. */ + @java.lang.Override public int getOneof2149() { if (hugeOneofCase_ == 2149) { return (java.lang.Integer) hugeOneof_; @@ -197448,10 +219802,19 @@ public int getOneof2149() { } public static final int ONEOF_2150_FIELD_NUMBER = 2150; + /** + * int32 oneof_2150 = 2150; + * @return Whether the oneof2150 field is set. + */ + @java.lang.Override + public boolean hasOneof2150() { + return hugeOneofCase_ == 2150; + } /** * int32 oneof_2150 = 2150; * @return The oneof2150. */ + @java.lang.Override public int getOneof2150() { if (hugeOneofCase_ == 2150) { return (java.lang.Integer) hugeOneof_; @@ -197460,10 +219823,19 @@ public int getOneof2150() { } public static final int ONEOF_2151_FIELD_NUMBER = 2151; + /** + * int32 oneof_2151 = 2151; + * @return Whether the oneof2151 field is set. + */ + @java.lang.Override + public boolean hasOneof2151() { + return hugeOneofCase_ == 2151; + } /** * int32 oneof_2151 = 2151; * @return The oneof2151. */ + @java.lang.Override public int getOneof2151() { if (hugeOneofCase_ == 2151) { return (java.lang.Integer) hugeOneof_; @@ -197472,10 +219844,19 @@ public int getOneof2151() { } public static final int ONEOF_2152_FIELD_NUMBER = 2152; + /** + * int32 oneof_2152 = 2152; + * @return Whether the oneof2152 field is set. + */ + @java.lang.Override + public boolean hasOneof2152() { + return hugeOneofCase_ == 2152; + } /** * int32 oneof_2152 = 2152; * @return The oneof2152. */ + @java.lang.Override public int getOneof2152() { if (hugeOneofCase_ == 2152) { return (java.lang.Integer) hugeOneof_; @@ -197484,10 +219865,19 @@ public int getOneof2152() { } public static final int ONEOF_2153_FIELD_NUMBER = 2153; + /** + * int32 oneof_2153 = 2153; + * @return Whether the oneof2153 field is set. + */ + @java.lang.Override + public boolean hasOneof2153() { + return hugeOneofCase_ == 2153; + } /** * int32 oneof_2153 = 2153; * @return The oneof2153. */ + @java.lang.Override public int getOneof2153() { if (hugeOneofCase_ == 2153) { return (java.lang.Integer) hugeOneof_; @@ -197496,10 +219886,19 @@ public int getOneof2153() { } public static final int ONEOF_2154_FIELD_NUMBER = 2154; + /** + * int32 oneof_2154 = 2154; + * @return Whether the oneof2154 field is set. + */ + @java.lang.Override + public boolean hasOneof2154() { + return hugeOneofCase_ == 2154; + } /** * int32 oneof_2154 = 2154; * @return The oneof2154. */ + @java.lang.Override public int getOneof2154() { if (hugeOneofCase_ == 2154) { return (java.lang.Integer) hugeOneof_; @@ -197508,10 +219907,19 @@ public int getOneof2154() { } public static final int ONEOF_2155_FIELD_NUMBER = 2155; + /** + * int32 oneof_2155 = 2155; + * @return Whether the oneof2155 field is set. + */ + @java.lang.Override + public boolean hasOneof2155() { + return hugeOneofCase_ == 2155; + } /** * int32 oneof_2155 = 2155; * @return The oneof2155. */ + @java.lang.Override public int getOneof2155() { if (hugeOneofCase_ == 2155) { return (java.lang.Integer) hugeOneof_; @@ -197520,10 +219928,19 @@ public int getOneof2155() { } public static final int ONEOF_2156_FIELD_NUMBER = 2156; + /** + * int32 oneof_2156 = 2156; + * @return Whether the oneof2156 field is set. + */ + @java.lang.Override + public boolean hasOneof2156() { + return hugeOneofCase_ == 2156; + } /** * int32 oneof_2156 = 2156; * @return The oneof2156. */ + @java.lang.Override public int getOneof2156() { if (hugeOneofCase_ == 2156) { return (java.lang.Integer) hugeOneof_; @@ -197532,10 +219949,19 @@ public int getOneof2156() { } public static final int ONEOF_2157_FIELD_NUMBER = 2157; + /** + * int32 oneof_2157 = 2157; + * @return Whether the oneof2157 field is set. + */ + @java.lang.Override + public boolean hasOneof2157() { + return hugeOneofCase_ == 2157; + } /** * int32 oneof_2157 = 2157; * @return The oneof2157. */ + @java.lang.Override public int getOneof2157() { if (hugeOneofCase_ == 2157) { return (java.lang.Integer) hugeOneof_; @@ -197544,10 +219970,19 @@ public int getOneof2157() { } public static final int ONEOF_2158_FIELD_NUMBER = 2158; + /** + * int32 oneof_2158 = 2158; + * @return Whether the oneof2158 field is set. + */ + @java.lang.Override + public boolean hasOneof2158() { + return hugeOneofCase_ == 2158; + } /** * int32 oneof_2158 = 2158; * @return The oneof2158. */ + @java.lang.Override public int getOneof2158() { if (hugeOneofCase_ == 2158) { return (java.lang.Integer) hugeOneof_; @@ -197556,10 +219991,19 @@ public int getOneof2158() { } public static final int ONEOF_2159_FIELD_NUMBER = 2159; + /** + * int32 oneof_2159 = 2159; + * @return Whether the oneof2159 field is set. + */ + @java.lang.Override + public boolean hasOneof2159() { + return hugeOneofCase_ == 2159; + } /** * int32 oneof_2159 = 2159; * @return The oneof2159. */ + @java.lang.Override public int getOneof2159() { if (hugeOneofCase_ == 2159) { return (java.lang.Integer) hugeOneof_; @@ -197568,10 +220012,19 @@ public int getOneof2159() { } public static final int ONEOF_2160_FIELD_NUMBER = 2160; + /** + * int32 oneof_2160 = 2160; + * @return Whether the oneof2160 field is set. + */ + @java.lang.Override + public boolean hasOneof2160() { + return hugeOneofCase_ == 2160; + } /** * int32 oneof_2160 = 2160; * @return The oneof2160. */ + @java.lang.Override public int getOneof2160() { if (hugeOneofCase_ == 2160) { return (java.lang.Integer) hugeOneof_; @@ -197580,10 +220033,19 @@ public int getOneof2160() { } public static final int ONEOF_2161_FIELD_NUMBER = 2161; + /** + * int32 oneof_2161 = 2161; + * @return Whether the oneof2161 field is set. + */ + @java.lang.Override + public boolean hasOneof2161() { + return hugeOneofCase_ == 2161; + } /** * int32 oneof_2161 = 2161; * @return The oneof2161. */ + @java.lang.Override public int getOneof2161() { if (hugeOneofCase_ == 2161) { return (java.lang.Integer) hugeOneof_; @@ -197592,10 +220054,19 @@ public int getOneof2161() { } public static final int ONEOF_2162_FIELD_NUMBER = 2162; + /** + * int32 oneof_2162 = 2162; + * @return Whether the oneof2162 field is set. + */ + @java.lang.Override + public boolean hasOneof2162() { + return hugeOneofCase_ == 2162; + } /** * int32 oneof_2162 = 2162; * @return The oneof2162. */ + @java.lang.Override public int getOneof2162() { if (hugeOneofCase_ == 2162) { return (java.lang.Integer) hugeOneof_; @@ -197604,10 +220075,19 @@ public int getOneof2162() { } public static final int ONEOF_2163_FIELD_NUMBER = 2163; + /** + * int32 oneof_2163 = 2163; + * @return Whether the oneof2163 field is set. + */ + @java.lang.Override + public boolean hasOneof2163() { + return hugeOneofCase_ == 2163; + } /** * int32 oneof_2163 = 2163; * @return The oneof2163. */ + @java.lang.Override public int getOneof2163() { if (hugeOneofCase_ == 2163) { return (java.lang.Integer) hugeOneof_; @@ -197616,10 +220096,19 @@ public int getOneof2163() { } public static final int ONEOF_2164_FIELD_NUMBER = 2164; + /** + * int32 oneof_2164 = 2164; + * @return Whether the oneof2164 field is set. + */ + @java.lang.Override + public boolean hasOneof2164() { + return hugeOneofCase_ == 2164; + } /** * int32 oneof_2164 = 2164; * @return The oneof2164. */ + @java.lang.Override public int getOneof2164() { if (hugeOneofCase_ == 2164) { return (java.lang.Integer) hugeOneof_; @@ -197628,10 +220117,19 @@ public int getOneof2164() { } public static final int ONEOF_2165_FIELD_NUMBER = 2165; + /** + * int32 oneof_2165 = 2165; + * @return Whether the oneof2165 field is set. + */ + @java.lang.Override + public boolean hasOneof2165() { + return hugeOneofCase_ == 2165; + } /** * int32 oneof_2165 = 2165; * @return The oneof2165. */ + @java.lang.Override public int getOneof2165() { if (hugeOneofCase_ == 2165) { return (java.lang.Integer) hugeOneof_; @@ -197640,10 +220138,19 @@ public int getOneof2165() { } public static final int ONEOF_2166_FIELD_NUMBER = 2166; + /** + * int32 oneof_2166 = 2166; + * @return Whether the oneof2166 field is set. + */ + @java.lang.Override + public boolean hasOneof2166() { + return hugeOneofCase_ == 2166; + } /** * int32 oneof_2166 = 2166; * @return The oneof2166. */ + @java.lang.Override public int getOneof2166() { if (hugeOneofCase_ == 2166) { return (java.lang.Integer) hugeOneof_; @@ -197652,10 +220159,19 @@ public int getOneof2166() { } public static final int ONEOF_2167_FIELD_NUMBER = 2167; + /** + * int32 oneof_2167 = 2167; + * @return Whether the oneof2167 field is set. + */ + @java.lang.Override + public boolean hasOneof2167() { + return hugeOneofCase_ == 2167; + } /** * int32 oneof_2167 = 2167; * @return The oneof2167. */ + @java.lang.Override public int getOneof2167() { if (hugeOneofCase_ == 2167) { return (java.lang.Integer) hugeOneof_; @@ -197664,10 +220180,19 @@ public int getOneof2167() { } public static final int ONEOF_2168_FIELD_NUMBER = 2168; + /** + * int32 oneof_2168 = 2168; + * @return Whether the oneof2168 field is set. + */ + @java.lang.Override + public boolean hasOneof2168() { + return hugeOneofCase_ == 2168; + } /** * int32 oneof_2168 = 2168; * @return The oneof2168. */ + @java.lang.Override public int getOneof2168() { if (hugeOneofCase_ == 2168) { return (java.lang.Integer) hugeOneof_; @@ -197676,10 +220201,19 @@ public int getOneof2168() { } public static final int ONEOF_2169_FIELD_NUMBER = 2169; + /** + * int32 oneof_2169 = 2169; + * @return Whether the oneof2169 field is set. + */ + @java.lang.Override + public boolean hasOneof2169() { + return hugeOneofCase_ == 2169; + } /** * int32 oneof_2169 = 2169; * @return The oneof2169. */ + @java.lang.Override public int getOneof2169() { if (hugeOneofCase_ == 2169) { return (java.lang.Integer) hugeOneof_; @@ -197688,10 +220222,19 @@ public int getOneof2169() { } public static final int ONEOF_2170_FIELD_NUMBER = 2170; + /** + * int32 oneof_2170 = 2170; + * @return Whether the oneof2170 field is set. + */ + @java.lang.Override + public boolean hasOneof2170() { + return hugeOneofCase_ == 2170; + } /** * int32 oneof_2170 = 2170; * @return The oneof2170. */ + @java.lang.Override public int getOneof2170() { if (hugeOneofCase_ == 2170) { return (java.lang.Integer) hugeOneof_; @@ -197700,10 +220243,19 @@ public int getOneof2170() { } public static final int ONEOF_2171_FIELD_NUMBER = 2171; + /** + * int32 oneof_2171 = 2171; + * @return Whether the oneof2171 field is set. + */ + @java.lang.Override + public boolean hasOneof2171() { + return hugeOneofCase_ == 2171; + } /** * int32 oneof_2171 = 2171; * @return The oneof2171. */ + @java.lang.Override public int getOneof2171() { if (hugeOneofCase_ == 2171) { return (java.lang.Integer) hugeOneof_; @@ -197712,10 +220264,19 @@ public int getOneof2171() { } public static final int ONEOF_2172_FIELD_NUMBER = 2172; + /** + * int32 oneof_2172 = 2172; + * @return Whether the oneof2172 field is set. + */ + @java.lang.Override + public boolean hasOneof2172() { + return hugeOneofCase_ == 2172; + } /** * int32 oneof_2172 = 2172; * @return The oneof2172. */ + @java.lang.Override public int getOneof2172() { if (hugeOneofCase_ == 2172) { return (java.lang.Integer) hugeOneof_; @@ -197724,10 +220285,19 @@ public int getOneof2172() { } public static final int ONEOF_2173_FIELD_NUMBER = 2173; + /** + * int32 oneof_2173 = 2173; + * @return Whether the oneof2173 field is set. + */ + @java.lang.Override + public boolean hasOneof2173() { + return hugeOneofCase_ == 2173; + } /** * int32 oneof_2173 = 2173; * @return The oneof2173. */ + @java.lang.Override public int getOneof2173() { if (hugeOneofCase_ == 2173) { return (java.lang.Integer) hugeOneof_; @@ -197736,10 +220306,19 @@ public int getOneof2173() { } public static final int ONEOF_2174_FIELD_NUMBER = 2174; + /** + * int32 oneof_2174 = 2174; + * @return Whether the oneof2174 field is set. + */ + @java.lang.Override + public boolean hasOneof2174() { + return hugeOneofCase_ == 2174; + } /** * int32 oneof_2174 = 2174; * @return The oneof2174. */ + @java.lang.Override public int getOneof2174() { if (hugeOneofCase_ == 2174) { return (java.lang.Integer) hugeOneof_; @@ -197748,10 +220327,19 @@ public int getOneof2174() { } public static final int ONEOF_2175_FIELD_NUMBER = 2175; + /** + * int32 oneof_2175 = 2175; + * @return Whether the oneof2175 field is set. + */ + @java.lang.Override + public boolean hasOneof2175() { + return hugeOneofCase_ == 2175; + } /** * int32 oneof_2175 = 2175; * @return The oneof2175. */ + @java.lang.Override public int getOneof2175() { if (hugeOneofCase_ == 2175) { return (java.lang.Integer) hugeOneof_; @@ -197760,10 +220348,19 @@ public int getOneof2175() { } public static final int ONEOF_2176_FIELD_NUMBER = 2176; + /** + * int32 oneof_2176 = 2176; + * @return Whether the oneof2176 field is set. + */ + @java.lang.Override + public boolean hasOneof2176() { + return hugeOneofCase_ == 2176; + } /** * int32 oneof_2176 = 2176; * @return The oneof2176. */ + @java.lang.Override public int getOneof2176() { if (hugeOneofCase_ == 2176) { return (java.lang.Integer) hugeOneof_; @@ -197772,10 +220369,19 @@ public int getOneof2176() { } public static final int ONEOF_2177_FIELD_NUMBER = 2177; + /** + * int32 oneof_2177 = 2177; + * @return Whether the oneof2177 field is set. + */ + @java.lang.Override + public boolean hasOneof2177() { + return hugeOneofCase_ == 2177; + } /** * int32 oneof_2177 = 2177; * @return The oneof2177. */ + @java.lang.Override public int getOneof2177() { if (hugeOneofCase_ == 2177) { return (java.lang.Integer) hugeOneof_; @@ -197784,10 +220390,19 @@ public int getOneof2177() { } public static final int ONEOF_2178_FIELD_NUMBER = 2178; + /** + * int32 oneof_2178 = 2178; + * @return Whether the oneof2178 field is set. + */ + @java.lang.Override + public boolean hasOneof2178() { + return hugeOneofCase_ == 2178; + } /** * int32 oneof_2178 = 2178; * @return The oneof2178. */ + @java.lang.Override public int getOneof2178() { if (hugeOneofCase_ == 2178) { return (java.lang.Integer) hugeOneof_; @@ -197796,10 +220411,19 @@ public int getOneof2178() { } public static final int ONEOF_2179_FIELD_NUMBER = 2179; + /** + * int32 oneof_2179 = 2179; + * @return Whether the oneof2179 field is set. + */ + @java.lang.Override + public boolean hasOneof2179() { + return hugeOneofCase_ == 2179; + } /** * int32 oneof_2179 = 2179; * @return The oneof2179. */ + @java.lang.Override public int getOneof2179() { if (hugeOneofCase_ == 2179) { return (java.lang.Integer) hugeOneof_; @@ -197808,22 +220432,40 @@ public int getOneof2179() { } public static final int ONEOF_2180_FIELD_NUMBER = 2180; + /** + * int32 oneof_2180 = 2180; + * @return Whether the oneof2180 field is set. + */ + @java.lang.Override + public boolean hasOneof2180() { + return hugeOneofCase_ == 2180; + } /** * int32 oneof_2180 = 2180; * @return The oneof2180. */ + @java.lang.Override public int getOneof2180() { if (hugeOneofCase_ == 2180) { return (java.lang.Integer) hugeOneof_; } return 0; } - - public static final int ONEOF_2181_FIELD_NUMBER = 2181; + + public static final int ONEOF_2181_FIELD_NUMBER = 2181; + /** + * int32 oneof_2181 = 2181; + * @return Whether the oneof2181 field is set. + */ + @java.lang.Override + public boolean hasOneof2181() { + return hugeOneofCase_ == 2181; + } /** * int32 oneof_2181 = 2181; * @return The oneof2181. */ + @java.lang.Override public int getOneof2181() { if (hugeOneofCase_ == 2181) { return (java.lang.Integer) hugeOneof_; @@ -197832,10 +220474,19 @@ public int getOneof2181() { } public static final int ONEOF_2182_FIELD_NUMBER = 2182; + /** + * int32 oneof_2182 = 2182; + * @return Whether the oneof2182 field is set. + */ + @java.lang.Override + public boolean hasOneof2182() { + return hugeOneofCase_ == 2182; + } /** * int32 oneof_2182 = 2182; * @return The oneof2182. */ + @java.lang.Override public int getOneof2182() { if (hugeOneofCase_ == 2182) { return (java.lang.Integer) hugeOneof_; @@ -197844,10 +220495,19 @@ public int getOneof2182() { } public static final int ONEOF_2183_FIELD_NUMBER = 2183; + /** + * int32 oneof_2183 = 2183; + * @return Whether the oneof2183 field is set. + */ + @java.lang.Override + public boolean hasOneof2183() { + return hugeOneofCase_ == 2183; + } /** * int32 oneof_2183 = 2183; * @return The oneof2183. */ + @java.lang.Override public int getOneof2183() { if (hugeOneofCase_ == 2183) { return (java.lang.Integer) hugeOneof_; @@ -197856,10 +220516,19 @@ public int getOneof2183() { } public static final int ONEOF_2184_FIELD_NUMBER = 2184; + /** + * int32 oneof_2184 = 2184; + * @return Whether the oneof2184 field is set. + */ + @java.lang.Override + public boolean hasOneof2184() { + return hugeOneofCase_ == 2184; + } /** * int32 oneof_2184 = 2184; * @return The oneof2184. */ + @java.lang.Override public int getOneof2184() { if (hugeOneofCase_ == 2184) { return (java.lang.Integer) hugeOneof_; @@ -197868,10 +220537,19 @@ public int getOneof2184() { } public static final int ONEOF_2185_FIELD_NUMBER = 2185; + /** + * int32 oneof_2185 = 2185; + * @return Whether the oneof2185 field is set. + */ + @java.lang.Override + public boolean hasOneof2185() { + return hugeOneofCase_ == 2185; + } /** * int32 oneof_2185 = 2185; * @return The oneof2185. */ + @java.lang.Override public int getOneof2185() { if (hugeOneofCase_ == 2185) { return (java.lang.Integer) hugeOneof_; @@ -197880,10 +220558,19 @@ public int getOneof2185() { } public static final int ONEOF_2186_FIELD_NUMBER = 2186; + /** + * int32 oneof_2186 = 2186; + * @return Whether the oneof2186 field is set. + */ + @java.lang.Override + public boolean hasOneof2186() { + return hugeOneofCase_ == 2186; + } /** * int32 oneof_2186 = 2186; * @return The oneof2186. */ + @java.lang.Override public int getOneof2186() { if (hugeOneofCase_ == 2186) { return (java.lang.Integer) hugeOneof_; @@ -197892,10 +220579,19 @@ public int getOneof2186() { } public static final int ONEOF_2187_FIELD_NUMBER = 2187; + /** + * int32 oneof_2187 = 2187; + * @return Whether the oneof2187 field is set. + */ + @java.lang.Override + public boolean hasOneof2187() { + return hugeOneofCase_ == 2187; + } /** * int32 oneof_2187 = 2187; * @return The oneof2187. */ + @java.lang.Override public int getOneof2187() { if (hugeOneofCase_ == 2187) { return (java.lang.Integer) hugeOneof_; @@ -197904,10 +220600,19 @@ public int getOneof2187() { } public static final int ONEOF_2188_FIELD_NUMBER = 2188; + /** + * int32 oneof_2188 = 2188; + * @return Whether the oneof2188 field is set. + */ + @java.lang.Override + public boolean hasOneof2188() { + return hugeOneofCase_ == 2188; + } /** * int32 oneof_2188 = 2188; * @return The oneof2188. */ + @java.lang.Override public int getOneof2188() { if (hugeOneofCase_ == 2188) { return (java.lang.Integer) hugeOneof_; @@ -197916,10 +220621,19 @@ public int getOneof2188() { } public static final int ONEOF_2189_FIELD_NUMBER = 2189; + /** + * int32 oneof_2189 = 2189; + * @return Whether the oneof2189 field is set. + */ + @java.lang.Override + public boolean hasOneof2189() { + return hugeOneofCase_ == 2189; + } /** * int32 oneof_2189 = 2189; * @return The oneof2189. */ + @java.lang.Override public int getOneof2189() { if (hugeOneofCase_ == 2189) { return (java.lang.Integer) hugeOneof_; @@ -197928,10 +220642,19 @@ public int getOneof2189() { } public static final int ONEOF_2190_FIELD_NUMBER = 2190; + /** + * int32 oneof_2190 = 2190; + * @return Whether the oneof2190 field is set. + */ + @java.lang.Override + public boolean hasOneof2190() { + return hugeOneofCase_ == 2190; + } /** * int32 oneof_2190 = 2190; * @return The oneof2190. */ + @java.lang.Override public int getOneof2190() { if (hugeOneofCase_ == 2190) { return (java.lang.Integer) hugeOneof_; @@ -197940,10 +220663,19 @@ public int getOneof2190() { } public static final int ONEOF_2191_FIELD_NUMBER = 2191; + /** + * int32 oneof_2191 = 2191; + * @return Whether the oneof2191 field is set. + */ + @java.lang.Override + public boolean hasOneof2191() { + return hugeOneofCase_ == 2191; + } /** * int32 oneof_2191 = 2191; * @return The oneof2191. */ + @java.lang.Override public int getOneof2191() { if (hugeOneofCase_ == 2191) { return (java.lang.Integer) hugeOneof_; @@ -197952,10 +220684,19 @@ public int getOneof2191() { } public static final int ONEOF_2192_FIELD_NUMBER = 2192; + /** + * int32 oneof_2192 = 2192; + * @return Whether the oneof2192 field is set. + */ + @java.lang.Override + public boolean hasOneof2192() { + return hugeOneofCase_ == 2192; + } /** * int32 oneof_2192 = 2192; * @return The oneof2192. */ + @java.lang.Override public int getOneof2192() { if (hugeOneofCase_ == 2192) { return (java.lang.Integer) hugeOneof_; @@ -197964,10 +220705,19 @@ public int getOneof2192() { } public static final int ONEOF_2193_FIELD_NUMBER = 2193; + /** + * int32 oneof_2193 = 2193; + * @return Whether the oneof2193 field is set. + */ + @java.lang.Override + public boolean hasOneof2193() { + return hugeOneofCase_ == 2193; + } /** * int32 oneof_2193 = 2193; * @return The oneof2193. */ + @java.lang.Override public int getOneof2193() { if (hugeOneofCase_ == 2193) { return (java.lang.Integer) hugeOneof_; @@ -197976,10 +220726,19 @@ public int getOneof2193() { } public static final int ONEOF_2194_FIELD_NUMBER = 2194; + /** + * int32 oneof_2194 = 2194; + * @return Whether the oneof2194 field is set. + */ + @java.lang.Override + public boolean hasOneof2194() { + return hugeOneofCase_ == 2194; + } /** * int32 oneof_2194 = 2194; * @return The oneof2194. */ + @java.lang.Override public int getOneof2194() { if (hugeOneofCase_ == 2194) { return (java.lang.Integer) hugeOneof_; @@ -197988,10 +220747,19 @@ public int getOneof2194() { } public static final int ONEOF_2195_FIELD_NUMBER = 2195; + /** + * int32 oneof_2195 = 2195; + * @return Whether the oneof2195 field is set. + */ + @java.lang.Override + public boolean hasOneof2195() { + return hugeOneofCase_ == 2195; + } /** * int32 oneof_2195 = 2195; * @return The oneof2195. */ + @java.lang.Override public int getOneof2195() { if (hugeOneofCase_ == 2195) { return (java.lang.Integer) hugeOneof_; @@ -198000,10 +220768,19 @@ public int getOneof2195() { } public static final int ONEOF_2196_FIELD_NUMBER = 2196; + /** + * int32 oneof_2196 = 2196; + * @return Whether the oneof2196 field is set. + */ + @java.lang.Override + public boolean hasOneof2196() { + return hugeOneofCase_ == 2196; + } /** * int32 oneof_2196 = 2196; * @return The oneof2196. */ + @java.lang.Override public int getOneof2196() { if (hugeOneofCase_ == 2196) { return (java.lang.Integer) hugeOneof_; @@ -198012,10 +220789,19 @@ public int getOneof2196() { } public static final int ONEOF_2197_FIELD_NUMBER = 2197; + /** + * int32 oneof_2197 = 2197; + * @return Whether the oneof2197 field is set. + */ + @java.lang.Override + public boolean hasOneof2197() { + return hugeOneofCase_ == 2197; + } /** * int32 oneof_2197 = 2197; * @return The oneof2197. */ + @java.lang.Override public int getOneof2197() { if (hugeOneofCase_ == 2197) { return (java.lang.Integer) hugeOneof_; @@ -198024,10 +220810,19 @@ public int getOneof2197() { } public static final int ONEOF_2198_FIELD_NUMBER = 2198; + /** + * int32 oneof_2198 = 2198; + * @return Whether the oneof2198 field is set. + */ + @java.lang.Override + public boolean hasOneof2198() { + return hugeOneofCase_ == 2198; + } /** * int32 oneof_2198 = 2198; * @return The oneof2198. */ + @java.lang.Override public int getOneof2198() { if (hugeOneofCase_ == 2198) { return (java.lang.Integer) hugeOneof_; @@ -198036,10 +220831,19 @@ public int getOneof2198() { } public static final int ONEOF_2199_FIELD_NUMBER = 2199; + /** + * int32 oneof_2199 = 2199; + * @return Whether the oneof2199 field is set. + */ + @java.lang.Override + public boolean hasOneof2199() { + return hugeOneofCase_ == 2199; + } /** * int32 oneof_2199 = 2199; * @return The oneof2199. */ + @java.lang.Override public int getOneof2199() { if (hugeOneofCase_ == 2199) { return (java.lang.Integer) hugeOneof_; @@ -198048,10 +220852,19 @@ public int getOneof2199() { } public static final int ONEOF_2200_FIELD_NUMBER = 2200; + /** + * int32 oneof_2200 = 2200; + * @return Whether the oneof2200 field is set. + */ + @java.lang.Override + public boolean hasOneof2200() { + return hugeOneofCase_ == 2200; + } /** * int32 oneof_2200 = 2200; * @return The oneof2200. */ + @java.lang.Override public int getOneof2200() { if (hugeOneofCase_ == 2200) { return (java.lang.Integer) hugeOneof_; @@ -198060,10 +220873,19 @@ public int getOneof2200() { } public static final int ONEOF_2201_FIELD_NUMBER = 2201; + /** + * int32 oneof_2201 = 2201; + * @return Whether the oneof2201 field is set. + */ + @java.lang.Override + public boolean hasOneof2201() { + return hugeOneofCase_ == 2201; + } /** * int32 oneof_2201 = 2201; * @return The oneof2201. */ + @java.lang.Override public int getOneof2201() { if (hugeOneofCase_ == 2201) { return (java.lang.Integer) hugeOneof_; @@ -198072,10 +220894,19 @@ public int getOneof2201() { } public static final int ONEOF_2202_FIELD_NUMBER = 2202; + /** + * int32 oneof_2202 = 2202; + * @return Whether the oneof2202 field is set. + */ + @java.lang.Override + public boolean hasOneof2202() { + return hugeOneofCase_ == 2202; + } /** * int32 oneof_2202 = 2202; * @return The oneof2202. */ + @java.lang.Override public int getOneof2202() { if (hugeOneofCase_ == 2202) { return (java.lang.Integer) hugeOneof_; @@ -198084,10 +220915,19 @@ public int getOneof2202() { } public static final int ONEOF_2203_FIELD_NUMBER = 2203; + /** + * int32 oneof_2203 = 2203; + * @return Whether the oneof2203 field is set. + */ + @java.lang.Override + public boolean hasOneof2203() { + return hugeOneofCase_ == 2203; + } /** * int32 oneof_2203 = 2203; * @return The oneof2203. */ + @java.lang.Override public int getOneof2203() { if (hugeOneofCase_ == 2203) { return (java.lang.Integer) hugeOneof_; @@ -198096,10 +220936,19 @@ public int getOneof2203() { } public static final int ONEOF_2204_FIELD_NUMBER = 2204; + /** + * int32 oneof_2204 = 2204; + * @return Whether the oneof2204 field is set. + */ + @java.lang.Override + public boolean hasOneof2204() { + return hugeOneofCase_ == 2204; + } /** * int32 oneof_2204 = 2204; * @return The oneof2204. */ + @java.lang.Override public int getOneof2204() { if (hugeOneofCase_ == 2204) { return (java.lang.Integer) hugeOneof_; @@ -198108,10 +220957,19 @@ public int getOneof2204() { } public static final int ONEOF_2205_FIELD_NUMBER = 2205; + /** + * int32 oneof_2205 = 2205; + * @return Whether the oneof2205 field is set. + */ + @java.lang.Override + public boolean hasOneof2205() { + return hugeOneofCase_ == 2205; + } /** * int32 oneof_2205 = 2205; * @return The oneof2205. */ + @java.lang.Override public int getOneof2205() { if (hugeOneofCase_ == 2205) { return (java.lang.Integer) hugeOneof_; @@ -198120,10 +220978,19 @@ public int getOneof2205() { } public static final int ONEOF_2206_FIELD_NUMBER = 2206; + /** + * int32 oneof_2206 = 2206; + * @return Whether the oneof2206 field is set. + */ + @java.lang.Override + public boolean hasOneof2206() { + return hugeOneofCase_ == 2206; + } /** * int32 oneof_2206 = 2206; * @return The oneof2206. */ + @java.lang.Override public int getOneof2206() { if (hugeOneofCase_ == 2206) { return (java.lang.Integer) hugeOneof_; @@ -198132,10 +220999,19 @@ public int getOneof2206() { } public static final int ONEOF_2207_FIELD_NUMBER = 2207; + /** + * int32 oneof_2207 = 2207; + * @return Whether the oneof2207 field is set. + */ + @java.lang.Override + public boolean hasOneof2207() { + return hugeOneofCase_ == 2207; + } /** * int32 oneof_2207 = 2207; * @return The oneof2207. */ + @java.lang.Override public int getOneof2207() { if (hugeOneofCase_ == 2207) { return (java.lang.Integer) hugeOneof_; @@ -198144,10 +221020,19 @@ public int getOneof2207() { } public static final int ONEOF_2208_FIELD_NUMBER = 2208; + /** + * int32 oneof_2208 = 2208; + * @return Whether the oneof2208 field is set. + */ + @java.lang.Override + public boolean hasOneof2208() { + return hugeOneofCase_ == 2208; + } /** * int32 oneof_2208 = 2208; * @return The oneof2208. */ + @java.lang.Override public int getOneof2208() { if (hugeOneofCase_ == 2208) { return (java.lang.Integer) hugeOneof_; @@ -198156,10 +221041,19 @@ public int getOneof2208() { } public static final int ONEOF_2209_FIELD_NUMBER = 2209; + /** + * int32 oneof_2209 = 2209; + * @return Whether the oneof2209 field is set. + */ + @java.lang.Override + public boolean hasOneof2209() { + return hugeOneofCase_ == 2209; + } /** * int32 oneof_2209 = 2209; * @return The oneof2209. */ + @java.lang.Override public int getOneof2209() { if (hugeOneofCase_ == 2209) { return (java.lang.Integer) hugeOneof_; @@ -198168,10 +221062,19 @@ public int getOneof2209() { } public static final int ONEOF_2210_FIELD_NUMBER = 2210; + /** + * int32 oneof_2210 = 2210; + * @return Whether the oneof2210 field is set. + */ + @java.lang.Override + public boolean hasOneof2210() { + return hugeOneofCase_ == 2210; + } /** * int32 oneof_2210 = 2210; * @return The oneof2210. */ + @java.lang.Override public int getOneof2210() { if (hugeOneofCase_ == 2210) { return (java.lang.Integer) hugeOneof_; @@ -198180,10 +221083,19 @@ public int getOneof2210() { } public static final int ONEOF_2211_FIELD_NUMBER = 2211; + /** + * int32 oneof_2211 = 2211; + * @return Whether the oneof2211 field is set. + */ + @java.lang.Override + public boolean hasOneof2211() { + return hugeOneofCase_ == 2211; + } /** * int32 oneof_2211 = 2211; * @return The oneof2211. */ + @java.lang.Override public int getOneof2211() { if (hugeOneofCase_ == 2211) { return (java.lang.Integer) hugeOneof_; @@ -198192,10 +221104,19 @@ public int getOneof2211() { } public static final int ONEOF_2212_FIELD_NUMBER = 2212; + /** + * int32 oneof_2212 = 2212; + * @return Whether the oneof2212 field is set. + */ + @java.lang.Override + public boolean hasOneof2212() { + return hugeOneofCase_ == 2212; + } /** * int32 oneof_2212 = 2212; * @return The oneof2212. */ + @java.lang.Override public int getOneof2212() { if (hugeOneofCase_ == 2212) { return (java.lang.Integer) hugeOneof_; @@ -198204,10 +221125,19 @@ public int getOneof2212() { } public static final int ONEOF_2213_FIELD_NUMBER = 2213; + /** + * int32 oneof_2213 = 2213; + * @return Whether the oneof2213 field is set. + */ + @java.lang.Override + public boolean hasOneof2213() { + return hugeOneofCase_ == 2213; + } /** * int32 oneof_2213 = 2213; * @return The oneof2213. */ + @java.lang.Override public int getOneof2213() { if (hugeOneofCase_ == 2213) { return (java.lang.Integer) hugeOneof_; @@ -198216,10 +221146,19 @@ public int getOneof2213() { } public static final int ONEOF_2214_FIELD_NUMBER = 2214; + /** + * int32 oneof_2214 = 2214; + * @return Whether the oneof2214 field is set. + */ + @java.lang.Override + public boolean hasOneof2214() { + return hugeOneofCase_ == 2214; + } /** * int32 oneof_2214 = 2214; * @return The oneof2214. */ + @java.lang.Override public int getOneof2214() { if (hugeOneofCase_ == 2214) { return (java.lang.Integer) hugeOneof_; @@ -198228,10 +221167,19 @@ public int getOneof2214() { } public static final int ONEOF_2215_FIELD_NUMBER = 2215; + /** + * int32 oneof_2215 = 2215; + * @return Whether the oneof2215 field is set. + */ + @java.lang.Override + public boolean hasOneof2215() { + return hugeOneofCase_ == 2215; + } /** * int32 oneof_2215 = 2215; * @return The oneof2215. */ + @java.lang.Override public int getOneof2215() { if (hugeOneofCase_ == 2215) { return (java.lang.Integer) hugeOneof_; @@ -198240,10 +221188,19 @@ public int getOneof2215() { } public static final int ONEOF_2216_FIELD_NUMBER = 2216; + /** + * int32 oneof_2216 = 2216; + * @return Whether the oneof2216 field is set. + */ + @java.lang.Override + public boolean hasOneof2216() { + return hugeOneofCase_ == 2216; + } /** * int32 oneof_2216 = 2216; * @return The oneof2216. */ + @java.lang.Override public int getOneof2216() { if (hugeOneofCase_ == 2216) { return (java.lang.Integer) hugeOneof_; @@ -198252,10 +221209,19 @@ public int getOneof2216() { } public static final int ONEOF_2217_FIELD_NUMBER = 2217; + /** + * int32 oneof_2217 = 2217; + * @return Whether the oneof2217 field is set. + */ + @java.lang.Override + public boolean hasOneof2217() { + return hugeOneofCase_ == 2217; + } /** * int32 oneof_2217 = 2217; * @return The oneof2217. */ + @java.lang.Override public int getOneof2217() { if (hugeOneofCase_ == 2217) { return (java.lang.Integer) hugeOneof_; @@ -198264,10 +221230,19 @@ public int getOneof2217() { } public static final int ONEOF_2218_FIELD_NUMBER = 2218; + /** + * int32 oneof_2218 = 2218; + * @return Whether the oneof2218 field is set. + */ + @java.lang.Override + public boolean hasOneof2218() { + return hugeOneofCase_ == 2218; + } /** * int32 oneof_2218 = 2218; * @return The oneof2218. */ + @java.lang.Override public int getOneof2218() { if (hugeOneofCase_ == 2218) { return (java.lang.Integer) hugeOneof_; @@ -198276,10 +221251,19 @@ public int getOneof2218() { } public static final int ONEOF_2219_FIELD_NUMBER = 2219; + /** + * int32 oneof_2219 = 2219; + * @return Whether the oneof2219 field is set. + */ + @java.lang.Override + public boolean hasOneof2219() { + return hugeOneofCase_ == 2219; + } /** * int32 oneof_2219 = 2219; * @return The oneof2219. */ + @java.lang.Override public int getOneof2219() { if (hugeOneofCase_ == 2219) { return (java.lang.Integer) hugeOneof_; @@ -198288,10 +221272,19 @@ public int getOneof2219() { } public static final int ONEOF_2220_FIELD_NUMBER = 2220; + /** + * int32 oneof_2220 = 2220; + * @return Whether the oneof2220 field is set. + */ + @java.lang.Override + public boolean hasOneof2220() { + return hugeOneofCase_ == 2220; + } /** * int32 oneof_2220 = 2220; * @return The oneof2220. */ + @java.lang.Override public int getOneof2220() { if (hugeOneofCase_ == 2220) { return (java.lang.Integer) hugeOneof_; @@ -198300,10 +221293,19 @@ public int getOneof2220() { } public static final int ONEOF_2221_FIELD_NUMBER = 2221; + /** + * int32 oneof_2221 = 2221; + * @return Whether the oneof2221 field is set. + */ + @java.lang.Override + public boolean hasOneof2221() { + return hugeOneofCase_ == 2221; + } /** * int32 oneof_2221 = 2221; * @return The oneof2221. */ + @java.lang.Override public int getOneof2221() { if (hugeOneofCase_ == 2221) { return (java.lang.Integer) hugeOneof_; @@ -198312,10 +221314,19 @@ public int getOneof2221() { } public static final int ONEOF_2222_FIELD_NUMBER = 2222; + /** + * int32 oneof_2222 = 2222; + * @return Whether the oneof2222 field is set. + */ + @java.lang.Override + public boolean hasOneof2222() { + return hugeOneofCase_ == 2222; + } /** * int32 oneof_2222 = 2222; * @return The oneof2222. */ + @java.lang.Override public int getOneof2222() { if (hugeOneofCase_ == 2222) { return (java.lang.Integer) hugeOneof_; @@ -198324,10 +221335,19 @@ public int getOneof2222() { } public static final int ONEOF_2223_FIELD_NUMBER = 2223; + /** + * int32 oneof_2223 = 2223; + * @return Whether the oneof2223 field is set. + */ + @java.lang.Override + public boolean hasOneof2223() { + return hugeOneofCase_ == 2223; + } /** * int32 oneof_2223 = 2223; * @return The oneof2223. */ + @java.lang.Override public int getOneof2223() { if (hugeOneofCase_ == 2223) { return (java.lang.Integer) hugeOneof_; @@ -198336,10 +221356,19 @@ public int getOneof2223() { } public static final int ONEOF_2224_FIELD_NUMBER = 2224; + /** + * int32 oneof_2224 = 2224; + * @return Whether the oneof2224 field is set. + */ + @java.lang.Override + public boolean hasOneof2224() { + return hugeOneofCase_ == 2224; + } /** * int32 oneof_2224 = 2224; * @return The oneof2224. */ + @java.lang.Override public int getOneof2224() { if (hugeOneofCase_ == 2224) { return (java.lang.Integer) hugeOneof_; @@ -198348,10 +221377,19 @@ public int getOneof2224() { } public static final int ONEOF_2225_FIELD_NUMBER = 2225; + /** + * int32 oneof_2225 = 2225; + * @return Whether the oneof2225 field is set. + */ + @java.lang.Override + public boolean hasOneof2225() { + return hugeOneofCase_ == 2225; + } /** * int32 oneof_2225 = 2225; * @return The oneof2225. */ + @java.lang.Override public int getOneof2225() { if (hugeOneofCase_ == 2225) { return (java.lang.Integer) hugeOneof_; @@ -198360,10 +221398,19 @@ public int getOneof2225() { } public static final int ONEOF_2226_FIELD_NUMBER = 2226; + /** + * int32 oneof_2226 = 2226; + * @return Whether the oneof2226 field is set. + */ + @java.lang.Override + public boolean hasOneof2226() { + return hugeOneofCase_ == 2226; + } /** * int32 oneof_2226 = 2226; * @return The oneof2226. */ + @java.lang.Override public int getOneof2226() { if (hugeOneofCase_ == 2226) { return (java.lang.Integer) hugeOneof_; @@ -198372,10 +221419,19 @@ public int getOneof2226() { } public static final int ONEOF_2227_FIELD_NUMBER = 2227; + /** + * int32 oneof_2227 = 2227; + * @return Whether the oneof2227 field is set. + */ + @java.lang.Override + public boolean hasOneof2227() { + return hugeOneofCase_ == 2227; + } /** * int32 oneof_2227 = 2227; * @return The oneof2227. */ + @java.lang.Override public int getOneof2227() { if (hugeOneofCase_ == 2227) { return (java.lang.Integer) hugeOneof_; @@ -198384,10 +221440,19 @@ public int getOneof2227() { } public static final int ONEOF_2228_FIELD_NUMBER = 2228; + /** + * int32 oneof_2228 = 2228; + * @return Whether the oneof2228 field is set. + */ + @java.lang.Override + public boolean hasOneof2228() { + return hugeOneofCase_ == 2228; + } /** * int32 oneof_2228 = 2228; * @return The oneof2228. */ + @java.lang.Override public int getOneof2228() { if (hugeOneofCase_ == 2228) { return (java.lang.Integer) hugeOneof_; @@ -198396,10 +221461,19 @@ public int getOneof2228() { } public static final int ONEOF_2229_FIELD_NUMBER = 2229; + /** + * int32 oneof_2229 = 2229; + * @return Whether the oneof2229 field is set. + */ + @java.lang.Override + public boolean hasOneof2229() { + return hugeOneofCase_ == 2229; + } /** * int32 oneof_2229 = 2229; * @return The oneof2229. */ + @java.lang.Override public int getOneof2229() { if (hugeOneofCase_ == 2229) { return (java.lang.Integer) hugeOneof_; @@ -198408,10 +221482,19 @@ public int getOneof2229() { } public static final int ONEOF_2230_FIELD_NUMBER = 2230; + /** + * int32 oneof_2230 = 2230; + * @return Whether the oneof2230 field is set. + */ + @java.lang.Override + public boolean hasOneof2230() { + return hugeOneofCase_ == 2230; + } /** * int32 oneof_2230 = 2230; * @return The oneof2230. */ + @java.lang.Override public int getOneof2230() { if (hugeOneofCase_ == 2230) { return (java.lang.Integer) hugeOneof_; @@ -198420,10 +221503,19 @@ public int getOneof2230() { } public static final int ONEOF_2231_FIELD_NUMBER = 2231; + /** + * int32 oneof_2231 = 2231; + * @return Whether the oneof2231 field is set. + */ + @java.lang.Override + public boolean hasOneof2231() { + return hugeOneofCase_ == 2231; + } /** * int32 oneof_2231 = 2231; * @return The oneof2231. */ + @java.lang.Override public int getOneof2231() { if (hugeOneofCase_ == 2231) { return (java.lang.Integer) hugeOneof_; @@ -198432,10 +221524,19 @@ public int getOneof2231() { } public static final int ONEOF_2232_FIELD_NUMBER = 2232; + /** + * int32 oneof_2232 = 2232; + * @return Whether the oneof2232 field is set. + */ + @java.lang.Override + public boolean hasOneof2232() { + return hugeOneofCase_ == 2232; + } /** * int32 oneof_2232 = 2232; * @return The oneof2232. */ + @java.lang.Override public int getOneof2232() { if (hugeOneofCase_ == 2232) { return (java.lang.Integer) hugeOneof_; @@ -198444,10 +221545,19 @@ public int getOneof2232() { } public static final int ONEOF_2233_FIELD_NUMBER = 2233; + /** + * int32 oneof_2233 = 2233; + * @return Whether the oneof2233 field is set. + */ + @java.lang.Override + public boolean hasOneof2233() { + return hugeOneofCase_ == 2233; + } /** * int32 oneof_2233 = 2233; * @return The oneof2233. */ + @java.lang.Override public int getOneof2233() { if (hugeOneofCase_ == 2233) { return (java.lang.Integer) hugeOneof_; @@ -198456,10 +221566,19 @@ public int getOneof2233() { } public static final int ONEOF_2234_FIELD_NUMBER = 2234; + /** + * int32 oneof_2234 = 2234; + * @return Whether the oneof2234 field is set. + */ + @java.lang.Override + public boolean hasOneof2234() { + return hugeOneofCase_ == 2234; + } /** * int32 oneof_2234 = 2234; * @return The oneof2234. */ + @java.lang.Override public int getOneof2234() { if (hugeOneofCase_ == 2234) { return (java.lang.Integer) hugeOneof_; @@ -198468,10 +221587,19 @@ public int getOneof2234() { } public static final int ONEOF_2235_FIELD_NUMBER = 2235; + /** + * int32 oneof_2235 = 2235; + * @return Whether the oneof2235 field is set. + */ + @java.lang.Override + public boolean hasOneof2235() { + return hugeOneofCase_ == 2235; + } /** * int32 oneof_2235 = 2235; * @return The oneof2235. */ + @java.lang.Override public int getOneof2235() { if (hugeOneofCase_ == 2235) { return (java.lang.Integer) hugeOneof_; @@ -198480,10 +221608,19 @@ public int getOneof2235() { } public static final int ONEOF_2236_FIELD_NUMBER = 2236; + /** + * int32 oneof_2236 = 2236; + * @return Whether the oneof2236 field is set. + */ + @java.lang.Override + public boolean hasOneof2236() { + return hugeOneofCase_ == 2236; + } /** * int32 oneof_2236 = 2236; * @return The oneof2236. */ + @java.lang.Override public int getOneof2236() { if (hugeOneofCase_ == 2236) { return (java.lang.Integer) hugeOneof_; @@ -198492,10 +221629,19 @@ public int getOneof2236() { } public static final int ONEOF_2237_FIELD_NUMBER = 2237; + /** + * int32 oneof_2237 = 2237; + * @return Whether the oneof2237 field is set. + */ + @java.lang.Override + public boolean hasOneof2237() { + return hugeOneofCase_ == 2237; + } /** * int32 oneof_2237 = 2237; * @return The oneof2237. */ + @java.lang.Override public int getOneof2237() { if (hugeOneofCase_ == 2237) { return (java.lang.Integer) hugeOneof_; @@ -198504,10 +221650,19 @@ public int getOneof2237() { } public static final int ONEOF_2238_FIELD_NUMBER = 2238; + /** + * int32 oneof_2238 = 2238; + * @return Whether the oneof2238 field is set. + */ + @java.lang.Override + public boolean hasOneof2238() { + return hugeOneofCase_ == 2238; + } /** * int32 oneof_2238 = 2238; * @return The oneof2238. */ + @java.lang.Override public int getOneof2238() { if (hugeOneofCase_ == 2238) { return (java.lang.Integer) hugeOneof_; @@ -198516,10 +221671,19 @@ public int getOneof2238() { } public static final int ONEOF_2239_FIELD_NUMBER = 2239; + /** + * int32 oneof_2239 = 2239; + * @return Whether the oneof2239 field is set. + */ + @java.lang.Override + public boolean hasOneof2239() { + return hugeOneofCase_ == 2239; + } /** * int32 oneof_2239 = 2239; * @return The oneof2239. */ + @java.lang.Override public int getOneof2239() { if (hugeOneofCase_ == 2239) { return (java.lang.Integer) hugeOneof_; @@ -198528,10 +221692,19 @@ public int getOneof2239() { } public static final int ONEOF_2240_FIELD_NUMBER = 2240; + /** + * int32 oneof_2240 = 2240; + * @return Whether the oneof2240 field is set. + */ + @java.lang.Override + public boolean hasOneof2240() { + return hugeOneofCase_ == 2240; + } /** * int32 oneof_2240 = 2240; * @return The oneof2240. */ + @java.lang.Override public int getOneof2240() { if (hugeOneofCase_ == 2240) { return (java.lang.Integer) hugeOneof_; @@ -198540,10 +221713,19 @@ public int getOneof2240() { } public static final int ONEOF_2241_FIELD_NUMBER = 2241; + /** + * int32 oneof_2241 = 2241; + * @return Whether the oneof2241 field is set. + */ + @java.lang.Override + public boolean hasOneof2241() { + return hugeOneofCase_ == 2241; + } /** * int32 oneof_2241 = 2241; * @return The oneof2241. */ + @java.lang.Override public int getOneof2241() { if (hugeOneofCase_ == 2241) { return (java.lang.Integer) hugeOneof_; @@ -198552,10 +221734,19 @@ public int getOneof2241() { } public static final int ONEOF_2242_FIELD_NUMBER = 2242; + /** + * int32 oneof_2242 = 2242; + * @return Whether the oneof2242 field is set. + */ + @java.lang.Override + public boolean hasOneof2242() { + return hugeOneofCase_ == 2242; + } /** * int32 oneof_2242 = 2242; * @return The oneof2242. */ + @java.lang.Override public int getOneof2242() { if (hugeOneofCase_ == 2242) { return (java.lang.Integer) hugeOneof_; @@ -198564,10 +221755,19 @@ public int getOneof2242() { } public static final int ONEOF_2243_FIELD_NUMBER = 2243; + /** + * int32 oneof_2243 = 2243; + * @return Whether the oneof2243 field is set. + */ + @java.lang.Override + public boolean hasOneof2243() { + return hugeOneofCase_ == 2243; + } /** * int32 oneof_2243 = 2243; * @return The oneof2243. */ + @java.lang.Override public int getOneof2243() { if (hugeOneofCase_ == 2243) { return (java.lang.Integer) hugeOneof_; @@ -198576,10 +221776,19 @@ public int getOneof2243() { } public static final int ONEOF_2244_FIELD_NUMBER = 2244; + /** + * int32 oneof_2244 = 2244; + * @return Whether the oneof2244 field is set. + */ + @java.lang.Override + public boolean hasOneof2244() { + return hugeOneofCase_ == 2244; + } /** * int32 oneof_2244 = 2244; * @return The oneof2244. */ + @java.lang.Override public int getOneof2244() { if (hugeOneofCase_ == 2244) { return (java.lang.Integer) hugeOneof_; @@ -198588,10 +221797,19 @@ public int getOneof2244() { } public static final int ONEOF_2245_FIELD_NUMBER = 2245; + /** + * int32 oneof_2245 = 2245; + * @return Whether the oneof2245 field is set. + */ + @java.lang.Override + public boolean hasOneof2245() { + return hugeOneofCase_ == 2245; + } /** * int32 oneof_2245 = 2245; * @return The oneof2245. */ + @java.lang.Override public int getOneof2245() { if (hugeOneofCase_ == 2245) { return (java.lang.Integer) hugeOneof_; @@ -198600,10 +221818,19 @@ public int getOneof2245() { } public static final int ONEOF_2246_FIELD_NUMBER = 2246; + /** + * int32 oneof_2246 = 2246; + * @return Whether the oneof2246 field is set. + */ + @java.lang.Override + public boolean hasOneof2246() { + return hugeOneofCase_ == 2246; + } /** * int32 oneof_2246 = 2246; * @return The oneof2246. */ + @java.lang.Override public int getOneof2246() { if (hugeOneofCase_ == 2246) { return (java.lang.Integer) hugeOneof_; @@ -198612,10 +221839,19 @@ public int getOneof2246() { } public static final int ONEOF_2247_FIELD_NUMBER = 2247; + /** + * int32 oneof_2247 = 2247; + * @return Whether the oneof2247 field is set. + */ + @java.lang.Override + public boolean hasOneof2247() { + return hugeOneofCase_ == 2247; + } /** * int32 oneof_2247 = 2247; * @return The oneof2247. */ + @java.lang.Override public int getOneof2247() { if (hugeOneofCase_ == 2247) { return (java.lang.Integer) hugeOneof_; @@ -198624,10 +221860,19 @@ public int getOneof2247() { } public static final int ONEOF_2248_FIELD_NUMBER = 2248; + /** + * int32 oneof_2248 = 2248; + * @return Whether the oneof2248 field is set. + */ + @java.lang.Override + public boolean hasOneof2248() { + return hugeOneofCase_ == 2248; + } /** * int32 oneof_2248 = 2248; * @return The oneof2248. */ + @java.lang.Override public int getOneof2248() { if (hugeOneofCase_ == 2248) { return (java.lang.Integer) hugeOneof_; @@ -198636,10 +221881,19 @@ public int getOneof2248() { } public static final int ONEOF_2249_FIELD_NUMBER = 2249; + /** + * int32 oneof_2249 = 2249; + * @return Whether the oneof2249 field is set. + */ + @java.lang.Override + public boolean hasOneof2249() { + return hugeOneofCase_ == 2249; + } /** * int32 oneof_2249 = 2249; * @return The oneof2249. */ + @java.lang.Override public int getOneof2249() { if (hugeOneofCase_ == 2249) { return (java.lang.Integer) hugeOneof_; @@ -198648,10 +221902,19 @@ public int getOneof2249() { } public static final int ONEOF_2250_FIELD_NUMBER = 2250; + /** + * int32 oneof_2250 = 2250; + * @return Whether the oneof2250 field is set. + */ + @java.lang.Override + public boolean hasOneof2250() { + return hugeOneofCase_ == 2250; + } /** * int32 oneof_2250 = 2250; * @return The oneof2250. */ + @java.lang.Override public int getOneof2250() { if (hugeOneofCase_ == 2250) { return (java.lang.Integer) hugeOneof_; @@ -198660,10 +221923,19 @@ public int getOneof2250() { } public static final int ONEOF_2251_FIELD_NUMBER = 2251; + /** + * int32 oneof_2251 = 2251; + * @return Whether the oneof2251 field is set. + */ + @java.lang.Override + public boolean hasOneof2251() { + return hugeOneofCase_ == 2251; + } /** * int32 oneof_2251 = 2251; * @return The oneof2251. */ + @java.lang.Override public int getOneof2251() { if (hugeOneofCase_ == 2251) { return (java.lang.Integer) hugeOneof_; @@ -198672,10 +221944,19 @@ public int getOneof2251() { } public static final int ONEOF_2252_FIELD_NUMBER = 2252; + /** + * int32 oneof_2252 = 2252; + * @return Whether the oneof2252 field is set. + */ + @java.lang.Override + public boolean hasOneof2252() { + return hugeOneofCase_ == 2252; + } /** * int32 oneof_2252 = 2252; * @return The oneof2252. */ + @java.lang.Override public int getOneof2252() { if (hugeOneofCase_ == 2252) { return (java.lang.Integer) hugeOneof_; @@ -198684,10 +221965,19 @@ public int getOneof2252() { } public static final int ONEOF_2253_FIELD_NUMBER = 2253; + /** + * int32 oneof_2253 = 2253; + * @return Whether the oneof2253 field is set. + */ + @java.lang.Override + public boolean hasOneof2253() { + return hugeOneofCase_ == 2253; + } /** * int32 oneof_2253 = 2253; * @return The oneof2253. */ + @java.lang.Override public int getOneof2253() { if (hugeOneofCase_ == 2253) { return (java.lang.Integer) hugeOneof_; @@ -198696,10 +221986,19 @@ public int getOneof2253() { } public static final int ONEOF_2254_FIELD_NUMBER = 2254; + /** + * int32 oneof_2254 = 2254; + * @return Whether the oneof2254 field is set. + */ + @java.lang.Override + public boolean hasOneof2254() { + return hugeOneofCase_ == 2254; + } /** * int32 oneof_2254 = 2254; * @return The oneof2254. */ + @java.lang.Override public int getOneof2254() { if (hugeOneofCase_ == 2254) { return (java.lang.Integer) hugeOneof_; @@ -198708,10 +222007,19 @@ public int getOneof2254() { } public static final int ONEOF_2255_FIELD_NUMBER = 2255; + /** + * int32 oneof_2255 = 2255; + * @return Whether the oneof2255 field is set. + */ + @java.lang.Override + public boolean hasOneof2255() { + return hugeOneofCase_ == 2255; + } /** * int32 oneof_2255 = 2255; * @return The oneof2255. */ + @java.lang.Override public int getOneof2255() { if (hugeOneofCase_ == 2255) { return (java.lang.Integer) hugeOneof_; @@ -198720,10 +222028,19 @@ public int getOneof2255() { } public static final int ONEOF_2256_FIELD_NUMBER = 2256; + /** + * int32 oneof_2256 = 2256; + * @return Whether the oneof2256 field is set. + */ + @java.lang.Override + public boolean hasOneof2256() { + return hugeOneofCase_ == 2256; + } /** * int32 oneof_2256 = 2256; * @return The oneof2256. */ + @java.lang.Override public int getOneof2256() { if (hugeOneofCase_ == 2256) { return (java.lang.Integer) hugeOneof_; @@ -198732,10 +222049,19 @@ public int getOneof2256() { } public static final int ONEOF_2257_FIELD_NUMBER = 2257; + /** + * int32 oneof_2257 = 2257; + * @return Whether the oneof2257 field is set. + */ + @java.lang.Override + public boolean hasOneof2257() { + return hugeOneofCase_ == 2257; + } /** * int32 oneof_2257 = 2257; * @return The oneof2257. */ + @java.lang.Override public int getOneof2257() { if (hugeOneofCase_ == 2257) { return (java.lang.Integer) hugeOneof_; @@ -198744,10 +222070,19 @@ public int getOneof2257() { } public static final int ONEOF_2258_FIELD_NUMBER = 2258; + /** + * int32 oneof_2258 = 2258; + * @return Whether the oneof2258 field is set. + */ + @java.lang.Override + public boolean hasOneof2258() { + return hugeOneofCase_ == 2258; + } /** * int32 oneof_2258 = 2258; * @return The oneof2258. */ + @java.lang.Override public int getOneof2258() { if (hugeOneofCase_ == 2258) { return (java.lang.Integer) hugeOneof_; @@ -198756,10 +222091,19 @@ public int getOneof2258() { } public static final int ONEOF_2259_FIELD_NUMBER = 2259; + /** + * int32 oneof_2259 = 2259; + * @return Whether the oneof2259 field is set. + */ + @java.lang.Override + public boolean hasOneof2259() { + return hugeOneofCase_ == 2259; + } /** * int32 oneof_2259 = 2259; * @return The oneof2259. */ + @java.lang.Override public int getOneof2259() { if (hugeOneofCase_ == 2259) { return (java.lang.Integer) hugeOneof_; @@ -198768,10 +222112,19 @@ public int getOneof2259() { } public static final int ONEOF_2260_FIELD_NUMBER = 2260; + /** + * int32 oneof_2260 = 2260; + * @return Whether the oneof2260 field is set. + */ + @java.lang.Override + public boolean hasOneof2260() { + return hugeOneofCase_ == 2260; + } /** * int32 oneof_2260 = 2260; * @return The oneof2260. */ + @java.lang.Override public int getOneof2260() { if (hugeOneofCase_ == 2260) { return (java.lang.Integer) hugeOneof_; @@ -198780,10 +222133,19 @@ public int getOneof2260() { } public static final int ONEOF_2261_FIELD_NUMBER = 2261; + /** + * int32 oneof_2261 = 2261; + * @return Whether the oneof2261 field is set. + */ + @java.lang.Override + public boolean hasOneof2261() { + return hugeOneofCase_ == 2261; + } /** * int32 oneof_2261 = 2261; * @return The oneof2261. */ + @java.lang.Override public int getOneof2261() { if (hugeOneofCase_ == 2261) { return (java.lang.Integer) hugeOneof_; @@ -198792,10 +222154,19 @@ public int getOneof2261() { } public static final int ONEOF_2262_FIELD_NUMBER = 2262; + /** + * int32 oneof_2262 = 2262; + * @return Whether the oneof2262 field is set. + */ + @java.lang.Override + public boolean hasOneof2262() { + return hugeOneofCase_ == 2262; + } /** * int32 oneof_2262 = 2262; * @return The oneof2262. */ + @java.lang.Override public int getOneof2262() { if (hugeOneofCase_ == 2262) { return (java.lang.Integer) hugeOneof_; @@ -198804,10 +222175,19 @@ public int getOneof2262() { } public static final int ONEOF_2263_FIELD_NUMBER = 2263; + /** + * int32 oneof_2263 = 2263; + * @return Whether the oneof2263 field is set. + */ + @java.lang.Override + public boolean hasOneof2263() { + return hugeOneofCase_ == 2263; + } /** * int32 oneof_2263 = 2263; * @return The oneof2263. */ + @java.lang.Override public int getOneof2263() { if (hugeOneofCase_ == 2263) { return (java.lang.Integer) hugeOneof_; @@ -198816,10 +222196,19 @@ public int getOneof2263() { } public static final int ONEOF_2264_FIELD_NUMBER = 2264; + /** + * int32 oneof_2264 = 2264; + * @return Whether the oneof2264 field is set. + */ + @java.lang.Override + public boolean hasOneof2264() { + return hugeOneofCase_ == 2264; + } /** * int32 oneof_2264 = 2264; * @return The oneof2264. */ + @java.lang.Override public int getOneof2264() { if (hugeOneofCase_ == 2264) { return (java.lang.Integer) hugeOneof_; @@ -198828,10 +222217,19 @@ public int getOneof2264() { } public static final int ONEOF_2265_FIELD_NUMBER = 2265; + /** + * int32 oneof_2265 = 2265; + * @return Whether the oneof2265 field is set. + */ + @java.lang.Override + public boolean hasOneof2265() { + return hugeOneofCase_ == 2265; + } /** * int32 oneof_2265 = 2265; * @return The oneof2265. */ + @java.lang.Override public int getOneof2265() { if (hugeOneofCase_ == 2265) { return (java.lang.Integer) hugeOneof_; @@ -198840,10 +222238,19 @@ public int getOneof2265() { } public static final int ONEOF_2266_FIELD_NUMBER = 2266; + /** + * int32 oneof_2266 = 2266; + * @return Whether the oneof2266 field is set. + */ + @java.lang.Override + public boolean hasOneof2266() { + return hugeOneofCase_ == 2266; + } /** * int32 oneof_2266 = 2266; * @return The oneof2266. */ + @java.lang.Override public int getOneof2266() { if (hugeOneofCase_ == 2266) { return (java.lang.Integer) hugeOneof_; @@ -198852,10 +222259,19 @@ public int getOneof2266() { } public static final int ONEOF_2267_FIELD_NUMBER = 2267; + /** + * int32 oneof_2267 = 2267; + * @return Whether the oneof2267 field is set. + */ + @java.lang.Override + public boolean hasOneof2267() { + return hugeOneofCase_ == 2267; + } /** * int32 oneof_2267 = 2267; * @return The oneof2267. */ + @java.lang.Override public int getOneof2267() { if (hugeOneofCase_ == 2267) { return (java.lang.Integer) hugeOneof_; @@ -198864,10 +222280,19 @@ public int getOneof2267() { } public static final int ONEOF_2268_FIELD_NUMBER = 2268; + /** + * int32 oneof_2268 = 2268; + * @return Whether the oneof2268 field is set. + */ + @java.lang.Override + public boolean hasOneof2268() { + return hugeOneofCase_ == 2268; + } /** * int32 oneof_2268 = 2268; * @return The oneof2268. */ + @java.lang.Override public int getOneof2268() { if (hugeOneofCase_ == 2268) { return (java.lang.Integer) hugeOneof_; @@ -198876,10 +222301,19 @@ public int getOneof2268() { } public static final int ONEOF_2269_FIELD_NUMBER = 2269; + /** + * int32 oneof_2269 = 2269; + * @return Whether the oneof2269 field is set. + */ + @java.lang.Override + public boolean hasOneof2269() { + return hugeOneofCase_ == 2269; + } /** * int32 oneof_2269 = 2269; * @return The oneof2269. */ + @java.lang.Override public int getOneof2269() { if (hugeOneofCase_ == 2269) { return (java.lang.Integer) hugeOneof_; @@ -198888,10 +222322,19 @@ public int getOneof2269() { } public static final int ONEOF_2270_FIELD_NUMBER = 2270; + /** + * int32 oneof_2270 = 2270; + * @return Whether the oneof2270 field is set. + */ + @java.lang.Override + public boolean hasOneof2270() { + return hugeOneofCase_ == 2270; + } /** * int32 oneof_2270 = 2270; * @return The oneof2270. */ + @java.lang.Override public int getOneof2270() { if (hugeOneofCase_ == 2270) { return (java.lang.Integer) hugeOneof_; @@ -198900,10 +222343,19 @@ public int getOneof2270() { } public static final int ONEOF_2271_FIELD_NUMBER = 2271; + /** + * int32 oneof_2271 = 2271; + * @return Whether the oneof2271 field is set. + */ + @java.lang.Override + public boolean hasOneof2271() { + return hugeOneofCase_ == 2271; + } /** * int32 oneof_2271 = 2271; * @return The oneof2271. */ + @java.lang.Override public int getOneof2271() { if (hugeOneofCase_ == 2271) { return (java.lang.Integer) hugeOneof_; @@ -198912,10 +222364,19 @@ public int getOneof2271() { } public static final int ONEOF_2272_FIELD_NUMBER = 2272; + /** + * int32 oneof_2272 = 2272; + * @return Whether the oneof2272 field is set. + */ + @java.lang.Override + public boolean hasOneof2272() { + return hugeOneofCase_ == 2272; + } /** * int32 oneof_2272 = 2272; * @return The oneof2272. */ + @java.lang.Override public int getOneof2272() { if (hugeOneofCase_ == 2272) { return (java.lang.Integer) hugeOneof_; @@ -198924,10 +222385,19 @@ public int getOneof2272() { } public static final int ONEOF_2273_FIELD_NUMBER = 2273; + /** + * int32 oneof_2273 = 2273; + * @return Whether the oneof2273 field is set. + */ + @java.lang.Override + public boolean hasOneof2273() { + return hugeOneofCase_ == 2273; + } /** * int32 oneof_2273 = 2273; * @return The oneof2273. */ + @java.lang.Override public int getOneof2273() { if (hugeOneofCase_ == 2273) { return (java.lang.Integer) hugeOneof_; @@ -198936,10 +222406,19 @@ public int getOneof2273() { } public static final int ONEOF_2274_FIELD_NUMBER = 2274; + /** + * int32 oneof_2274 = 2274; + * @return Whether the oneof2274 field is set. + */ + @java.lang.Override + public boolean hasOneof2274() { + return hugeOneofCase_ == 2274; + } /** * int32 oneof_2274 = 2274; * @return The oneof2274. */ + @java.lang.Override public int getOneof2274() { if (hugeOneofCase_ == 2274) { return (java.lang.Integer) hugeOneof_; @@ -198948,10 +222427,19 @@ public int getOneof2274() { } public static final int ONEOF_2275_FIELD_NUMBER = 2275; + /** + * int32 oneof_2275 = 2275; + * @return Whether the oneof2275 field is set. + */ + @java.lang.Override + public boolean hasOneof2275() { + return hugeOneofCase_ == 2275; + } /** * int32 oneof_2275 = 2275; * @return The oneof2275. */ + @java.lang.Override public int getOneof2275() { if (hugeOneofCase_ == 2275) { return (java.lang.Integer) hugeOneof_; @@ -198960,10 +222448,19 @@ public int getOneof2275() { } public static final int ONEOF_2276_FIELD_NUMBER = 2276; + /** + * int32 oneof_2276 = 2276; + * @return Whether the oneof2276 field is set. + */ + @java.lang.Override + public boolean hasOneof2276() { + return hugeOneofCase_ == 2276; + } /** * int32 oneof_2276 = 2276; * @return The oneof2276. */ + @java.lang.Override public int getOneof2276() { if (hugeOneofCase_ == 2276) { return (java.lang.Integer) hugeOneof_; @@ -198972,10 +222469,19 @@ public int getOneof2276() { } public static final int ONEOF_2277_FIELD_NUMBER = 2277; + /** + * int32 oneof_2277 = 2277; + * @return Whether the oneof2277 field is set. + */ + @java.lang.Override + public boolean hasOneof2277() { + return hugeOneofCase_ == 2277; + } /** * int32 oneof_2277 = 2277; * @return The oneof2277. */ + @java.lang.Override public int getOneof2277() { if (hugeOneofCase_ == 2277) { return (java.lang.Integer) hugeOneof_; @@ -198984,10 +222490,19 @@ public int getOneof2277() { } public static final int ONEOF_2278_FIELD_NUMBER = 2278; + /** + * int32 oneof_2278 = 2278; + * @return Whether the oneof2278 field is set. + */ + @java.lang.Override + public boolean hasOneof2278() { + return hugeOneofCase_ == 2278; + } /** * int32 oneof_2278 = 2278; * @return The oneof2278. */ + @java.lang.Override public int getOneof2278() { if (hugeOneofCase_ == 2278) { return (java.lang.Integer) hugeOneof_; @@ -198996,10 +222511,19 @@ public int getOneof2278() { } public static final int ONEOF_2279_FIELD_NUMBER = 2279; + /** + * int32 oneof_2279 = 2279; + * @return Whether the oneof2279 field is set. + */ + @java.lang.Override + public boolean hasOneof2279() { + return hugeOneofCase_ == 2279; + } /** * int32 oneof_2279 = 2279; * @return The oneof2279. */ + @java.lang.Override public int getOneof2279() { if (hugeOneofCase_ == 2279) { return (java.lang.Integer) hugeOneof_; @@ -199008,10 +222532,19 @@ public int getOneof2279() { } public static final int ONEOF_2280_FIELD_NUMBER = 2280; + /** + * int32 oneof_2280 = 2280; + * @return Whether the oneof2280 field is set. + */ + @java.lang.Override + public boolean hasOneof2280() { + return hugeOneofCase_ == 2280; + } /** * int32 oneof_2280 = 2280; * @return The oneof2280. */ + @java.lang.Override public int getOneof2280() { if (hugeOneofCase_ == 2280) { return (java.lang.Integer) hugeOneof_; @@ -199020,10 +222553,19 @@ public int getOneof2280() { } public static final int ONEOF_2281_FIELD_NUMBER = 2281; + /** + * int32 oneof_2281 = 2281; + * @return Whether the oneof2281 field is set. + */ + @java.lang.Override + public boolean hasOneof2281() { + return hugeOneofCase_ == 2281; + } /** * int32 oneof_2281 = 2281; * @return The oneof2281. */ + @java.lang.Override public int getOneof2281() { if (hugeOneofCase_ == 2281) { return (java.lang.Integer) hugeOneof_; @@ -199032,10 +222574,19 @@ public int getOneof2281() { } public static final int ONEOF_2282_FIELD_NUMBER = 2282; + /** + * int32 oneof_2282 = 2282; + * @return Whether the oneof2282 field is set. + */ + @java.lang.Override + public boolean hasOneof2282() { + return hugeOneofCase_ == 2282; + } /** * int32 oneof_2282 = 2282; * @return The oneof2282. */ + @java.lang.Override public int getOneof2282() { if (hugeOneofCase_ == 2282) { return (java.lang.Integer) hugeOneof_; @@ -199044,10 +222595,19 @@ public int getOneof2282() { } public static final int ONEOF_2283_FIELD_NUMBER = 2283; + /** + * int32 oneof_2283 = 2283; + * @return Whether the oneof2283 field is set. + */ + @java.lang.Override + public boolean hasOneof2283() { + return hugeOneofCase_ == 2283; + } /** * int32 oneof_2283 = 2283; * @return The oneof2283. */ + @java.lang.Override public int getOneof2283() { if (hugeOneofCase_ == 2283) { return (java.lang.Integer) hugeOneof_; @@ -199056,10 +222616,19 @@ public int getOneof2283() { } public static final int ONEOF_2284_FIELD_NUMBER = 2284; + /** + * int32 oneof_2284 = 2284; + * @return Whether the oneof2284 field is set. + */ + @java.lang.Override + public boolean hasOneof2284() { + return hugeOneofCase_ == 2284; + } /** * int32 oneof_2284 = 2284; * @return The oneof2284. */ + @java.lang.Override public int getOneof2284() { if (hugeOneofCase_ == 2284) { return (java.lang.Integer) hugeOneof_; @@ -199068,10 +222637,19 @@ public int getOneof2284() { } public static final int ONEOF_2285_FIELD_NUMBER = 2285; + /** + * int32 oneof_2285 = 2285; + * @return Whether the oneof2285 field is set. + */ + @java.lang.Override + public boolean hasOneof2285() { + return hugeOneofCase_ == 2285; + } /** * int32 oneof_2285 = 2285; * @return The oneof2285. */ + @java.lang.Override public int getOneof2285() { if (hugeOneofCase_ == 2285) { return (java.lang.Integer) hugeOneof_; @@ -199080,10 +222658,19 @@ public int getOneof2285() { } public static final int ONEOF_2286_FIELD_NUMBER = 2286; + /** + * int32 oneof_2286 = 2286; + * @return Whether the oneof2286 field is set. + */ + @java.lang.Override + public boolean hasOneof2286() { + return hugeOneofCase_ == 2286; + } /** * int32 oneof_2286 = 2286; * @return The oneof2286. */ + @java.lang.Override public int getOneof2286() { if (hugeOneofCase_ == 2286) { return (java.lang.Integer) hugeOneof_; @@ -199092,10 +222679,19 @@ public int getOneof2286() { } public static final int ONEOF_2287_FIELD_NUMBER = 2287; + /** + * int32 oneof_2287 = 2287; + * @return Whether the oneof2287 field is set. + */ + @java.lang.Override + public boolean hasOneof2287() { + return hugeOneofCase_ == 2287; + } /** * int32 oneof_2287 = 2287; * @return The oneof2287. */ + @java.lang.Override public int getOneof2287() { if (hugeOneofCase_ == 2287) { return (java.lang.Integer) hugeOneof_; @@ -199104,10 +222700,19 @@ public int getOneof2287() { } public static final int ONEOF_2288_FIELD_NUMBER = 2288; + /** + * int32 oneof_2288 = 2288; + * @return Whether the oneof2288 field is set. + */ + @java.lang.Override + public boolean hasOneof2288() { + return hugeOneofCase_ == 2288; + } /** * int32 oneof_2288 = 2288; * @return The oneof2288. */ + @java.lang.Override public int getOneof2288() { if (hugeOneofCase_ == 2288) { return (java.lang.Integer) hugeOneof_; @@ -199116,10 +222721,19 @@ public int getOneof2288() { } public static final int ONEOF_2289_FIELD_NUMBER = 2289; + /** + * int32 oneof_2289 = 2289; + * @return Whether the oneof2289 field is set. + */ + @java.lang.Override + public boolean hasOneof2289() { + return hugeOneofCase_ == 2289; + } /** * int32 oneof_2289 = 2289; * @return The oneof2289. */ + @java.lang.Override public int getOneof2289() { if (hugeOneofCase_ == 2289) { return (java.lang.Integer) hugeOneof_; @@ -199128,10 +222742,19 @@ public int getOneof2289() { } public static final int ONEOF_2290_FIELD_NUMBER = 2290; + /** + * int32 oneof_2290 = 2290; + * @return Whether the oneof2290 field is set. + */ + @java.lang.Override + public boolean hasOneof2290() { + return hugeOneofCase_ == 2290; + } /** * int32 oneof_2290 = 2290; * @return The oneof2290. */ + @java.lang.Override public int getOneof2290() { if (hugeOneofCase_ == 2290) { return (java.lang.Integer) hugeOneof_; @@ -199140,10 +222763,19 @@ public int getOneof2290() { } public static final int ONEOF_2291_FIELD_NUMBER = 2291; + /** + * int32 oneof_2291 = 2291; + * @return Whether the oneof2291 field is set. + */ + @java.lang.Override + public boolean hasOneof2291() { + return hugeOneofCase_ == 2291; + } /** * int32 oneof_2291 = 2291; * @return The oneof2291. */ + @java.lang.Override public int getOneof2291() { if (hugeOneofCase_ == 2291) { return (java.lang.Integer) hugeOneof_; @@ -199152,10 +222784,19 @@ public int getOneof2291() { } public static final int ONEOF_2292_FIELD_NUMBER = 2292; + /** + * int32 oneof_2292 = 2292; + * @return Whether the oneof2292 field is set. + */ + @java.lang.Override + public boolean hasOneof2292() { + return hugeOneofCase_ == 2292; + } /** * int32 oneof_2292 = 2292; * @return The oneof2292. */ + @java.lang.Override public int getOneof2292() { if (hugeOneofCase_ == 2292) { return (java.lang.Integer) hugeOneof_; @@ -199164,10 +222805,19 @@ public int getOneof2292() { } public static final int ONEOF_2293_FIELD_NUMBER = 2293; + /** + * int32 oneof_2293 = 2293; + * @return Whether the oneof2293 field is set. + */ + @java.lang.Override + public boolean hasOneof2293() { + return hugeOneofCase_ == 2293; + } /** * int32 oneof_2293 = 2293; * @return The oneof2293. */ + @java.lang.Override public int getOneof2293() { if (hugeOneofCase_ == 2293) { return (java.lang.Integer) hugeOneof_; @@ -199176,10 +222826,19 @@ public int getOneof2293() { } public static final int ONEOF_2294_FIELD_NUMBER = 2294; + /** + * int32 oneof_2294 = 2294; + * @return Whether the oneof2294 field is set. + */ + @java.lang.Override + public boolean hasOneof2294() { + return hugeOneofCase_ == 2294; + } /** * int32 oneof_2294 = 2294; * @return The oneof2294. */ + @java.lang.Override public int getOneof2294() { if (hugeOneofCase_ == 2294) { return (java.lang.Integer) hugeOneof_; @@ -199188,10 +222847,19 @@ public int getOneof2294() { } public static final int ONEOF_2295_FIELD_NUMBER = 2295; + /** + * int32 oneof_2295 = 2295; + * @return Whether the oneof2295 field is set. + */ + @java.lang.Override + public boolean hasOneof2295() { + return hugeOneofCase_ == 2295; + } /** * int32 oneof_2295 = 2295; * @return The oneof2295. */ + @java.lang.Override public int getOneof2295() { if (hugeOneofCase_ == 2295) { return (java.lang.Integer) hugeOneof_; @@ -199200,10 +222868,19 @@ public int getOneof2295() { } public static final int ONEOF_2296_FIELD_NUMBER = 2296; + /** + * int32 oneof_2296 = 2296; + * @return Whether the oneof2296 field is set. + */ + @java.lang.Override + public boolean hasOneof2296() { + return hugeOneofCase_ == 2296; + } /** * int32 oneof_2296 = 2296; * @return The oneof2296. */ + @java.lang.Override public int getOneof2296() { if (hugeOneofCase_ == 2296) { return (java.lang.Integer) hugeOneof_; @@ -199212,10 +222889,19 @@ public int getOneof2296() { } public static final int ONEOF_2297_FIELD_NUMBER = 2297; + /** + * int32 oneof_2297 = 2297; + * @return Whether the oneof2297 field is set. + */ + @java.lang.Override + public boolean hasOneof2297() { + return hugeOneofCase_ == 2297; + } /** * int32 oneof_2297 = 2297; * @return The oneof2297. */ + @java.lang.Override public int getOneof2297() { if (hugeOneofCase_ == 2297) { return (java.lang.Integer) hugeOneof_; @@ -199224,10 +222910,19 @@ public int getOneof2297() { } public static final int ONEOF_2298_FIELD_NUMBER = 2298; + /** + * int32 oneof_2298 = 2298; + * @return Whether the oneof2298 field is set. + */ + @java.lang.Override + public boolean hasOneof2298() { + return hugeOneofCase_ == 2298; + } /** * int32 oneof_2298 = 2298; * @return The oneof2298. */ + @java.lang.Override public int getOneof2298() { if (hugeOneofCase_ == 2298) { return (java.lang.Integer) hugeOneof_; @@ -199236,10 +222931,19 @@ public int getOneof2298() { } public static final int ONEOF_2299_FIELD_NUMBER = 2299; + /** + * int32 oneof_2299 = 2299; + * @return Whether the oneof2299 field is set. + */ + @java.lang.Override + public boolean hasOneof2299() { + return hugeOneofCase_ == 2299; + } /** * int32 oneof_2299 = 2299; * @return The oneof2299. */ + @java.lang.Override public int getOneof2299() { if (hugeOneofCase_ == 2299) { return (java.lang.Integer) hugeOneof_; @@ -199248,10 +222952,19 @@ public int getOneof2299() { } public static final int ONEOF_2300_FIELD_NUMBER = 2300; + /** + * int32 oneof_2300 = 2300; + * @return Whether the oneof2300 field is set. + */ + @java.lang.Override + public boolean hasOneof2300() { + return hugeOneofCase_ == 2300; + } /** * int32 oneof_2300 = 2300; * @return The oneof2300. */ + @java.lang.Override public int getOneof2300() { if (hugeOneofCase_ == 2300) { return (java.lang.Integer) hugeOneof_; @@ -199260,10 +222973,19 @@ public int getOneof2300() { } public static final int ONEOF_2301_FIELD_NUMBER = 2301; + /** + * int32 oneof_2301 = 2301; + * @return Whether the oneof2301 field is set. + */ + @java.lang.Override + public boolean hasOneof2301() { + return hugeOneofCase_ == 2301; + } /** * int32 oneof_2301 = 2301; * @return The oneof2301. */ + @java.lang.Override public int getOneof2301() { if (hugeOneofCase_ == 2301) { return (java.lang.Integer) hugeOneof_; @@ -199272,10 +222994,19 @@ public int getOneof2301() { } public static final int ONEOF_2302_FIELD_NUMBER = 2302; + /** + * int32 oneof_2302 = 2302; + * @return Whether the oneof2302 field is set. + */ + @java.lang.Override + public boolean hasOneof2302() { + return hugeOneofCase_ == 2302; + } /** * int32 oneof_2302 = 2302; * @return The oneof2302. */ + @java.lang.Override public int getOneof2302() { if (hugeOneofCase_ == 2302) { return (java.lang.Integer) hugeOneof_; @@ -199284,10 +223015,19 @@ public int getOneof2302() { } public static final int ONEOF_2303_FIELD_NUMBER = 2303; + /** + * int32 oneof_2303 = 2303; + * @return Whether the oneof2303 field is set. + */ + @java.lang.Override + public boolean hasOneof2303() { + return hugeOneofCase_ == 2303; + } /** * int32 oneof_2303 = 2303; * @return The oneof2303. */ + @java.lang.Override public int getOneof2303() { if (hugeOneofCase_ == 2303) { return (java.lang.Integer) hugeOneof_; @@ -199296,10 +223036,19 @@ public int getOneof2303() { } public static final int ONEOF_2304_FIELD_NUMBER = 2304; + /** + * int32 oneof_2304 = 2304; + * @return Whether the oneof2304 field is set. + */ + @java.lang.Override + public boolean hasOneof2304() { + return hugeOneofCase_ == 2304; + } /** * int32 oneof_2304 = 2304; * @return The oneof2304. */ + @java.lang.Override public int getOneof2304() { if (hugeOneofCase_ == 2304) { return (java.lang.Integer) hugeOneof_; @@ -199308,10 +223057,19 @@ public int getOneof2304() { } public static final int ONEOF_2305_FIELD_NUMBER = 2305; + /** + * int32 oneof_2305 = 2305; + * @return Whether the oneof2305 field is set. + */ + @java.lang.Override + public boolean hasOneof2305() { + return hugeOneofCase_ == 2305; + } /** * int32 oneof_2305 = 2305; * @return The oneof2305. */ + @java.lang.Override public int getOneof2305() { if (hugeOneofCase_ == 2305) { return (java.lang.Integer) hugeOneof_; @@ -199320,10 +223078,19 @@ public int getOneof2305() { } public static final int ONEOF_2306_FIELD_NUMBER = 2306; + /** + * int32 oneof_2306 = 2306; + * @return Whether the oneof2306 field is set. + */ + @java.lang.Override + public boolean hasOneof2306() { + return hugeOneofCase_ == 2306; + } /** * int32 oneof_2306 = 2306; * @return The oneof2306. */ + @java.lang.Override public int getOneof2306() { if (hugeOneofCase_ == 2306) { return (java.lang.Integer) hugeOneof_; @@ -199332,10 +223099,19 @@ public int getOneof2306() { } public static final int ONEOF_2307_FIELD_NUMBER = 2307; + /** + * int32 oneof_2307 = 2307; + * @return Whether the oneof2307 field is set. + */ + @java.lang.Override + public boolean hasOneof2307() { + return hugeOneofCase_ == 2307; + } /** * int32 oneof_2307 = 2307; * @return The oneof2307. */ + @java.lang.Override public int getOneof2307() { if (hugeOneofCase_ == 2307) { return (java.lang.Integer) hugeOneof_; @@ -199344,10 +223120,19 @@ public int getOneof2307() { } public static final int ONEOF_2308_FIELD_NUMBER = 2308; + /** + * int32 oneof_2308 = 2308; + * @return Whether the oneof2308 field is set. + */ + @java.lang.Override + public boolean hasOneof2308() { + return hugeOneofCase_ == 2308; + } /** * int32 oneof_2308 = 2308; * @return The oneof2308. */ + @java.lang.Override public int getOneof2308() { if (hugeOneofCase_ == 2308) { return (java.lang.Integer) hugeOneof_; @@ -199356,10 +223141,19 @@ public int getOneof2308() { } public static final int ONEOF_2309_FIELD_NUMBER = 2309; + /** + * int32 oneof_2309 = 2309; + * @return Whether the oneof2309 field is set. + */ + @java.lang.Override + public boolean hasOneof2309() { + return hugeOneofCase_ == 2309; + } /** * int32 oneof_2309 = 2309; * @return The oneof2309. */ + @java.lang.Override public int getOneof2309() { if (hugeOneofCase_ == 2309) { return (java.lang.Integer) hugeOneof_; @@ -199368,10 +223162,19 @@ public int getOneof2309() { } public static final int ONEOF_2310_FIELD_NUMBER = 2310; + /** + * int32 oneof_2310 = 2310; + * @return Whether the oneof2310 field is set. + */ + @java.lang.Override + public boolean hasOneof2310() { + return hugeOneofCase_ == 2310; + } /** * int32 oneof_2310 = 2310; * @return The oneof2310. */ + @java.lang.Override public int getOneof2310() { if (hugeOneofCase_ == 2310) { return (java.lang.Integer) hugeOneof_; @@ -199380,10 +223183,19 @@ public int getOneof2310() { } public static final int ONEOF_2311_FIELD_NUMBER = 2311; + /** + * int32 oneof_2311 = 2311; + * @return Whether the oneof2311 field is set. + */ + @java.lang.Override + public boolean hasOneof2311() { + return hugeOneofCase_ == 2311; + } /** * int32 oneof_2311 = 2311; * @return The oneof2311. */ + @java.lang.Override public int getOneof2311() { if (hugeOneofCase_ == 2311) { return (java.lang.Integer) hugeOneof_; @@ -199392,10 +223204,19 @@ public int getOneof2311() { } public static final int ONEOF_2312_FIELD_NUMBER = 2312; + /** + * int32 oneof_2312 = 2312; + * @return Whether the oneof2312 field is set. + */ + @java.lang.Override + public boolean hasOneof2312() { + return hugeOneofCase_ == 2312; + } /** * int32 oneof_2312 = 2312; * @return The oneof2312. */ + @java.lang.Override public int getOneof2312() { if (hugeOneofCase_ == 2312) { return (java.lang.Integer) hugeOneof_; @@ -199404,10 +223225,19 @@ public int getOneof2312() { } public static final int ONEOF_2313_FIELD_NUMBER = 2313; + /** + * int32 oneof_2313 = 2313; + * @return Whether the oneof2313 field is set. + */ + @java.lang.Override + public boolean hasOneof2313() { + return hugeOneofCase_ == 2313; + } /** * int32 oneof_2313 = 2313; * @return The oneof2313. */ + @java.lang.Override public int getOneof2313() { if (hugeOneofCase_ == 2313) { return (java.lang.Integer) hugeOneof_; @@ -199416,10 +223246,19 @@ public int getOneof2313() { } public static final int ONEOF_2314_FIELD_NUMBER = 2314; + /** + * int32 oneof_2314 = 2314; + * @return Whether the oneof2314 field is set. + */ + @java.lang.Override + public boolean hasOneof2314() { + return hugeOneofCase_ == 2314; + } /** * int32 oneof_2314 = 2314; * @return The oneof2314. */ + @java.lang.Override public int getOneof2314() { if (hugeOneofCase_ == 2314) { return (java.lang.Integer) hugeOneof_; @@ -199428,10 +223267,19 @@ public int getOneof2314() { } public static final int ONEOF_2315_FIELD_NUMBER = 2315; + /** + * int32 oneof_2315 = 2315; + * @return Whether the oneof2315 field is set. + */ + @java.lang.Override + public boolean hasOneof2315() { + return hugeOneofCase_ == 2315; + } /** * int32 oneof_2315 = 2315; * @return The oneof2315. */ + @java.lang.Override public int getOneof2315() { if (hugeOneofCase_ == 2315) { return (java.lang.Integer) hugeOneof_; @@ -199440,10 +223288,19 @@ public int getOneof2315() { } public static final int ONEOF_2316_FIELD_NUMBER = 2316; + /** + * int32 oneof_2316 = 2316; + * @return Whether the oneof2316 field is set. + */ + @java.lang.Override + public boolean hasOneof2316() { + return hugeOneofCase_ == 2316; + } /** * int32 oneof_2316 = 2316; * @return The oneof2316. */ + @java.lang.Override public int getOneof2316() { if (hugeOneofCase_ == 2316) { return (java.lang.Integer) hugeOneof_; @@ -199452,10 +223309,19 @@ public int getOneof2316() { } public static final int ONEOF_2317_FIELD_NUMBER = 2317; + /** + * int32 oneof_2317 = 2317; + * @return Whether the oneof2317 field is set. + */ + @java.lang.Override + public boolean hasOneof2317() { + return hugeOneofCase_ == 2317; + } /** * int32 oneof_2317 = 2317; * @return The oneof2317. */ + @java.lang.Override public int getOneof2317() { if (hugeOneofCase_ == 2317) { return (java.lang.Integer) hugeOneof_; @@ -199464,10 +223330,19 @@ public int getOneof2317() { } public static final int ONEOF_2318_FIELD_NUMBER = 2318; + /** + * int32 oneof_2318 = 2318; + * @return Whether the oneof2318 field is set. + */ + @java.lang.Override + public boolean hasOneof2318() { + return hugeOneofCase_ == 2318; + } /** * int32 oneof_2318 = 2318; * @return The oneof2318. */ + @java.lang.Override public int getOneof2318() { if (hugeOneofCase_ == 2318) { return (java.lang.Integer) hugeOneof_; @@ -199476,10 +223351,19 @@ public int getOneof2318() { } public static final int ONEOF_2319_FIELD_NUMBER = 2319; + /** + * int32 oneof_2319 = 2319; + * @return Whether the oneof2319 field is set. + */ + @java.lang.Override + public boolean hasOneof2319() { + return hugeOneofCase_ == 2319; + } /** * int32 oneof_2319 = 2319; * @return The oneof2319. */ + @java.lang.Override public int getOneof2319() { if (hugeOneofCase_ == 2319) { return (java.lang.Integer) hugeOneof_; @@ -199488,10 +223372,19 @@ public int getOneof2319() { } public static final int ONEOF_2320_FIELD_NUMBER = 2320; + /** + * int32 oneof_2320 = 2320; + * @return Whether the oneof2320 field is set. + */ + @java.lang.Override + public boolean hasOneof2320() { + return hugeOneofCase_ == 2320; + } /** * int32 oneof_2320 = 2320; * @return The oneof2320. */ + @java.lang.Override public int getOneof2320() { if (hugeOneofCase_ == 2320) { return (java.lang.Integer) hugeOneof_; @@ -199500,10 +223393,19 @@ public int getOneof2320() { } public static final int ONEOF_2321_FIELD_NUMBER = 2321; + /** + * int32 oneof_2321 = 2321; + * @return Whether the oneof2321 field is set. + */ + @java.lang.Override + public boolean hasOneof2321() { + return hugeOneofCase_ == 2321; + } /** * int32 oneof_2321 = 2321; * @return The oneof2321. */ + @java.lang.Override public int getOneof2321() { if (hugeOneofCase_ == 2321) { return (java.lang.Integer) hugeOneof_; @@ -199512,10 +223414,19 @@ public int getOneof2321() { } public static final int ONEOF_2322_FIELD_NUMBER = 2322; + /** + * int32 oneof_2322 = 2322; + * @return Whether the oneof2322 field is set. + */ + @java.lang.Override + public boolean hasOneof2322() { + return hugeOneofCase_ == 2322; + } /** * int32 oneof_2322 = 2322; * @return The oneof2322. */ + @java.lang.Override public int getOneof2322() { if (hugeOneofCase_ == 2322) { return (java.lang.Integer) hugeOneof_; @@ -199524,10 +223435,19 @@ public int getOneof2322() { } public static final int ONEOF_2323_FIELD_NUMBER = 2323; + /** + * int32 oneof_2323 = 2323; + * @return Whether the oneof2323 field is set. + */ + @java.lang.Override + public boolean hasOneof2323() { + return hugeOneofCase_ == 2323; + } /** * int32 oneof_2323 = 2323; * @return The oneof2323. */ + @java.lang.Override public int getOneof2323() { if (hugeOneofCase_ == 2323) { return (java.lang.Integer) hugeOneof_; @@ -199536,10 +223456,19 @@ public int getOneof2323() { } public static final int ONEOF_2324_FIELD_NUMBER = 2324; + /** + * int32 oneof_2324 = 2324; + * @return Whether the oneof2324 field is set. + */ + @java.lang.Override + public boolean hasOneof2324() { + return hugeOneofCase_ == 2324; + } /** * int32 oneof_2324 = 2324; * @return The oneof2324. */ + @java.lang.Override public int getOneof2324() { if (hugeOneofCase_ == 2324) { return (java.lang.Integer) hugeOneof_; @@ -199548,10 +223477,19 @@ public int getOneof2324() { } public static final int ONEOF_2325_FIELD_NUMBER = 2325; + /** + * int32 oneof_2325 = 2325; + * @return Whether the oneof2325 field is set. + */ + @java.lang.Override + public boolean hasOneof2325() { + return hugeOneofCase_ == 2325; + } /** * int32 oneof_2325 = 2325; * @return The oneof2325. */ + @java.lang.Override public int getOneof2325() { if (hugeOneofCase_ == 2325) { return (java.lang.Integer) hugeOneof_; @@ -199560,10 +223498,19 @@ public int getOneof2325() { } public static final int ONEOF_2326_FIELD_NUMBER = 2326; + /** + * int32 oneof_2326 = 2326; + * @return Whether the oneof2326 field is set. + */ + @java.lang.Override + public boolean hasOneof2326() { + return hugeOneofCase_ == 2326; + } /** * int32 oneof_2326 = 2326; * @return The oneof2326. */ + @java.lang.Override public int getOneof2326() { if (hugeOneofCase_ == 2326) { return (java.lang.Integer) hugeOneof_; @@ -199572,10 +223519,19 @@ public int getOneof2326() { } public static final int ONEOF_2327_FIELD_NUMBER = 2327; + /** + * int32 oneof_2327 = 2327; + * @return Whether the oneof2327 field is set. + */ + @java.lang.Override + public boolean hasOneof2327() { + return hugeOneofCase_ == 2327; + } /** * int32 oneof_2327 = 2327; * @return The oneof2327. */ + @java.lang.Override public int getOneof2327() { if (hugeOneofCase_ == 2327) { return (java.lang.Integer) hugeOneof_; @@ -199584,10 +223540,19 @@ public int getOneof2327() { } public static final int ONEOF_2328_FIELD_NUMBER = 2328; + /** + * int32 oneof_2328 = 2328; + * @return Whether the oneof2328 field is set. + */ + @java.lang.Override + public boolean hasOneof2328() { + return hugeOneofCase_ == 2328; + } /** * int32 oneof_2328 = 2328; * @return The oneof2328. */ + @java.lang.Override public int getOneof2328() { if (hugeOneofCase_ == 2328) { return (java.lang.Integer) hugeOneof_; @@ -199596,10 +223561,19 @@ public int getOneof2328() { } public static final int ONEOF_2329_FIELD_NUMBER = 2329; + /** + * int32 oneof_2329 = 2329; + * @return Whether the oneof2329 field is set. + */ + @java.lang.Override + public boolean hasOneof2329() { + return hugeOneofCase_ == 2329; + } /** * int32 oneof_2329 = 2329; * @return The oneof2329. */ + @java.lang.Override public int getOneof2329() { if (hugeOneofCase_ == 2329) { return (java.lang.Integer) hugeOneof_; @@ -199608,10 +223582,19 @@ public int getOneof2329() { } public static final int ONEOF_2330_FIELD_NUMBER = 2330; + /** + * int32 oneof_2330 = 2330; + * @return Whether the oneof2330 field is set. + */ + @java.lang.Override + public boolean hasOneof2330() { + return hugeOneofCase_ == 2330; + } /** * int32 oneof_2330 = 2330; * @return The oneof2330. */ + @java.lang.Override public int getOneof2330() { if (hugeOneofCase_ == 2330) { return (java.lang.Integer) hugeOneof_; @@ -199620,10 +223603,19 @@ public int getOneof2330() { } public static final int ONEOF_2331_FIELD_NUMBER = 2331; + /** + * int32 oneof_2331 = 2331; + * @return Whether the oneof2331 field is set. + */ + @java.lang.Override + public boolean hasOneof2331() { + return hugeOneofCase_ == 2331; + } /** * int32 oneof_2331 = 2331; * @return The oneof2331. */ + @java.lang.Override public int getOneof2331() { if (hugeOneofCase_ == 2331) { return (java.lang.Integer) hugeOneof_; @@ -199632,10 +223624,19 @@ public int getOneof2331() { } public static final int ONEOF_2332_FIELD_NUMBER = 2332; + /** + * int32 oneof_2332 = 2332; + * @return Whether the oneof2332 field is set. + */ + @java.lang.Override + public boolean hasOneof2332() { + return hugeOneofCase_ == 2332; + } /** * int32 oneof_2332 = 2332; * @return The oneof2332. */ + @java.lang.Override public int getOneof2332() { if (hugeOneofCase_ == 2332) { return (java.lang.Integer) hugeOneof_; @@ -199644,10 +223645,19 @@ public int getOneof2332() { } public static final int ONEOF_2333_FIELD_NUMBER = 2333; + /** + * int32 oneof_2333 = 2333; + * @return Whether the oneof2333 field is set. + */ + @java.lang.Override + public boolean hasOneof2333() { + return hugeOneofCase_ == 2333; + } /** * int32 oneof_2333 = 2333; * @return The oneof2333. */ + @java.lang.Override public int getOneof2333() { if (hugeOneofCase_ == 2333) { return (java.lang.Integer) hugeOneof_; @@ -199656,10 +223666,19 @@ public int getOneof2333() { } public static final int ONEOF_2334_FIELD_NUMBER = 2334; + /** + * int32 oneof_2334 = 2334; + * @return Whether the oneof2334 field is set. + */ + @java.lang.Override + public boolean hasOneof2334() { + return hugeOneofCase_ == 2334; + } /** * int32 oneof_2334 = 2334; * @return The oneof2334. */ + @java.lang.Override public int getOneof2334() { if (hugeOneofCase_ == 2334) { return (java.lang.Integer) hugeOneof_; @@ -199668,10 +223687,19 @@ public int getOneof2334() { } public static final int ONEOF_2335_FIELD_NUMBER = 2335; + /** + * int32 oneof_2335 = 2335; + * @return Whether the oneof2335 field is set. + */ + @java.lang.Override + public boolean hasOneof2335() { + return hugeOneofCase_ == 2335; + } /** * int32 oneof_2335 = 2335; * @return The oneof2335. */ + @java.lang.Override public int getOneof2335() { if (hugeOneofCase_ == 2335) { return (java.lang.Integer) hugeOneof_; @@ -199680,10 +223708,19 @@ public int getOneof2335() { } public static final int ONEOF_2336_FIELD_NUMBER = 2336; + /** + * int32 oneof_2336 = 2336; + * @return Whether the oneof2336 field is set. + */ + @java.lang.Override + public boolean hasOneof2336() { + return hugeOneofCase_ == 2336; + } /** * int32 oneof_2336 = 2336; * @return The oneof2336. */ + @java.lang.Override public int getOneof2336() { if (hugeOneofCase_ == 2336) { return (java.lang.Integer) hugeOneof_; @@ -199692,10 +223729,19 @@ public int getOneof2336() { } public static final int ONEOF_2337_FIELD_NUMBER = 2337; + /** + * int32 oneof_2337 = 2337; + * @return Whether the oneof2337 field is set. + */ + @java.lang.Override + public boolean hasOneof2337() { + return hugeOneofCase_ == 2337; + } /** * int32 oneof_2337 = 2337; * @return The oneof2337. */ + @java.lang.Override public int getOneof2337() { if (hugeOneofCase_ == 2337) { return (java.lang.Integer) hugeOneof_; @@ -199704,10 +223750,19 @@ public int getOneof2337() { } public static final int ONEOF_2338_FIELD_NUMBER = 2338; + /** + * int32 oneof_2338 = 2338; + * @return Whether the oneof2338 field is set. + */ + @java.lang.Override + public boolean hasOneof2338() { + return hugeOneofCase_ == 2338; + } /** * int32 oneof_2338 = 2338; * @return The oneof2338. */ + @java.lang.Override public int getOneof2338() { if (hugeOneofCase_ == 2338) { return (java.lang.Integer) hugeOneof_; @@ -199716,10 +223771,19 @@ public int getOneof2338() { } public static final int ONEOF_2339_FIELD_NUMBER = 2339; + /** + * int32 oneof_2339 = 2339; + * @return Whether the oneof2339 field is set. + */ + @java.lang.Override + public boolean hasOneof2339() { + return hugeOneofCase_ == 2339; + } /** * int32 oneof_2339 = 2339; * @return The oneof2339. */ + @java.lang.Override public int getOneof2339() { if (hugeOneofCase_ == 2339) { return (java.lang.Integer) hugeOneof_; @@ -199728,10 +223792,19 @@ public int getOneof2339() { } public static final int ONEOF_2340_FIELD_NUMBER = 2340; + /** + * int32 oneof_2340 = 2340; + * @return Whether the oneof2340 field is set. + */ + @java.lang.Override + public boolean hasOneof2340() { + return hugeOneofCase_ == 2340; + } /** * int32 oneof_2340 = 2340; * @return The oneof2340. */ + @java.lang.Override public int getOneof2340() { if (hugeOneofCase_ == 2340) { return (java.lang.Integer) hugeOneof_; @@ -199740,10 +223813,19 @@ public int getOneof2340() { } public static final int ONEOF_2341_FIELD_NUMBER = 2341; + /** + * int32 oneof_2341 = 2341; + * @return Whether the oneof2341 field is set. + */ + @java.lang.Override + public boolean hasOneof2341() { + return hugeOneofCase_ == 2341; + } /** * int32 oneof_2341 = 2341; * @return The oneof2341. */ + @java.lang.Override public int getOneof2341() { if (hugeOneofCase_ == 2341) { return (java.lang.Integer) hugeOneof_; @@ -199752,10 +223834,19 @@ public int getOneof2341() { } public static final int ONEOF_2342_FIELD_NUMBER = 2342; + /** + * int32 oneof_2342 = 2342; + * @return Whether the oneof2342 field is set. + */ + @java.lang.Override + public boolean hasOneof2342() { + return hugeOneofCase_ == 2342; + } /** * int32 oneof_2342 = 2342; * @return The oneof2342. */ + @java.lang.Override public int getOneof2342() { if (hugeOneofCase_ == 2342) { return (java.lang.Integer) hugeOneof_; @@ -199764,10 +223855,19 @@ public int getOneof2342() { } public static final int ONEOF_2343_FIELD_NUMBER = 2343; + /** + * int32 oneof_2343 = 2343; + * @return Whether the oneof2343 field is set. + */ + @java.lang.Override + public boolean hasOneof2343() { + return hugeOneofCase_ == 2343; + } /** * int32 oneof_2343 = 2343; * @return The oneof2343. */ + @java.lang.Override public int getOneof2343() { if (hugeOneofCase_ == 2343) { return (java.lang.Integer) hugeOneof_; @@ -199776,10 +223876,19 @@ public int getOneof2343() { } public static final int ONEOF_2344_FIELD_NUMBER = 2344; + /** + * int32 oneof_2344 = 2344; + * @return Whether the oneof2344 field is set. + */ + @java.lang.Override + public boolean hasOneof2344() { + return hugeOneofCase_ == 2344; + } /** * int32 oneof_2344 = 2344; * @return The oneof2344. */ + @java.lang.Override public int getOneof2344() { if (hugeOneofCase_ == 2344) { return (java.lang.Integer) hugeOneof_; @@ -199788,10 +223897,19 @@ public int getOneof2344() { } public static final int ONEOF_2345_FIELD_NUMBER = 2345; + /** + * int32 oneof_2345 = 2345; + * @return Whether the oneof2345 field is set. + */ + @java.lang.Override + public boolean hasOneof2345() { + return hugeOneofCase_ == 2345; + } /** * int32 oneof_2345 = 2345; * @return The oneof2345. */ + @java.lang.Override public int getOneof2345() { if (hugeOneofCase_ == 2345) { return (java.lang.Integer) hugeOneof_; @@ -199800,10 +223918,19 @@ public int getOneof2345() { } public static final int ONEOF_2346_FIELD_NUMBER = 2346; + /** + * int32 oneof_2346 = 2346; + * @return Whether the oneof2346 field is set. + */ + @java.lang.Override + public boolean hasOneof2346() { + return hugeOneofCase_ == 2346; + } /** * int32 oneof_2346 = 2346; * @return The oneof2346. */ + @java.lang.Override public int getOneof2346() { if (hugeOneofCase_ == 2346) { return (java.lang.Integer) hugeOneof_; @@ -199812,10 +223939,19 @@ public int getOneof2346() { } public static final int ONEOF_2347_FIELD_NUMBER = 2347; + /** + * int32 oneof_2347 = 2347; + * @return Whether the oneof2347 field is set. + */ + @java.lang.Override + public boolean hasOneof2347() { + return hugeOneofCase_ == 2347; + } /** * int32 oneof_2347 = 2347; * @return The oneof2347. */ + @java.lang.Override public int getOneof2347() { if (hugeOneofCase_ == 2347) { return (java.lang.Integer) hugeOneof_; @@ -199824,10 +223960,19 @@ public int getOneof2347() { } public static final int ONEOF_2348_FIELD_NUMBER = 2348; + /** + * int32 oneof_2348 = 2348; + * @return Whether the oneof2348 field is set. + */ + @java.lang.Override + public boolean hasOneof2348() { + return hugeOneofCase_ == 2348; + } /** * int32 oneof_2348 = 2348; * @return The oneof2348. */ + @java.lang.Override public int getOneof2348() { if (hugeOneofCase_ == 2348) { return (java.lang.Integer) hugeOneof_; @@ -199836,10 +223981,19 @@ public int getOneof2348() { } public static final int ONEOF_2349_FIELD_NUMBER = 2349; + /** + * int32 oneof_2349 = 2349; + * @return Whether the oneof2349 field is set. + */ + @java.lang.Override + public boolean hasOneof2349() { + return hugeOneofCase_ == 2349; + } /** * int32 oneof_2349 = 2349; * @return The oneof2349. */ + @java.lang.Override public int getOneof2349() { if (hugeOneofCase_ == 2349) { return (java.lang.Integer) hugeOneof_; @@ -199848,22 +224002,40 @@ public int getOneof2349() { } public static final int ONEOF_2350_FIELD_NUMBER = 2350; + /** + * int32 oneof_2350 = 2350; + * @return Whether the oneof2350 field is set. + */ + @java.lang.Override + public boolean hasOneof2350() { + return hugeOneofCase_ == 2350; + } /** * int32 oneof_2350 = 2350; * @return The oneof2350. */ + @java.lang.Override public int getOneof2350() { if (hugeOneofCase_ == 2350) { return (java.lang.Integer) hugeOneof_; } return 0; } - - public static final int ONEOF_2351_FIELD_NUMBER = 2351; + + public static final int ONEOF_2351_FIELD_NUMBER = 2351; + /** + * int32 oneof_2351 = 2351; + * @return Whether the oneof2351 field is set. + */ + @java.lang.Override + public boolean hasOneof2351() { + return hugeOneofCase_ == 2351; + } /** * int32 oneof_2351 = 2351; * @return The oneof2351. */ + @java.lang.Override public int getOneof2351() { if (hugeOneofCase_ == 2351) { return (java.lang.Integer) hugeOneof_; @@ -199872,10 +224044,19 @@ public int getOneof2351() { } public static final int ONEOF_2352_FIELD_NUMBER = 2352; + /** + * int32 oneof_2352 = 2352; + * @return Whether the oneof2352 field is set. + */ + @java.lang.Override + public boolean hasOneof2352() { + return hugeOneofCase_ == 2352; + } /** * int32 oneof_2352 = 2352; * @return The oneof2352. */ + @java.lang.Override public int getOneof2352() { if (hugeOneofCase_ == 2352) { return (java.lang.Integer) hugeOneof_; @@ -199884,10 +224065,19 @@ public int getOneof2352() { } public static final int ONEOF_2353_FIELD_NUMBER = 2353; + /** + * int32 oneof_2353 = 2353; + * @return Whether the oneof2353 field is set. + */ + @java.lang.Override + public boolean hasOneof2353() { + return hugeOneofCase_ == 2353; + } /** * int32 oneof_2353 = 2353; * @return The oneof2353. */ + @java.lang.Override public int getOneof2353() { if (hugeOneofCase_ == 2353) { return (java.lang.Integer) hugeOneof_; @@ -199896,10 +224086,19 @@ public int getOneof2353() { } public static final int ONEOF_2354_FIELD_NUMBER = 2354; + /** + * int32 oneof_2354 = 2354; + * @return Whether the oneof2354 field is set. + */ + @java.lang.Override + public boolean hasOneof2354() { + return hugeOneofCase_ == 2354; + } /** * int32 oneof_2354 = 2354; * @return The oneof2354. */ + @java.lang.Override public int getOneof2354() { if (hugeOneofCase_ == 2354) { return (java.lang.Integer) hugeOneof_; @@ -199908,10 +224107,19 @@ public int getOneof2354() { } public static final int ONEOF_2355_FIELD_NUMBER = 2355; + /** + * int32 oneof_2355 = 2355; + * @return Whether the oneof2355 field is set. + */ + @java.lang.Override + public boolean hasOneof2355() { + return hugeOneofCase_ == 2355; + } /** * int32 oneof_2355 = 2355; * @return The oneof2355. */ + @java.lang.Override public int getOneof2355() { if (hugeOneofCase_ == 2355) { return (java.lang.Integer) hugeOneof_; @@ -199920,10 +224128,19 @@ public int getOneof2355() { } public static final int ONEOF_2356_FIELD_NUMBER = 2356; + /** + * int32 oneof_2356 = 2356; + * @return Whether the oneof2356 field is set. + */ + @java.lang.Override + public boolean hasOneof2356() { + return hugeOneofCase_ == 2356; + } /** * int32 oneof_2356 = 2356; * @return The oneof2356. */ + @java.lang.Override public int getOneof2356() { if (hugeOneofCase_ == 2356) { return (java.lang.Integer) hugeOneof_; @@ -199932,10 +224149,19 @@ public int getOneof2356() { } public static final int ONEOF_2357_FIELD_NUMBER = 2357; + /** + * int32 oneof_2357 = 2357; + * @return Whether the oneof2357 field is set. + */ + @java.lang.Override + public boolean hasOneof2357() { + return hugeOneofCase_ == 2357; + } /** * int32 oneof_2357 = 2357; * @return The oneof2357. */ + @java.lang.Override public int getOneof2357() { if (hugeOneofCase_ == 2357) { return (java.lang.Integer) hugeOneof_; @@ -199944,10 +224170,19 @@ public int getOneof2357() { } public static final int ONEOF_2358_FIELD_NUMBER = 2358; + /** + * int32 oneof_2358 = 2358; + * @return Whether the oneof2358 field is set. + */ + @java.lang.Override + public boolean hasOneof2358() { + return hugeOneofCase_ == 2358; + } /** * int32 oneof_2358 = 2358; * @return The oneof2358. */ + @java.lang.Override public int getOneof2358() { if (hugeOneofCase_ == 2358) { return (java.lang.Integer) hugeOneof_; @@ -199956,10 +224191,19 @@ public int getOneof2358() { } public static final int ONEOF_2359_FIELD_NUMBER = 2359; + /** + * int32 oneof_2359 = 2359; + * @return Whether the oneof2359 field is set. + */ + @java.lang.Override + public boolean hasOneof2359() { + return hugeOneofCase_ == 2359; + } /** * int32 oneof_2359 = 2359; * @return The oneof2359. */ + @java.lang.Override public int getOneof2359() { if (hugeOneofCase_ == 2359) { return (java.lang.Integer) hugeOneof_; @@ -199968,10 +224212,19 @@ public int getOneof2359() { } public static final int ONEOF_2360_FIELD_NUMBER = 2360; + /** + * int32 oneof_2360 = 2360; + * @return Whether the oneof2360 field is set. + */ + @java.lang.Override + public boolean hasOneof2360() { + return hugeOneofCase_ == 2360; + } /** * int32 oneof_2360 = 2360; * @return The oneof2360. */ + @java.lang.Override public int getOneof2360() { if (hugeOneofCase_ == 2360) { return (java.lang.Integer) hugeOneof_; @@ -199980,10 +224233,19 @@ public int getOneof2360() { } public static final int ONEOF_2361_FIELD_NUMBER = 2361; + /** + * int32 oneof_2361 = 2361; + * @return Whether the oneof2361 field is set. + */ + @java.lang.Override + public boolean hasOneof2361() { + return hugeOneofCase_ == 2361; + } /** * int32 oneof_2361 = 2361; * @return The oneof2361. */ + @java.lang.Override public int getOneof2361() { if (hugeOneofCase_ == 2361) { return (java.lang.Integer) hugeOneof_; @@ -199992,10 +224254,19 @@ public int getOneof2361() { } public static final int ONEOF_2362_FIELD_NUMBER = 2362; + /** + * int32 oneof_2362 = 2362; + * @return Whether the oneof2362 field is set. + */ + @java.lang.Override + public boolean hasOneof2362() { + return hugeOneofCase_ == 2362; + } /** * int32 oneof_2362 = 2362; * @return The oneof2362. */ + @java.lang.Override public int getOneof2362() { if (hugeOneofCase_ == 2362) { return (java.lang.Integer) hugeOneof_; @@ -200004,10 +224275,19 @@ public int getOneof2362() { } public static final int ONEOF_2363_FIELD_NUMBER = 2363; + /** + * int32 oneof_2363 = 2363; + * @return Whether the oneof2363 field is set. + */ + @java.lang.Override + public boolean hasOneof2363() { + return hugeOneofCase_ == 2363; + } /** * int32 oneof_2363 = 2363; * @return The oneof2363. */ + @java.lang.Override public int getOneof2363() { if (hugeOneofCase_ == 2363) { return (java.lang.Integer) hugeOneof_; @@ -200016,10 +224296,19 @@ public int getOneof2363() { } public static final int ONEOF_2364_FIELD_NUMBER = 2364; + /** + * int32 oneof_2364 = 2364; + * @return Whether the oneof2364 field is set. + */ + @java.lang.Override + public boolean hasOneof2364() { + return hugeOneofCase_ == 2364; + } /** * int32 oneof_2364 = 2364; * @return The oneof2364. */ + @java.lang.Override public int getOneof2364() { if (hugeOneofCase_ == 2364) { return (java.lang.Integer) hugeOneof_; @@ -200028,10 +224317,19 @@ public int getOneof2364() { } public static final int ONEOF_2365_FIELD_NUMBER = 2365; + /** + * int32 oneof_2365 = 2365; + * @return Whether the oneof2365 field is set. + */ + @java.lang.Override + public boolean hasOneof2365() { + return hugeOneofCase_ == 2365; + } /** * int32 oneof_2365 = 2365; * @return The oneof2365. */ + @java.lang.Override public int getOneof2365() { if (hugeOneofCase_ == 2365) { return (java.lang.Integer) hugeOneof_; @@ -200040,10 +224338,19 @@ public int getOneof2365() { } public static final int ONEOF_2366_FIELD_NUMBER = 2366; + /** + * int32 oneof_2366 = 2366; + * @return Whether the oneof2366 field is set. + */ + @java.lang.Override + public boolean hasOneof2366() { + return hugeOneofCase_ == 2366; + } /** * int32 oneof_2366 = 2366; * @return The oneof2366. */ + @java.lang.Override public int getOneof2366() { if (hugeOneofCase_ == 2366) { return (java.lang.Integer) hugeOneof_; @@ -200052,10 +224359,19 @@ public int getOneof2366() { } public static final int ONEOF_2367_FIELD_NUMBER = 2367; + /** + * int32 oneof_2367 = 2367; + * @return Whether the oneof2367 field is set. + */ + @java.lang.Override + public boolean hasOneof2367() { + return hugeOneofCase_ == 2367; + } /** * int32 oneof_2367 = 2367; * @return The oneof2367. */ + @java.lang.Override public int getOneof2367() { if (hugeOneofCase_ == 2367) { return (java.lang.Integer) hugeOneof_; @@ -200064,10 +224380,19 @@ public int getOneof2367() { } public static final int ONEOF_2368_FIELD_NUMBER = 2368; + /** + * int32 oneof_2368 = 2368; + * @return Whether the oneof2368 field is set. + */ + @java.lang.Override + public boolean hasOneof2368() { + return hugeOneofCase_ == 2368; + } /** * int32 oneof_2368 = 2368; * @return The oneof2368. */ + @java.lang.Override public int getOneof2368() { if (hugeOneofCase_ == 2368) { return (java.lang.Integer) hugeOneof_; @@ -200076,10 +224401,19 @@ public int getOneof2368() { } public static final int ONEOF_2369_FIELD_NUMBER = 2369; + /** + * int32 oneof_2369 = 2369; + * @return Whether the oneof2369 field is set. + */ + @java.lang.Override + public boolean hasOneof2369() { + return hugeOneofCase_ == 2369; + } /** * int32 oneof_2369 = 2369; * @return The oneof2369. */ + @java.lang.Override public int getOneof2369() { if (hugeOneofCase_ == 2369) { return (java.lang.Integer) hugeOneof_; @@ -200088,10 +224422,19 @@ public int getOneof2369() { } public static final int ONEOF_2370_FIELD_NUMBER = 2370; + /** + * int32 oneof_2370 = 2370; + * @return Whether the oneof2370 field is set. + */ + @java.lang.Override + public boolean hasOneof2370() { + return hugeOneofCase_ == 2370; + } /** * int32 oneof_2370 = 2370; * @return The oneof2370. */ + @java.lang.Override public int getOneof2370() { if (hugeOneofCase_ == 2370) { return (java.lang.Integer) hugeOneof_; @@ -200100,10 +224443,19 @@ public int getOneof2370() { } public static final int ONEOF_2371_FIELD_NUMBER = 2371; + /** + * int32 oneof_2371 = 2371; + * @return Whether the oneof2371 field is set. + */ + @java.lang.Override + public boolean hasOneof2371() { + return hugeOneofCase_ == 2371; + } /** * int32 oneof_2371 = 2371; * @return The oneof2371. */ + @java.lang.Override public int getOneof2371() { if (hugeOneofCase_ == 2371) { return (java.lang.Integer) hugeOneof_; @@ -200112,10 +224464,19 @@ public int getOneof2371() { } public static final int ONEOF_2372_FIELD_NUMBER = 2372; + /** + * int32 oneof_2372 = 2372; + * @return Whether the oneof2372 field is set. + */ + @java.lang.Override + public boolean hasOneof2372() { + return hugeOneofCase_ == 2372; + } /** * int32 oneof_2372 = 2372; * @return The oneof2372. */ + @java.lang.Override public int getOneof2372() { if (hugeOneofCase_ == 2372) { return (java.lang.Integer) hugeOneof_; @@ -200124,10 +224485,19 @@ public int getOneof2372() { } public static final int ONEOF_2373_FIELD_NUMBER = 2373; + /** + * int32 oneof_2373 = 2373; + * @return Whether the oneof2373 field is set. + */ + @java.lang.Override + public boolean hasOneof2373() { + return hugeOneofCase_ == 2373; + } /** * int32 oneof_2373 = 2373; * @return The oneof2373. */ + @java.lang.Override public int getOneof2373() { if (hugeOneofCase_ == 2373) { return (java.lang.Integer) hugeOneof_; @@ -200136,10 +224506,19 @@ public int getOneof2373() { } public static final int ONEOF_2374_FIELD_NUMBER = 2374; + /** + * int32 oneof_2374 = 2374; + * @return Whether the oneof2374 field is set. + */ + @java.lang.Override + public boolean hasOneof2374() { + return hugeOneofCase_ == 2374; + } /** * int32 oneof_2374 = 2374; * @return The oneof2374. */ + @java.lang.Override public int getOneof2374() { if (hugeOneofCase_ == 2374) { return (java.lang.Integer) hugeOneof_; @@ -200148,10 +224527,19 @@ public int getOneof2374() { } public static final int ONEOF_2375_FIELD_NUMBER = 2375; + /** + * int32 oneof_2375 = 2375; + * @return Whether the oneof2375 field is set. + */ + @java.lang.Override + public boolean hasOneof2375() { + return hugeOneofCase_ == 2375; + } /** * int32 oneof_2375 = 2375; * @return The oneof2375. */ + @java.lang.Override public int getOneof2375() { if (hugeOneofCase_ == 2375) { return (java.lang.Integer) hugeOneof_; @@ -200160,10 +224548,19 @@ public int getOneof2375() { } public static final int ONEOF_2376_FIELD_NUMBER = 2376; + /** + * int32 oneof_2376 = 2376; + * @return Whether the oneof2376 field is set. + */ + @java.lang.Override + public boolean hasOneof2376() { + return hugeOneofCase_ == 2376; + } /** * int32 oneof_2376 = 2376; * @return The oneof2376. */ + @java.lang.Override public int getOneof2376() { if (hugeOneofCase_ == 2376) { return (java.lang.Integer) hugeOneof_; @@ -200172,10 +224569,19 @@ public int getOneof2376() { } public static final int ONEOF_2377_FIELD_NUMBER = 2377; + /** + * int32 oneof_2377 = 2377; + * @return Whether the oneof2377 field is set. + */ + @java.lang.Override + public boolean hasOneof2377() { + return hugeOneofCase_ == 2377; + } /** * int32 oneof_2377 = 2377; * @return The oneof2377. */ + @java.lang.Override public int getOneof2377() { if (hugeOneofCase_ == 2377) { return (java.lang.Integer) hugeOneof_; @@ -200184,10 +224590,19 @@ public int getOneof2377() { } public static final int ONEOF_2378_FIELD_NUMBER = 2378; + /** + * int32 oneof_2378 = 2378; + * @return Whether the oneof2378 field is set. + */ + @java.lang.Override + public boolean hasOneof2378() { + return hugeOneofCase_ == 2378; + } /** * int32 oneof_2378 = 2378; * @return The oneof2378. */ + @java.lang.Override public int getOneof2378() { if (hugeOneofCase_ == 2378) { return (java.lang.Integer) hugeOneof_; @@ -200196,10 +224611,19 @@ public int getOneof2378() { } public static final int ONEOF_2379_FIELD_NUMBER = 2379; + /** + * int32 oneof_2379 = 2379; + * @return Whether the oneof2379 field is set. + */ + @java.lang.Override + public boolean hasOneof2379() { + return hugeOneofCase_ == 2379; + } /** * int32 oneof_2379 = 2379; * @return The oneof2379. */ + @java.lang.Override public int getOneof2379() { if (hugeOneofCase_ == 2379) { return (java.lang.Integer) hugeOneof_; @@ -200208,10 +224632,19 @@ public int getOneof2379() { } public static final int ONEOF_2380_FIELD_NUMBER = 2380; + /** + * int32 oneof_2380 = 2380; + * @return Whether the oneof2380 field is set. + */ + @java.lang.Override + public boolean hasOneof2380() { + return hugeOneofCase_ == 2380; + } /** * int32 oneof_2380 = 2380; * @return The oneof2380. */ + @java.lang.Override public int getOneof2380() { if (hugeOneofCase_ == 2380) { return (java.lang.Integer) hugeOneof_; @@ -200220,10 +224653,19 @@ public int getOneof2380() { } public static final int ONEOF_2381_FIELD_NUMBER = 2381; + /** + * int32 oneof_2381 = 2381; + * @return Whether the oneof2381 field is set. + */ + @java.lang.Override + public boolean hasOneof2381() { + return hugeOneofCase_ == 2381; + } /** * int32 oneof_2381 = 2381; * @return The oneof2381. */ + @java.lang.Override public int getOneof2381() { if (hugeOneofCase_ == 2381) { return (java.lang.Integer) hugeOneof_; @@ -200232,10 +224674,19 @@ public int getOneof2381() { } public static final int ONEOF_2382_FIELD_NUMBER = 2382; + /** + * int32 oneof_2382 = 2382; + * @return Whether the oneof2382 field is set. + */ + @java.lang.Override + public boolean hasOneof2382() { + return hugeOneofCase_ == 2382; + } /** * int32 oneof_2382 = 2382; * @return The oneof2382. */ + @java.lang.Override public int getOneof2382() { if (hugeOneofCase_ == 2382) { return (java.lang.Integer) hugeOneof_; @@ -200244,10 +224695,19 @@ public int getOneof2382() { } public static final int ONEOF_2383_FIELD_NUMBER = 2383; + /** + * int32 oneof_2383 = 2383; + * @return Whether the oneof2383 field is set. + */ + @java.lang.Override + public boolean hasOneof2383() { + return hugeOneofCase_ == 2383; + } /** * int32 oneof_2383 = 2383; * @return The oneof2383. */ + @java.lang.Override public int getOneof2383() { if (hugeOneofCase_ == 2383) { return (java.lang.Integer) hugeOneof_; @@ -200256,10 +224716,19 @@ public int getOneof2383() { } public static final int ONEOF_2384_FIELD_NUMBER = 2384; + /** + * int32 oneof_2384 = 2384; + * @return Whether the oneof2384 field is set. + */ + @java.lang.Override + public boolean hasOneof2384() { + return hugeOneofCase_ == 2384; + } /** * int32 oneof_2384 = 2384; * @return The oneof2384. */ + @java.lang.Override public int getOneof2384() { if (hugeOneofCase_ == 2384) { return (java.lang.Integer) hugeOneof_; @@ -200268,10 +224737,19 @@ public int getOneof2384() { } public static final int ONEOF_2385_FIELD_NUMBER = 2385; + /** + * int32 oneof_2385 = 2385; + * @return Whether the oneof2385 field is set. + */ + @java.lang.Override + public boolean hasOneof2385() { + return hugeOneofCase_ == 2385; + } /** * int32 oneof_2385 = 2385; * @return The oneof2385. */ + @java.lang.Override public int getOneof2385() { if (hugeOneofCase_ == 2385) { return (java.lang.Integer) hugeOneof_; @@ -200280,10 +224758,19 @@ public int getOneof2385() { } public static final int ONEOF_2386_FIELD_NUMBER = 2386; + /** + * int32 oneof_2386 = 2386; + * @return Whether the oneof2386 field is set. + */ + @java.lang.Override + public boolean hasOneof2386() { + return hugeOneofCase_ == 2386; + } /** * int32 oneof_2386 = 2386; * @return The oneof2386. */ + @java.lang.Override public int getOneof2386() { if (hugeOneofCase_ == 2386) { return (java.lang.Integer) hugeOneof_; @@ -200292,10 +224779,19 @@ public int getOneof2386() { } public static final int ONEOF_2387_FIELD_NUMBER = 2387; + /** + * int32 oneof_2387 = 2387; + * @return Whether the oneof2387 field is set. + */ + @java.lang.Override + public boolean hasOneof2387() { + return hugeOneofCase_ == 2387; + } /** * int32 oneof_2387 = 2387; * @return The oneof2387. */ + @java.lang.Override public int getOneof2387() { if (hugeOneofCase_ == 2387) { return (java.lang.Integer) hugeOneof_; @@ -200304,10 +224800,19 @@ public int getOneof2387() { } public static final int ONEOF_2388_FIELD_NUMBER = 2388; + /** + * int32 oneof_2388 = 2388; + * @return Whether the oneof2388 field is set. + */ + @java.lang.Override + public boolean hasOneof2388() { + return hugeOneofCase_ == 2388; + } /** * int32 oneof_2388 = 2388; * @return The oneof2388. */ + @java.lang.Override public int getOneof2388() { if (hugeOneofCase_ == 2388) { return (java.lang.Integer) hugeOneof_; @@ -200316,10 +224821,19 @@ public int getOneof2388() { } public static final int ONEOF_2389_FIELD_NUMBER = 2389; + /** + * int32 oneof_2389 = 2389; + * @return Whether the oneof2389 field is set. + */ + @java.lang.Override + public boolean hasOneof2389() { + return hugeOneofCase_ == 2389; + } /** * int32 oneof_2389 = 2389; * @return The oneof2389. */ + @java.lang.Override public int getOneof2389() { if (hugeOneofCase_ == 2389) { return (java.lang.Integer) hugeOneof_; @@ -200328,10 +224842,19 @@ public int getOneof2389() { } public static final int ONEOF_2390_FIELD_NUMBER = 2390; + /** + * int32 oneof_2390 = 2390; + * @return Whether the oneof2390 field is set. + */ + @java.lang.Override + public boolean hasOneof2390() { + return hugeOneofCase_ == 2390; + } /** * int32 oneof_2390 = 2390; * @return The oneof2390. */ + @java.lang.Override public int getOneof2390() { if (hugeOneofCase_ == 2390) { return (java.lang.Integer) hugeOneof_; @@ -200340,10 +224863,19 @@ public int getOneof2390() { } public static final int ONEOF_2391_FIELD_NUMBER = 2391; + /** + * int32 oneof_2391 = 2391; + * @return Whether the oneof2391 field is set. + */ + @java.lang.Override + public boolean hasOneof2391() { + return hugeOneofCase_ == 2391; + } /** * int32 oneof_2391 = 2391; * @return The oneof2391. */ + @java.lang.Override public int getOneof2391() { if (hugeOneofCase_ == 2391) { return (java.lang.Integer) hugeOneof_; @@ -200352,10 +224884,19 @@ public int getOneof2391() { } public static final int ONEOF_2392_FIELD_NUMBER = 2392; + /** + * int32 oneof_2392 = 2392; + * @return Whether the oneof2392 field is set. + */ + @java.lang.Override + public boolean hasOneof2392() { + return hugeOneofCase_ == 2392; + } /** * int32 oneof_2392 = 2392; * @return The oneof2392. */ + @java.lang.Override public int getOneof2392() { if (hugeOneofCase_ == 2392) { return (java.lang.Integer) hugeOneof_; @@ -200364,10 +224905,19 @@ public int getOneof2392() { } public static final int ONEOF_2393_FIELD_NUMBER = 2393; + /** + * int32 oneof_2393 = 2393; + * @return Whether the oneof2393 field is set. + */ + @java.lang.Override + public boolean hasOneof2393() { + return hugeOneofCase_ == 2393; + } /** * int32 oneof_2393 = 2393; * @return The oneof2393. */ + @java.lang.Override public int getOneof2393() { if (hugeOneofCase_ == 2393) { return (java.lang.Integer) hugeOneof_; @@ -200376,10 +224926,19 @@ public int getOneof2393() { } public static final int ONEOF_2394_FIELD_NUMBER = 2394; + /** + * int32 oneof_2394 = 2394; + * @return Whether the oneof2394 field is set. + */ + @java.lang.Override + public boolean hasOneof2394() { + return hugeOneofCase_ == 2394; + } /** * int32 oneof_2394 = 2394; * @return The oneof2394. */ + @java.lang.Override public int getOneof2394() { if (hugeOneofCase_ == 2394) { return (java.lang.Integer) hugeOneof_; @@ -200388,10 +224947,19 @@ public int getOneof2394() { } public static final int ONEOF_2395_FIELD_NUMBER = 2395; + /** + * int32 oneof_2395 = 2395; + * @return Whether the oneof2395 field is set. + */ + @java.lang.Override + public boolean hasOneof2395() { + return hugeOneofCase_ == 2395; + } /** * int32 oneof_2395 = 2395; * @return The oneof2395. */ + @java.lang.Override public int getOneof2395() { if (hugeOneofCase_ == 2395) { return (java.lang.Integer) hugeOneof_; @@ -200400,10 +224968,19 @@ public int getOneof2395() { } public static final int ONEOF_2396_FIELD_NUMBER = 2396; + /** + * int32 oneof_2396 = 2396; + * @return Whether the oneof2396 field is set. + */ + @java.lang.Override + public boolean hasOneof2396() { + return hugeOneofCase_ == 2396; + } /** * int32 oneof_2396 = 2396; * @return The oneof2396. */ + @java.lang.Override public int getOneof2396() { if (hugeOneofCase_ == 2396) { return (java.lang.Integer) hugeOneof_; @@ -200412,10 +224989,19 @@ public int getOneof2396() { } public static final int ONEOF_2397_FIELD_NUMBER = 2397; + /** + * int32 oneof_2397 = 2397; + * @return Whether the oneof2397 field is set. + */ + @java.lang.Override + public boolean hasOneof2397() { + return hugeOneofCase_ == 2397; + } /** * int32 oneof_2397 = 2397; * @return The oneof2397. */ + @java.lang.Override public int getOneof2397() { if (hugeOneofCase_ == 2397) { return (java.lang.Integer) hugeOneof_; @@ -200424,10 +225010,19 @@ public int getOneof2397() { } public static final int ONEOF_2398_FIELD_NUMBER = 2398; + /** + * int32 oneof_2398 = 2398; + * @return Whether the oneof2398 field is set. + */ + @java.lang.Override + public boolean hasOneof2398() { + return hugeOneofCase_ == 2398; + } /** * int32 oneof_2398 = 2398; * @return The oneof2398. */ + @java.lang.Override public int getOneof2398() { if (hugeOneofCase_ == 2398) { return (java.lang.Integer) hugeOneof_; @@ -200436,10 +225031,19 @@ public int getOneof2398() { } public static final int ONEOF_2399_FIELD_NUMBER = 2399; + /** + * int32 oneof_2399 = 2399; + * @return Whether the oneof2399 field is set. + */ + @java.lang.Override + public boolean hasOneof2399() { + return hugeOneofCase_ == 2399; + } /** * int32 oneof_2399 = 2399; * @return The oneof2399. */ + @java.lang.Override public int getOneof2399() { if (hugeOneofCase_ == 2399) { return (java.lang.Integer) hugeOneof_; @@ -200448,10 +225052,19 @@ public int getOneof2399() { } public static final int ONEOF_2400_FIELD_NUMBER = 2400; + /** + * int32 oneof_2400 = 2400; + * @return Whether the oneof2400 field is set. + */ + @java.lang.Override + public boolean hasOneof2400() { + return hugeOneofCase_ == 2400; + } /** * int32 oneof_2400 = 2400; * @return The oneof2400. */ + @java.lang.Override public int getOneof2400() { if (hugeOneofCase_ == 2400) { return (java.lang.Integer) hugeOneof_; @@ -200460,10 +225073,19 @@ public int getOneof2400() { } public static final int ONEOF_2401_FIELD_NUMBER = 2401; + /** + * int32 oneof_2401 = 2401; + * @return Whether the oneof2401 field is set. + */ + @java.lang.Override + public boolean hasOneof2401() { + return hugeOneofCase_ == 2401; + } /** * int32 oneof_2401 = 2401; * @return The oneof2401. */ + @java.lang.Override public int getOneof2401() { if (hugeOneofCase_ == 2401) { return (java.lang.Integer) hugeOneof_; @@ -200472,10 +225094,19 @@ public int getOneof2401() { } public static final int ONEOF_2402_FIELD_NUMBER = 2402; + /** + * int32 oneof_2402 = 2402; + * @return Whether the oneof2402 field is set. + */ + @java.lang.Override + public boolean hasOneof2402() { + return hugeOneofCase_ == 2402; + } /** * int32 oneof_2402 = 2402; * @return The oneof2402. */ + @java.lang.Override public int getOneof2402() { if (hugeOneofCase_ == 2402) { return (java.lang.Integer) hugeOneof_; @@ -200484,10 +225115,19 @@ public int getOneof2402() { } public static final int ONEOF_2403_FIELD_NUMBER = 2403; + /** + * int32 oneof_2403 = 2403; + * @return Whether the oneof2403 field is set. + */ + @java.lang.Override + public boolean hasOneof2403() { + return hugeOneofCase_ == 2403; + } /** * int32 oneof_2403 = 2403; * @return The oneof2403. */ + @java.lang.Override public int getOneof2403() { if (hugeOneofCase_ == 2403) { return (java.lang.Integer) hugeOneof_; @@ -200496,10 +225136,19 @@ public int getOneof2403() { } public static final int ONEOF_2404_FIELD_NUMBER = 2404; + /** + * int32 oneof_2404 = 2404; + * @return Whether the oneof2404 field is set. + */ + @java.lang.Override + public boolean hasOneof2404() { + return hugeOneofCase_ == 2404; + } /** * int32 oneof_2404 = 2404; * @return The oneof2404. */ + @java.lang.Override public int getOneof2404() { if (hugeOneofCase_ == 2404) { return (java.lang.Integer) hugeOneof_; @@ -200508,10 +225157,19 @@ public int getOneof2404() { } public static final int ONEOF_2405_FIELD_NUMBER = 2405; + /** + * int32 oneof_2405 = 2405; + * @return Whether the oneof2405 field is set. + */ + @java.lang.Override + public boolean hasOneof2405() { + return hugeOneofCase_ == 2405; + } /** * int32 oneof_2405 = 2405; * @return The oneof2405. */ + @java.lang.Override public int getOneof2405() { if (hugeOneofCase_ == 2405) { return (java.lang.Integer) hugeOneof_; @@ -200520,10 +225178,19 @@ public int getOneof2405() { } public static final int ONEOF_2406_FIELD_NUMBER = 2406; + /** + * int32 oneof_2406 = 2406; + * @return Whether the oneof2406 field is set. + */ + @java.lang.Override + public boolean hasOneof2406() { + return hugeOneofCase_ == 2406; + } /** * int32 oneof_2406 = 2406; * @return The oneof2406. */ + @java.lang.Override public int getOneof2406() { if (hugeOneofCase_ == 2406) { return (java.lang.Integer) hugeOneof_; @@ -200532,10 +225199,19 @@ public int getOneof2406() { } public static final int ONEOF_2407_FIELD_NUMBER = 2407; + /** + * int32 oneof_2407 = 2407; + * @return Whether the oneof2407 field is set. + */ + @java.lang.Override + public boolean hasOneof2407() { + return hugeOneofCase_ == 2407; + } /** * int32 oneof_2407 = 2407; * @return The oneof2407. */ + @java.lang.Override public int getOneof2407() { if (hugeOneofCase_ == 2407) { return (java.lang.Integer) hugeOneof_; @@ -200544,10 +225220,19 @@ public int getOneof2407() { } public static final int ONEOF_2408_FIELD_NUMBER = 2408; + /** + * int32 oneof_2408 = 2408; + * @return Whether the oneof2408 field is set. + */ + @java.lang.Override + public boolean hasOneof2408() { + return hugeOneofCase_ == 2408; + } /** * int32 oneof_2408 = 2408; * @return The oneof2408. */ + @java.lang.Override public int getOneof2408() { if (hugeOneofCase_ == 2408) { return (java.lang.Integer) hugeOneof_; @@ -200556,10 +225241,19 @@ public int getOneof2408() { } public static final int ONEOF_2409_FIELD_NUMBER = 2409; + /** + * int32 oneof_2409 = 2409; + * @return Whether the oneof2409 field is set. + */ + @java.lang.Override + public boolean hasOneof2409() { + return hugeOneofCase_ == 2409; + } /** * int32 oneof_2409 = 2409; * @return The oneof2409. */ + @java.lang.Override public int getOneof2409() { if (hugeOneofCase_ == 2409) { return (java.lang.Integer) hugeOneof_; @@ -200568,10 +225262,19 @@ public int getOneof2409() { } public static final int ONEOF_2410_FIELD_NUMBER = 2410; + /** + * int32 oneof_2410 = 2410; + * @return Whether the oneof2410 field is set. + */ + @java.lang.Override + public boolean hasOneof2410() { + return hugeOneofCase_ == 2410; + } /** * int32 oneof_2410 = 2410; * @return The oneof2410. */ + @java.lang.Override public int getOneof2410() { if (hugeOneofCase_ == 2410) { return (java.lang.Integer) hugeOneof_; @@ -200580,10 +225283,19 @@ public int getOneof2410() { } public static final int ONEOF_2411_FIELD_NUMBER = 2411; + /** + * int32 oneof_2411 = 2411; + * @return Whether the oneof2411 field is set. + */ + @java.lang.Override + public boolean hasOneof2411() { + return hugeOneofCase_ == 2411; + } /** * int32 oneof_2411 = 2411; * @return The oneof2411. */ + @java.lang.Override public int getOneof2411() { if (hugeOneofCase_ == 2411) { return (java.lang.Integer) hugeOneof_; @@ -200592,10 +225304,19 @@ public int getOneof2411() { } public static final int ONEOF_2412_FIELD_NUMBER = 2412; + /** + * int32 oneof_2412 = 2412; + * @return Whether the oneof2412 field is set. + */ + @java.lang.Override + public boolean hasOneof2412() { + return hugeOneofCase_ == 2412; + } /** * int32 oneof_2412 = 2412; * @return The oneof2412. */ + @java.lang.Override public int getOneof2412() { if (hugeOneofCase_ == 2412) { return (java.lang.Integer) hugeOneof_; @@ -200604,10 +225325,19 @@ public int getOneof2412() { } public static final int ONEOF_2413_FIELD_NUMBER = 2413; + /** + * int32 oneof_2413 = 2413; + * @return Whether the oneof2413 field is set. + */ + @java.lang.Override + public boolean hasOneof2413() { + return hugeOneofCase_ == 2413; + } /** * int32 oneof_2413 = 2413; * @return The oneof2413. */ + @java.lang.Override public int getOneof2413() { if (hugeOneofCase_ == 2413) { return (java.lang.Integer) hugeOneof_; @@ -200616,10 +225346,19 @@ public int getOneof2413() { } public static final int ONEOF_2414_FIELD_NUMBER = 2414; + /** + * int32 oneof_2414 = 2414; + * @return Whether the oneof2414 field is set. + */ + @java.lang.Override + public boolean hasOneof2414() { + return hugeOneofCase_ == 2414; + } /** * int32 oneof_2414 = 2414; * @return The oneof2414. */ + @java.lang.Override public int getOneof2414() { if (hugeOneofCase_ == 2414) { return (java.lang.Integer) hugeOneof_; @@ -200628,10 +225367,19 @@ public int getOneof2414() { } public static final int ONEOF_2415_FIELD_NUMBER = 2415; + /** + * int32 oneof_2415 = 2415; + * @return Whether the oneof2415 field is set. + */ + @java.lang.Override + public boolean hasOneof2415() { + return hugeOneofCase_ == 2415; + } /** * int32 oneof_2415 = 2415; * @return The oneof2415. */ + @java.lang.Override public int getOneof2415() { if (hugeOneofCase_ == 2415) { return (java.lang.Integer) hugeOneof_; @@ -200640,10 +225388,19 @@ public int getOneof2415() { } public static final int ONEOF_2416_FIELD_NUMBER = 2416; + /** + * int32 oneof_2416 = 2416; + * @return Whether the oneof2416 field is set. + */ + @java.lang.Override + public boolean hasOneof2416() { + return hugeOneofCase_ == 2416; + } /** * int32 oneof_2416 = 2416; * @return The oneof2416. */ + @java.lang.Override public int getOneof2416() { if (hugeOneofCase_ == 2416) { return (java.lang.Integer) hugeOneof_; @@ -200652,10 +225409,19 @@ public int getOneof2416() { } public static final int ONEOF_2417_FIELD_NUMBER = 2417; + /** + * int32 oneof_2417 = 2417; + * @return Whether the oneof2417 field is set. + */ + @java.lang.Override + public boolean hasOneof2417() { + return hugeOneofCase_ == 2417; + } /** * int32 oneof_2417 = 2417; * @return The oneof2417. */ + @java.lang.Override public int getOneof2417() { if (hugeOneofCase_ == 2417) { return (java.lang.Integer) hugeOneof_; @@ -200664,10 +225430,19 @@ public int getOneof2417() { } public static final int ONEOF_2418_FIELD_NUMBER = 2418; + /** + * int32 oneof_2418 = 2418; + * @return Whether the oneof2418 field is set. + */ + @java.lang.Override + public boolean hasOneof2418() { + return hugeOneofCase_ == 2418; + } /** * int32 oneof_2418 = 2418; * @return The oneof2418. */ + @java.lang.Override public int getOneof2418() { if (hugeOneofCase_ == 2418) { return (java.lang.Integer) hugeOneof_; @@ -200676,10 +225451,19 @@ public int getOneof2418() { } public static final int ONEOF_2419_FIELD_NUMBER = 2419; + /** + * int32 oneof_2419 = 2419; + * @return Whether the oneof2419 field is set. + */ + @java.lang.Override + public boolean hasOneof2419() { + return hugeOneofCase_ == 2419; + } /** * int32 oneof_2419 = 2419; * @return The oneof2419. */ + @java.lang.Override public int getOneof2419() { if (hugeOneofCase_ == 2419) { return (java.lang.Integer) hugeOneof_; @@ -200688,10 +225472,19 @@ public int getOneof2419() { } public static final int ONEOF_2420_FIELD_NUMBER = 2420; + /** + * int32 oneof_2420 = 2420; + * @return Whether the oneof2420 field is set. + */ + @java.lang.Override + public boolean hasOneof2420() { + return hugeOneofCase_ == 2420; + } /** * int32 oneof_2420 = 2420; * @return The oneof2420. */ + @java.lang.Override public int getOneof2420() { if (hugeOneofCase_ == 2420) { return (java.lang.Integer) hugeOneof_; @@ -200700,10 +225493,19 @@ public int getOneof2420() { } public static final int ONEOF_2421_FIELD_NUMBER = 2421; + /** + * int32 oneof_2421 = 2421; + * @return Whether the oneof2421 field is set. + */ + @java.lang.Override + public boolean hasOneof2421() { + return hugeOneofCase_ == 2421; + } /** * int32 oneof_2421 = 2421; * @return The oneof2421. */ + @java.lang.Override public int getOneof2421() { if (hugeOneofCase_ == 2421) { return (java.lang.Integer) hugeOneof_; @@ -200712,10 +225514,19 @@ public int getOneof2421() { } public static final int ONEOF_2422_FIELD_NUMBER = 2422; + /** + * int32 oneof_2422 = 2422; + * @return Whether the oneof2422 field is set. + */ + @java.lang.Override + public boolean hasOneof2422() { + return hugeOneofCase_ == 2422; + } /** * int32 oneof_2422 = 2422; * @return The oneof2422. */ + @java.lang.Override public int getOneof2422() { if (hugeOneofCase_ == 2422) { return (java.lang.Integer) hugeOneof_; @@ -200724,10 +225535,19 @@ public int getOneof2422() { } public static final int ONEOF_2423_FIELD_NUMBER = 2423; + /** + * int32 oneof_2423 = 2423; + * @return Whether the oneof2423 field is set. + */ + @java.lang.Override + public boolean hasOneof2423() { + return hugeOneofCase_ == 2423; + } /** * int32 oneof_2423 = 2423; * @return The oneof2423. */ + @java.lang.Override public int getOneof2423() { if (hugeOneofCase_ == 2423) { return (java.lang.Integer) hugeOneof_; @@ -200736,10 +225556,19 @@ public int getOneof2423() { } public static final int ONEOF_2424_FIELD_NUMBER = 2424; + /** + * int32 oneof_2424 = 2424; + * @return Whether the oneof2424 field is set. + */ + @java.lang.Override + public boolean hasOneof2424() { + return hugeOneofCase_ == 2424; + } /** * int32 oneof_2424 = 2424; * @return The oneof2424. */ + @java.lang.Override public int getOneof2424() { if (hugeOneofCase_ == 2424) { return (java.lang.Integer) hugeOneof_; @@ -200748,10 +225577,19 @@ public int getOneof2424() { } public static final int ONEOF_2425_FIELD_NUMBER = 2425; + /** + * int32 oneof_2425 = 2425; + * @return Whether the oneof2425 field is set. + */ + @java.lang.Override + public boolean hasOneof2425() { + return hugeOneofCase_ == 2425; + } /** * int32 oneof_2425 = 2425; * @return The oneof2425. */ + @java.lang.Override public int getOneof2425() { if (hugeOneofCase_ == 2425) { return (java.lang.Integer) hugeOneof_; @@ -200760,10 +225598,19 @@ public int getOneof2425() { } public static final int ONEOF_2426_FIELD_NUMBER = 2426; + /** + * int32 oneof_2426 = 2426; + * @return Whether the oneof2426 field is set. + */ + @java.lang.Override + public boolean hasOneof2426() { + return hugeOneofCase_ == 2426; + } /** * int32 oneof_2426 = 2426; * @return The oneof2426. */ + @java.lang.Override public int getOneof2426() { if (hugeOneofCase_ == 2426) { return (java.lang.Integer) hugeOneof_; @@ -200772,10 +225619,19 @@ public int getOneof2426() { } public static final int ONEOF_2427_FIELD_NUMBER = 2427; + /** + * int32 oneof_2427 = 2427; + * @return Whether the oneof2427 field is set. + */ + @java.lang.Override + public boolean hasOneof2427() { + return hugeOneofCase_ == 2427; + } /** * int32 oneof_2427 = 2427; * @return The oneof2427. */ + @java.lang.Override public int getOneof2427() { if (hugeOneofCase_ == 2427) { return (java.lang.Integer) hugeOneof_; @@ -200784,10 +225640,19 @@ public int getOneof2427() { } public static final int ONEOF_2428_FIELD_NUMBER = 2428; + /** + * int32 oneof_2428 = 2428; + * @return Whether the oneof2428 field is set. + */ + @java.lang.Override + public boolean hasOneof2428() { + return hugeOneofCase_ == 2428; + } /** * int32 oneof_2428 = 2428; * @return The oneof2428. */ + @java.lang.Override public int getOneof2428() { if (hugeOneofCase_ == 2428) { return (java.lang.Integer) hugeOneof_; @@ -200796,10 +225661,19 @@ public int getOneof2428() { } public static final int ONEOF_2429_FIELD_NUMBER = 2429; + /** + * int32 oneof_2429 = 2429; + * @return Whether the oneof2429 field is set. + */ + @java.lang.Override + public boolean hasOneof2429() { + return hugeOneofCase_ == 2429; + } /** * int32 oneof_2429 = 2429; * @return The oneof2429. */ + @java.lang.Override public int getOneof2429() { if (hugeOneofCase_ == 2429) { return (java.lang.Integer) hugeOneof_; @@ -200808,10 +225682,19 @@ public int getOneof2429() { } public static final int ONEOF_2430_FIELD_NUMBER = 2430; + /** + * int32 oneof_2430 = 2430; + * @return Whether the oneof2430 field is set. + */ + @java.lang.Override + public boolean hasOneof2430() { + return hugeOneofCase_ == 2430; + } /** * int32 oneof_2430 = 2430; * @return The oneof2430. */ + @java.lang.Override public int getOneof2430() { if (hugeOneofCase_ == 2430) { return (java.lang.Integer) hugeOneof_; @@ -200820,10 +225703,19 @@ public int getOneof2430() { } public static final int ONEOF_2431_FIELD_NUMBER = 2431; + /** + * int32 oneof_2431 = 2431; + * @return Whether the oneof2431 field is set. + */ + @java.lang.Override + public boolean hasOneof2431() { + return hugeOneofCase_ == 2431; + } /** * int32 oneof_2431 = 2431; * @return The oneof2431. */ + @java.lang.Override public int getOneof2431() { if (hugeOneofCase_ == 2431) { return (java.lang.Integer) hugeOneof_; @@ -200832,10 +225724,19 @@ public int getOneof2431() { } public static final int ONEOF_2432_FIELD_NUMBER = 2432; + /** + * int32 oneof_2432 = 2432; + * @return Whether the oneof2432 field is set. + */ + @java.lang.Override + public boolean hasOneof2432() { + return hugeOneofCase_ == 2432; + } /** * int32 oneof_2432 = 2432; * @return The oneof2432. */ + @java.lang.Override public int getOneof2432() { if (hugeOneofCase_ == 2432) { return (java.lang.Integer) hugeOneof_; @@ -200844,10 +225745,19 @@ public int getOneof2432() { } public static final int ONEOF_2433_FIELD_NUMBER = 2433; + /** + * int32 oneof_2433 = 2433; + * @return Whether the oneof2433 field is set. + */ + @java.lang.Override + public boolean hasOneof2433() { + return hugeOneofCase_ == 2433; + } /** * int32 oneof_2433 = 2433; * @return The oneof2433. */ + @java.lang.Override public int getOneof2433() { if (hugeOneofCase_ == 2433) { return (java.lang.Integer) hugeOneof_; @@ -200856,10 +225766,19 @@ public int getOneof2433() { } public static final int ONEOF_2434_FIELD_NUMBER = 2434; + /** + * int32 oneof_2434 = 2434; + * @return Whether the oneof2434 field is set. + */ + @java.lang.Override + public boolean hasOneof2434() { + return hugeOneofCase_ == 2434; + } /** * int32 oneof_2434 = 2434; * @return The oneof2434. */ + @java.lang.Override public int getOneof2434() { if (hugeOneofCase_ == 2434) { return (java.lang.Integer) hugeOneof_; @@ -200868,10 +225787,19 @@ public int getOneof2434() { } public static final int ONEOF_2435_FIELD_NUMBER = 2435; + /** + * int32 oneof_2435 = 2435; + * @return Whether the oneof2435 field is set. + */ + @java.lang.Override + public boolean hasOneof2435() { + return hugeOneofCase_ == 2435; + } /** * int32 oneof_2435 = 2435; * @return The oneof2435. */ + @java.lang.Override public int getOneof2435() { if (hugeOneofCase_ == 2435) { return (java.lang.Integer) hugeOneof_; @@ -200880,10 +225808,19 @@ public int getOneof2435() { } public static final int ONEOF_2436_FIELD_NUMBER = 2436; + /** + * int32 oneof_2436 = 2436; + * @return Whether the oneof2436 field is set. + */ + @java.lang.Override + public boolean hasOneof2436() { + return hugeOneofCase_ == 2436; + } /** * int32 oneof_2436 = 2436; * @return The oneof2436. */ + @java.lang.Override public int getOneof2436() { if (hugeOneofCase_ == 2436) { return (java.lang.Integer) hugeOneof_; @@ -200892,10 +225829,19 @@ public int getOneof2436() { } public static final int ONEOF_2437_FIELD_NUMBER = 2437; + /** + * int32 oneof_2437 = 2437; + * @return Whether the oneof2437 field is set. + */ + @java.lang.Override + public boolean hasOneof2437() { + return hugeOneofCase_ == 2437; + } /** * int32 oneof_2437 = 2437; * @return The oneof2437. */ + @java.lang.Override public int getOneof2437() { if (hugeOneofCase_ == 2437) { return (java.lang.Integer) hugeOneof_; @@ -200904,10 +225850,19 @@ public int getOneof2437() { } public static final int ONEOF_2438_FIELD_NUMBER = 2438; + /** + * int32 oneof_2438 = 2438; + * @return Whether the oneof2438 field is set. + */ + @java.lang.Override + public boolean hasOneof2438() { + return hugeOneofCase_ == 2438; + } /** * int32 oneof_2438 = 2438; * @return The oneof2438. */ + @java.lang.Override public int getOneof2438() { if (hugeOneofCase_ == 2438) { return (java.lang.Integer) hugeOneof_; @@ -200916,10 +225871,19 @@ public int getOneof2438() { } public static final int ONEOF_2439_FIELD_NUMBER = 2439; + /** + * int32 oneof_2439 = 2439; + * @return Whether the oneof2439 field is set. + */ + @java.lang.Override + public boolean hasOneof2439() { + return hugeOneofCase_ == 2439; + } /** * int32 oneof_2439 = 2439; * @return The oneof2439. */ + @java.lang.Override public int getOneof2439() { if (hugeOneofCase_ == 2439) { return (java.lang.Integer) hugeOneof_; @@ -200928,10 +225892,19 @@ public int getOneof2439() { } public static final int ONEOF_2440_FIELD_NUMBER = 2440; + /** + * int32 oneof_2440 = 2440; + * @return Whether the oneof2440 field is set. + */ + @java.lang.Override + public boolean hasOneof2440() { + return hugeOneofCase_ == 2440; + } /** * int32 oneof_2440 = 2440; * @return The oneof2440. */ + @java.lang.Override public int getOneof2440() { if (hugeOneofCase_ == 2440) { return (java.lang.Integer) hugeOneof_; @@ -200940,10 +225913,19 @@ public int getOneof2440() { } public static final int ONEOF_2441_FIELD_NUMBER = 2441; + /** + * int32 oneof_2441 = 2441; + * @return Whether the oneof2441 field is set. + */ + @java.lang.Override + public boolean hasOneof2441() { + return hugeOneofCase_ == 2441; + } /** * int32 oneof_2441 = 2441; * @return The oneof2441. */ + @java.lang.Override public int getOneof2441() { if (hugeOneofCase_ == 2441) { return (java.lang.Integer) hugeOneof_; @@ -200952,10 +225934,19 @@ public int getOneof2441() { } public static final int ONEOF_2442_FIELD_NUMBER = 2442; + /** + * int32 oneof_2442 = 2442; + * @return Whether the oneof2442 field is set. + */ + @java.lang.Override + public boolean hasOneof2442() { + return hugeOneofCase_ == 2442; + } /** * int32 oneof_2442 = 2442; * @return The oneof2442. */ + @java.lang.Override public int getOneof2442() { if (hugeOneofCase_ == 2442) { return (java.lang.Integer) hugeOneof_; @@ -200964,10 +225955,19 @@ public int getOneof2442() { } public static final int ONEOF_2443_FIELD_NUMBER = 2443; + /** + * int32 oneof_2443 = 2443; + * @return Whether the oneof2443 field is set. + */ + @java.lang.Override + public boolean hasOneof2443() { + return hugeOneofCase_ == 2443; + } /** * int32 oneof_2443 = 2443; * @return The oneof2443. */ + @java.lang.Override public int getOneof2443() { if (hugeOneofCase_ == 2443) { return (java.lang.Integer) hugeOneof_; @@ -200976,10 +225976,19 @@ public int getOneof2443() { } public static final int ONEOF_2444_FIELD_NUMBER = 2444; + /** + * int32 oneof_2444 = 2444; + * @return Whether the oneof2444 field is set. + */ + @java.lang.Override + public boolean hasOneof2444() { + return hugeOneofCase_ == 2444; + } /** * int32 oneof_2444 = 2444; * @return The oneof2444. */ + @java.lang.Override public int getOneof2444() { if (hugeOneofCase_ == 2444) { return (java.lang.Integer) hugeOneof_; @@ -200988,10 +225997,19 @@ public int getOneof2444() { } public static final int ONEOF_2445_FIELD_NUMBER = 2445; + /** + * int32 oneof_2445 = 2445; + * @return Whether the oneof2445 field is set. + */ + @java.lang.Override + public boolean hasOneof2445() { + return hugeOneofCase_ == 2445; + } /** * int32 oneof_2445 = 2445; * @return The oneof2445. */ + @java.lang.Override public int getOneof2445() { if (hugeOneofCase_ == 2445) { return (java.lang.Integer) hugeOneof_; @@ -201000,10 +226018,19 @@ public int getOneof2445() { } public static final int ONEOF_2446_FIELD_NUMBER = 2446; + /** + * int32 oneof_2446 = 2446; + * @return Whether the oneof2446 field is set. + */ + @java.lang.Override + public boolean hasOneof2446() { + return hugeOneofCase_ == 2446; + } /** * int32 oneof_2446 = 2446; * @return The oneof2446. */ + @java.lang.Override public int getOneof2446() { if (hugeOneofCase_ == 2446) { return (java.lang.Integer) hugeOneof_; @@ -201012,10 +226039,19 @@ public int getOneof2446() { } public static final int ONEOF_2447_FIELD_NUMBER = 2447; + /** + * int32 oneof_2447 = 2447; + * @return Whether the oneof2447 field is set. + */ + @java.lang.Override + public boolean hasOneof2447() { + return hugeOneofCase_ == 2447; + } /** * int32 oneof_2447 = 2447; * @return The oneof2447. */ + @java.lang.Override public int getOneof2447() { if (hugeOneofCase_ == 2447) { return (java.lang.Integer) hugeOneof_; @@ -201024,10 +226060,19 @@ public int getOneof2447() { } public static final int ONEOF_2448_FIELD_NUMBER = 2448; + /** + * int32 oneof_2448 = 2448; + * @return Whether the oneof2448 field is set. + */ + @java.lang.Override + public boolean hasOneof2448() { + return hugeOneofCase_ == 2448; + } /** * int32 oneof_2448 = 2448; * @return The oneof2448. */ + @java.lang.Override public int getOneof2448() { if (hugeOneofCase_ == 2448) { return (java.lang.Integer) hugeOneof_; @@ -201036,10 +226081,19 @@ public int getOneof2448() { } public static final int ONEOF_2449_FIELD_NUMBER = 2449; + /** + * int32 oneof_2449 = 2449; + * @return Whether the oneof2449 field is set. + */ + @java.lang.Override + public boolean hasOneof2449() { + return hugeOneofCase_ == 2449; + } /** * int32 oneof_2449 = 2449; * @return The oneof2449. */ + @java.lang.Override public int getOneof2449() { if (hugeOneofCase_ == 2449) { return (java.lang.Integer) hugeOneof_; @@ -201048,10 +226102,19 @@ public int getOneof2449() { } public static final int ONEOF_2450_FIELD_NUMBER = 2450; + /** + * int32 oneof_2450 = 2450; + * @return Whether the oneof2450 field is set. + */ + @java.lang.Override + public boolean hasOneof2450() { + return hugeOneofCase_ == 2450; + } /** * int32 oneof_2450 = 2450; * @return The oneof2450. */ + @java.lang.Override public int getOneof2450() { if (hugeOneofCase_ == 2450) { return (java.lang.Integer) hugeOneof_; @@ -201060,10 +226123,19 @@ public int getOneof2450() { } public static final int ONEOF_2451_FIELD_NUMBER = 2451; + /** + * int32 oneof_2451 = 2451; + * @return Whether the oneof2451 field is set. + */ + @java.lang.Override + public boolean hasOneof2451() { + return hugeOneofCase_ == 2451; + } /** * int32 oneof_2451 = 2451; * @return The oneof2451. */ + @java.lang.Override public int getOneof2451() { if (hugeOneofCase_ == 2451) { return (java.lang.Integer) hugeOneof_; @@ -201072,10 +226144,19 @@ public int getOneof2451() { } public static final int ONEOF_2452_FIELD_NUMBER = 2452; + /** + * int32 oneof_2452 = 2452; + * @return Whether the oneof2452 field is set. + */ + @java.lang.Override + public boolean hasOneof2452() { + return hugeOneofCase_ == 2452; + } /** * int32 oneof_2452 = 2452; * @return The oneof2452. */ + @java.lang.Override public int getOneof2452() { if (hugeOneofCase_ == 2452) { return (java.lang.Integer) hugeOneof_; @@ -201084,10 +226165,19 @@ public int getOneof2452() { } public static final int ONEOF_2453_FIELD_NUMBER = 2453; + /** + * int32 oneof_2453 = 2453; + * @return Whether the oneof2453 field is set. + */ + @java.lang.Override + public boolean hasOneof2453() { + return hugeOneofCase_ == 2453; + } /** * int32 oneof_2453 = 2453; * @return The oneof2453. */ + @java.lang.Override public int getOneof2453() { if (hugeOneofCase_ == 2453) { return (java.lang.Integer) hugeOneof_; @@ -201096,10 +226186,19 @@ public int getOneof2453() { } public static final int ONEOF_2454_FIELD_NUMBER = 2454; + /** + * int32 oneof_2454 = 2454; + * @return Whether the oneof2454 field is set. + */ + @java.lang.Override + public boolean hasOneof2454() { + return hugeOneofCase_ == 2454; + } /** * int32 oneof_2454 = 2454; * @return The oneof2454. */ + @java.lang.Override public int getOneof2454() { if (hugeOneofCase_ == 2454) { return (java.lang.Integer) hugeOneof_; @@ -201108,10 +226207,19 @@ public int getOneof2454() { } public static final int ONEOF_2455_FIELD_NUMBER = 2455; + /** + * int32 oneof_2455 = 2455; + * @return Whether the oneof2455 field is set. + */ + @java.lang.Override + public boolean hasOneof2455() { + return hugeOneofCase_ == 2455; + } /** * int32 oneof_2455 = 2455; * @return The oneof2455. */ + @java.lang.Override public int getOneof2455() { if (hugeOneofCase_ == 2455) { return (java.lang.Integer) hugeOneof_; @@ -201120,10 +226228,19 @@ public int getOneof2455() { } public static final int ONEOF_2456_FIELD_NUMBER = 2456; + /** + * int32 oneof_2456 = 2456; + * @return Whether the oneof2456 field is set. + */ + @java.lang.Override + public boolean hasOneof2456() { + return hugeOneofCase_ == 2456; + } /** * int32 oneof_2456 = 2456; * @return The oneof2456. */ + @java.lang.Override public int getOneof2456() { if (hugeOneofCase_ == 2456) { return (java.lang.Integer) hugeOneof_; @@ -201132,10 +226249,19 @@ public int getOneof2456() { } public static final int ONEOF_2457_FIELD_NUMBER = 2457; + /** + * int32 oneof_2457 = 2457; + * @return Whether the oneof2457 field is set. + */ + @java.lang.Override + public boolean hasOneof2457() { + return hugeOneofCase_ == 2457; + } /** * int32 oneof_2457 = 2457; * @return The oneof2457. */ + @java.lang.Override public int getOneof2457() { if (hugeOneofCase_ == 2457) { return (java.lang.Integer) hugeOneof_; @@ -201144,10 +226270,19 @@ public int getOneof2457() { } public static final int ONEOF_2458_FIELD_NUMBER = 2458; + /** + * int32 oneof_2458 = 2458; + * @return Whether the oneof2458 field is set. + */ + @java.lang.Override + public boolean hasOneof2458() { + return hugeOneofCase_ == 2458; + } /** * int32 oneof_2458 = 2458; * @return The oneof2458. */ + @java.lang.Override public int getOneof2458() { if (hugeOneofCase_ == 2458) { return (java.lang.Integer) hugeOneof_; @@ -201156,10 +226291,19 @@ public int getOneof2458() { } public static final int ONEOF_2459_FIELD_NUMBER = 2459; + /** + * int32 oneof_2459 = 2459; + * @return Whether the oneof2459 field is set. + */ + @java.lang.Override + public boolean hasOneof2459() { + return hugeOneofCase_ == 2459; + } /** * int32 oneof_2459 = 2459; * @return The oneof2459. */ + @java.lang.Override public int getOneof2459() { if (hugeOneofCase_ == 2459) { return (java.lang.Integer) hugeOneof_; @@ -201168,10 +226312,19 @@ public int getOneof2459() { } public static final int ONEOF_2460_FIELD_NUMBER = 2460; + /** + * int32 oneof_2460 = 2460; + * @return Whether the oneof2460 field is set. + */ + @java.lang.Override + public boolean hasOneof2460() { + return hugeOneofCase_ == 2460; + } /** * int32 oneof_2460 = 2460; * @return The oneof2460. */ + @java.lang.Override public int getOneof2460() { if (hugeOneofCase_ == 2460) { return (java.lang.Integer) hugeOneof_; @@ -201180,10 +226333,19 @@ public int getOneof2460() { } public static final int ONEOF_2461_FIELD_NUMBER = 2461; + /** + * int32 oneof_2461 = 2461; + * @return Whether the oneof2461 field is set. + */ + @java.lang.Override + public boolean hasOneof2461() { + return hugeOneofCase_ == 2461; + } /** * int32 oneof_2461 = 2461; * @return The oneof2461. */ + @java.lang.Override public int getOneof2461() { if (hugeOneofCase_ == 2461) { return (java.lang.Integer) hugeOneof_; @@ -201192,10 +226354,19 @@ public int getOneof2461() { } public static final int ONEOF_2462_FIELD_NUMBER = 2462; + /** + * int32 oneof_2462 = 2462; + * @return Whether the oneof2462 field is set. + */ + @java.lang.Override + public boolean hasOneof2462() { + return hugeOneofCase_ == 2462; + } /** * int32 oneof_2462 = 2462; * @return The oneof2462. */ + @java.lang.Override public int getOneof2462() { if (hugeOneofCase_ == 2462) { return (java.lang.Integer) hugeOneof_; @@ -201204,10 +226375,19 @@ public int getOneof2462() { } public static final int ONEOF_2463_FIELD_NUMBER = 2463; + /** + * int32 oneof_2463 = 2463; + * @return Whether the oneof2463 field is set. + */ + @java.lang.Override + public boolean hasOneof2463() { + return hugeOneofCase_ == 2463; + } /** * int32 oneof_2463 = 2463; * @return The oneof2463. */ + @java.lang.Override public int getOneof2463() { if (hugeOneofCase_ == 2463) { return (java.lang.Integer) hugeOneof_; @@ -201216,10 +226396,19 @@ public int getOneof2463() { } public static final int ONEOF_2464_FIELD_NUMBER = 2464; + /** + * int32 oneof_2464 = 2464; + * @return Whether the oneof2464 field is set. + */ + @java.lang.Override + public boolean hasOneof2464() { + return hugeOneofCase_ == 2464; + } /** * int32 oneof_2464 = 2464; * @return The oneof2464. */ + @java.lang.Override public int getOneof2464() { if (hugeOneofCase_ == 2464) { return (java.lang.Integer) hugeOneof_; @@ -201228,10 +226417,19 @@ public int getOneof2464() { } public static final int ONEOF_2465_FIELD_NUMBER = 2465; + /** + * int32 oneof_2465 = 2465; + * @return Whether the oneof2465 field is set. + */ + @java.lang.Override + public boolean hasOneof2465() { + return hugeOneofCase_ == 2465; + } /** * int32 oneof_2465 = 2465; * @return The oneof2465. */ + @java.lang.Override public int getOneof2465() { if (hugeOneofCase_ == 2465) { return (java.lang.Integer) hugeOneof_; @@ -201240,10 +226438,19 @@ public int getOneof2465() { } public static final int ONEOF_2466_FIELD_NUMBER = 2466; + /** + * int32 oneof_2466 = 2466; + * @return Whether the oneof2466 field is set. + */ + @java.lang.Override + public boolean hasOneof2466() { + return hugeOneofCase_ == 2466; + } /** * int32 oneof_2466 = 2466; * @return The oneof2466. */ + @java.lang.Override public int getOneof2466() { if (hugeOneofCase_ == 2466) { return (java.lang.Integer) hugeOneof_; @@ -201252,10 +226459,19 @@ public int getOneof2466() { } public static final int ONEOF_2467_FIELD_NUMBER = 2467; + /** + * int32 oneof_2467 = 2467; + * @return Whether the oneof2467 field is set. + */ + @java.lang.Override + public boolean hasOneof2467() { + return hugeOneofCase_ == 2467; + } /** * int32 oneof_2467 = 2467; * @return The oneof2467. */ + @java.lang.Override public int getOneof2467() { if (hugeOneofCase_ == 2467) { return (java.lang.Integer) hugeOneof_; @@ -201264,10 +226480,19 @@ public int getOneof2467() { } public static final int ONEOF_2468_FIELD_NUMBER = 2468; + /** + * int32 oneof_2468 = 2468; + * @return Whether the oneof2468 field is set. + */ + @java.lang.Override + public boolean hasOneof2468() { + return hugeOneofCase_ == 2468; + } /** * int32 oneof_2468 = 2468; * @return The oneof2468. */ + @java.lang.Override public int getOneof2468() { if (hugeOneofCase_ == 2468) { return (java.lang.Integer) hugeOneof_; @@ -201276,10 +226501,19 @@ public int getOneof2468() { } public static final int ONEOF_2469_FIELD_NUMBER = 2469; + /** + * int32 oneof_2469 = 2469; + * @return Whether the oneof2469 field is set. + */ + @java.lang.Override + public boolean hasOneof2469() { + return hugeOneofCase_ == 2469; + } /** * int32 oneof_2469 = 2469; * @return The oneof2469. */ + @java.lang.Override public int getOneof2469() { if (hugeOneofCase_ == 2469) { return (java.lang.Integer) hugeOneof_; @@ -201288,10 +226522,19 @@ public int getOneof2469() { } public static final int ONEOF_2470_FIELD_NUMBER = 2470; + /** + * int32 oneof_2470 = 2470; + * @return Whether the oneof2470 field is set. + */ + @java.lang.Override + public boolean hasOneof2470() { + return hugeOneofCase_ == 2470; + } /** * int32 oneof_2470 = 2470; * @return The oneof2470. */ + @java.lang.Override public int getOneof2470() { if (hugeOneofCase_ == 2470) { return (java.lang.Integer) hugeOneof_; @@ -201300,10 +226543,19 @@ public int getOneof2470() { } public static final int ONEOF_2471_FIELD_NUMBER = 2471; + /** + * int32 oneof_2471 = 2471; + * @return Whether the oneof2471 field is set. + */ + @java.lang.Override + public boolean hasOneof2471() { + return hugeOneofCase_ == 2471; + } /** * int32 oneof_2471 = 2471; * @return The oneof2471. */ + @java.lang.Override public int getOneof2471() { if (hugeOneofCase_ == 2471) { return (java.lang.Integer) hugeOneof_; @@ -201312,10 +226564,19 @@ public int getOneof2471() { } public static final int ONEOF_2472_FIELD_NUMBER = 2472; + /** + * int32 oneof_2472 = 2472; + * @return Whether the oneof2472 field is set. + */ + @java.lang.Override + public boolean hasOneof2472() { + return hugeOneofCase_ == 2472; + } /** * int32 oneof_2472 = 2472; * @return The oneof2472. */ + @java.lang.Override public int getOneof2472() { if (hugeOneofCase_ == 2472) { return (java.lang.Integer) hugeOneof_; @@ -201324,10 +226585,19 @@ public int getOneof2472() { } public static final int ONEOF_2473_FIELD_NUMBER = 2473; + /** + * int32 oneof_2473 = 2473; + * @return Whether the oneof2473 field is set. + */ + @java.lang.Override + public boolean hasOneof2473() { + return hugeOneofCase_ == 2473; + } /** * int32 oneof_2473 = 2473; * @return The oneof2473. */ + @java.lang.Override public int getOneof2473() { if (hugeOneofCase_ == 2473) { return (java.lang.Integer) hugeOneof_; @@ -201336,10 +226606,19 @@ public int getOneof2473() { } public static final int ONEOF_2474_FIELD_NUMBER = 2474; + /** + * int32 oneof_2474 = 2474; + * @return Whether the oneof2474 field is set. + */ + @java.lang.Override + public boolean hasOneof2474() { + return hugeOneofCase_ == 2474; + } /** * int32 oneof_2474 = 2474; * @return The oneof2474. */ + @java.lang.Override public int getOneof2474() { if (hugeOneofCase_ == 2474) { return (java.lang.Integer) hugeOneof_; @@ -201348,10 +226627,19 @@ public int getOneof2474() { } public static final int ONEOF_2475_FIELD_NUMBER = 2475; + /** + * int32 oneof_2475 = 2475; + * @return Whether the oneof2475 field is set. + */ + @java.lang.Override + public boolean hasOneof2475() { + return hugeOneofCase_ == 2475; + } /** * int32 oneof_2475 = 2475; * @return The oneof2475. */ + @java.lang.Override public int getOneof2475() { if (hugeOneofCase_ == 2475) { return (java.lang.Integer) hugeOneof_; @@ -201360,10 +226648,19 @@ public int getOneof2475() { } public static final int ONEOF_2476_FIELD_NUMBER = 2476; + /** + * int32 oneof_2476 = 2476; + * @return Whether the oneof2476 field is set. + */ + @java.lang.Override + public boolean hasOneof2476() { + return hugeOneofCase_ == 2476; + } /** * int32 oneof_2476 = 2476; * @return The oneof2476. */ + @java.lang.Override public int getOneof2476() { if (hugeOneofCase_ == 2476) { return (java.lang.Integer) hugeOneof_; @@ -201372,10 +226669,19 @@ public int getOneof2476() { } public static final int ONEOF_2477_FIELD_NUMBER = 2477; + /** + * int32 oneof_2477 = 2477; + * @return Whether the oneof2477 field is set. + */ + @java.lang.Override + public boolean hasOneof2477() { + return hugeOneofCase_ == 2477; + } /** * int32 oneof_2477 = 2477; * @return The oneof2477. */ + @java.lang.Override public int getOneof2477() { if (hugeOneofCase_ == 2477) { return (java.lang.Integer) hugeOneof_; @@ -201384,10 +226690,19 @@ public int getOneof2477() { } public static final int ONEOF_2478_FIELD_NUMBER = 2478; + /** + * int32 oneof_2478 = 2478; + * @return Whether the oneof2478 field is set. + */ + @java.lang.Override + public boolean hasOneof2478() { + return hugeOneofCase_ == 2478; + } /** * int32 oneof_2478 = 2478; * @return The oneof2478. */ + @java.lang.Override public int getOneof2478() { if (hugeOneofCase_ == 2478) { return (java.lang.Integer) hugeOneof_; @@ -201396,10 +226711,19 @@ public int getOneof2478() { } public static final int ONEOF_2479_FIELD_NUMBER = 2479; + /** + * int32 oneof_2479 = 2479; + * @return Whether the oneof2479 field is set. + */ + @java.lang.Override + public boolean hasOneof2479() { + return hugeOneofCase_ == 2479; + } /** * int32 oneof_2479 = 2479; * @return The oneof2479. */ + @java.lang.Override public int getOneof2479() { if (hugeOneofCase_ == 2479) { return (java.lang.Integer) hugeOneof_; @@ -201408,10 +226732,19 @@ public int getOneof2479() { } public static final int ONEOF_2480_FIELD_NUMBER = 2480; + /** + * int32 oneof_2480 = 2480; + * @return Whether the oneof2480 field is set. + */ + @java.lang.Override + public boolean hasOneof2480() { + return hugeOneofCase_ == 2480; + } /** * int32 oneof_2480 = 2480; * @return The oneof2480. */ + @java.lang.Override public int getOneof2480() { if (hugeOneofCase_ == 2480) { return (java.lang.Integer) hugeOneof_; @@ -201420,10 +226753,19 @@ public int getOneof2480() { } public static final int ONEOF_2481_FIELD_NUMBER = 2481; + /** + * int32 oneof_2481 = 2481; + * @return Whether the oneof2481 field is set. + */ + @java.lang.Override + public boolean hasOneof2481() { + return hugeOneofCase_ == 2481; + } /** * int32 oneof_2481 = 2481; * @return The oneof2481. */ + @java.lang.Override public int getOneof2481() { if (hugeOneofCase_ == 2481) { return (java.lang.Integer) hugeOneof_; @@ -201432,10 +226774,19 @@ public int getOneof2481() { } public static final int ONEOF_2482_FIELD_NUMBER = 2482; + /** + * int32 oneof_2482 = 2482; + * @return Whether the oneof2482 field is set. + */ + @java.lang.Override + public boolean hasOneof2482() { + return hugeOneofCase_ == 2482; + } /** * int32 oneof_2482 = 2482; * @return The oneof2482. */ + @java.lang.Override public int getOneof2482() { if (hugeOneofCase_ == 2482) { return (java.lang.Integer) hugeOneof_; @@ -201444,10 +226795,19 @@ public int getOneof2482() { } public static final int ONEOF_2483_FIELD_NUMBER = 2483; + /** + * int32 oneof_2483 = 2483; + * @return Whether the oneof2483 field is set. + */ + @java.lang.Override + public boolean hasOneof2483() { + return hugeOneofCase_ == 2483; + } /** * int32 oneof_2483 = 2483; * @return The oneof2483. */ + @java.lang.Override public int getOneof2483() { if (hugeOneofCase_ == 2483) { return (java.lang.Integer) hugeOneof_; @@ -201456,10 +226816,19 @@ public int getOneof2483() { } public static final int ONEOF_2484_FIELD_NUMBER = 2484; + /** + * int32 oneof_2484 = 2484; + * @return Whether the oneof2484 field is set. + */ + @java.lang.Override + public boolean hasOneof2484() { + return hugeOneofCase_ == 2484; + } /** * int32 oneof_2484 = 2484; * @return The oneof2484. */ + @java.lang.Override public int getOneof2484() { if (hugeOneofCase_ == 2484) { return (java.lang.Integer) hugeOneof_; @@ -201468,10 +226837,19 @@ public int getOneof2484() { } public static final int ONEOF_2485_FIELD_NUMBER = 2485; + /** + * int32 oneof_2485 = 2485; + * @return Whether the oneof2485 field is set. + */ + @java.lang.Override + public boolean hasOneof2485() { + return hugeOneofCase_ == 2485; + } /** * int32 oneof_2485 = 2485; * @return The oneof2485. */ + @java.lang.Override public int getOneof2485() { if (hugeOneofCase_ == 2485) { return (java.lang.Integer) hugeOneof_; @@ -201480,10 +226858,19 @@ public int getOneof2485() { } public static final int ONEOF_2486_FIELD_NUMBER = 2486; + /** + * int32 oneof_2486 = 2486; + * @return Whether the oneof2486 field is set. + */ + @java.lang.Override + public boolean hasOneof2486() { + return hugeOneofCase_ == 2486; + } /** * int32 oneof_2486 = 2486; * @return The oneof2486. */ + @java.lang.Override public int getOneof2486() { if (hugeOneofCase_ == 2486) { return (java.lang.Integer) hugeOneof_; @@ -201492,10 +226879,19 @@ public int getOneof2486() { } public static final int ONEOF_2487_FIELD_NUMBER = 2487; + /** + * int32 oneof_2487 = 2487; + * @return Whether the oneof2487 field is set. + */ + @java.lang.Override + public boolean hasOneof2487() { + return hugeOneofCase_ == 2487; + } /** * int32 oneof_2487 = 2487; * @return The oneof2487. */ + @java.lang.Override public int getOneof2487() { if (hugeOneofCase_ == 2487) { return (java.lang.Integer) hugeOneof_; @@ -201504,10 +226900,19 @@ public int getOneof2487() { } public static final int ONEOF_2488_FIELD_NUMBER = 2488; + /** + * int32 oneof_2488 = 2488; + * @return Whether the oneof2488 field is set. + */ + @java.lang.Override + public boolean hasOneof2488() { + return hugeOneofCase_ == 2488; + } /** * int32 oneof_2488 = 2488; * @return The oneof2488. */ + @java.lang.Override public int getOneof2488() { if (hugeOneofCase_ == 2488) { return (java.lang.Integer) hugeOneof_; @@ -201516,10 +226921,19 @@ public int getOneof2488() { } public static final int ONEOF_2489_FIELD_NUMBER = 2489; + /** + * int32 oneof_2489 = 2489; + * @return Whether the oneof2489 field is set. + */ + @java.lang.Override + public boolean hasOneof2489() { + return hugeOneofCase_ == 2489; + } /** * int32 oneof_2489 = 2489; * @return The oneof2489. */ + @java.lang.Override public int getOneof2489() { if (hugeOneofCase_ == 2489) { return (java.lang.Integer) hugeOneof_; @@ -201528,10 +226942,19 @@ public int getOneof2489() { } public static final int ONEOF_2490_FIELD_NUMBER = 2490; + /** + * int32 oneof_2490 = 2490; + * @return Whether the oneof2490 field is set. + */ + @java.lang.Override + public boolean hasOneof2490() { + return hugeOneofCase_ == 2490; + } /** * int32 oneof_2490 = 2490; * @return The oneof2490. */ + @java.lang.Override public int getOneof2490() { if (hugeOneofCase_ == 2490) { return (java.lang.Integer) hugeOneof_; @@ -201540,10 +226963,19 @@ public int getOneof2490() { } public static final int ONEOF_2491_FIELD_NUMBER = 2491; + /** + * int32 oneof_2491 = 2491; + * @return Whether the oneof2491 field is set. + */ + @java.lang.Override + public boolean hasOneof2491() { + return hugeOneofCase_ == 2491; + } /** * int32 oneof_2491 = 2491; * @return The oneof2491. */ + @java.lang.Override public int getOneof2491() { if (hugeOneofCase_ == 2491) { return (java.lang.Integer) hugeOneof_; @@ -201552,10 +226984,19 @@ public int getOneof2491() { } public static final int ONEOF_2492_FIELD_NUMBER = 2492; + /** + * int32 oneof_2492 = 2492; + * @return Whether the oneof2492 field is set. + */ + @java.lang.Override + public boolean hasOneof2492() { + return hugeOneofCase_ == 2492; + } /** * int32 oneof_2492 = 2492; * @return The oneof2492. */ + @java.lang.Override public int getOneof2492() { if (hugeOneofCase_ == 2492) { return (java.lang.Integer) hugeOneof_; @@ -201564,10 +227005,19 @@ public int getOneof2492() { } public static final int ONEOF_2493_FIELD_NUMBER = 2493; + /** + * int32 oneof_2493 = 2493; + * @return Whether the oneof2493 field is set. + */ + @java.lang.Override + public boolean hasOneof2493() { + return hugeOneofCase_ == 2493; + } /** * int32 oneof_2493 = 2493; * @return The oneof2493. */ + @java.lang.Override public int getOneof2493() { if (hugeOneofCase_ == 2493) { return (java.lang.Integer) hugeOneof_; @@ -201576,10 +227026,19 @@ public int getOneof2493() { } public static final int ONEOF_2494_FIELD_NUMBER = 2494; + /** + * int32 oneof_2494 = 2494; + * @return Whether the oneof2494 field is set. + */ + @java.lang.Override + public boolean hasOneof2494() { + return hugeOneofCase_ == 2494; + } /** * int32 oneof_2494 = 2494; * @return The oneof2494. */ + @java.lang.Override public int getOneof2494() { if (hugeOneofCase_ == 2494) { return (java.lang.Integer) hugeOneof_; @@ -201588,10 +227047,19 @@ public int getOneof2494() { } public static final int ONEOF_2495_FIELD_NUMBER = 2495; + /** + * int32 oneof_2495 = 2495; + * @return Whether the oneof2495 field is set. + */ + @java.lang.Override + public boolean hasOneof2495() { + return hugeOneofCase_ == 2495; + } /** * int32 oneof_2495 = 2495; * @return The oneof2495. */ + @java.lang.Override public int getOneof2495() { if (hugeOneofCase_ == 2495) { return (java.lang.Integer) hugeOneof_; @@ -201600,10 +227068,19 @@ public int getOneof2495() { } public static final int ONEOF_2496_FIELD_NUMBER = 2496; + /** + * int32 oneof_2496 = 2496; + * @return Whether the oneof2496 field is set. + */ + @java.lang.Override + public boolean hasOneof2496() { + return hugeOneofCase_ == 2496; + } /** * int32 oneof_2496 = 2496; * @return The oneof2496. */ + @java.lang.Override public int getOneof2496() { if (hugeOneofCase_ == 2496) { return (java.lang.Integer) hugeOneof_; @@ -201612,10 +227089,19 @@ public int getOneof2496() { } public static final int ONEOF_2497_FIELD_NUMBER = 2497; + /** + * int32 oneof_2497 = 2497; + * @return Whether the oneof2497 field is set. + */ + @java.lang.Override + public boolean hasOneof2497() { + return hugeOneofCase_ == 2497; + } /** * int32 oneof_2497 = 2497; * @return The oneof2497. */ + @java.lang.Override public int getOneof2497() { if (hugeOneofCase_ == 2497) { return (java.lang.Integer) hugeOneof_; @@ -201624,10 +227110,19 @@ public int getOneof2497() { } public static final int ONEOF_2498_FIELD_NUMBER = 2498; + /** + * int32 oneof_2498 = 2498; + * @return Whether the oneof2498 field is set. + */ + @java.lang.Override + public boolean hasOneof2498() { + return hugeOneofCase_ == 2498; + } /** * int32 oneof_2498 = 2498; * @return The oneof2498. */ + @java.lang.Override public int getOneof2498() { if (hugeOneofCase_ == 2498) { return (java.lang.Integer) hugeOneof_; @@ -201636,10 +227131,19 @@ public int getOneof2498() { } public static final int ONEOF_2499_FIELD_NUMBER = 2499; + /** + * int32 oneof_2499 = 2499; + * @return Whether the oneof2499 field is set. + */ + @java.lang.Override + public boolean hasOneof2499() { + return hugeOneofCase_ == 2499; + } /** * int32 oneof_2499 = 2499; * @return The oneof2499. */ + @java.lang.Override public int getOneof2499() { if (hugeOneofCase_ == 2499) { return (java.lang.Integer) hugeOneof_; @@ -201648,10 +227152,19 @@ public int getOneof2499() { } public static final int ONEOF_2500_FIELD_NUMBER = 2500; + /** + * int32 oneof_2500 = 2500; + * @return Whether the oneof2500 field is set. + */ + @java.lang.Override + public boolean hasOneof2500() { + return hugeOneofCase_ == 2500; + } /** * int32 oneof_2500 = 2500; * @return The oneof2500. */ + @java.lang.Override public int getOneof2500() { if (hugeOneofCase_ == 2500) { return (java.lang.Integer) hugeOneof_; @@ -201660,10 +227173,19 @@ public int getOneof2500() { } public static final int ONEOF_2501_FIELD_NUMBER = 2501; + /** + * int32 oneof_2501 = 2501; + * @return Whether the oneof2501 field is set. + */ + @java.lang.Override + public boolean hasOneof2501() { + return hugeOneofCase_ == 2501; + } /** * int32 oneof_2501 = 2501; * @return The oneof2501. */ + @java.lang.Override public int getOneof2501() { if (hugeOneofCase_ == 2501) { return (java.lang.Integer) hugeOneof_; @@ -201672,10 +227194,19 @@ public int getOneof2501() { } public static final int ONEOF_2502_FIELD_NUMBER = 2502; + /** + * int32 oneof_2502 = 2502; + * @return Whether the oneof2502 field is set. + */ + @java.lang.Override + public boolean hasOneof2502() { + return hugeOneofCase_ == 2502; + } /** * int32 oneof_2502 = 2502; * @return The oneof2502. */ + @java.lang.Override public int getOneof2502() { if (hugeOneofCase_ == 2502) { return (java.lang.Integer) hugeOneof_; @@ -201684,10 +227215,19 @@ public int getOneof2502() { } public static final int ONEOF_2503_FIELD_NUMBER = 2503; + /** + * int32 oneof_2503 = 2503; + * @return Whether the oneof2503 field is set. + */ + @java.lang.Override + public boolean hasOneof2503() { + return hugeOneofCase_ == 2503; + } /** * int32 oneof_2503 = 2503; * @return The oneof2503. */ + @java.lang.Override public int getOneof2503() { if (hugeOneofCase_ == 2503) { return (java.lang.Integer) hugeOneof_; @@ -201696,10 +227236,19 @@ public int getOneof2503() { } public static final int ONEOF_2504_FIELD_NUMBER = 2504; + /** + * int32 oneof_2504 = 2504; + * @return Whether the oneof2504 field is set. + */ + @java.lang.Override + public boolean hasOneof2504() { + return hugeOneofCase_ == 2504; + } /** * int32 oneof_2504 = 2504; * @return The oneof2504. */ + @java.lang.Override public int getOneof2504() { if (hugeOneofCase_ == 2504) { return (java.lang.Integer) hugeOneof_; @@ -201708,10 +227257,19 @@ public int getOneof2504() { } public static final int ONEOF_2505_FIELD_NUMBER = 2505; + /** + * int32 oneof_2505 = 2505; + * @return Whether the oneof2505 field is set. + */ + @java.lang.Override + public boolean hasOneof2505() { + return hugeOneofCase_ == 2505; + } /** * int32 oneof_2505 = 2505; * @return The oneof2505. */ + @java.lang.Override public int getOneof2505() { if (hugeOneofCase_ == 2505) { return (java.lang.Integer) hugeOneof_; @@ -201720,10 +227278,19 @@ public int getOneof2505() { } public static final int ONEOF_2506_FIELD_NUMBER = 2506; + /** + * int32 oneof_2506 = 2506; + * @return Whether the oneof2506 field is set. + */ + @java.lang.Override + public boolean hasOneof2506() { + return hugeOneofCase_ == 2506; + } /** * int32 oneof_2506 = 2506; * @return The oneof2506. */ + @java.lang.Override public int getOneof2506() { if (hugeOneofCase_ == 2506) { return (java.lang.Integer) hugeOneof_; @@ -201732,10 +227299,19 @@ public int getOneof2506() { } public static final int ONEOF_2507_FIELD_NUMBER = 2507; + /** + * int32 oneof_2507 = 2507; + * @return Whether the oneof2507 field is set. + */ + @java.lang.Override + public boolean hasOneof2507() { + return hugeOneofCase_ == 2507; + } /** * int32 oneof_2507 = 2507; * @return The oneof2507. */ + @java.lang.Override public int getOneof2507() { if (hugeOneofCase_ == 2507) { return (java.lang.Integer) hugeOneof_; @@ -201744,10 +227320,19 @@ public int getOneof2507() { } public static final int ONEOF_2508_FIELD_NUMBER = 2508; + /** + * int32 oneof_2508 = 2508; + * @return Whether the oneof2508 field is set. + */ + @java.lang.Override + public boolean hasOneof2508() { + return hugeOneofCase_ == 2508; + } /** * int32 oneof_2508 = 2508; * @return The oneof2508. */ + @java.lang.Override public int getOneof2508() { if (hugeOneofCase_ == 2508) { return (java.lang.Integer) hugeOneof_; @@ -201756,10 +227341,19 @@ public int getOneof2508() { } public static final int ONEOF_2509_FIELD_NUMBER = 2509; + /** + * int32 oneof_2509 = 2509; + * @return Whether the oneof2509 field is set. + */ + @java.lang.Override + public boolean hasOneof2509() { + return hugeOneofCase_ == 2509; + } /** * int32 oneof_2509 = 2509; * @return The oneof2509. */ + @java.lang.Override public int getOneof2509() { if (hugeOneofCase_ == 2509) { return (java.lang.Integer) hugeOneof_; @@ -201768,10 +227362,19 @@ public int getOneof2509() { } public static final int ONEOF_2510_FIELD_NUMBER = 2510; + /** + * int32 oneof_2510 = 2510; + * @return Whether the oneof2510 field is set. + */ + @java.lang.Override + public boolean hasOneof2510() { + return hugeOneofCase_ == 2510; + } /** * int32 oneof_2510 = 2510; * @return The oneof2510. */ + @java.lang.Override public int getOneof2510() { if (hugeOneofCase_ == 2510) { return (java.lang.Integer) hugeOneof_; @@ -201780,10 +227383,19 @@ public int getOneof2510() { } public static final int ONEOF_2511_FIELD_NUMBER = 2511; + /** + * int32 oneof_2511 = 2511; + * @return Whether the oneof2511 field is set. + */ + @java.lang.Override + public boolean hasOneof2511() { + return hugeOneofCase_ == 2511; + } /** * int32 oneof_2511 = 2511; * @return The oneof2511. */ + @java.lang.Override public int getOneof2511() { if (hugeOneofCase_ == 2511) { return (java.lang.Integer) hugeOneof_; @@ -201792,10 +227404,19 @@ public int getOneof2511() { } public static final int ONEOF_2512_FIELD_NUMBER = 2512; + /** + * int32 oneof_2512 = 2512; + * @return Whether the oneof2512 field is set. + */ + @java.lang.Override + public boolean hasOneof2512() { + return hugeOneofCase_ == 2512; + } /** * int32 oneof_2512 = 2512; * @return The oneof2512. */ + @java.lang.Override public int getOneof2512() { if (hugeOneofCase_ == 2512) { return (java.lang.Integer) hugeOneof_; @@ -201804,10 +227425,19 @@ public int getOneof2512() { } public static final int ONEOF_2513_FIELD_NUMBER = 2513; + /** + * int32 oneof_2513 = 2513; + * @return Whether the oneof2513 field is set. + */ + @java.lang.Override + public boolean hasOneof2513() { + return hugeOneofCase_ == 2513; + } /** * int32 oneof_2513 = 2513; * @return The oneof2513. */ + @java.lang.Override public int getOneof2513() { if (hugeOneofCase_ == 2513) { return (java.lang.Integer) hugeOneof_; @@ -201816,10 +227446,19 @@ public int getOneof2513() { } public static final int ONEOF_2514_FIELD_NUMBER = 2514; + /** + * int32 oneof_2514 = 2514; + * @return Whether the oneof2514 field is set. + */ + @java.lang.Override + public boolean hasOneof2514() { + return hugeOneofCase_ == 2514; + } /** * int32 oneof_2514 = 2514; * @return The oneof2514. */ + @java.lang.Override public int getOneof2514() { if (hugeOneofCase_ == 2514) { return (java.lang.Integer) hugeOneof_; @@ -201828,10 +227467,19 @@ public int getOneof2514() { } public static final int ONEOF_2515_FIELD_NUMBER = 2515; + /** + * int32 oneof_2515 = 2515; + * @return Whether the oneof2515 field is set. + */ + @java.lang.Override + public boolean hasOneof2515() { + return hugeOneofCase_ == 2515; + } /** * int32 oneof_2515 = 2515; * @return The oneof2515. */ + @java.lang.Override public int getOneof2515() { if (hugeOneofCase_ == 2515) { return (java.lang.Integer) hugeOneof_; @@ -201840,10 +227488,19 @@ public int getOneof2515() { } public static final int ONEOF_2516_FIELD_NUMBER = 2516; + /** + * int32 oneof_2516 = 2516; + * @return Whether the oneof2516 field is set. + */ + @java.lang.Override + public boolean hasOneof2516() { + return hugeOneofCase_ == 2516; + } /** * int32 oneof_2516 = 2516; * @return The oneof2516. */ + @java.lang.Override public int getOneof2516() { if (hugeOneofCase_ == 2516) { return (java.lang.Integer) hugeOneof_; @@ -201852,10 +227509,19 @@ public int getOneof2516() { } public static final int ONEOF_2517_FIELD_NUMBER = 2517; + /** + * int32 oneof_2517 = 2517; + * @return Whether the oneof2517 field is set. + */ + @java.lang.Override + public boolean hasOneof2517() { + return hugeOneofCase_ == 2517; + } /** * int32 oneof_2517 = 2517; * @return The oneof2517. */ + @java.lang.Override public int getOneof2517() { if (hugeOneofCase_ == 2517) { return (java.lang.Integer) hugeOneof_; @@ -201864,10 +227530,19 @@ public int getOneof2517() { } public static final int ONEOF_2518_FIELD_NUMBER = 2518; + /** + * int32 oneof_2518 = 2518; + * @return Whether the oneof2518 field is set. + */ + @java.lang.Override + public boolean hasOneof2518() { + return hugeOneofCase_ == 2518; + } /** * int32 oneof_2518 = 2518; * @return The oneof2518. */ + @java.lang.Override public int getOneof2518() { if (hugeOneofCase_ == 2518) { return (java.lang.Integer) hugeOneof_; @@ -201876,10 +227551,19 @@ public int getOneof2518() { } public static final int ONEOF_2519_FIELD_NUMBER = 2519; + /** + * int32 oneof_2519 = 2519; + * @return Whether the oneof2519 field is set. + */ + @java.lang.Override + public boolean hasOneof2519() { + return hugeOneofCase_ == 2519; + } /** * int32 oneof_2519 = 2519; * @return The oneof2519. */ + @java.lang.Override public int getOneof2519() { if (hugeOneofCase_ == 2519) { return (java.lang.Integer) hugeOneof_; @@ -201888,22 +227572,40 @@ public int getOneof2519() { } public static final int ONEOF_2520_FIELD_NUMBER = 2520; + /** + * int32 oneof_2520 = 2520; + * @return Whether the oneof2520 field is set. + */ + @java.lang.Override + public boolean hasOneof2520() { + return hugeOneofCase_ == 2520; + } /** * int32 oneof_2520 = 2520; * @return The oneof2520. */ + @java.lang.Override public int getOneof2520() { if (hugeOneofCase_ == 2520) { return (java.lang.Integer) hugeOneof_; } return 0; } - - public static final int ONEOF_2521_FIELD_NUMBER = 2521; + + public static final int ONEOF_2521_FIELD_NUMBER = 2521; + /** + * int32 oneof_2521 = 2521; + * @return Whether the oneof2521 field is set. + */ + @java.lang.Override + public boolean hasOneof2521() { + return hugeOneofCase_ == 2521; + } /** * int32 oneof_2521 = 2521; * @return The oneof2521. */ + @java.lang.Override public int getOneof2521() { if (hugeOneofCase_ == 2521) { return (java.lang.Integer) hugeOneof_; @@ -201912,10 +227614,19 @@ public int getOneof2521() { } public static final int ONEOF_2522_FIELD_NUMBER = 2522; + /** + * int32 oneof_2522 = 2522; + * @return Whether the oneof2522 field is set. + */ + @java.lang.Override + public boolean hasOneof2522() { + return hugeOneofCase_ == 2522; + } /** * int32 oneof_2522 = 2522; * @return The oneof2522. */ + @java.lang.Override public int getOneof2522() { if (hugeOneofCase_ == 2522) { return (java.lang.Integer) hugeOneof_; @@ -201924,10 +227635,19 @@ public int getOneof2522() { } public static final int ONEOF_2523_FIELD_NUMBER = 2523; + /** + * int32 oneof_2523 = 2523; + * @return Whether the oneof2523 field is set. + */ + @java.lang.Override + public boolean hasOneof2523() { + return hugeOneofCase_ == 2523; + } /** * int32 oneof_2523 = 2523; * @return The oneof2523. */ + @java.lang.Override public int getOneof2523() { if (hugeOneofCase_ == 2523) { return (java.lang.Integer) hugeOneof_; @@ -201936,10 +227656,19 @@ public int getOneof2523() { } public static final int ONEOF_2524_FIELD_NUMBER = 2524; + /** + * int32 oneof_2524 = 2524; + * @return Whether the oneof2524 field is set. + */ + @java.lang.Override + public boolean hasOneof2524() { + return hugeOneofCase_ == 2524; + } /** * int32 oneof_2524 = 2524; * @return The oneof2524. */ + @java.lang.Override public int getOneof2524() { if (hugeOneofCase_ == 2524) { return (java.lang.Integer) hugeOneof_; @@ -201948,10 +227677,19 @@ public int getOneof2524() { } public static final int ONEOF_2525_FIELD_NUMBER = 2525; + /** + * int32 oneof_2525 = 2525; + * @return Whether the oneof2525 field is set. + */ + @java.lang.Override + public boolean hasOneof2525() { + return hugeOneofCase_ == 2525; + } /** * int32 oneof_2525 = 2525; * @return The oneof2525. */ + @java.lang.Override public int getOneof2525() { if (hugeOneofCase_ == 2525) { return (java.lang.Integer) hugeOneof_; @@ -201960,10 +227698,19 @@ public int getOneof2525() { } public static final int ONEOF_2526_FIELD_NUMBER = 2526; + /** + * int32 oneof_2526 = 2526; + * @return Whether the oneof2526 field is set. + */ + @java.lang.Override + public boolean hasOneof2526() { + return hugeOneofCase_ == 2526; + } /** * int32 oneof_2526 = 2526; * @return The oneof2526. */ + @java.lang.Override public int getOneof2526() { if (hugeOneofCase_ == 2526) { return (java.lang.Integer) hugeOneof_; @@ -201972,10 +227719,19 @@ public int getOneof2526() { } public static final int ONEOF_2527_FIELD_NUMBER = 2527; + /** + * int32 oneof_2527 = 2527; + * @return Whether the oneof2527 field is set. + */ + @java.lang.Override + public boolean hasOneof2527() { + return hugeOneofCase_ == 2527; + } /** * int32 oneof_2527 = 2527; * @return The oneof2527. */ + @java.lang.Override public int getOneof2527() { if (hugeOneofCase_ == 2527) { return (java.lang.Integer) hugeOneof_; @@ -201984,10 +227740,19 @@ public int getOneof2527() { } public static final int ONEOF_2528_FIELD_NUMBER = 2528; + /** + * int32 oneof_2528 = 2528; + * @return Whether the oneof2528 field is set. + */ + @java.lang.Override + public boolean hasOneof2528() { + return hugeOneofCase_ == 2528; + } /** * int32 oneof_2528 = 2528; * @return The oneof2528. */ + @java.lang.Override public int getOneof2528() { if (hugeOneofCase_ == 2528) { return (java.lang.Integer) hugeOneof_; @@ -201996,10 +227761,19 @@ public int getOneof2528() { } public static final int ONEOF_2529_FIELD_NUMBER = 2529; + /** + * int32 oneof_2529 = 2529; + * @return Whether the oneof2529 field is set. + */ + @java.lang.Override + public boolean hasOneof2529() { + return hugeOneofCase_ == 2529; + } /** * int32 oneof_2529 = 2529; * @return The oneof2529. */ + @java.lang.Override public int getOneof2529() { if (hugeOneofCase_ == 2529) { return (java.lang.Integer) hugeOneof_; @@ -202008,10 +227782,19 @@ public int getOneof2529() { } public static final int ONEOF_2530_FIELD_NUMBER = 2530; + /** + * int32 oneof_2530 = 2530; + * @return Whether the oneof2530 field is set. + */ + @java.lang.Override + public boolean hasOneof2530() { + return hugeOneofCase_ == 2530; + } /** * int32 oneof_2530 = 2530; * @return The oneof2530. */ + @java.lang.Override public int getOneof2530() { if (hugeOneofCase_ == 2530) { return (java.lang.Integer) hugeOneof_; @@ -202020,10 +227803,19 @@ public int getOneof2530() { } public static final int ONEOF_2531_FIELD_NUMBER = 2531; + /** + * int32 oneof_2531 = 2531; + * @return Whether the oneof2531 field is set. + */ + @java.lang.Override + public boolean hasOneof2531() { + return hugeOneofCase_ == 2531; + } /** * int32 oneof_2531 = 2531; * @return The oneof2531. */ + @java.lang.Override public int getOneof2531() { if (hugeOneofCase_ == 2531) { return (java.lang.Integer) hugeOneof_; @@ -202032,10 +227824,19 @@ public int getOneof2531() { } public static final int ONEOF_2532_FIELD_NUMBER = 2532; + /** + * int32 oneof_2532 = 2532; + * @return Whether the oneof2532 field is set. + */ + @java.lang.Override + public boolean hasOneof2532() { + return hugeOneofCase_ == 2532; + } /** * int32 oneof_2532 = 2532; * @return The oneof2532. */ + @java.lang.Override public int getOneof2532() { if (hugeOneofCase_ == 2532) { return (java.lang.Integer) hugeOneof_; @@ -202044,10 +227845,19 @@ public int getOneof2532() { } public static final int ONEOF_2533_FIELD_NUMBER = 2533; + /** + * int32 oneof_2533 = 2533; + * @return Whether the oneof2533 field is set. + */ + @java.lang.Override + public boolean hasOneof2533() { + return hugeOneofCase_ == 2533; + } /** * int32 oneof_2533 = 2533; * @return The oneof2533. */ + @java.lang.Override public int getOneof2533() { if (hugeOneofCase_ == 2533) { return (java.lang.Integer) hugeOneof_; @@ -202056,10 +227866,19 @@ public int getOneof2533() { } public static final int ONEOF_2534_FIELD_NUMBER = 2534; + /** + * int32 oneof_2534 = 2534; + * @return Whether the oneof2534 field is set. + */ + @java.lang.Override + public boolean hasOneof2534() { + return hugeOneofCase_ == 2534; + } /** * int32 oneof_2534 = 2534; * @return The oneof2534. */ + @java.lang.Override public int getOneof2534() { if (hugeOneofCase_ == 2534) { return (java.lang.Integer) hugeOneof_; @@ -202068,10 +227887,19 @@ public int getOneof2534() { } public static final int ONEOF_2535_FIELD_NUMBER = 2535; + /** + * int32 oneof_2535 = 2535; + * @return Whether the oneof2535 field is set. + */ + @java.lang.Override + public boolean hasOneof2535() { + return hugeOneofCase_ == 2535; + } /** * int32 oneof_2535 = 2535; * @return The oneof2535. */ + @java.lang.Override public int getOneof2535() { if (hugeOneofCase_ == 2535) { return (java.lang.Integer) hugeOneof_; @@ -202080,10 +227908,19 @@ public int getOneof2535() { } public static final int ONEOF_2536_FIELD_NUMBER = 2536; + /** + * int32 oneof_2536 = 2536; + * @return Whether the oneof2536 field is set. + */ + @java.lang.Override + public boolean hasOneof2536() { + return hugeOneofCase_ == 2536; + } /** * int32 oneof_2536 = 2536; * @return The oneof2536. */ + @java.lang.Override public int getOneof2536() { if (hugeOneofCase_ == 2536) { return (java.lang.Integer) hugeOneof_; @@ -202092,10 +227929,19 @@ public int getOneof2536() { } public static final int ONEOF_2537_FIELD_NUMBER = 2537; + /** + * int32 oneof_2537 = 2537; + * @return Whether the oneof2537 field is set. + */ + @java.lang.Override + public boolean hasOneof2537() { + return hugeOneofCase_ == 2537; + } /** * int32 oneof_2537 = 2537; * @return The oneof2537. */ + @java.lang.Override public int getOneof2537() { if (hugeOneofCase_ == 2537) { return (java.lang.Integer) hugeOneof_; @@ -202104,10 +227950,19 @@ public int getOneof2537() { } public static final int ONEOF_2538_FIELD_NUMBER = 2538; + /** + * int32 oneof_2538 = 2538; + * @return Whether the oneof2538 field is set. + */ + @java.lang.Override + public boolean hasOneof2538() { + return hugeOneofCase_ == 2538; + } /** * int32 oneof_2538 = 2538; * @return The oneof2538. */ + @java.lang.Override public int getOneof2538() { if (hugeOneofCase_ == 2538) { return (java.lang.Integer) hugeOneof_; @@ -202116,10 +227971,19 @@ public int getOneof2538() { } public static final int ONEOF_2539_FIELD_NUMBER = 2539; + /** + * int32 oneof_2539 = 2539; + * @return Whether the oneof2539 field is set. + */ + @java.lang.Override + public boolean hasOneof2539() { + return hugeOneofCase_ == 2539; + } /** * int32 oneof_2539 = 2539; * @return The oneof2539. */ + @java.lang.Override public int getOneof2539() { if (hugeOneofCase_ == 2539) { return (java.lang.Integer) hugeOneof_; @@ -202128,10 +227992,19 @@ public int getOneof2539() { } public static final int ONEOF_2540_FIELD_NUMBER = 2540; + /** + * int32 oneof_2540 = 2540; + * @return Whether the oneof2540 field is set. + */ + @java.lang.Override + public boolean hasOneof2540() { + return hugeOneofCase_ == 2540; + } /** * int32 oneof_2540 = 2540; * @return The oneof2540. */ + @java.lang.Override public int getOneof2540() { if (hugeOneofCase_ == 2540) { return (java.lang.Integer) hugeOneof_; @@ -202140,10 +228013,19 @@ public int getOneof2540() { } public static final int ONEOF_2541_FIELD_NUMBER = 2541; + /** + * int32 oneof_2541 = 2541; + * @return Whether the oneof2541 field is set. + */ + @java.lang.Override + public boolean hasOneof2541() { + return hugeOneofCase_ == 2541; + } /** * int32 oneof_2541 = 2541; * @return The oneof2541. */ + @java.lang.Override public int getOneof2541() { if (hugeOneofCase_ == 2541) { return (java.lang.Integer) hugeOneof_; @@ -202152,10 +228034,19 @@ public int getOneof2541() { } public static final int ONEOF_2542_FIELD_NUMBER = 2542; + /** + * int32 oneof_2542 = 2542; + * @return Whether the oneof2542 field is set. + */ + @java.lang.Override + public boolean hasOneof2542() { + return hugeOneofCase_ == 2542; + } /** * int32 oneof_2542 = 2542; * @return The oneof2542. */ + @java.lang.Override public int getOneof2542() { if (hugeOneofCase_ == 2542) { return (java.lang.Integer) hugeOneof_; @@ -202164,10 +228055,19 @@ public int getOneof2542() { } public static final int ONEOF_2543_FIELD_NUMBER = 2543; + /** + * int32 oneof_2543 = 2543; + * @return Whether the oneof2543 field is set. + */ + @java.lang.Override + public boolean hasOneof2543() { + return hugeOneofCase_ == 2543; + } /** * int32 oneof_2543 = 2543; * @return The oneof2543. */ + @java.lang.Override public int getOneof2543() { if (hugeOneofCase_ == 2543) { return (java.lang.Integer) hugeOneof_; @@ -202176,10 +228076,19 @@ public int getOneof2543() { } public static final int ONEOF_2544_FIELD_NUMBER = 2544; + /** + * int32 oneof_2544 = 2544; + * @return Whether the oneof2544 field is set. + */ + @java.lang.Override + public boolean hasOneof2544() { + return hugeOneofCase_ == 2544; + } /** * int32 oneof_2544 = 2544; * @return The oneof2544. */ + @java.lang.Override public int getOneof2544() { if (hugeOneofCase_ == 2544) { return (java.lang.Integer) hugeOneof_; @@ -202188,10 +228097,19 @@ public int getOneof2544() { } public static final int ONEOF_2545_FIELD_NUMBER = 2545; + /** + * int32 oneof_2545 = 2545; + * @return Whether the oneof2545 field is set. + */ + @java.lang.Override + public boolean hasOneof2545() { + return hugeOneofCase_ == 2545; + } /** * int32 oneof_2545 = 2545; * @return The oneof2545. */ + @java.lang.Override public int getOneof2545() { if (hugeOneofCase_ == 2545) { return (java.lang.Integer) hugeOneof_; @@ -202200,10 +228118,19 @@ public int getOneof2545() { } public static final int ONEOF_2546_FIELD_NUMBER = 2546; + /** + * int32 oneof_2546 = 2546; + * @return Whether the oneof2546 field is set. + */ + @java.lang.Override + public boolean hasOneof2546() { + return hugeOneofCase_ == 2546; + } /** * int32 oneof_2546 = 2546; * @return The oneof2546. */ + @java.lang.Override public int getOneof2546() { if (hugeOneofCase_ == 2546) { return (java.lang.Integer) hugeOneof_; @@ -202212,10 +228139,19 @@ public int getOneof2546() { } public static final int ONEOF_2547_FIELD_NUMBER = 2547; + /** + * int32 oneof_2547 = 2547; + * @return Whether the oneof2547 field is set. + */ + @java.lang.Override + public boolean hasOneof2547() { + return hugeOneofCase_ == 2547; + } /** * int32 oneof_2547 = 2547; * @return The oneof2547. */ + @java.lang.Override public int getOneof2547() { if (hugeOneofCase_ == 2547) { return (java.lang.Integer) hugeOneof_; @@ -202224,10 +228160,19 @@ public int getOneof2547() { } public static final int ONEOF_2548_FIELD_NUMBER = 2548; + /** + * int32 oneof_2548 = 2548; + * @return Whether the oneof2548 field is set. + */ + @java.lang.Override + public boolean hasOneof2548() { + return hugeOneofCase_ == 2548; + } /** * int32 oneof_2548 = 2548; * @return The oneof2548. */ + @java.lang.Override public int getOneof2548() { if (hugeOneofCase_ == 2548) { return (java.lang.Integer) hugeOneof_; @@ -202236,10 +228181,19 @@ public int getOneof2548() { } public static final int ONEOF_2549_FIELD_NUMBER = 2549; + /** + * int32 oneof_2549 = 2549; + * @return Whether the oneof2549 field is set. + */ + @java.lang.Override + public boolean hasOneof2549() { + return hugeOneofCase_ == 2549; + } /** * int32 oneof_2549 = 2549; * @return The oneof2549. */ + @java.lang.Override public int getOneof2549() { if (hugeOneofCase_ == 2549) { return (java.lang.Integer) hugeOneof_; @@ -202248,10 +228202,19 @@ public int getOneof2549() { } public static final int ONEOF_2550_FIELD_NUMBER = 2550; + /** + * int32 oneof_2550 = 2550; + * @return Whether the oneof2550 field is set. + */ + @java.lang.Override + public boolean hasOneof2550() { + return hugeOneofCase_ == 2550; + } /** * int32 oneof_2550 = 2550; * @return The oneof2550. */ + @java.lang.Override public int getOneof2550() { if (hugeOneofCase_ == 2550) { return (java.lang.Integer) hugeOneof_; @@ -202260,10 +228223,19 @@ public int getOneof2550() { } public static final int ONEOF_2551_FIELD_NUMBER = 2551; + /** + * int32 oneof_2551 = 2551; + * @return Whether the oneof2551 field is set. + */ + @java.lang.Override + public boolean hasOneof2551() { + return hugeOneofCase_ == 2551; + } /** * int32 oneof_2551 = 2551; * @return The oneof2551. */ + @java.lang.Override public int getOneof2551() { if (hugeOneofCase_ == 2551) { return (java.lang.Integer) hugeOneof_; @@ -202272,10 +228244,19 @@ public int getOneof2551() { } public static final int ONEOF_2552_FIELD_NUMBER = 2552; + /** + * int32 oneof_2552 = 2552; + * @return Whether the oneof2552 field is set. + */ + @java.lang.Override + public boolean hasOneof2552() { + return hugeOneofCase_ == 2552; + } /** * int32 oneof_2552 = 2552; * @return The oneof2552. */ + @java.lang.Override public int getOneof2552() { if (hugeOneofCase_ == 2552) { return (java.lang.Integer) hugeOneof_; @@ -202284,10 +228265,19 @@ public int getOneof2552() { } public static final int ONEOF_2553_FIELD_NUMBER = 2553; + /** + * int32 oneof_2553 = 2553; + * @return Whether the oneof2553 field is set. + */ + @java.lang.Override + public boolean hasOneof2553() { + return hugeOneofCase_ == 2553; + } /** * int32 oneof_2553 = 2553; * @return The oneof2553. */ + @java.lang.Override public int getOneof2553() { if (hugeOneofCase_ == 2553) { return (java.lang.Integer) hugeOneof_; @@ -202296,10 +228286,19 @@ public int getOneof2553() { } public static final int ONEOF_2554_FIELD_NUMBER = 2554; + /** + * int32 oneof_2554 = 2554; + * @return Whether the oneof2554 field is set. + */ + @java.lang.Override + public boolean hasOneof2554() { + return hugeOneofCase_ == 2554; + } /** * int32 oneof_2554 = 2554; * @return The oneof2554. */ + @java.lang.Override public int getOneof2554() { if (hugeOneofCase_ == 2554) { return (java.lang.Integer) hugeOneof_; @@ -202308,10 +228307,19 @@ public int getOneof2554() { } public static final int ONEOF_2555_FIELD_NUMBER = 2555; + /** + * int32 oneof_2555 = 2555; + * @return Whether the oneof2555 field is set. + */ + @java.lang.Override + public boolean hasOneof2555() { + return hugeOneofCase_ == 2555; + } /** * int32 oneof_2555 = 2555; * @return The oneof2555. */ + @java.lang.Override public int getOneof2555() { if (hugeOneofCase_ == 2555) { return (java.lang.Integer) hugeOneof_; @@ -202320,10 +228328,19 @@ public int getOneof2555() { } public static final int ONEOF_2556_FIELD_NUMBER = 2556; + /** + * int32 oneof_2556 = 2556; + * @return Whether the oneof2556 field is set. + */ + @java.lang.Override + public boolean hasOneof2556() { + return hugeOneofCase_ == 2556; + } /** * int32 oneof_2556 = 2556; * @return The oneof2556. */ + @java.lang.Override public int getOneof2556() { if (hugeOneofCase_ == 2556) { return (java.lang.Integer) hugeOneof_; @@ -202332,10 +228349,19 @@ public int getOneof2556() { } public static final int ONEOF_2557_FIELD_NUMBER = 2557; + /** + * int32 oneof_2557 = 2557; + * @return Whether the oneof2557 field is set. + */ + @java.lang.Override + public boolean hasOneof2557() { + return hugeOneofCase_ == 2557; + } /** * int32 oneof_2557 = 2557; * @return The oneof2557. */ + @java.lang.Override public int getOneof2557() { if (hugeOneofCase_ == 2557) { return (java.lang.Integer) hugeOneof_; @@ -202344,10 +228370,19 @@ public int getOneof2557() { } public static final int ONEOF_2558_FIELD_NUMBER = 2558; + /** + * int32 oneof_2558 = 2558; + * @return Whether the oneof2558 field is set. + */ + @java.lang.Override + public boolean hasOneof2558() { + return hugeOneofCase_ == 2558; + } /** * int32 oneof_2558 = 2558; * @return The oneof2558. */ + @java.lang.Override public int getOneof2558() { if (hugeOneofCase_ == 2558) { return (java.lang.Integer) hugeOneof_; @@ -202356,10 +228391,19 @@ public int getOneof2558() { } public static final int ONEOF_2559_FIELD_NUMBER = 2559; + /** + * int32 oneof_2559 = 2559; + * @return Whether the oneof2559 field is set. + */ + @java.lang.Override + public boolean hasOneof2559() { + return hugeOneofCase_ == 2559; + } /** * int32 oneof_2559 = 2559; * @return The oneof2559. */ + @java.lang.Override public int getOneof2559() { if (hugeOneofCase_ == 2559) { return (java.lang.Integer) hugeOneof_; @@ -202368,10 +228412,19 @@ public int getOneof2559() { } public static final int ONEOF_2560_FIELD_NUMBER = 2560; + /** + * int32 oneof_2560 = 2560; + * @return Whether the oneof2560 field is set. + */ + @java.lang.Override + public boolean hasOneof2560() { + return hugeOneofCase_ == 2560; + } /** * int32 oneof_2560 = 2560; * @return The oneof2560. */ + @java.lang.Override public int getOneof2560() { if (hugeOneofCase_ == 2560) { return (java.lang.Integer) hugeOneof_; @@ -202380,10 +228433,19 @@ public int getOneof2560() { } public static final int ONEOF_2561_FIELD_NUMBER = 2561; + /** + * int32 oneof_2561 = 2561; + * @return Whether the oneof2561 field is set. + */ + @java.lang.Override + public boolean hasOneof2561() { + return hugeOneofCase_ == 2561; + } /** * int32 oneof_2561 = 2561; * @return The oneof2561. */ + @java.lang.Override public int getOneof2561() { if (hugeOneofCase_ == 2561) { return (java.lang.Integer) hugeOneof_; @@ -202392,10 +228454,19 @@ public int getOneof2561() { } public static final int ONEOF_2562_FIELD_NUMBER = 2562; + /** + * int32 oneof_2562 = 2562; + * @return Whether the oneof2562 field is set. + */ + @java.lang.Override + public boolean hasOneof2562() { + return hugeOneofCase_ == 2562; + } /** * int32 oneof_2562 = 2562; * @return The oneof2562. */ + @java.lang.Override public int getOneof2562() { if (hugeOneofCase_ == 2562) { return (java.lang.Integer) hugeOneof_; @@ -202404,10 +228475,19 @@ public int getOneof2562() { } public static final int ONEOF_2563_FIELD_NUMBER = 2563; + /** + * int32 oneof_2563 = 2563; + * @return Whether the oneof2563 field is set. + */ + @java.lang.Override + public boolean hasOneof2563() { + return hugeOneofCase_ == 2563; + } /** * int32 oneof_2563 = 2563; * @return The oneof2563. */ + @java.lang.Override public int getOneof2563() { if (hugeOneofCase_ == 2563) { return (java.lang.Integer) hugeOneof_; @@ -202416,10 +228496,19 @@ public int getOneof2563() { } public static final int ONEOF_2564_FIELD_NUMBER = 2564; + /** + * int32 oneof_2564 = 2564; + * @return Whether the oneof2564 field is set. + */ + @java.lang.Override + public boolean hasOneof2564() { + return hugeOneofCase_ == 2564; + } /** * int32 oneof_2564 = 2564; * @return The oneof2564. */ + @java.lang.Override public int getOneof2564() { if (hugeOneofCase_ == 2564) { return (java.lang.Integer) hugeOneof_; @@ -202428,10 +228517,19 @@ public int getOneof2564() { } public static final int ONEOF_2565_FIELD_NUMBER = 2565; + /** + * int32 oneof_2565 = 2565; + * @return Whether the oneof2565 field is set. + */ + @java.lang.Override + public boolean hasOneof2565() { + return hugeOneofCase_ == 2565; + } /** * int32 oneof_2565 = 2565; * @return The oneof2565. */ + @java.lang.Override public int getOneof2565() { if (hugeOneofCase_ == 2565) { return (java.lang.Integer) hugeOneof_; @@ -202440,10 +228538,19 @@ public int getOneof2565() { } public static final int ONEOF_2566_FIELD_NUMBER = 2566; + /** + * int32 oneof_2566 = 2566; + * @return Whether the oneof2566 field is set. + */ + @java.lang.Override + public boolean hasOneof2566() { + return hugeOneofCase_ == 2566; + } /** * int32 oneof_2566 = 2566; * @return The oneof2566. */ + @java.lang.Override public int getOneof2566() { if (hugeOneofCase_ == 2566) { return (java.lang.Integer) hugeOneof_; @@ -202452,10 +228559,19 @@ public int getOneof2566() { } public static final int ONEOF_2567_FIELD_NUMBER = 2567; + /** + * int32 oneof_2567 = 2567; + * @return Whether the oneof2567 field is set. + */ + @java.lang.Override + public boolean hasOneof2567() { + return hugeOneofCase_ == 2567; + } /** * int32 oneof_2567 = 2567; * @return The oneof2567. */ + @java.lang.Override public int getOneof2567() { if (hugeOneofCase_ == 2567) { return (java.lang.Integer) hugeOneof_; @@ -202464,10 +228580,19 @@ public int getOneof2567() { } public static final int ONEOF_2568_FIELD_NUMBER = 2568; + /** + * int32 oneof_2568 = 2568; + * @return Whether the oneof2568 field is set. + */ + @java.lang.Override + public boolean hasOneof2568() { + return hugeOneofCase_ == 2568; + } /** * int32 oneof_2568 = 2568; * @return The oneof2568. */ + @java.lang.Override public int getOneof2568() { if (hugeOneofCase_ == 2568) { return (java.lang.Integer) hugeOneof_; @@ -202476,10 +228601,19 @@ public int getOneof2568() { } public static final int ONEOF_2569_FIELD_NUMBER = 2569; + /** + * int32 oneof_2569 = 2569; + * @return Whether the oneof2569 field is set. + */ + @java.lang.Override + public boolean hasOneof2569() { + return hugeOneofCase_ == 2569; + } /** * int32 oneof_2569 = 2569; * @return The oneof2569. */ + @java.lang.Override public int getOneof2569() { if (hugeOneofCase_ == 2569) { return (java.lang.Integer) hugeOneof_; @@ -202488,10 +228622,19 @@ public int getOneof2569() { } public static final int ONEOF_2570_FIELD_NUMBER = 2570; + /** + * int32 oneof_2570 = 2570; + * @return Whether the oneof2570 field is set. + */ + @java.lang.Override + public boolean hasOneof2570() { + return hugeOneofCase_ == 2570; + } /** * int32 oneof_2570 = 2570; * @return The oneof2570. */ + @java.lang.Override public int getOneof2570() { if (hugeOneofCase_ == 2570) { return (java.lang.Integer) hugeOneof_; @@ -202500,10 +228643,19 @@ public int getOneof2570() { } public static final int ONEOF_2571_FIELD_NUMBER = 2571; + /** + * int32 oneof_2571 = 2571; + * @return Whether the oneof2571 field is set. + */ + @java.lang.Override + public boolean hasOneof2571() { + return hugeOneofCase_ == 2571; + } /** * int32 oneof_2571 = 2571; * @return The oneof2571. */ + @java.lang.Override public int getOneof2571() { if (hugeOneofCase_ == 2571) { return (java.lang.Integer) hugeOneof_; @@ -202512,10 +228664,19 @@ public int getOneof2571() { } public static final int ONEOF_2572_FIELD_NUMBER = 2572; + /** + * int32 oneof_2572 = 2572; + * @return Whether the oneof2572 field is set. + */ + @java.lang.Override + public boolean hasOneof2572() { + return hugeOneofCase_ == 2572; + } /** * int32 oneof_2572 = 2572; * @return The oneof2572. */ + @java.lang.Override public int getOneof2572() { if (hugeOneofCase_ == 2572) { return (java.lang.Integer) hugeOneof_; @@ -202524,10 +228685,19 @@ public int getOneof2572() { } public static final int ONEOF_2573_FIELD_NUMBER = 2573; + /** + * int32 oneof_2573 = 2573; + * @return Whether the oneof2573 field is set. + */ + @java.lang.Override + public boolean hasOneof2573() { + return hugeOneofCase_ == 2573; + } /** * int32 oneof_2573 = 2573; * @return The oneof2573. */ + @java.lang.Override public int getOneof2573() { if (hugeOneofCase_ == 2573) { return (java.lang.Integer) hugeOneof_; @@ -202536,10 +228706,19 @@ public int getOneof2573() { } public static final int ONEOF_2574_FIELD_NUMBER = 2574; + /** + * int32 oneof_2574 = 2574; + * @return Whether the oneof2574 field is set. + */ + @java.lang.Override + public boolean hasOneof2574() { + return hugeOneofCase_ == 2574; + } /** * int32 oneof_2574 = 2574; * @return The oneof2574. */ + @java.lang.Override public int getOneof2574() { if (hugeOneofCase_ == 2574) { return (java.lang.Integer) hugeOneof_; @@ -202548,10 +228727,19 @@ public int getOneof2574() { } public static final int ONEOF_2575_FIELD_NUMBER = 2575; + /** + * int32 oneof_2575 = 2575; + * @return Whether the oneof2575 field is set. + */ + @java.lang.Override + public boolean hasOneof2575() { + return hugeOneofCase_ == 2575; + } /** * int32 oneof_2575 = 2575; * @return The oneof2575. */ + @java.lang.Override public int getOneof2575() { if (hugeOneofCase_ == 2575) { return (java.lang.Integer) hugeOneof_; @@ -202560,10 +228748,19 @@ public int getOneof2575() { } public static final int ONEOF_2576_FIELD_NUMBER = 2576; + /** + * int32 oneof_2576 = 2576; + * @return Whether the oneof2576 field is set. + */ + @java.lang.Override + public boolean hasOneof2576() { + return hugeOneofCase_ == 2576; + } /** * int32 oneof_2576 = 2576; * @return The oneof2576. */ + @java.lang.Override public int getOneof2576() { if (hugeOneofCase_ == 2576) { return (java.lang.Integer) hugeOneof_; @@ -202572,10 +228769,19 @@ public int getOneof2576() { } public static final int ONEOF_2577_FIELD_NUMBER = 2577; + /** + * int32 oneof_2577 = 2577; + * @return Whether the oneof2577 field is set. + */ + @java.lang.Override + public boolean hasOneof2577() { + return hugeOneofCase_ == 2577; + } /** * int32 oneof_2577 = 2577; * @return The oneof2577. */ + @java.lang.Override public int getOneof2577() { if (hugeOneofCase_ == 2577) { return (java.lang.Integer) hugeOneof_; @@ -202584,10 +228790,19 @@ public int getOneof2577() { } public static final int ONEOF_2578_FIELD_NUMBER = 2578; + /** + * int32 oneof_2578 = 2578; + * @return Whether the oneof2578 field is set. + */ + @java.lang.Override + public boolean hasOneof2578() { + return hugeOneofCase_ == 2578; + } /** * int32 oneof_2578 = 2578; * @return The oneof2578. */ + @java.lang.Override public int getOneof2578() { if (hugeOneofCase_ == 2578) { return (java.lang.Integer) hugeOneof_; @@ -202596,10 +228811,19 @@ public int getOneof2578() { } public static final int ONEOF_2579_FIELD_NUMBER = 2579; + /** + * int32 oneof_2579 = 2579; + * @return Whether the oneof2579 field is set. + */ + @java.lang.Override + public boolean hasOneof2579() { + return hugeOneofCase_ == 2579; + } /** * int32 oneof_2579 = 2579; * @return The oneof2579. */ + @java.lang.Override public int getOneof2579() { if (hugeOneofCase_ == 2579) { return (java.lang.Integer) hugeOneof_; @@ -202608,10 +228832,19 @@ public int getOneof2579() { } public static final int ONEOF_2580_FIELD_NUMBER = 2580; + /** + * int32 oneof_2580 = 2580; + * @return Whether the oneof2580 field is set. + */ + @java.lang.Override + public boolean hasOneof2580() { + return hugeOneofCase_ == 2580; + } /** * int32 oneof_2580 = 2580; * @return The oneof2580. */ + @java.lang.Override public int getOneof2580() { if (hugeOneofCase_ == 2580) { return (java.lang.Integer) hugeOneof_; @@ -202620,10 +228853,19 @@ public int getOneof2580() { } public static final int ONEOF_2581_FIELD_NUMBER = 2581; + /** + * int32 oneof_2581 = 2581; + * @return Whether the oneof2581 field is set. + */ + @java.lang.Override + public boolean hasOneof2581() { + return hugeOneofCase_ == 2581; + } /** * int32 oneof_2581 = 2581; * @return The oneof2581. */ + @java.lang.Override public int getOneof2581() { if (hugeOneofCase_ == 2581) { return (java.lang.Integer) hugeOneof_; @@ -202632,10 +228874,19 @@ public int getOneof2581() { } public static final int ONEOF_2582_FIELD_NUMBER = 2582; + /** + * int32 oneof_2582 = 2582; + * @return Whether the oneof2582 field is set. + */ + @java.lang.Override + public boolean hasOneof2582() { + return hugeOneofCase_ == 2582; + } /** * int32 oneof_2582 = 2582; * @return The oneof2582. */ + @java.lang.Override public int getOneof2582() { if (hugeOneofCase_ == 2582) { return (java.lang.Integer) hugeOneof_; @@ -202644,10 +228895,19 @@ public int getOneof2582() { } public static final int ONEOF_2583_FIELD_NUMBER = 2583; + /** + * int32 oneof_2583 = 2583; + * @return Whether the oneof2583 field is set. + */ + @java.lang.Override + public boolean hasOneof2583() { + return hugeOneofCase_ == 2583; + } /** * int32 oneof_2583 = 2583; * @return The oneof2583. */ + @java.lang.Override public int getOneof2583() { if (hugeOneofCase_ == 2583) { return (java.lang.Integer) hugeOneof_; @@ -202656,10 +228916,19 @@ public int getOneof2583() { } public static final int ONEOF_2584_FIELD_NUMBER = 2584; + /** + * int32 oneof_2584 = 2584; + * @return Whether the oneof2584 field is set. + */ + @java.lang.Override + public boolean hasOneof2584() { + return hugeOneofCase_ == 2584; + } /** * int32 oneof_2584 = 2584; * @return The oneof2584. */ + @java.lang.Override public int getOneof2584() { if (hugeOneofCase_ == 2584) { return (java.lang.Integer) hugeOneof_; @@ -202668,10 +228937,19 @@ public int getOneof2584() { } public static final int ONEOF_2585_FIELD_NUMBER = 2585; + /** + * int32 oneof_2585 = 2585; + * @return Whether the oneof2585 field is set. + */ + @java.lang.Override + public boolean hasOneof2585() { + return hugeOneofCase_ == 2585; + } /** * int32 oneof_2585 = 2585; * @return The oneof2585. */ + @java.lang.Override public int getOneof2585() { if (hugeOneofCase_ == 2585) { return (java.lang.Integer) hugeOneof_; @@ -202680,10 +228958,19 @@ public int getOneof2585() { } public static final int ONEOF_2586_FIELD_NUMBER = 2586; + /** + * int32 oneof_2586 = 2586; + * @return Whether the oneof2586 field is set. + */ + @java.lang.Override + public boolean hasOneof2586() { + return hugeOneofCase_ == 2586; + } /** * int32 oneof_2586 = 2586; * @return The oneof2586. */ + @java.lang.Override public int getOneof2586() { if (hugeOneofCase_ == 2586) { return (java.lang.Integer) hugeOneof_; @@ -202692,10 +228979,19 @@ public int getOneof2586() { } public static final int ONEOF_2587_FIELD_NUMBER = 2587; + /** + * int32 oneof_2587 = 2587; + * @return Whether the oneof2587 field is set. + */ + @java.lang.Override + public boolean hasOneof2587() { + return hugeOneofCase_ == 2587; + } /** * int32 oneof_2587 = 2587; * @return The oneof2587. */ + @java.lang.Override public int getOneof2587() { if (hugeOneofCase_ == 2587) { return (java.lang.Integer) hugeOneof_; @@ -202704,10 +229000,19 @@ public int getOneof2587() { } public static final int ONEOF_2588_FIELD_NUMBER = 2588; + /** + * int32 oneof_2588 = 2588; + * @return Whether the oneof2588 field is set. + */ + @java.lang.Override + public boolean hasOneof2588() { + return hugeOneofCase_ == 2588; + } /** * int32 oneof_2588 = 2588; * @return The oneof2588. */ + @java.lang.Override public int getOneof2588() { if (hugeOneofCase_ == 2588) { return (java.lang.Integer) hugeOneof_; @@ -202716,10 +229021,19 @@ public int getOneof2588() { } public static final int ONEOF_2589_FIELD_NUMBER = 2589; + /** + * int32 oneof_2589 = 2589; + * @return Whether the oneof2589 field is set. + */ + @java.lang.Override + public boolean hasOneof2589() { + return hugeOneofCase_ == 2589; + } /** * int32 oneof_2589 = 2589; * @return The oneof2589. */ + @java.lang.Override public int getOneof2589() { if (hugeOneofCase_ == 2589) { return (java.lang.Integer) hugeOneof_; @@ -202728,10 +229042,19 @@ public int getOneof2589() { } public static final int ONEOF_2590_FIELD_NUMBER = 2590; + /** + * int32 oneof_2590 = 2590; + * @return Whether the oneof2590 field is set. + */ + @java.lang.Override + public boolean hasOneof2590() { + return hugeOneofCase_ == 2590; + } /** * int32 oneof_2590 = 2590; * @return The oneof2590. */ + @java.lang.Override public int getOneof2590() { if (hugeOneofCase_ == 2590) { return (java.lang.Integer) hugeOneof_; @@ -202740,10 +229063,19 @@ public int getOneof2590() { } public static final int ONEOF_2591_FIELD_NUMBER = 2591; + /** + * int32 oneof_2591 = 2591; + * @return Whether the oneof2591 field is set. + */ + @java.lang.Override + public boolean hasOneof2591() { + return hugeOneofCase_ == 2591; + } /** * int32 oneof_2591 = 2591; * @return The oneof2591. */ + @java.lang.Override public int getOneof2591() { if (hugeOneofCase_ == 2591) { return (java.lang.Integer) hugeOneof_; @@ -202752,10 +229084,19 @@ public int getOneof2591() { } public static final int ONEOF_2592_FIELD_NUMBER = 2592; + /** + * int32 oneof_2592 = 2592; + * @return Whether the oneof2592 field is set. + */ + @java.lang.Override + public boolean hasOneof2592() { + return hugeOneofCase_ == 2592; + } /** * int32 oneof_2592 = 2592; * @return The oneof2592. */ + @java.lang.Override public int getOneof2592() { if (hugeOneofCase_ == 2592) { return (java.lang.Integer) hugeOneof_; @@ -202764,10 +229105,19 @@ public int getOneof2592() { } public static final int ONEOF_2593_FIELD_NUMBER = 2593; + /** + * int32 oneof_2593 = 2593; + * @return Whether the oneof2593 field is set. + */ + @java.lang.Override + public boolean hasOneof2593() { + return hugeOneofCase_ == 2593; + } /** * int32 oneof_2593 = 2593; * @return The oneof2593. */ + @java.lang.Override public int getOneof2593() { if (hugeOneofCase_ == 2593) { return (java.lang.Integer) hugeOneof_; @@ -202776,10 +229126,19 @@ public int getOneof2593() { } public static final int ONEOF_2594_FIELD_NUMBER = 2594; + /** + * int32 oneof_2594 = 2594; + * @return Whether the oneof2594 field is set. + */ + @java.lang.Override + public boolean hasOneof2594() { + return hugeOneofCase_ == 2594; + } /** * int32 oneof_2594 = 2594; * @return The oneof2594. */ + @java.lang.Override public int getOneof2594() { if (hugeOneofCase_ == 2594) { return (java.lang.Integer) hugeOneof_; @@ -202788,10 +229147,19 @@ public int getOneof2594() { } public static final int ONEOF_2595_FIELD_NUMBER = 2595; + /** + * int32 oneof_2595 = 2595; + * @return Whether the oneof2595 field is set. + */ + @java.lang.Override + public boolean hasOneof2595() { + return hugeOneofCase_ == 2595; + } /** * int32 oneof_2595 = 2595; * @return The oneof2595. */ + @java.lang.Override public int getOneof2595() { if (hugeOneofCase_ == 2595) { return (java.lang.Integer) hugeOneof_; @@ -202800,10 +229168,19 @@ public int getOneof2595() { } public static final int ONEOF_2596_FIELD_NUMBER = 2596; + /** + * int32 oneof_2596 = 2596; + * @return Whether the oneof2596 field is set. + */ + @java.lang.Override + public boolean hasOneof2596() { + return hugeOneofCase_ == 2596; + } /** * int32 oneof_2596 = 2596; * @return The oneof2596. */ + @java.lang.Override public int getOneof2596() { if (hugeOneofCase_ == 2596) { return (java.lang.Integer) hugeOneof_; @@ -202812,10 +229189,19 @@ public int getOneof2596() { } public static final int ONEOF_2597_FIELD_NUMBER = 2597; + /** + * int32 oneof_2597 = 2597; + * @return Whether the oneof2597 field is set. + */ + @java.lang.Override + public boolean hasOneof2597() { + return hugeOneofCase_ == 2597; + } /** * int32 oneof_2597 = 2597; * @return The oneof2597. */ + @java.lang.Override public int getOneof2597() { if (hugeOneofCase_ == 2597) { return (java.lang.Integer) hugeOneof_; @@ -202824,10 +229210,19 @@ public int getOneof2597() { } public static final int ONEOF_2598_FIELD_NUMBER = 2598; + /** + * int32 oneof_2598 = 2598; + * @return Whether the oneof2598 field is set. + */ + @java.lang.Override + public boolean hasOneof2598() { + return hugeOneofCase_ == 2598; + } /** * int32 oneof_2598 = 2598; * @return The oneof2598. */ + @java.lang.Override public int getOneof2598() { if (hugeOneofCase_ == 2598) { return (java.lang.Integer) hugeOneof_; @@ -202836,10 +229231,19 @@ public int getOneof2598() { } public static final int ONEOF_2599_FIELD_NUMBER = 2599; + /** + * int32 oneof_2599 = 2599; + * @return Whether the oneof2599 field is set. + */ + @java.lang.Override + public boolean hasOneof2599() { + return hugeOneofCase_ == 2599; + } /** * int32 oneof_2599 = 2599; * @return The oneof2599. */ + @java.lang.Override public int getOneof2599() { if (hugeOneofCase_ == 2599) { return (java.lang.Integer) hugeOneof_; @@ -202848,10 +229252,19 @@ public int getOneof2599() { } public static final int ONEOF_2600_FIELD_NUMBER = 2600; + /** + * int32 oneof_2600 = 2600; + * @return Whether the oneof2600 field is set. + */ + @java.lang.Override + public boolean hasOneof2600() { + return hugeOneofCase_ == 2600; + } /** * int32 oneof_2600 = 2600; * @return The oneof2600. */ + @java.lang.Override public int getOneof2600() { if (hugeOneofCase_ == 2600) { return (java.lang.Integer) hugeOneof_; @@ -202860,10 +229273,19 @@ public int getOneof2600() { } public static final int ONEOF_2601_FIELD_NUMBER = 2601; + /** + * int32 oneof_2601 = 2601; + * @return Whether the oneof2601 field is set. + */ + @java.lang.Override + public boolean hasOneof2601() { + return hugeOneofCase_ == 2601; + } /** * int32 oneof_2601 = 2601; * @return The oneof2601. */ + @java.lang.Override public int getOneof2601() { if (hugeOneofCase_ == 2601) { return (java.lang.Integer) hugeOneof_; @@ -202872,10 +229294,19 @@ public int getOneof2601() { } public static final int ONEOF_2602_FIELD_NUMBER = 2602; + /** + * int32 oneof_2602 = 2602; + * @return Whether the oneof2602 field is set. + */ + @java.lang.Override + public boolean hasOneof2602() { + return hugeOneofCase_ == 2602; + } /** * int32 oneof_2602 = 2602; * @return The oneof2602. */ + @java.lang.Override public int getOneof2602() { if (hugeOneofCase_ == 2602) { return (java.lang.Integer) hugeOneof_; @@ -202884,10 +229315,19 @@ public int getOneof2602() { } public static final int ONEOF_2603_FIELD_NUMBER = 2603; + /** + * int32 oneof_2603 = 2603; + * @return Whether the oneof2603 field is set. + */ + @java.lang.Override + public boolean hasOneof2603() { + return hugeOneofCase_ == 2603; + } /** * int32 oneof_2603 = 2603; * @return The oneof2603. */ + @java.lang.Override public int getOneof2603() { if (hugeOneofCase_ == 2603) { return (java.lang.Integer) hugeOneof_; @@ -202896,10 +229336,19 @@ public int getOneof2603() { } public static final int ONEOF_2604_FIELD_NUMBER = 2604; + /** + * int32 oneof_2604 = 2604; + * @return Whether the oneof2604 field is set. + */ + @java.lang.Override + public boolean hasOneof2604() { + return hugeOneofCase_ == 2604; + } /** * int32 oneof_2604 = 2604; * @return The oneof2604. */ + @java.lang.Override public int getOneof2604() { if (hugeOneofCase_ == 2604) { return (java.lang.Integer) hugeOneof_; @@ -202908,10 +229357,19 @@ public int getOneof2604() { } public static final int ONEOF_2605_FIELD_NUMBER = 2605; + /** + * int32 oneof_2605 = 2605; + * @return Whether the oneof2605 field is set. + */ + @java.lang.Override + public boolean hasOneof2605() { + return hugeOneofCase_ == 2605; + } /** * int32 oneof_2605 = 2605; * @return The oneof2605. */ + @java.lang.Override public int getOneof2605() { if (hugeOneofCase_ == 2605) { return (java.lang.Integer) hugeOneof_; @@ -202920,10 +229378,19 @@ public int getOneof2605() { } public static final int ONEOF_2606_FIELD_NUMBER = 2606; + /** + * int32 oneof_2606 = 2606; + * @return Whether the oneof2606 field is set. + */ + @java.lang.Override + public boolean hasOneof2606() { + return hugeOneofCase_ == 2606; + } /** * int32 oneof_2606 = 2606; * @return The oneof2606. */ + @java.lang.Override public int getOneof2606() { if (hugeOneofCase_ == 2606) { return (java.lang.Integer) hugeOneof_; @@ -202932,10 +229399,19 @@ public int getOneof2606() { } public static final int ONEOF_2607_FIELD_NUMBER = 2607; + /** + * int32 oneof_2607 = 2607; + * @return Whether the oneof2607 field is set. + */ + @java.lang.Override + public boolean hasOneof2607() { + return hugeOneofCase_ == 2607; + } /** * int32 oneof_2607 = 2607; * @return The oneof2607. */ + @java.lang.Override public int getOneof2607() { if (hugeOneofCase_ == 2607) { return (java.lang.Integer) hugeOneof_; @@ -202944,10 +229420,19 @@ public int getOneof2607() { } public static final int ONEOF_2608_FIELD_NUMBER = 2608; + /** + * int32 oneof_2608 = 2608; + * @return Whether the oneof2608 field is set. + */ + @java.lang.Override + public boolean hasOneof2608() { + return hugeOneofCase_ == 2608; + } /** * int32 oneof_2608 = 2608; * @return The oneof2608. */ + @java.lang.Override public int getOneof2608() { if (hugeOneofCase_ == 2608) { return (java.lang.Integer) hugeOneof_; @@ -202956,10 +229441,19 @@ public int getOneof2608() { } public static final int ONEOF_2609_FIELD_NUMBER = 2609; + /** + * int32 oneof_2609 = 2609; + * @return Whether the oneof2609 field is set. + */ + @java.lang.Override + public boolean hasOneof2609() { + return hugeOneofCase_ == 2609; + } /** * int32 oneof_2609 = 2609; * @return The oneof2609. */ + @java.lang.Override public int getOneof2609() { if (hugeOneofCase_ == 2609) { return (java.lang.Integer) hugeOneof_; @@ -202968,10 +229462,19 @@ public int getOneof2609() { } public static final int ONEOF_2610_FIELD_NUMBER = 2610; + /** + * int32 oneof_2610 = 2610; + * @return Whether the oneof2610 field is set. + */ + @java.lang.Override + public boolean hasOneof2610() { + return hugeOneofCase_ == 2610; + } /** * int32 oneof_2610 = 2610; * @return The oneof2610. */ + @java.lang.Override public int getOneof2610() { if (hugeOneofCase_ == 2610) { return (java.lang.Integer) hugeOneof_; @@ -202980,10 +229483,19 @@ public int getOneof2610() { } public static final int ONEOF_2611_FIELD_NUMBER = 2611; + /** + * int32 oneof_2611 = 2611; + * @return Whether the oneof2611 field is set. + */ + @java.lang.Override + public boolean hasOneof2611() { + return hugeOneofCase_ == 2611; + } /** * int32 oneof_2611 = 2611; * @return The oneof2611. */ + @java.lang.Override public int getOneof2611() { if (hugeOneofCase_ == 2611) { return (java.lang.Integer) hugeOneof_; @@ -202992,10 +229504,19 @@ public int getOneof2611() { } public static final int ONEOF_2612_FIELD_NUMBER = 2612; + /** + * int32 oneof_2612 = 2612; + * @return Whether the oneof2612 field is set. + */ + @java.lang.Override + public boolean hasOneof2612() { + return hugeOneofCase_ == 2612; + } /** * int32 oneof_2612 = 2612; * @return The oneof2612. */ + @java.lang.Override public int getOneof2612() { if (hugeOneofCase_ == 2612) { return (java.lang.Integer) hugeOneof_; @@ -203004,10 +229525,19 @@ public int getOneof2612() { } public static final int ONEOF_2613_FIELD_NUMBER = 2613; + /** + * int32 oneof_2613 = 2613; + * @return Whether the oneof2613 field is set. + */ + @java.lang.Override + public boolean hasOneof2613() { + return hugeOneofCase_ == 2613; + } /** * int32 oneof_2613 = 2613; * @return The oneof2613. */ + @java.lang.Override public int getOneof2613() { if (hugeOneofCase_ == 2613) { return (java.lang.Integer) hugeOneof_; @@ -203016,10 +229546,19 @@ public int getOneof2613() { } public static final int ONEOF_2614_FIELD_NUMBER = 2614; + /** + * int32 oneof_2614 = 2614; + * @return Whether the oneof2614 field is set. + */ + @java.lang.Override + public boolean hasOneof2614() { + return hugeOneofCase_ == 2614; + } /** * int32 oneof_2614 = 2614; * @return The oneof2614. */ + @java.lang.Override public int getOneof2614() { if (hugeOneofCase_ == 2614) { return (java.lang.Integer) hugeOneof_; @@ -203028,10 +229567,19 @@ public int getOneof2614() { } public static final int ONEOF_2615_FIELD_NUMBER = 2615; + /** + * int32 oneof_2615 = 2615; + * @return Whether the oneof2615 field is set. + */ + @java.lang.Override + public boolean hasOneof2615() { + return hugeOneofCase_ == 2615; + } /** * int32 oneof_2615 = 2615; * @return The oneof2615. */ + @java.lang.Override public int getOneof2615() { if (hugeOneofCase_ == 2615) { return (java.lang.Integer) hugeOneof_; @@ -203040,10 +229588,19 @@ public int getOneof2615() { } public static final int ONEOF_2616_FIELD_NUMBER = 2616; + /** + * int32 oneof_2616 = 2616; + * @return Whether the oneof2616 field is set. + */ + @java.lang.Override + public boolean hasOneof2616() { + return hugeOneofCase_ == 2616; + } /** * int32 oneof_2616 = 2616; * @return The oneof2616. */ + @java.lang.Override public int getOneof2616() { if (hugeOneofCase_ == 2616) { return (java.lang.Integer) hugeOneof_; @@ -203052,10 +229609,19 @@ public int getOneof2616() { } public static final int ONEOF_2617_FIELD_NUMBER = 2617; + /** + * int32 oneof_2617 = 2617; + * @return Whether the oneof2617 field is set. + */ + @java.lang.Override + public boolean hasOneof2617() { + return hugeOneofCase_ == 2617; + } /** * int32 oneof_2617 = 2617; * @return The oneof2617. */ + @java.lang.Override public int getOneof2617() { if (hugeOneofCase_ == 2617) { return (java.lang.Integer) hugeOneof_; @@ -203064,10 +229630,19 @@ public int getOneof2617() { } public static final int ONEOF_2618_FIELD_NUMBER = 2618; + /** + * int32 oneof_2618 = 2618; + * @return Whether the oneof2618 field is set. + */ + @java.lang.Override + public boolean hasOneof2618() { + return hugeOneofCase_ == 2618; + } /** * int32 oneof_2618 = 2618; * @return The oneof2618. */ + @java.lang.Override public int getOneof2618() { if (hugeOneofCase_ == 2618) { return (java.lang.Integer) hugeOneof_; @@ -203076,10 +229651,19 @@ public int getOneof2618() { } public static final int ONEOF_2619_FIELD_NUMBER = 2619; + /** + * int32 oneof_2619 = 2619; + * @return Whether the oneof2619 field is set. + */ + @java.lang.Override + public boolean hasOneof2619() { + return hugeOneofCase_ == 2619; + } /** * int32 oneof_2619 = 2619; * @return The oneof2619. */ + @java.lang.Override public int getOneof2619() { if (hugeOneofCase_ == 2619) { return (java.lang.Integer) hugeOneof_; @@ -203088,10 +229672,19 @@ public int getOneof2619() { } public static final int ONEOF_2620_FIELD_NUMBER = 2620; + /** + * int32 oneof_2620 = 2620; + * @return Whether the oneof2620 field is set. + */ + @java.lang.Override + public boolean hasOneof2620() { + return hugeOneofCase_ == 2620; + } /** * int32 oneof_2620 = 2620; * @return The oneof2620. */ + @java.lang.Override public int getOneof2620() { if (hugeOneofCase_ == 2620) { return (java.lang.Integer) hugeOneof_; @@ -203100,10 +229693,19 @@ public int getOneof2620() { } public static final int ONEOF_2621_FIELD_NUMBER = 2621; + /** + * int32 oneof_2621 = 2621; + * @return Whether the oneof2621 field is set. + */ + @java.lang.Override + public boolean hasOneof2621() { + return hugeOneofCase_ == 2621; + } /** * int32 oneof_2621 = 2621; * @return The oneof2621. */ + @java.lang.Override public int getOneof2621() { if (hugeOneofCase_ == 2621) { return (java.lang.Integer) hugeOneof_; @@ -203112,10 +229714,19 @@ public int getOneof2621() { } public static final int ONEOF_2622_FIELD_NUMBER = 2622; + /** + * int32 oneof_2622 = 2622; + * @return Whether the oneof2622 field is set. + */ + @java.lang.Override + public boolean hasOneof2622() { + return hugeOneofCase_ == 2622; + } /** * int32 oneof_2622 = 2622; * @return The oneof2622. */ + @java.lang.Override public int getOneof2622() { if (hugeOneofCase_ == 2622) { return (java.lang.Integer) hugeOneof_; @@ -203124,10 +229735,19 @@ public int getOneof2622() { } public static final int ONEOF_2623_FIELD_NUMBER = 2623; + /** + * int32 oneof_2623 = 2623; + * @return Whether the oneof2623 field is set. + */ + @java.lang.Override + public boolean hasOneof2623() { + return hugeOneofCase_ == 2623; + } /** * int32 oneof_2623 = 2623; * @return The oneof2623. */ + @java.lang.Override public int getOneof2623() { if (hugeOneofCase_ == 2623) { return (java.lang.Integer) hugeOneof_; @@ -203136,10 +229756,19 @@ public int getOneof2623() { } public static final int ONEOF_2624_FIELD_NUMBER = 2624; + /** + * int32 oneof_2624 = 2624; + * @return Whether the oneof2624 field is set. + */ + @java.lang.Override + public boolean hasOneof2624() { + return hugeOneofCase_ == 2624; + } /** * int32 oneof_2624 = 2624; * @return The oneof2624. */ + @java.lang.Override public int getOneof2624() { if (hugeOneofCase_ == 2624) { return (java.lang.Integer) hugeOneof_; @@ -203148,10 +229777,19 @@ public int getOneof2624() { } public static final int ONEOF_2625_FIELD_NUMBER = 2625; + /** + * int32 oneof_2625 = 2625; + * @return Whether the oneof2625 field is set. + */ + @java.lang.Override + public boolean hasOneof2625() { + return hugeOneofCase_ == 2625; + } /** * int32 oneof_2625 = 2625; * @return The oneof2625. */ + @java.lang.Override public int getOneof2625() { if (hugeOneofCase_ == 2625) { return (java.lang.Integer) hugeOneof_; @@ -203160,10 +229798,19 @@ public int getOneof2625() { } public static final int ONEOF_2626_FIELD_NUMBER = 2626; + /** + * int32 oneof_2626 = 2626; + * @return Whether the oneof2626 field is set. + */ + @java.lang.Override + public boolean hasOneof2626() { + return hugeOneofCase_ == 2626; + } /** * int32 oneof_2626 = 2626; * @return The oneof2626. */ + @java.lang.Override public int getOneof2626() { if (hugeOneofCase_ == 2626) { return (java.lang.Integer) hugeOneof_; @@ -203172,10 +229819,19 @@ public int getOneof2626() { } public static final int ONEOF_2627_FIELD_NUMBER = 2627; + /** + * int32 oneof_2627 = 2627; + * @return Whether the oneof2627 field is set. + */ + @java.lang.Override + public boolean hasOneof2627() { + return hugeOneofCase_ == 2627; + } /** * int32 oneof_2627 = 2627; * @return The oneof2627. */ + @java.lang.Override public int getOneof2627() { if (hugeOneofCase_ == 2627) { return (java.lang.Integer) hugeOneof_; @@ -203184,10 +229840,19 @@ public int getOneof2627() { } public static final int ONEOF_2628_FIELD_NUMBER = 2628; + /** + * int32 oneof_2628 = 2628; + * @return Whether the oneof2628 field is set. + */ + @java.lang.Override + public boolean hasOneof2628() { + return hugeOneofCase_ == 2628; + } /** * int32 oneof_2628 = 2628; * @return The oneof2628. */ + @java.lang.Override public int getOneof2628() { if (hugeOneofCase_ == 2628) { return (java.lang.Integer) hugeOneof_; @@ -203196,10 +229861,19 @@ public int getOneof2628() { } public static final int ONEOF_2629_FIELD_NUMBER = 2629; + /** + * int32 oneof_2629 = 2629; + * @return Whether the oneof2629 field is set. + */ + @java.lang.Override + public boolean hasOneof2629() { + return hugeOneofCase_ == 2629; + } /** * int32 oneof_2629 = 2629; * @return The oneof2629. */ + @java.lang.Override public int getOneof2629() { if (hugeOneofCase_ == 2629) { return (java.lang.Integer) hugeOneof_; @@ -203208,10 +229882,19 @@ public int getOneof2629() { } public static final int ONEOF_2630_FIELD_NUMBER = 2630; + /** + * int32 oneof_2630 = 2630; + * @return Whether the oneof2630 field is set. + */ + @java.lang.Override + public boolean hasOneof2630() { + return hugeOneofCase_ == 2630; + } /** * int32 oneof_2630 = 2630; * @return The oneof2630. */ + @java.lang.Override public int getOneof2630() { if (hugeOneofCase_ == 2630) { return (java.lang.Integer) hugeOneof_; @@ -203220,10 +229903,19 @@ public int getOneof2630() { } public static final int ONEOF_2631_FIELD_NUMBER = 2631; + /** + * int32 oneof_2631 = 2631; + * @return Whether the oneof2631 field is set. + */ + @java.lang.Override + public boolean hasOneof2631() { + return hugeOneofCase_ == 2631; + } /** * int32 oneof_2631 = 2631; * @return The oneof2631. */ + @java.lang.Override public int getOneof2631() { if (hugeOneofCase_ == 2631) { return (java.lang.Integer) hugeOneof_; @@ -203232,10 +229924,19 @@ public int getOneof2631() { } public static final int ONEOF_2632_FIELD_NUMBER = 2632; + /** + * int32 oneof_2632 = 2632; + * @return Whether the oneof2632 field is set. + */ + @java.lang.Override + public boolean hasOneof2632() { + return hugeOneofCase_ == 2632; + } /** * int32 oneof_2632 = 2632; * @return The oneof2632. */ + @java.lang.Override public int getOneof2632() { if (hugeOneofCase_ == 2632) { return (java.lang.Integer) hugeOneof_; @@ -203244,10 +229945,19 @@ public int getOneof2632() { } public static final int ONEOF_2633_FIELD_NUMBER = 2633; + /** + * int32 oneof_2633 = 2633; + * @return Whether the oneof2633 field is set. + */ + @java.lang.Override + public boolean hasOneof2633() { + return hugeOneofCase_ == 2633; + } /** * int32 oneof_2633 = 2633; * @return The oneof2633. */ + @java.lang.Override public int getOneof2633() { if (hugeOneofCase_ == 2633) { return (java.lang.Integer) hugeOneof_; @@ -203256,10 +229966,19 @@ public int getOneof2633() { } public static final int ONEOF_2634_FIELD_NUMBER = 2634; + /** + * int32 oneof_2634 = 2634; + * @return Whether the oneof2634 field is set. + */ + @java.lang.Override + public boolean hasOneof2634() { + return hugeOneofCase_ == 2634; + } /** * int32 oneof_2634 = 2634; * @return The oneof2634. */ + @java.lang.Override public int getOneof2634() { if (hugeOneofCase_ == 2634) { return (java.lang.Integer) hugeOneof_; @@ -203268,10 +229987,19 @@ public int getOneof2634() { } public static final int ONEOF_2635_FIELD_NUMBER = 2635; + /** + * int32 oneof_2635 = 2635; + * @return Whether the oneof2635 field is set. + */ + @java.lang.Override + public boolean hasOneof2635() { + return hugeOneofCase_ == 2635; + } /** * int32 oneof_2635 = 2635; * @return The oneof2635. */ + @java.lang.Override public int getOneof2635() { if (hugeOneofCase_ == 2635) { return (java.lang.Integer) hugeOneof_; @@ -203280,10 +230008,19 @@ public int getOneof2635() { } public static final int ONEOF_2636_FIELD_NUMBER = 2636; + /** + * int32 oneof_2636 = 2636; + * @return Whether the oneof2636 field is set. + */ + @java.lang.Override + public boolean hasOneof2636() { + return hugeOneofCase_ == 2636; + } /** * int32 oneof_2636 = 2636; * @return The oneof2636. */ + @java.lang.Override public int getOneof2636() { if (hugeOneofCase_ == 2636) { return (java.lang.Integer) hugeOneof_; @@ -203292,10 +230029,19 @@ public int getOneof2636() { } public static final int ONEOF_2637_FIELD_NUMBER = 2637; + /** + * int32 oneof_2637 = 2637; + * @return Whether the oneof2637 field is set. + */ + @java.lang.Override + public boolean hasOneof2637() { + return hugeOneofCase_ == 2637; + } /** * int32 oneof_2637 = 2637; * @return The oneof2637. */ + @java.lang.Override public int getOneof2637() { if (hugeOneofCase_ == 2637) { return (java.lang.Integer) hugeOneof_; @@ -203304,10 +230050,19 @@ public int getOneof2637() { } public static final int ONEOF_2638_FIELD_NUMBER = 2638; + /** + * int32 oneof_2638 = 2638; + * @return Whether the oneof2638 field is set. + */ + @java.lang.Override + public boolean hasOneof2638() { + return hugeOneofCase_ == 2638; + } /** * int32 oneof_2638 = 2638; * @return The oneof2638. */ + @java.lang.Override public int getOneof2638() { if (hugeOneofCase_ == 2638) { return (java.lang.Integer) hugeOneof_; @@ -203316,10 +230071,19 @@ public int getOneof2638() { } public static final int ONEOF_2639_FIELD_NUMBER = 2639; + /** + * int32 oneof_2639 = 2639; + * @return Whether the oneof2639 field is set. + */ + @java.lang.Override + public boolean hasOneof2639() { + return hugeOneofCase_ == 2639; + } /** * int32 oneof_2639 = 2639; * @return The oneof2639. */ + @java.lang.Override public int getOneof2639() { if (hugeOneofCase_ == 2639) { return (java.lang.Integer) hugeOneof_; @@ -203328,10 +230092,19 @@ public int getOneof2639() { } public static final int ONEOF_2640_FIELD_NUMBER = 2640; + /** + * int32 oneof_2640 = 2640; + * @return Whether the oneof2640 field is set. + */ + @java.lang.Override + public boolean hasOneof2640() { + return hugeOneofCase_ == 2640; + } /** * int32 oneof_2640 = 2640; * @return The oneof2640. */ + @java.lang.Override public int getOneof2640() { if (hugeOneofCase_ == 2640) { return (java.lang.Integer) hugeOneof_; @@ -203340,10 +230113,19 @@ public int getOneof2640() { } public static final int ONEOF_2641_FIELD_NUMBER = 2641; + /** + * int32 oneof_2641 = 2641; + * @return Whether the oneof2641 field is set. + */ + @java.lang.Override + public boolean hasOneof2641() { + return hugeOneofCase_ == 2641; + } /** * int32 oneof_2641 = 2641; * @return The oneof2641. */ + @java.lang.Override public int getOneof2641() { if (hugeOneofCase_ == 2641) { return (java.lang.Integer) hugeOneof_; @@ -203352,10 +230134,19 @@ public int getOneof2641() { } public static final int ONEOF_2642_FIELD_NUMBER = 2642; + /** + * int32 oneof_2642 = 2642; + * @return Whether the oneof2642 field is set. + */ + @java.lang.Override + public boolean hasOneof2642() { + return hugeOneofCase_ == 2642; + } /** * int32 oneof_2642 = 2642; * @return The oneof2642. */ + @java.lang.Override public int getOneof2642() { if (hugeOneofCase_ == 2642) { return (java.lang.Integer) hugeOneof_; @@ -203364,10 +230155,19 @@ public int getOneof2642() { } public static final int ONEOF_2643_FIELD_NUMBER = 2643; + /** + * int32 oneof_2643 = 2643; + * @return Whether the oneof2643 field is set. + */ + @java.lang.Override + public boolean hasOneof2643() { + return hugeOneofCase_ == 2643; + } /** * int32 oneof_2643 = 2643; * @return The oneof2643. */ + @java.lang.Override public int getOneof2643() { if (hugeOneofCase_ == 2643) { return (java.lang.Integer) hugeOneof_; @@ -203376,10 +230176,19 @@ public int getOneof2643() { } public static final int ONEOF_2644_FIELD_NUMBER = 2644; + /** + * int32 oneof_2644 = 2644; + * @return Whether the oneof2644 field is set. + */ + @java.lang.Override + public boolean hasOneof2644() { + return hugeOneofCase_ == 2644; + } /** * int32 oneof_2644 = 2644; * @return The oneof2644. */ + @java.lang.Override public int getOneof2644() { if (hugeOneofCase_ == 2644) { return (java.lang.Integer) hugeOneof_; @@ -203388,10 +230197,19 @@ public int getOneof2644() { } public static final int ONEOF_2645_FIELD_NUMBER = 2645; + /** + * int32 oneof_2645 = 2645; + * @return Whether the oneof2645 field is set. + */ + @java.lang.Override + public boolean hasOneof2645() { + return hugeOneofCase_ == 2645; + } /** * int32 oneof_2645 = 2645; * @return The oneof2645. */ + @java.lang.Override public int getOneof2645() { if (hugeOneofCase_ == 2645) { return (java.lang.Integer) hugeOneof_; @@ -203400,10 +230218,19 @@ public int getOneof2645() { } public static final int ONEOF_2646_FIELD_NUMBER = 2646; + /** + * int32 oneof_2646 = 2646; + * @return Whether the oneof2646 field is set. + */ + @java.lang.Override + public boolean hasOneof2646() { + return hugeOneofCase_ == 2646; + } /** * int32 oneof_2646 = 2646; * @return The oneof2646. */ + @java.lang.Override public int getOneof2646() { if (hugeOneofCase_ == 2646) { return (java.lang.Integer) hugeOneof_; @@ -203412,10 +230239,19 @@ public int getOneof2646() { } public static final int ONEOF_2647_FIELD_NUMBER = 2647; + /** + * int32 oneof_2647 = 2647; + * @return Whether the oneof2647 field is set. + */ + @java.lang.Override + public boolean hasOneof2647() { + return hugeOneofCase_ == 2647; + } /** * int32 oneof_2647 = 2647; * @return The oneof2647. */ + @java.lang.Override public int getOneof2647() { if (hugeOneofCase_ == 2647) { return (java.lang.Integer) hugeOneof_; @@ -203424,10 +230260,19 @@ public int getOneof2647() { } public static final int ONEOF_2648_FIELD_NUMBER = 2648; + /** + * int32 oneof_2648 = 2648; + * @return Whether the oneof2648 field is set. + */ + @java.lang.Override + public boolean hasOneof2648() { + return hugeOneofCase_ == 2648; + } /** * int32 oneof_2648 = 2648; * @return The oneof2648. */ + @java.lang.Override public int getOneof2648() { if (hugeOneofCase_ == 2648) { return (java.lang.Integer) hugeOneof_; @@ -203436,10 +230281,19 @@ public int getOneof2648() { } public static final int ONEOF_2649_FIELD_NUMBER = 2649; + /** + * int32 oneof_2649 = 2649; + * @return Whether the oneof2649 field is set. + */ + @java.lang.Override + public boolean hasOneof2649() { + return hugeOneofCase_ == 2649; + } /** * int32 oneof_2649 = 2649; * @return The oneof2649. */ + @java.lang.Override public int getOneof2649() { if (hugeOneofCase_ == 2649) { return (java.lang.Integer) hugeOneof_; @@ -203448,10 +230302,19 @@ public int getOneof2649() { } public static final int ONEOF_2650_FIELD_NUMBER = 2650; + /** + * int32 oneof_2650 = 2650; + * @return Whether the oneof2650 field is set. + */ + @java.lang.Override + public boolean hasOneof2650() { + return hugeOneofCase_ == 2650; + } /** * int32 oneof_2650 = 2650; * @return The oneof2650. */ + @java.lang.Override public int getOneof2650() { if (hugeOneofCase_ == 2650) { return (java.lang.Integer) hugeOneof_; @@ -203460,10 +230323,19 @@ public int getOneof2650() { } public static final int ONEOF_2651_FIELD_NUMBER = 2651; + /** + * int32 oneof_2651 = 2651; + * @return Whether the oneof2651 field is set. + */ + @java.lang.Override + public boolean hasOneof2651() { + return hugeOneofCase_ == 2651; + } /** * int32 oneof_2651 = 2651; * @return The oneof2651. */ + @java.lang.Override public int getOneof2651() { if (hugeOneofCase_ == 2651) { return (java.lang.Integer) hugeOneof_; @@ -203472,10 +230344,19 @@ public int getOneof2651() { } public static final int ONEOF_2652_FIELD_NUMBER = 2652; + /** + * int32 oneof_2652 = 2652; + * @return Whether the oneof2652 field is set. + */ + @java.lang.Override + public boolean hasOneof2652() { + return hugeOneofCase_ == 2652; + } /** * int32 oneof_2652 = 2652; * @return The oneof2652. */ + @java.lang.Override public int getOneof2652() { if (hugeOneofCase_ == 2652) { return (java.lang.Integer) hugeOneof_; @@ -203484,10 +230365,19 @@ public int getOneof2652() { } public static final int ONEOF_2653_FIELD_NUMBER = 2653; + /** + * int32 oneof_2653 = 2653; + * @return Whether the oneof2653 field is set. + */ + @java.lang.Override + public boolean hasOneof2653() { + return hugeOneofCase_ == 2653; + } /** * int32 oneof_2653 = 2653; * @return The oneof2653. */ + @java.lang.Override public int getOneof2653() { if (hugeOneofCase_ == 2653) { return (java.lang.Integer) hugeOneof_; @@ -203496,10 +230386,19 @@ public int getOneof2653() { } public static final int ONEOF_2654_FIELD_NUMBER = 2654; + /** + * int32 oneof_2654 = 2654; + * @return Whether the oneof2654 field is set. + */ + @java.lang.Override + public boolean hasOneof2654() { + return hugeOneofCase_ == 2654; + } /** * int32 oneof_2654 = 2654; * @return The oneof2654. */ + @java.lang.Override public int getOneof2654() { if (hugeOneofCase_ == 2654) { return (java.lang.Integer) hugeOneof_; @@ -203508,10 +230407,19 @@ public int getOneof2654() { } public static final int ONEOF_2655_FIELD_NUMBER = 2655; + /** + * int32 oneof_2655 = 2655; + * @return Whether the oneof2655 field is set. + */ + @java.lang.Override + public boolean hasOneof2655() { + return hugeOneofCase_ == 2655; + } /** * int32 oneof_2655 = 2655; * @return The oneof2655. */ + @java.lang.Override public int getOneof2655() { if (hugeOneofCase_ == 2655) { return (java.lang.Integer) hugeOneof_; @@ -203520,10 +230428,19 @@ public int getOneof2655() { } public static final int ONEOF_2656_FIELD_NUMBER = 2656; + /** + * int32 oneof_2656 = 2656; + * @return Whether the oneof2656 field is set. + */ + @java.lang.Override + public boolean hasOneof2656() { + return hugeOneofCase_ == 2656; + } /** * int32 oneof_2656 = 2656; * @return The oneof2656. */ + @java.lang.Override public int getOneof2656() { if (hugeOneofCase_ == 2656) { return (java.lang.Integer) hugeOneof_; @@ -203532,10 +230449,19 @@ public int getOneof2656() { } public static final int ONEOF_2657_FIELD_NUMBER = 2657; + /** + * int32 oneof_2657 = 2657; + * @return Whether the oneof2657 field is set. + */ + @java.lang.Override + public boolean hasOneof2657() { + return hugeOneofCase_ == 2657; + } /** * int32 oneof_2657 = 2657; * @return The oneof2657. */ + @java.lang.Override public int getOneof2657() { if (hugeOneofCase_ == 2657) { return (java.lang.Integer) hugeOneof_; @@ -203544,10 +230470,19 @@ public int getOneof2657() { } public static final int ONEOF_2658_FIELD_NUMBER = 2658; + /** + * int32 oneof_2658 = 2658; + * @return Whether the oneof2658 field is set. + */ + @java.lang.Override + public boolean hasOneof2658() { + return hugeOneofCase_ == 2658; + } /** * int32 oneof_2658 = 2658; * @return The oneof2658. */ + @java.lang.Override public int getOneof2658() { if (hugeOneofCase_ == 2658) { return (java.lang.Integer) hugeOneof_; @@ -203556,10 +230491,19 @@ public int getOneof2658() { } public static final int ONEOF_2659_FIELD_NUMBER = 2659; + /** + * int32 oneof_2659 = 2659; + * @return Whether the oneof2659 field is set. + */ + @java.lang.Override + public boolean hasOneof2659() { + return hugeOneofCase_ == 2659; + } /** * int32 oneof_2659 = 2659; * @return The oneof2659. */ + @java.lang.Override public int getOneof2659() { if (hugeOneofCase_ == 2659) { return (java.lang.Integer) hugeOneof_; @@ -203568,10 +230512,19 @@ public int getOneof2659() { } public static final int ONEOF_2660_FIELD_NUMBER = 2660; + /** + * int32 oneof_2660 = 2660; + * @return Whether the oneof2660 field is set. + */ + @java.lang.Override + public boolean hasOneof2660() { + return hugeOneofCase_ == 2660; + } /** * int32 oneof_2660 = 2660; * @return The oneof2660. */ + @java.lang.Override public int getOneof2660() { if (hugeOneofCase_ == 2660) { return (java.lang.Integer) hugeOneof_; @@ -203580,10 +230533,19 @@ public int getOneof2660() { } public static final int ONEOF_2661_FIELD_NUMBER = 2661; + /** + * int32 oneof_2661 = 2661; + * @return Whether the oneof2661 field is set. + */ + @java.lang.Override + public boolean hasOneof2661() { + return hugeOneofCase_ == 2661; + } /** * int32 oneof_2661 = 2661; * @return The oneof2661. */ + @java.lang.Override public int getOneof2661() { if (hugeOneofCase_ == 2661) { return (java.lang.Integer) hugeOneof_; @@ -203592,10 +230554,19 @@ public int getOneof2661() { } public static final int ONEOF_2662_FIELD_NUMBER = 2662; + /** + * int32 oneof_2662 = 2662; + * @return Whether the oneof2662 field is set. + */ + @java.lang.Override + public boolean hasOneof2662() { + return hugeOneofCase_ == 2662; + } /** * int32 oneof_2662 = 2662; * @return The oneof2662. */ + @java.lang.Override public int getOneof2662() { if (hugeOneofCase_ == 2662) { return (java.lang.Integer) hugeOneof_; @@ -203604,10 +230575,19 @@ public int getOneof2662() { } public static final int ONEOF_2663_FIELD_NUMBER = 2663; + /** + * int32 oneof_2663 = 2663; + * @return Whether the oneof2663 field is set. + */ + @java.lang.Override + public boolean hasOneof2663() { + return hugeOneofCase_ == 2663; + } /** * int32 oneof_2663 = 2663; * @return The oneof2663. */ + @java.lang.Override public int getOneof2663() { if (hugeOneofCase_ == 2663) { return (java.lang.Integer) hugeOneof_; @@ -203616,10 +230596,19 @@ public int getOneof2663() { } public static final int ONEOF_2664_FIELD_NUMBER = 2664; + /** + * int32 oneof_2664 = 2664; + * @return Whether the oneof2664 field is set. + */ + @java.lang.Override + public boolean hasOneof2664() { + return hugeOneofCase_ == 2664; + } /** * int32 oneof_2664 = 2664; * @return The oneof2664. */ + @java.lang.Override public int getOneof2664() { if (hugeOneofCase_ == 2664) { return (java.lang.Integer) hugeOneof_; @@ -203628,10 +230617,19 @@ public int getOneof2664() { } public static final int ONEOF_2665_FIELD_NUMBER = 2665; + /** + * int32 oneof_2665 = 2665; + * @return Whether the oneof2665 field is set. + */ + @java.lang.Override + public boolean hasOneof2665() { + return hugeOneofCase_ == 2665; + } /** * int32 oneof_2665 = 2665; * @return The oneof2665. */ + @java.lang.Override public int getOneof2665() { if (hugeOneofCase_ == 2665) { return (java.lang.Integer) hugeOneof_; @@ -203640,10 +230638,19 @@ public int getOneof2665() { } public static final int ONEOF_2666_FIELD_NUMBER = 2666; + /** + * int32 oneof_2666 = 2666; + * @return Whether the oneof2666 field is set. + */ + @java.lang.Override + public boolean hasOneof2666() { + return hugeOneofCase_ == 2666; + } /** * int32 oneof_2666 = 2666; * @return The oneof2666. */ + @java.lang.Override public int getOneof2666() { if (hugeOneofCase_ == 2666) { return (java.lang.Integer) hugeOneof_; @@ -203652,10 +230659,19 @@ public int getOneof2666() { } public static final int ONEOF_2667_FIELD_NUMBER = 2667; + /** + * int32 oneof_2667 = 2667; + * @return Whether the oneof2667 field is set. + */ + @java.lang.Override + public boolean hasOneof2667() { + return hugeOneofCase_ == 2667; + } /** * int32 oneof_2667 = 2667; * @return The oneof2667. */ + @java.lang.Override public int getOneof2667() { if (hugeOneofCase_ == 2667) { return (java.lang.Integer) hugeOneof_; @@ -203664,10 +230680,19 @@ public int getOneof2667() { } public static final int ONEOF_2668_FIELD_NUMBER = 2668; + /** + * int32 oneof_2668 = 2668; + * @return Whether the oneof2668 field is set. + */ + @java.lang.Override + public boolean hasOneof2668() { + return hugeOneofCase_ == 2668; + } /** * int32 oneof_2668 = 2668; * @return The oneof2668. */ + @java.lang.Override public int getOneof2668() { if (hugeOneofCase_ == 2668) { return (java.lang.Integer) hugeOneof_; @@ -203676,10 +230701,19 @@ public int getOneof2668() { } public static final int ONEOF_2669_FIELD_NUMBER = 2669; + /** + * int32 oneof_2669 = 2669; + * @return Whether the oneof2669 field is set. + */ + @java.lang.Override + public boolean hasOneof2669() { + return hugeOneofCase_ == 2669; + } /** * int32 oneof_2669 = 2669; * @return The oneof2669. */ + @java.lang.Override public int getOneof2669() { if (hugeOneofCase_ == 2669) { return (java.lang.Integer) hugeOneof_; @@ -203688,10 +230722,19 @@ public int getOneof2669() { } public static final int ONEOF_2670_FIELD_NUMBER = 2670; + /** + * int32 oneof_2670 = 2670; + * @return Whether the oneof2670 field is set. + */ + @java.lang.Override + public boolean hasOneof2670() { + return hugeOneofCase_ == 2670; + } /** * int32 oneof_2670 = 2670; * @return The oneof2670. */ + @java.lang.Override public int getOneof2670() { if (hugeOneofCase_ == 2670) { return (java.lang.Integer) hugeOneof_; @@ -203700,10 +230743,19 @@ public int getOneof2670() { } public static final int ONEOF_2671_FIELD_NUMBER = 2671; + /** + * int32 oneof_2671 = 2671; + * @return Whether the oneof2671 field is set. + */ + @java.lang.Override + public boolean hasOneof2671() { + return hugeOneofCase_ == 2671; + } /** * int32 oneof_2671 = 2671; * @return The oneof2671. */ + @java.lang.Override public int getOneof2671() { if (hugeOneofCase_ == 2671) { return (java.lang.Integer) hugeOneof_; @@ -203712,10 +230764,19 @@ public int getOneof2671() { } public static final int ONEOF_2672_FIELD_NUMBER = 2672; + /** + * int32 oneof_2672 = 2672; + * @return Whether the oneof2672 field is set. + */ + @java.lang.Override + public boolean hasOneof2672() { + return hugeOneofCase_ == 2672; + } /** * int32 oneof_2672 = 2672; * @return The oneof2672. */ + @java.lang.Override public int getOneof2672() { if (hugeOneofCase_ == 2672) { return (java.lang.Integer) hugeOneof_; @@ -203724,10 +230785,19 @@ public int getOneof2672() { } public static final int ONEOF_2673_FIELD_NUMBER = 2673; + /** + * int32 oneof_2673 = 2673; + * @return Whether the oneof2673 field is set. + */ + @java.lang.Override + public boolean hasOneof2673() { + return hugeOneofCase_ == 2673; + } /** * int32 oneof_2673 = 2673; * @return The oneof2673. */ + @java.lang.Override public int getOneof2673() { if (hugeOneofCase_ == 2673) { return (java.lang.Integer) hugeOneof_; @@ -203736,10 +230806,19 @@ public int getOneof2673() { } public static final int ONEOF_2674_FIELD_NUMBER = 2674; + /** + * int32 oneof_2674 = 2674; + * @return Whether the oneof2674 field is set. + */ + @java.lang.Override + public boolean hasOneof2674() { + return hugeOneofCase_ == 2674; + } /** * int32 oneof_2674 = 2674; * @return The oneof2674. */ + @java.lang.Override public int getOneof2674() { if (hugeOneofCase_ == 2674) { return (java.lang.Integer) hugeOneof_; @@ -203748,10 +230827,19 @@ public int getOneof2674() { } public static final int ONEOF_2675_FIELD_NUMBER = 2675; + /** + * int32 oneof_2675 = 2675; + * @return Whether the oneof2675 field is set. + */ + @java.lang.Override + public boolean hasOneof2675() { + return hugeOneofCase_ == 2675; + } /** * int32 oneof_2675 = 2675; * @return The oneof2675. */ + @java.lang.Override public int getOneof2675() { if (hugeOneofCase_ == 2675) { return (java.lang.Integer) hugeOneof_; @@ -203760,10 +230848,19 @@ public int getOneof2675() { } public static final int ONEOF_2676_FIELD_NUMBER = 2676; + /** + * int32 oneof_2676 = 2676; + * @return Whether the oneof2676 field is set. + */ + @java.lang.Override + public boolean hasOneof2676() { + return hugeOneofCase_ == 2676; + } /** * int32 oneof_2676 = 2676; * @return The oneof2676. */ + @java.lang.Override public int getOneof2676() { if (hugeOneofCase_ == 2676) { return (java.lang.Integer) hugeOneof_; @@ -203772,10 +230869,19 @@ public int getOneof2676() { } public static final int ONEOF_2677_FIELD_NUMBER = 2677; + /** + * int32 oneof_2677 = 2677; + * @return Whether the oneof2677 field is set. + */ + @java.lang.Override + public boolean hasOneof2677() { + return hugeOneofCase_ == 2677; + } /** * int32 oneof_2677 = 2677; * @return The oneof2677. */ + @java.lang.Override public int getOneof2677() { if (hugeOneofCase_ == 2677) { return (java.lang.Integer) hugeOneof_; @@ -203784,10 +230890,19 @@ public int getOneof2677() { } public static final int ONEOF_2678_FIELD_NUMBER = 2678; + /** + * int32 oneof_2678 = 2678; + * @return Whether the oneof2678 field is set. + */ + @java.lang.Override + public boolean hasOneof2678() { + return hugeOneofCase_ == 2678; + } /** * int32 oneof_2678 = 2678; * @return The oneof2678. */ + @java.lang.Override public int getOneof2678() { if (hugeOneofCase_ == 2678) { return (java.lang.Integer) hugeOneof_; @@ -203796,10 +230911,19 @@ public int getOneof2678() { } public static final int ONEOF_2679_FIELD_NUMBER = 2679; + /** + * int32 oneof_2679 = 2679; + * @return Whether the oneof2679 field is set. + */ + @java.lang.Override + public boolean hasOneof2679() { + return hugeOneofCase_ == 2679; + } /** * int32 oneof_2679 = 2679; * @return The oneof2679. */ + @java.lang.Override public int getOneof2679() { if (hugeOneofCase_ == 2679) { return (java.lang.Integer) hugeOneof_; @@ -203808,10 +230932,19 @@ public int getOneof2679() { } public static final int ONEOF_2680_FIELD_NUMBER = 2680; + /** + * int32 oneof_2680 = 2680; + * @return Whether the oneof2680 field is set. + */ + @java.lang.Override + public boolean hasOneof2680() { + return hugeOneofCase_ == 2680; + } /** * int32 oneof_2680 = 2680; * @return The oneof2680. */ + @java.lang.Override public int getOneof2680() { if (hugeOneofCase_ == 2680) { return (java.lang.Integer) hugeOneof_; @@ -203820,10 +230953,19 @@ public int getOneof2680() { } public static final int ONEOF_2681_FIELD_NUMBER = 2681; + /** + * int32 oneof_2681 = 2681; + * @return Whether the oneof2681 field is set. + */ + @java.lang.Override + public boolean hasOneof2681() { + return hugeOneofCase_ == 2681; + } /** * int32 oneof_2681 = 2681; * @return The oneof2681. */ + @java.lang.Override public int getOneof2681() { if (hugeOneofCase_ == 2681) { return (java.lang.Integer) hugeOneof_; @@ -203832,10 +230974,19 @@ public int getOneof2681() { } public static final int ONEOF_2682_FIELD_NUMBER = 2682; + /** + * int32 oneof_2682 = 2682; + * @return Whether the oneof2682 field is set. + */ + @java.lang.Override + public boolean hasOneof2682() { + return hugeOneofCase_ == 2682; + } /** * int32 oneof_2682 = 2682; * @return The oneof2682. */ + @java.lang.Override public int getOneof2682() { if (hugeOneofCase_ == 2682) { return (java.lang.Integer) hugeOneof_; @@ -203844,10 +230995,19 @@ public int getOneof2682() { } public static final int ONEOF_2683_FIELD_NUMBER = 2683; + /** + * int32 oneof_2683 = 2683; + * @return Whether the oneof2683 field is set. + */ + @java.lang.Override + public boolean hasOneof2683() { + return hugeOneofCase_ == 2683; + } /** * int32 oneof_2683 = 2683; * @return The oneof2683. */ + @java.lang.Override public int getOneof2683() { if (hugeOneofCase_ == 2683) { return (java.lang.Integer) hugeOneof_; @@ -203856,10 +231016,19 @@ public int getOneof2683() { } public static final int ONEOF_2684_FIELD_NUMBER = 2684; + /** + * int32 oneof_2684 = 2684; + * @return Whether the oneof2684 field is set. + */ + @java.lang.Override + public boolean hasOneof2684() { + return hugeOneofCase_ == 2684; + } /** * int32 oneof_2684 = 2684; * @return The oneof2684. */ + @java.lang.Override public int getOneof2684() { if (hugeOneofCase_ == 2684) { return (java.lang.Integer) hugeOneof_; @@ -203868,10 +231037,19 @@ public int getOneof2684() { } public static final int ONEOF_2685_FIELD_NUMBER = 2685; + /** + * int32 oneof_2685 = 2685; + * @return Whether the oneof2685 field is set. + */ + @java.lang.Override + public boolean hasOneof2685() { + return hugeOneofCase_ == 2685; + } /** * int32 oneof_2685 = 2685; * @return The oneof2685. */ + @java.lang.Override public int getOneof2685() { if (hugeOneofCase_ == 2685) { return (java.lang.Integer) hugeOneof_; @@ -203880,10 +231058,19 @@ public int getOneof2685() { } public static final int ONEOF_2686_FIELD_NUMBER = 2686; + /** + * int32 oneof_2686 = 2686; + * @return Whether the oneof2686 field is set. + */ + @java.lang.Override + public boolean hasOneof2686() { + return hugeOneofCase_ == 2686; + } /** * int32 oneof_2686 = 2686; * @return The oneof2686. */ + @java.lang.Override public int getOneof2686() { if (hugeOneofCase_ == 2686) { return (java.lang.Integer) hugeOneof_; @@ -203892,10 +231079,19 @@ public int getOneof2686() { } public static final int ONEOF_2687_FIELD_NUMBER = 2687; + /** + * int32 oneof_2687 = 2687; + * @return Whether the oneof2687 field is set. + */ + @java.lang.Override + public boolean hasOneof2687() { + return hugeOneofCase_ == 2687; + } /** * int32 oneof_2687 = 2687; * @return The oneof2687. */ + @java.lang.Override public int getOneof2687() { if (hugeOneofCase_ == 2687) { return (java.lang.Integer) hugeOneof_; @@ -203904,10 +231100,19 @@ public int getOneof2687() { } public static final int ONEOF_2688_FIELD_NUMBER = 2688; + /** + * int32 oneof_2688 = 2688; + * @return Whether the oneof2688 field is set. + */ + @java.lang.Override + public boolean hasOneof2688() { + return hugeOneofCase_ == 2688; + } /** * int32 oneof_2688 = 2688; * @return The oneof2688. */ + @java.lang.Override public int getOneof2688() { if (hugeOneofCase_ == 2688) { return (java.lang.Integer) hugeOneof_; @@ -203916,10 +231121,19 @@ public int getOneof2688() { } public static final int ONEOF_2689_FIELD_NUMBER = 2689; + /** + * int32 oneof_2689 = 2689; + * @return Whether the oneof2689 field is set. + */ + @java.lang.Override + public boolean hasOneof2689() { + return hugeOneofCase_ == 2689; + } /** * int32 oneof_2689 = 2689; * @return The oneof2689. */ + @java.lang.Override public int getOneof2689() { if (hugeOneofCase_ == 2689) { return (java.lang.Integer) hugeOneof_; @@ -203928,10 +231142,19 @@ public int getOneof2689() { } public static final int ONEOF_2690_FIELD_NUMBER = 2690; + /** + * int32 oneof_2690 = 2690; + * @return Whether the oneof2690 field is set. + */ + @java.lang.Override + public boolean hasOneof2690() { + return hugeOneofCase_ == 2690; + } /** * int32 oneof_2690 = 2690; * @return The oneof2690. */ + @java.lang.Override public int getOneof2690() { if (hugeOneofCase_ == 2690) { return (java.lang.Integer) hugeOneof_; @@ -203940,10 +231163,19 @@ public int getOneof2690() { } public static final int ONEOF_2691_FIELD_NUMBER = 2691; + /** + * int32 oneof_2691 = 2691; + * @return Whether the oneof2691 field is set. + */ + @java.lang.Override + public boolean hasOneof2691() { + return hugeOneofCase_ == 2691; + } /** * int32 oneof_2691 = 2691; * @return The oneof2691. */ + @java.lang.Override public int getOneof2691() { if (hugeOneofCase_ == 2691) { return (java.lang.Integer) hugeOneof_; @@ -203952,10 +231184,19 @@ public int getOneof2691() { } public static final int ONEOF_2692_FIELD_NUMBER = 2692; + /** + * int32 oneof_2692 = 2692; + * @return Whether the oneof2692 field is set. + */ + @java.lang.Override + public boolean hasOneof2692() { + return hugeOneofCase_ == 2692; + } /** * int32 oneof_2692 = 2692; * @return The oneof2692. */ + @java.lang.Override public int getOneof2692() { if (hugeOneofCase_ == 2692) { return (java.lang.Integer) hugeOneof_; @@ -203964,10 +231205,19 @@ public int getOneof2692() { } public static final int ONEOF_2693_FIELD_NUMBER = 2693; + /** + * int32 oneof_2693 = 2693; + * @return Whether the oneof2693 field is set. + */ + @java.lang.Override + public boolean hasOneof2693() { + return hugeOneofCase_ == 2693; + } /** * int32 oneof_2693 = 2693; * @return The oneof2693. */ + @java.lang.Override public int getOneof2693() { if (hugeOneofCase_ == 2693) { return (java.lang.Integer) hugeOneof_; @@ -203976,10 +231226,19 @@ public int getOneof2693() { } public static final int ONEOF_2694_FIELD_NUMBER = 2694; + /** + * int32 oneof_2694 = 2694; + * @return Whether the oneof2694 field is set. + */ + @java.lang.Override + public boolean hasOneof2694() { + return hugeOneofCase_ == 2694; + } /** * int32 oneof_2694 = 2694; * @return The oneof2694. */ + @java.lang.Override public int getOneof2694() { if (hugeOneofCase_ == 2694) { return (java.lang.Integer) hugeOneof_; @@ -203988,10 +231247,19 @@ public int getOneof2694() { } public static final int ONEOF_2695_FIELD_NUMBER = 2695; + /** + * int32 oneof_2695 = 2695; + * @return Whether the oneof2695 field is set. + */ + @java.lang.Override + public boolean hasOneof2695() { + return hugeOneofCase_ == 2695; + } /** * int32 oneof_2695 = 2695; * @return The oneof2695. */ + @java.lang.Override public int getOneof2695() { if (hugeOneofCase_ == 2695) { return (java.lang.Integer) hugeOneof_; @@ -204000,10 +231268,19 @@ public int getOneof2695() { } public static final int ONEOF_2696_FIELD_NUMBER = 2696; + /** + * int32 oneof_2696 = 2696; + * @return Whether the oneof2696 field is set. + */ + @java.lang.Override + public boolean hasOneof2696() { + return hugeOneofCase_ == 2696; + } /** * int32 oneof_2696 = 2696; * @return The oneof2696. */ + @java.lang.Override public int getOneof2696() { if (hugeOneofCase_ == 2696) { return (java.lang.Integer) hugeOneof_; @@ -204012,10 +231289,19 @@ public int getOneof2696() { } public static final int ONEOF_2697_FIELD_NUMBER = 2697; + /** + * int32 oneof_2697 = 2697; + * @return Whether the oneof2697 field is set. + */ + @java.lang.Override + public boolean hasOneof2697() { + return hugeOneofCase_ == 2697; + } /** * int32 oneof_2697 = 2697; * @return The oneof2697. */ + @java.lang.Override public int getOneof2697() { if (hugeOneofCase_ == 2697) { return (java.lang.Integer) hugeOneof_; @@ -204024,10 +231310,19 @@ public int getOneof2697() { } public static final int ONEOF_2698_FIELD_NUMBER = 2698; + /** + * int32 oneof_2698 = 2698; + * @return Whether the oneof2698 field is set. + */ + @java.lang.Override + public boolean hasOneof2698() { + return hugeOneofCase_ == 2698; + } /** * int32 oneof_2698 = 2698; * @return The oneof2698. */ + @java.lang.Override public int getOneof2698() { if (hugeOneofCase_ == 2698) { return (java.lang.Integer) hugeOneof_; @@ -204036,10 +231331,19 @@ public int getOneof2698() { } public static final int ONEOF_2699_FIELD_NUMBER = 2699; + /** + * int32 oneof_2699 = 2699; + * @return Whether the oneof2699 field is set. + */ + @java.lang.Override + public boolean hasOneof2699() { + return hugeOneofCase_ == 2699; + } /** * int32 oneof_2699 = 2699; * @return The oneof2699. */ + @java.lang.Override public int getOneof2699() { if (hugeOneofCase_ == 2699) { return (java.lang.Integer) hugeOneof_; @@ -204048,10 +231352,19 @@ public int getOneof2699() { } public static final int ONEOF_2700_FIELD_NUMBER = 2700; + /** + * int32 oneof_2700 = 2700; + * @return Whether the oneof2700 field is set. + */ + @java.lang.Override + public boolean hasOneof2700() { + return hugeOneofCase_ == 2700; + } /** * int32 oneof_2700 = 2700; * @return The oneof2700. */ + @java.lang.Override public int getOneof2700() { if (hugeOneofCase_ == 2700) { return (java.lang.Integer) hugeOneof_; @@ -204060,10 +231373,19 @@ public int getOneof2700() { } public static final int ONEOF_2701_FIELD_NUMBER = 2701; + /** + * int32 oneof_2701 = 2701; + * @return Whether the oneof2701 field is set. + */ + @java.lang.Override + public boolean hasOneof2701() { + return hugeOneofCase_ == 2701; + } /** * int32 oneof_2701 = 2701; * @return The oneof2701. */ + @java.lang.Override public int getOneof2701() { if (hugeOneofCase_ == 2701) { return (java.lang.Integer) hugeOneof_; @@ -204072,10 +231394,19 @@ public int getOneof2701() { } public static final int ONEOF_2702_FIELD_NUMBER = 2702; + /** + * int32 oneof_2702 = 2702; + * @return Whether the oneof2702 field is set. + */ + @java.lang.Override + public boolean hasOneof2702() { + return hugeOneofCase_ == 2702; + } /** * int32 oneof_2702 = 2702; * @return The oneof2702. */ + @java.lang.Override public int getOneof2702() { if (hugeOneofCase_ == 2702) { return (java.lang.Integer) hugeOneof_; @@ -204084,10 +231415,19 @@ public int getOneof2702() { } public static final int ONEOF_2703_FIELD_NUMBER = 2703; + /** + * int32 oneof_2703 = 2703; + * @return Whether the oneof2703 field is set. + */ + @java.lang.Override + public boolean hasOneof2703() { + return hugeOneofCase_ == 2703; + } /** * int32 oneof_2703 = 2703; * @return The oneof2703. */ + @java.lang.Override public int getOneof2703() { if (hugeOneofCase_ == 2703) { return (java.lang.Integer) hugeOneof_; @@ -204096,10 +231436,19 @@ public int getOneof2703() { } public static final int ONEOF_2704_FIELD_NUMBER = 2704; + /** + * int32 oneof_2704 = 2704; + * @return Whether the oneof2704 field is set. + */ + @java.lang.Override + public boolean hasOneof2704() { + return hugeOneofCase_ == 2704; + } /** * int32 oneof_2704 = 2704; * @return The oneof2704. */ + @java.lang.Override public int getOneof2704() { if (hugeOneofCase_ == 2704) { return (java.lang.Integer) hugeOneof_; @@ -204108,10 +231457,19 @@ public int getOneof2704() { } public static final int ONEOF_2705_FIELD_NUMBER = 2705; + /** + * int32 oneof_2705 = 2705; + * @return Whether the oneof2705 field is set. + */ + @java.lang.Override + public boolean hasOneof2705() { + return hugeOneofCase_ == 2705; + } /** * int32 oneof_2705 = 2705; * @return The oneof2705. */ + @java.lang.Override public int getOneof2705() { if (hugeOneofCase_ == 2705) { return (java.lang.Integer) hugeOneof_; @@ -204120,10 +231478,19 @@ public int getOneof2705() { } public static final int ONEOF_2706_FIELD_NUMBER = 2706; + /** + * int32 oneof_2706 = 2706; + * @return Whether the oneof2706 field is set. + */ + @java.lang.Override + public boolean hasOneof2706() { + return hugeOneofCase_ == 2706; + } /** * int32 oneof_2706 = 2706; * @return The oneof2706. */ + @java.lang.Override public int getOneof2706() { if (hugeOneofCase_ == 2706) { return (java.lang.Integer) hugeOneof_; @@ -204132,10 +231499,19 @@ public int getOneof2706() { } public static final int ONEOF_2707_FIELD_NUMBER = 2707; + /** + * int32 oneof_2707 = 2707; + * @return Whether the oneof2707 field is set. + */ + @java.lang.Override + public boolean hasOneof2707() { + return hugeOneofCase_ == 2707; + } /** * int32 oneof_2707 = 2707; * @return The oneof2707. */ + @java.lang.Override public int getOneof2707() { if (hugeOneofCase_ == 2707) { return (java.lang.Integer) hugeOneof_; @@ -204144,10 +231520,19 @@ public int getOneof2707() { } public static final int ONEOF_2708_FIELD_NUMBER = 2708; + /** + * int32 oneof_2708 = 2708; + * @return Whether the oneof2708 field is set. + */ + @java.lang.Override + public boolean hasOneof2708() { + return hugeOneofCase_ == 2708; + } /** * int32 oneof_2708 = 2708; * @return The oneof2708. */ + @java.lang.Override public int getOneof2708() { if (hugeOneofCase_ == 2708) { return (java.lang.Integer) hugeOneof_; @@ -204156,10 +231541,19 @@ public int getOneof2708() { } public static final int ONEOF_2709_FIELD_NUMBER = 2709; + /** + * int32 oneof_2709 = 2709; + * @return Whether the oneof2709 field is set. + */ + @java.lang.Override + public boolean hasOneof2709() { + return hugeOneofCase_ == 2709; + } /** * int32 oneof_2709 = 2709; * @return The oneof2709. */ + @java.lang.Override public int getOneof2709() { if (hugeOneofCase_ == 2709) { return (java.lang.Integer) hugeOneof_; @@ -204168,10 +231562,19 @@ public int getOneof2709() { } public static final int ONEOF_2710_FIELD_NUMBER = 2710; + /** + * int32 oneof_2710 = 2710; + * @return Whether the oneof2710 field is set. + */ + @java.lang.Override + public boolean hasOneof2710() { + return hugeOneofCase_ == 2710; + } /** * int32 oneof_2710 = 2710; * @return The oneof2710. */ + @java.lang.Override public int getOneof2710() { if (hugeOneofCase_ == 2710) { return (java.lang.Integer) hugeOneof_; @@ -204180,10 +231583,19 @@ public int getOneof2710() { } public static final int ONEOF_2711_FIELD_NUMBER = 2711; + /** + * int32 oneof_2711 = 2711; + * @return Whether the oneof2711 field is set. + */ + @java.lang.Override + public boolean hasOneof2711() { + return hugeOneofCase_ == 2711; + } /** * int32 oneof_2711 = 2711; * @return The oneof2711. */ + @java.lang.Override public int getOneof2711() { if (hugeOneofCase_ == 2711) { return (java.lang.Integer) hugeOneof_; @@ -204192,10 +231604,19 @@ public int getOneof2711() { } public static final int ONEOF_2712_FIELD_NUMBER = 2712; + /** + * int32 oneof_2712 = 2712; + * @return Whether the oneof2712 field is set. + */ + @java.lang.Override + public boolean hasOneof2712() { + return hugeOneofCase_ == 2712; + } /** * int32 oneof_2712 = 2712; * @return The oneof2712. */ + @java.lang.Override public int getOneof2712() { if (hugeOneofCase_ == 2712) { return (java.lang.Integer) hugeOneof_; @@ -204204,10 +231625,19 @@ public int getOneof2712() { } public static final int ONEOF_2713_FIELD_NUMBER = 2713; + /** + * int32 oneof_2713 = 2713; + * @return Whether the oneof2713 field is set. + */ + @java.lang.Override + public boolean hasOneof2713() { + return hugeOneofCase_ == 2713; + } /** * int32 oneof_2713 = 2713; * @return The oneof2713. */ + @java.lang.Override public int getOneof2713() { if (hugeOneofCase_ == 2713) { return (java.lang.Integer) hugeOneof_; @@ -204216,10 +231646,19 @@ public int getOneof2713() { } public static final int ONEOF_2714_FIELD_NUMBER = 2714; + /** + * int32 oneof_2714 = 2714; + * @return Whether the oneof2714 field is set. + */ + @java.lang.Override + public boolean hasOneof2714() { + return hugeOneofCase_ == 2714; + } /** * int32 oneof_2714 = 2714; * @return The oneof2714. */ + @java.lang.Override public int getOneof2714() { if (hugeOneofCase_ == 2714) { return (java.lang.Integer) hugeOneof_; @@ -204228,10 +231667,19 @@ public int getOneof2714() { } public static final int ONEOF_2715_FIELD_NUMBER = 2715; + /** + * int32 oneof_2715 = 2715; + * @return Whether the oneof2715 field is set. + */ + @java.lang.Override + public boolean hasOneof2715() { + return hugeOneofCase_ == 2715; + } /** * int32 oneof_2715 = 2715; * @return The oneof2715. */ + @java.lang.Override public int getOneof2715() { if (hugeOneofCase_ == 2715) { return (java.lang.Integer) hugeOneof_; @@ -204240,10 +231688,19 @@ public int getOneof2715() { } public static final int ONEOF_2716_FIELD_NUMBER = 2716; + /** + * int32 oneof_2716 = 2716; + * @return Whether the oneof2716 field is set. + */ + @java.lang.Override + public boolean hasOneof2716() { + return hugeOneofCase_ == 2716; + } /** * int32 oneof_2716 = 2716; * @return The oneof2716. */ + @java.lang.Override public int getOneof2716() { if (hugeOneofCase_ == 2716) { return (java.lang.Integer) hugeOneof_; @@ -204252,10 +231709,19 @@ public int getOneof2716() { } public static final int ONEOF_2717_FIELD_NUMBER = 2717; + /** + * int32 oneof_2717 = 2717; + * @return Whether the oneof2717 field is set. + */ + @java.lang.Override + public boolean hasOneof2717() { + return hugeOneofCase_ == 2717; + } /** * int32 oneof_2717 = 2717; * @return The oneof2717. */ + @java.lang.Override public int getOneof2717() { if (hugeOneofCase_ == 2717) { return (java.lang.Integer) hugeOneof_; @@ -204264,10 +231730,19 @@ public int getOneof2717() { } public static final int ONEOF_2718_FIELD_NUMBER = 2718; + /** + * int32 oneof_2718 = 2718; + * @return Whether the oneof2718 field is set. + */ + @java.lang.Override + public boolean hasOneof2718() { + return hugeOneofCase_ == 2718; + } /** * int32 oneof_2718 = 2718; * @return The oneof2718. */ + @java.lang.Override public int getOneof2718() { if (hugeOneofCase_ == 2718) { return (java.lang.Integer) hugeOneof_; @@ -204276,10 +231751,19 @@ public int getOneof2718() { } public static final int ONEOF_2719_FIELD_NUMBER = 2719; + /** + * int32 oneof_2719 = 2719; + * @return Whether the oneof2719 field is set. + */ + @java.lang.Override + public boolean hasOneof2719() { + return hugeOneofCase_ == 2719; + } /** * int32 oneof_2719 = 2719; * @return The oneof2719. */ + @java.lang.Override public int getOneof2719() { if (hugeOneofCase_ == 2719) { return (java.lang.Integer) hugeOneof_; @@ -204288,10 +231772,19 @@ public int getOneof2719() { } public static final int ONEOF_2720_FIELD_NUMBER = 2720; + /** + * int32 oneof_2720 = 2720; + * @return Whether the oneof2720 field is set. + */ + @java.lang.Override + public boolean hasOneof2720() { + return hugeOneofCase_ == 2720; + } /** * int32 oneof_2720 = 2720; * @return The oneof2720. */ + @java.lang.Override public int getOneof2720() { if (hugeOneofCase_ == 2720) { return (java.lang.Integer) hugeOneof_; @@ -204300,10 +231793,19 @@ public int getOneof2720() { } public static final int ONEOF_2721_FIELD_NUMBER = 2721; + /** + * int32 oneof_2721 = 2721; + * @return Whether the oneof2721 field is set. + */ + @java.lang.Override + public boolean hasOneof2721() { + return hugeOneofCase_ == 2721; + } /** * int32 oneof_2721 = 2721; * @return The oneof2721. */ + @java.lang.Override public int getOneof2721() { if (hugeOneofCase_ == 2721) { return (java.lang.Integer) hugeOneof_; @@ -204312,10 +231814,19 @@ public int getOneof2721() { } public static final int ONEOF_2722_FIELD_NUMBER = 2722; + /** + * int32 oneof_2722 = 2722; + * @return Whether the oneof2722 field is set. + */ + @java.lang.Override + public boolean hasOneof2722() { + return hugeOneofCase_ == 2722; + } /** * int32 oneof_2722 = 2722; * @return The oneof2722. */ + @java.lang.Override public int getOneof2722() { if (hugeOneofCase_ == 2722) { return (java.lang.Integer) hugeOneof_; @@ -204324,10 +231835,19 @@ public int getOneof2722() { } public static final int ONEOF_2723_FIELD_NUMBER = 2723; + /** + * int32 oneof_2723 = 2723; + * @return Whether the oneof2723 field is set. + */ + @java.lang.Override + public boolean hasOneof2723() { + return hugeOneofCase_ == 2723; + } /** * int32 oneof_2723 = 2723; * @return The oneof2723. */ + @java.lang.Override public int getOneof2723() { if (hugeOneofCase_ == 2723) { return (java.lang.Integer) hugeOneof_; @@ -204336,10 +231856,19 @@ public int getOneof2723() { } public static final int ONEOF_2724_FIELD_NUMBER = 2724; + /** + * int32 oneof_2724 = 2724; + * @return Whether the oneof2724 field is set. + */ + @java.lang.Override + public boolean hasOneof2724() { + return hugeOneofCase_ == 2724; + } /** * int32 oneof_2724 = 2724; * @return The oneof2724. */ + @java.lang.Override public int getOneof2724() { if (hugeOneofCase_ == 2724) { return (java.lang.Integer) hugeOneof_; @@ -204348,10 +231877,19 @@ public int getOneof2724() { } public static final int ONEOF_2725_FIELD_NUMBER = 2725; + /** + * int32 oneof_2725 = 2725; + * @return Whether the oneof2725 field is set. + */ + @java.lang.Override + public boolean hasOneof2725() { + return hugeOneofCase_ == 2725; + } /** * int32 oneof_2725 = 2725; * @return The oneof2725. */ + @java.lang.Override public int getOneof2725() { if (hugeOneofCase_ == 2725) { return (java.lang.Integer) hugeOneof_; @@ -204360,10 +231898,19 @@ public int getOneof2725() { } public static final int ONEOF_2726_FIELD_NUMBER = 2726; + /** + * int32 oneof_2726 = 2726; + * @return Whether the oneof2726 field is set. + */ + @java.lang.Override + public boolean hasOneof2726() { + return hugeOneofCase_ == 2726; + } /** * int32 oneof_2726 = 2726; * @return The oneof2726. */ + @java.lang.Override public int getOneof2726() { if (hugeOneofCase_ == 2726) { return (java.lang.Integer) hugeOneof_; @@ -204372,10 +231919,19 @@ public int getOneof2726() { } public static final int ONEOF_2727_FIELD_NUMBER = 2727; + /** + * int32 oneof_2727 = 2727; + * @return Whether the oneof2727 field is set. + */ + @java.lang.Override + public boolean hasOneof2727() { + return hugeOneofCase_ == 2727; + } /** * int32 oneof_2727 = 2727; * @return The oneof2727. */ + @java.lang.Override public int getOneof2727() { if (hugeOneofCase_ == 2727) { return (java.lang.Integer) hugeOneof_; @@ -204384,10 +231940,19 @@ public int getOneof2727() { } public static final int ONEOF_2728_FIELD_NUMBER = 2728; + /** + * int32 oneof_2728 = 2728; + * @return Whether the oneof2728 field is set. + */ + @java.lang.Override + public boolean hasOneof2728() { + return hugeOneofCase_ == 2728; + } /** * int32 oneof_2728 = 2728; * @return The oneof2728. */ + @java.lang.Override public int getOneof2728() { if (hugeOneofCase_ == 2728) { return (java.lang.Integer) hugeOneof_; @@ -204396,10 +231961,19 @@ public int getOneof2728() { } public static final int ONEOF_2729_FIELD_NUMBER = 2729; + /** + * int32 oneof_2729 = 2729; + * @return Whether the oneof2729 field is set. + */ + @java.lang.Override + public boolean hasOneof2729() { + return hugeOneofCase_ == 2729; + } /** * int32 oneof_2729 = 2729; * @return The oneof2729. */ + @java.lang.Override public int getOneof2729() { if (hugeOneofCase_ == 2729) { return (java.lang.Integer) hugeOneof_; @@ -204408,10 +231982,19 @@ public int getOneof2729() { } public static final int ONEOF_2730_FIELD_NUMBER = 2730; + /** + * int32 oneof_2730 = 2730; + * @return Whether the oneof2730 field is set. + */ + @java.lang.Override + public boolean hasOneof2730() { + return hugeOneofCase_ == 2730; + } /** * int32 oneof_2730 = 2730; * @return The oneof2730. */ + @java.lang.Override public int getOneof2730() { if (hugeOneofCase_ == 2730) { return (java.lang.Integer) hugeOneof_; @@ -204420,10 +232003,19 @@ public int getOneof2730() { } public static final int ONEOF_2731_FIELD_NUMBER = 2731; + /** + * int32 oneof_2731 = 2731; + * @return Whether the oneof2731 field is set. + */ + @java.lang.Override + public boolean hasOneof2731() { + return hugeOneofCase_ == 2731; + } /** * int32 oneof_2731 = 2731; * @return The oneof2731. */ + @java.lang.Override public int getOneof2731() { if (hugeOneofCase_ == 2731) { return (java.lang.Integer) hugeOneof_; @@ -204432,10 +232024,19 @@ public int getOneof2731() { } public static final int ONEOF_2732_FIELD_NUMBER = 2732; + /** + * int32 oneof_2732 = 2732; + * @return Whether the oneof2732 field is set. + */ + @java.lang.Override + public boolean hasOneof2732() { + return hugeOneofCase_ == 2732; + } /** * int32 oneof_2732 = 2732; * @return The oneof2732. */ + @java.lang.Override public int getOneof2732() { if (hugeOneofCase_ == 2732) { return (java.lang.Integer) hugeOneof_; @@ -204444,10 +232045,19 @@ public int getOneof2732() { } public static final int ONEOF_2733_FIELD_NUMBER = 2733; + /** + * int32 oneof_2733 = 2733; + * @return Whether the oneof2733 field is set. + */ + @java.lang.Override + public boolean hasOneof2733() { + return hugeOneofCase_ == 2733; + } /** * int32 oneof_2733 = 2733; * @return The oneof2733. */ + @java.lang.Override public int getOneof2733() { if (hugeOneofCase_ == 2733) { return (java.lang.Integer) hugeOneof_; @@ -204456,10 +232066,19 @@ public int getOneof2733() { } public static final int ONEOF_2734_FIELD_NUMBER = 2734; + /** + * int32 oneof_2734 = 2734; + * @return Whether the oneof2734 field is set. + */ + @java.lang.Override + public boolean hasOneof2734() { + return hugeOneofCase_ == 2734; + } /** * int32 oneof_2734 = 2734; * @return The oneof2734. */ + @java.lang.Override public int getOneof2734() { if (hugeOneofCase_ == 2734) { return (java.lang.Integer) hugeOneof_; @@ -204468,10 +232087,19 @@ public int getOneof2734() { } public static final int ONEOF_2735_FIELD_NUMBER = 2735; + /** + * int32 oneof_2735 = 2735; + * @return Whether the oneof2735 field is set. + */ + @java.lang.Override + public boolean hasOneof2735() { + return hugeOneofCase_ == 2735; + } /** * int32 oneof_2735 = 2735; * @return The oneof2735. */ + @java.lang.Override public int getOneof2735() { if (hugeOneofCase_ == 2735) { return (java.lang.Integer) hugeOneof_; @@ -204480,10 +232108,19 @@ public int getOneof2735() { } public static final int ONEOF_2736_FIELD_NUMBER = 2736; + /** + * int32 oneof_2736 = 2736; + * @return Whether the oneof2736 field is set. + */ + @java.lang.Override + public boolean hasOneof2736() { + return hugeOneofCase_ == 2736; + } /** * int32 oneof_2736 = 2736; * @return The oneof2736. */ + @java.lang.Override public int getOneof2736() { if (hugeOneofCase_ == 2736) { return (java.lang.Integer) hugeOneof_; @@ -204492,10 +232129,19 @@ public int getOneof2736() { } public static final int ONEOF_2737_FIELD_NUMBER = 2737; + /** + * int32 oneof_2737 = 2737; + * @return Whether the oneof2737 field is set. + */ + @java.lang.Override + public boolean hasOneof2737() { + return hugeOneofCase_ == 2737; + } /** * int32 oneof_2737 = 2737; * @return The oneof2737. */ + @java.lang.Override public int getOneof2737() { if (hugeOneofCase_ == 2737) { return (java.lang.Integer) hugeOneof_; @@ -204504,10 +232150,19 @@ public int getOneof2737() { } public static final int ONEOF_2738_FIELD_NUMBER = 2738; + /** + * int32 oneof_2738 = 2738; + * @return Whether the oneof2738 field is set. + */ + @java.lang.Override + public boolean hasOneof2738() { + return hugeOneofCase_ == 2738; + } /** * int32 oneof_2738 = 2738; * @return The oneof2738. */ + @java.lang.Override public int getOneof2738() { if (hugeOneofCase_ == 2738) { return (java.lang.Integer) hugeOneof_; @@ -204516,10 +232171,19 @@ public int getOneof2738() { } public static final int ONEOF_2739_FIELD_NUMBER = 2739; + /** + * int32 oneof_2739 = 2739; + * @return Whether the oneof2739 field is set. + */ + @java.lang.Override + public boolean hasOneof2739() { + return hugeOneofCase_ == 2739; + } /** * int32 oneof_2739 = 2739; * @return The oneof2739. */ + @java.lang.Override public int getOneof2739() { if (hugeOneofCase_ == 2739) { return (java.lang.Integer) hugeOneof_; @@ -204528,10 +232192,19 @@ public int getOneof2739() { } public static final int ONEOF_2740_FIELD_NUMBER = 2740; + /** + * int32 oneof_2740 = 2740; + * @return Whether the oneof2740 field is set. + */ + @java.lang.Override + public boolean hasOneof2740() { + return hugeOneofCase_ == 2740; + } /** * int32 oneof_2740 = 2740; * @return The oneof2740. */ + @java.lang.Override public int getOneof2740() { if (hugeOneofCase_ == 2740) { return (java.lang.Integer) hugeOneof_; @@ -204540,10 +232213,19 @@ public int getOneof2740() { } public static final int ONEOF_2741_FIELD_NUMBER = 2741; + /** + * int32 oneof_2741 = 2741; + * @return Whether the oneof2741 field is set. + */ + @java.lang.Override + public boolean hasOneof2741() { + return hugeOneofCase_ == 2741; + } /** * int32 oneof_2741 = 2741; * @return The oneof2741. */ + @java.lang.Override public int getOneof2741() { if (hugeOneofCase_ == 2741) { return (java.lang.Integer) hugeOneof_; @@ -204552,10 +232234,19 @@ public int getOneof2741() { } public static final int ONEOF_2742_FIELD_NUMBER = 2742; + /** + * int32 oneof_2742 = 2742; + * @return Whether the oneof2742 field is set. + */ + @java.lang.Override + public boolean hasOneof2742() { + return hugeOneofCase_ == 2742; + } /** * int32 oneof_2742 = 2742; * @return The oneof2742. */ + @java.lang.Override public int getOneof2742() { if (hugeOneofCase_ == 2742) { return (java.lang.Integer) hugeOneof_; @@ -204564,10 +232255,19 @@ public int getOneof2742() { } public static final int ONEOF_2743_FIELD_NUMBER = 2743; + /** + * int32 oneof_2743 = 2743; + * @return Whether the oneof2743 field is set. + */ + @java.lang.Override + public boolean hasOneof2743() { + return hugeOneofCase_ == 2743; + } /** * int32 oneof_2743 = 2743; * @return The oneof2743. */ + @java.lang.Override public int getOneof2743() { if (hugeOneofCase_ == 2743) { return (java.lang.Integer) hugeOneof_; @@ -204576,10 +232276,19 @@ public int getOneof2743() { } public static final int ONEOF_2744_FIELD_NUMBER = 2744; + /** + * int32 oneof_2744 = 2744; + * @return Whether the oneof2744 field is set. + */ + @java.lang.Override + public boolean hasOneof2744() { + return hugeOneofCase_ == 2744; + } /** * int32 oneof_2744 = 2744; * @return The oneof2744. */ + @java.lang.Override public int getOneof2744() { if (hugeOneofCase_ == 2744) { return (java.lang.Integer) hugeOneof_; @@ -204588,10 +232297,19 @@ public int getOneof2744() { } public static final int ONEOF_2745_FIELD_NUMBER = 2745; + /** + * int32 oneof_2745 = 2745; + * @return Whether the oneof2745 field is set. + */ + @java.lang.Override + public boolean hasOneof2745() { + return hugeOneofCase_ == 2745; + } /** * int32 oneof_2745 = 2745; * @return The oneof2745. */ + @java.lang.Override public int getOneof2745() { if (hugeOneofCase_ == 2745) { return (java.lang.Integer) hugeOneof_; @@ -204600,10 +232318,19 @@ public int getOneof2745() { } public static final int ONEOF_2746_FIELD_NUMBER = 2746; + /** + * int32 oneof_2746 = 2746; + * @return Whether the oneof2746 field is set. + */ + @java.lang.Override + public boolean hasOneof2746() { + return hugeOneofCase_ == 2746; + } /** * int32 oneof_2746 = 2746; * @return The oneof2746. */ + @java.lang.Override public int getOneof2746() { if (hugeOneofCase_ == 2746) { return (java.lang.Integer) hugeOneof_; @@ -204612,10 +232339,19 @@ public int getOneof2746() { } public static final int ONEOF_2747_FIELD_NUMBER = 2747; + /** + * int32 oneof_2747 = 2747; + * @return Whether the oneof2747 field is set. + */ + @java.lang.Override + public boolean hasOneof2747() { + return hugeOneofCase_ == 2747; + } /** * int32 oneof_2747 = 2747; * @return The oneof2747. */ + @java.lang.Override public int getOneof2747() { if (hugeOneofCase_ == 2747) { return (java.lang.Integer) hugeOneof_; @@ -204624,10 +232360,19 @@ public int getOneof2747() { } public static final int ONEOF_2748_FIELD_NUMBER = 2748; + /** + * int32 oneof_2748 = 2748; + * @return Whether the oneof2748 field is set. + */ + @java.lang.Override + public boolean hasOneof2748() { + return hugeOneofCase_ == 2748; + } /** * int32 oneof_2748 = 2748; * @return The oneof2748. */ + @java.lang.Override public int getOneof2748() { if (hugeOneofCase_ == 2748) { return (java.lang.Integer) hugeOneof_; @@ -204636,10 +232381,19 @@ public int getOneof2748() { } public static final int ONEOF_2749_FIELD_NUMBER = 2749; + /** + * int32 oneof_2749 = 2749; + * @return Whether the oneof2749 field is set. + */ + @java.lang.Override + public boolean hasOneof2749() { + return hugeOneofCase_ == 2749; + } /** * int32 oneof_2749 = 2749; * @return The oneof2749. */ + @java.lang.Override public int getOneof2749() { if (hugeOneofCase_ == 2749) { return (java.lang.Integer) hugeOneof_; @@ -204648,10 +232402,19 @@ public int getOneof2749() { } public static final int ONEOF_2750_FIELD_NUMBER = 2750; + /** + * int32 oneof_2750 = 2750; + * @return Whether the oneof2750 field is set. + */ + @java.lang.Override + public boolean hasOneof2750() { + return hugeOneofCase_ == 2750; + } /** * int32 oneof_2750 = 2750; * @return The oneof2750. */ + @java.lang.Override public int getOneof2750() { if (hugeOneofCase_ == 2750) { return (java.lang.Integer) hugeOneof_; @@ -204660,10 +232423,19 @@ public int getOneof2750() { } public static final int ONEOF_2751_FIELD_NUMBER = 2751; + /** + * int32 oneof_2751 = 2751; + * @return Whether the oneof2751 field is set. + */ + @java.lang.Override + public boolean hasOneof2751() { + return hugeOneofCase_ == 2751; + } /** * int32 oneof_2751 = 2751; * @return The oneof2751. */ + @java.lang.Override public int getOneof2751() { if (hugeOneofCase_ == 2751) { return (java.lang.Integer) hugeOneof_; @@ -204672,10 +232444,19 @@ public int getOneof2751() { } public static final int ONEOF_2752_FIELD_NUMBER = 2752; + /** + * int32 oneof_2752 = 2752; + * @return Whether the oneof2752 field is set. + */ + @java.lang.Override + public boolean hasOneof2752() { + return hugeOneofCase_ == 2752; + } /** * int32 oneof_2752 = 2752; * @return The oneof2752. */ + @java.lang.Override public int getOneof2752() { if (hugeOneofCase_ == 2752) { return (java.lang.Integer) hugeOneof_; @@ -204684,10 +232465,19 @@ public int getOneof2752() { } public static final int ONEOF_2753_FIELD_NUMBER = 2753; + /** + * int32 oneof_2753 = 2753; + * @return Whether the oneof2753 field is set. + */ + @java.lang.Override + public boolean hasOneof2753() { + return hugeOneofCase_ == 2753; + } /** * int32 oneof_2753 = 2753; * @return The oneof2753. */ + @java.lang.Override public int getOneof2753() { if (hugeOneofCase_ == 2753) { return (java.lang.Integer) hugeOneof_; @@ -204696,10 +232486,19 @@ public int getOneof2753() { } public static final int ONEOF_2754_FIELD_NUMBER = 2754; + /** + * int32 oneof_2754 = 2754; + * @return Whether the oneof2754 field is set. + */ + @java.lang.Override + public boolean hasOneof2754() { + return hugeOneofCase_ == 2754; + } /** * int32 oneof_2754 = 2754; * @return The oneof2754. */ + @java.lang.Override public int getOneof2754() { if (hugeOneofCase_ == 2754) { return (java.lang.Integer) hugeOneof_; @@ -204708,10 +232507,19 @@ public int getOneof2754() { } public static final int ONEOF_2755_FIELD_NUMBER = 2755; + /** + * int32 oneof_2755 = 2755; + * @return Whether the oneof2755 field is set. + */ + @java.lang.Override + public boolean hasOneof2755() { + return hugeOneofCase_ == 2755; + } /** * int32 oneof_2755 = 2755; * @return The oneof2755. */ + @java.lang.Override public int getOneof2755() { if (hugeOneofCase_ == 2755) { return (java.lang.Integer) hugeOneof_; @@ -204720,10 +232528,19 @@ public int getOneof2755() { } public static final int ONEOF_2756_FIELD_NUMBER = 2756; + /** + * int32 oneof_2756 = 2756; + * @return Whether the oneof2756 field is set. + */ + @java.lang.Override + public boolean hasOneof2756() { + return hugeOneofCase_ == 2756; + } /** * int32 oneof_2756 = 2756; * @return The oneof2756. */ + @java.lang.Override public int getOneof2756() { if (hugeOneofCase_ == 2756) { return (java.lang.Integer) hugeOneof_; @@ -204732,10 +232549,19 @@ public int getOneof2756() { } public static final int ONEOF_2757_FIELD_NUMBER = 2757; + /** + * int32 oneof_2757 = 2757; + * @return Whether the oneof2757 field is set. + */ + @java.lang.Override + public boolean hasOneof2757() { + return hugeOneofCase_ == 2757; + } /** * int32 oneof_2757 = 2757; * @return The oneof2757. */ + @java.lang.Override public int getOneof2757() { if (hugeOneofCase_ == 2757) { return (java.lang.Integer) hugeOneof_; @@ -204744,10 +232570,19 @@ public int getOneof2757() { } public static final int ONEOF_2758_FIELD_NUMBER = 2758; + /** + * int32 oneof_2758 = 2758; + * @return Whether the oneof2758 field is set. + */ + @java.lang.Override + public boolean hasOneof2758() { + return hugeOneofCase_ == 2758; + } /** * int32 oneof_2758 = 2758; * @return The oneof2758. */ + @java.lang.Override public int getOneof2758() { if (hugeOneofCase_ == 2758) { return (java.lang.Integer) hugeOneof_; @@ -204756,10 +232591,19 @@ public int getOneof2758() { } public static final int ONEOF_2759_FIELD_NUMBER = 2759; + /** + * int32 oneof_2759 = 2759; + * @return Whether the oneof2759 field is set. + */ + @java.lang.Override + public boolean hasOneof2759() { + return hugeOneofCase_ == 2759; + } /** * int32 oneof_2759 = 2759; * @return The oneof2759. */ + @java.lang.Override public int getOneof2759() { if (hugeOneofCase_ == 2759) { return (java.lang.Integer) hugeOneof_; @@ -204768,10 +232612,19 @@ public int getOneof2759() { } public static final int ONEOF_2760_FIELD_NUMBER = 2760; + /** + * int32 oneof_2760 = 2760; + * @return Whether the oneof2760 field is set. + */ + @java.lang.Override + public boolean hasOneof2760() { + return hugeOneofCase_ == 2760; + } /** * int32 oneof_2760 = 2760; * @return The oneof2760. */ + @java.lang.Override public int getOneof2760() { if (hugeOneofCase_ == 2760) { return (java.lang.Integer) hugeOneof_; @@ -204780,10 +232633,19 @@ public int getOneof2760() { } public static final int ONEOF_2761_FIELD_NUMBER = 2761; + /** + * int32 oneof_2761 = 2761; + * @return Whether the oneof2761 field is set. + */ + @java.lang.Override + public boolean hasOneof2761() { + return hugeOneofCase_ == 2761; + } /** * int32 oneof_2761 = 2761; * @return The oneof2761. */ + @java.lang.Override public int getOneof2761() { if (hugeOneofCase_ == 2761) { return (java.lang.Integer) hugeOneof_; @@ -204792,10 +232654,19 @@ public int getOneof2761() { } public static final int ONEOF_2762_FIELD_NUMBER = 2762; + /** + * int32 oneof_2762 = 2762; + * @return Whether the oneof2762 field is set. + */ + @java.lang.Override + public boolean hasOneof2762() { + return hugeOneofCase_ == 2762; + } /** * int32 oneof_2762 = 2762; * @return The oneof2762. */ + @java.lang.Override public int getOneof2762() { if (hugeOneofCase_ == 2762) { return (java.lang.Integer) hugeOneof_; @@ -204804,10 +232675,19 @@ public int getOneof2762() { } public static final int ONEOF_2763_FIELD_NUMBER = 2763; + /** + * int32 oneof_2763 = 2763; + * @return Whether the oneof2763 field is set. + */ + @java.lang.Override + public boolean hasOneof2763() { + return hugeOneofCase_ == 2763; + } /** * int32 oneof_2763 = 2763; * @return The oneof2763. */ + @java.lang.Override public int getOneof2763() { if (hugeOneofCase_ == 2763) { return (java.lang.Integer) hugeOneof_; @@ -204816,10 +232696,19 @@ public int getOneof2763() { } public static final int ONEOF_2764_FIELD_NUMBER = 2764; + /** + * int32 oneof_2764 = 2764; + * @return Whether the oneof2764 field is set. + */ + @java.lang.Override + public boolean hasOneof2764() { + return hugeOneofCase_ == 2764; + } /** * int32 oneof_2764 = 2764; * @return The oneof2764. */ + @java.lang.Override public int getOneof2764() { if (hugeOneofCase_ == 2764) { return (java.lang.Integer) hugeOneof_; @@ -204828,10 +232717,19 @@ public int getOneof2764() { } public static final int ONEOF_2765_FIELD_NUMBER = 2765; + /** + * int32 oneof_2765 = 2765; + * @return Whether the oneof2765 field is set. + */ + @java.lang.Override + public boolean hasOneof2765() { + return hugeOneofCase_ == 2765; + } /** * int32 oneof_2765 = 2765; * @return The oneof2765. */ + @java.lang.Override public int getOneof2765() { if (hugeOneofCase_ == 2765) { return (java.lang.Integer) hugeOneof_; @@ -204840,10 +232738,19 @@ public int getOneof2765() { } public static final int ONEOF_2766_FIELD_NUMBER = 2766; + /** + * int32 oneof_2766 = 2766; + * @return Whether the oneof2766 field is set. + */ + @java.lang.Override + public boolean hasOneof2766() { + return hugeOneofCase_ == 2766; + } /** * int32 oneof_2766 = 2766; * @return The oneof2766. */ + @java.lang.Override public int getOneof2766() { if (hugeOneofCase_ == 2766) { return (java.lang.Integer) hugeOneof_; @@ -204852,10 +232759,19 @@ public int getOneof2766() { } public static final int ONEOF_2767_FIELD_NUMBER = 2767; + /** + * int32 oneof_2767 = 2767; + * @return Whether the oneof2767 field is set. + */ + @java.lang.Override + public boolean hasOneof2767() { + return hugeOneofCase_ == 2767; + } /** * int32 oneof_2767 = 2767; * @return The oneof2767. */ + @java.lang.Override public int getOneof2767() { if (hugeOneofCase_ == 2767) { return (java.lang.Integer) hugeOneof_; @@ -204864,10 +232780,19 @@ public int getOneof2767() { } public static final int ONEOF_2768_FIELD_NUMBER = 2768; + /** + * int32 oneof_2768 = 2768; + * @return Whether the oneof2768 field is set. + */ + @java.lang.Override + public boolean hasOneof2768() { + return hugeOneofCase_ == 2768; + } /** * int32 oneof_2768 = 2768; * @return The oneof2768. */ + @java.lang.Override public int getOneof2768() { if (hugeOneofCase_ == 2768) { return (java.lang.Integer) hugeOneof_; @@ -204876,10 +232801,19 @@ public int getOneof2768() { } public static final int ONEOF_2769_FIELD_NUMBER = 2769; + /** + * int32 oneof_2769 = 2769; + * @return Whether the oneof2769 field is set. + */ + @java.lang.Override + public boolean hasOneof2769() { + return hugeOneofCase_ == 2769; + } /** * int32 oneof_2769 = 2769; * @return The oneof2769. */ + @java.lang.Override public int getOneof2769() { if (hugeOneofCase_ == 2769) { return (java.lang.Integer) hugeOneof_; @@ -204888,10 +232822,19 @@ public int getOneof2769() { } public static final int ONEOF_2770_FIELD_NUMBER = 2770; + /** + * int32 oneof_2770 = 2770; + * @return Whether the oneof2770 field is set. + */ + @java.lang.Override + public boolean hasOneof2770() { + return hugeOneofCase_ == 2770; + } /** * int32 oneof_2770 = 2770; * @return The oneof2770. */ + @java.lang.Override public int getOneof2770() { if (hugeOneofCase_ == 2770) { return (java.lang.Integer) hugeOneof_; @@ -204900,10 +232843,19 @@ public int getOneof2770() { } public static final int ONEOF_2771_FIELD_NUMBER = 2771; + /** + * int32 oneof_2771 = 2771; + * @return Whether the oneof2771 field is set. + */ + @java.lang.Override + public boolean hasOneof2771() { + return hugeOneofCase_ == 2771; + } /** * int32 oneof_2771 = 2771; * @return The oneof2771. */ + @java.lang.Override public int getOneof2771() { if (hugeOneofCase_ == 2771) { return (java.lang.Integer) hugeOneof_; @@ -204912,10 +232864,19 @@ public int getOneof2771() { } public static final int ONEOF_2772_FIELD_NUMBER = 2772; + /** + * int32 oneof_2772 = 2772; + * @return Whether the oneof2772 field is set. + */ + @java.lang.Override + public boolean hasOneof2772() { + return hugeOneofCase_ == 2772; + } /** * int32 oneof_2772 = 2772; * @return The oneof2772. */ + @java.lang.Override public int getOneof2772() { if (hugeOneofCase_ == 2772) { return (java.lang.Integer) hugeOneof_; @@ -204924,10 +232885,19 @@ public int getOneof2772() { } public static final int ONEOF_2773_FIELD_NUMBER = 2773; + /** + * int32 oneof_2773 = 2773; + * @return Whether the oneof2773 field is set. + */ + @java.lang.Override + public boolean hasOneof2773() { + return hugeOneofCase_ == 2773; + } /** * int32 oneof_2773 = 2773; * @return The oneof2773. */ + @java.lang.Override public int getOneof2773() { if (hugeOneofCase_ == 2773) { return (java.lang.Integer) hugeOneof_; @@ -204936,10 +232906,19 @@ public int getOneof2773() { } public static final int ONEOF_2774_FIELD_NUMBER = 2774; + /** + * int32 oneof_2774 = 2774; + * @return Whether the oneof2774 field is set. + */ + @java.lang.Override + public boolean hasOneof2774() { + return hugeOneofCase_ == 2774; + } /** * int32 oneof_2774 = 2774; * @return The oneof2774. */ + @java.lang.Override public int getOneof2774() { if (hugeOneofCase_ == 2774) { return (java.lang.Integer) hugeOneof_; @@ -204948,10 +232927,19 @@ public int getOneof2774() { } public static final int ONEOF_2775_FIELD_NUMBER = 2775; + /** + * int32 oneof_2775 = 2775; + * @return Whether the oneof2775 field is set. + */ + @java.lang.Override + public boolean hasOneof2775() { + return hugeOneofCase_ == 2775; + } /** * int32 oneof_2775 = 2775; * @return The oneof2775. */ + @java.lang.Override public int getOneof2775() { if (hugeOneofCase_ == 2775) { return (java.lang.Integer) hugeOneof_; @@ -204960,10 +232948,19 @@ public int getOneof2775() { } public static final int ONEOF_2776_FIELD_NUMBER = 2776; + /** + * int32 oneof_2776 = 2776; + * @return Whether the oneof2776 field is set. + */ + @java.lang.Override + public boolean hasOneof2776() { + return hugeOneofCase_ == 2776; + } /** * int32 oneof_2776 = 2776; * @return The oneof2776. */ + @java.lang.Override public int getOneof2776() { if (hugeOneofCase_ == 2776) { return (java.lang.Integer) hugeOneof_; @@ -204972,10 +232969,19 @@ public int getOneof2776() { } public static final int ONEOF_2777_FIELD_NUMBER = 2777; + /** + * int32 oneof_2777 = 2777; + * @return Whether the oneof2777 field is set. + */ + @java.lang.Override + public boolean hasOneof2777() { + return hugeOneofCase_ == 2777; + } /** * int32 oneof_2777 = 2777; * @return The oneof2777. */ + @java.lang.Override public int getOneof2777() { if (hugeOneofCase_ == 2777) { return (java.lang.Integer) hugeOneof_; @@ -204984,10 +232990,19 @@ public int getOneof2777() { } public static final int ONEOF_2778_FIELD_NUMBER = 2778; + /** + * int32 oneof_2778 = 2778; + * @return Whether the oneof2778 field is set. + */ + @java.lang.Override + public boolean hasOneof2778() { + return hugeOneofCase_ == 2778; + } /** * int32 oneof_2778 = 2778; * @return The oneof2778. */ + @java.lang.Override public int getOneof2778() { if (hugeOneofCase_ == 2778) { return (java.lang.Integer) hugeOneof_; @@ -204996,10 +233011,19 @@ public int getOneof2778() { } public static final int ONEOF_2779_FIELD_NUMBER = 2779; + /** + * int32 oneof_2779 = 2779; + * @return Whether the oneof2779 field is set. + */ + @java.lang.Override + public boolean hasOneof2779() { + return hugeOneofCase_ == 2779; + } /** * int32 oneof_2779 = 2779; * @return The oneof2779. */ + @java.lang.Override public int getOneof2779() { if (hugeOneofCase_ == 2779) { return (java.lang.Integer) hugeOneof_; @@ -205008,10 +233032,19 @@ public int getOneof2779() { } public static final int ONEOF_2780_FIELD_NUMBER = 2780; + /** + * int32 oneof_2780 = 2780; + * @return Whether the oneof2780 field is set. + */ + @java.lang.Override + public boolean hasOneof2780() { + return hugeOneofCase_ == 2780; + } /** * int32 oneof_2780 = 2780; * @return The oneof2780. */ + @java.lang.Override public int getOneof2780() { if (hugeOneofCase_ == 2780) { return (java.lang.Integer) hugeOneof_; @@ -205020,10 +233053,19 @@ public int getOneof2780() { } public static final int ONEOF_2781_FIELD_NUMBER = 2781; + /** + * int32 oneof_2781 = 2781; + * @return Whether the oneof2781 field is set. + */ + @java.lang.Override + public boolean hasOneof2781() { + return hugeOneofCase_ == 2781; + } /** * int32 oneof_2781 = 2781; * @return The oneof2781. */ + @java.lang.Override public int getOneof2781() { if (hugeOneofCase_ == 2781) { return (java.lang.Integer) hugeOneof_; @@ -205032,10 +233074,19 @@ public int getOneof2781() { } public static final int ONEOF_2782_FIELD_NUMBER = 2782; + /** + * int32 oneof_2782 = 2782; + * @return Whether the oneof2782 field is set. + */ + @java.lang.Override + public boolean hasOneof2782() { + return hugeOneofCase_ == 2782; + } /** * int32 oneof_2782 = 2782; * @return The oneof2782. */ + @java.lang.Override public int getOneof2782() { if (hugeOneofCase_ == 2782) { return (java.lang.Integer) hugeOneof_; @@ -205044,10 +233095,19 @@ public int getOneof2782() { } public static final int ONEOF_2783_FIELD_NUMBER = 2783; + /** + * int32 oneof_2783 = 2783; + * @return Whether the oneof2783 field is set. + */ + @java.lang.Override + public boolean hasOneof2783() { + return hugeOneofCase_ == 2783; + } /** * int32 oneof_2783 = 2783; * @return The oneof2783. */ + @java.lang.Override public int getOneof2783() { if (hugeOneofCase_ == 2783) { return (java.lang.Integer) hugeOneof_; @@ -205056,10 +233116,19 @@ public int getOneof2783() { } public static final int ONEOF_2784_FIELD_NUMBER = 2784; + /** + * int32 oneof_2784 = 2784; + * @return Whether the oneof2784 field is set. + */ + @java.lang.Override + public boolean hasOneof2784() { + return hugeOneofCase_ == 2784; + } /** * int32 oneof_2784 = 2784; * @return The oneof2784. */ + @java.lang.Override public int getOneof2784() { if (hugeOneofCase_ == 2784) { return (java.lang.Integer) hugeOneof_; @@ -205068,10 +233137,19 @@ public int getOneof2784() { } public static final int ONEOF_2785_FIELD_NUMBER = 2785; + /** + * int32 oneof_2785 = 2785; + * @return Whether the oneof2785 field is set. + */ + @java.lang.Override + public boolean hasOneof2785() { + return hugeOneofCase_ == 2785; + } /** * int32 oneof_2785 = 2785; * @return The oneof2785. */ + @java.lang.Override public int getOneof2785() { if (hugeOneofCase_ == 2785) { return (java.lang.Integer) hugeOneof_; @@ -205080,10 +233158,19 @@ public int getOneof2785() { } public static final int ONEOF_2786_FIELD_NUMBER = 2786; + /** + * int32 oneof_2786 = 2786; + * @return Whether the oneof2786 field is set. + */ + @java.lang.Override + public boolean hasOneof2786() { + return hugeOneofCase_ == 2786; + } /** * int32 oneof_2786 = 2786; * @return The oneof2786. */ + @java.lang.Override public int getOneof2786() { if (hugeOneofCase_ == 2786) { return (java.lang.Integer) hugeOneof_; @@ -205092,10 +233179,19 @@ public int getOneof2786() { } public static final int ONEOF_2787_FIELD_NUMBER = 2787; + /** + * int32 oneof_2787 = 2787; + * @return Whether the oneof2787 field is set. + */ + @java.lang.Override + public boolean hasOneof2787() { + return hugeOneofCase_ == 2787; + } /** * int32 oneof_2787 = 2787; * @return The oneof2787. */ + @java.lang.Override public int getOneof2787() { if (hugeOneofCase_ == 2787) { return (java.lang.Integer) hugeOneof_; @@ -205104,10 +233200,19 @@ public int getOneof2787() { } public static final int ONEOF_2788_FIELD_NUMBER = 2788; + /** + * int32 oneof_2788 = 2788; + * @return Whether the oneof2788 field is set. + */ + @java.lang.Override + public boolean hasOneof2788() { + return hugeOneofCase_ == 2788; + } /** * int32 oneof_2788 = 2788; * @return The oneof2788. */ + @java.lang.Override public int getOneof2788() { if (hugeOneofCase_ == 2788) { return (java.lang.Integer) hugeOneof_; @@ -205116,10 +233221,19 @@ public int getOneof2788() { } public static final int ONEOF_2789_FIELD_NUMBER = 2789; + /** + * int32 oneof_2789 = 2789; + * @return Whether the oneof2789 field is set. + */ + @java.lang.Override + public boolean hasOneof2789() { + return hugeOneofCase_ == 2789; + } /** * int32 oneof_2789 = 2789; * @return The oneof2789. */ + @java.lang.Override public int getOneof2789() { if (hugeOneofCase_ == 2789) { return (java.lang.Integer) hugeOneof_; @@ -205128,10 +233242,19 @@ public int getOneof2789() { } public static final int ONEOF_2790_FIELD_NUMBER = 2790; + /** + * int32 oneof_2790 = 2790; + * @return Whether the oneof2790 field is set. + */ + @java.lang.Override + public boolean hasOneof2790() { + return hugeOneofCase_ == 2790; + } /** * int32 oneof_2790 = 2790; * @return The oneof2790. */ + @java.lang.Override public int getOneof2790() { if (hugeOneofCase_ == 2790) { return (java.lang.Integer) hugeOneof_; @@ -205140,10 +233263,19 @@ public int getOneof2790() { } public static final int ONEOF_2791_FIELD_NUMBER = 2791; + /** + * int32 oneof_2791 = 2791; + * @return Whether the oneof2791 field is set. + */ + @java.lang.Override + public boolean hasOneof2791() { + return hugeOneofCase_ == 2791; + } /** * int32 oneof_2791 = 2791; * @return The oneof2791. */ + @java.lang.Override public int getOneof2791() { if (hugeOneofCase_ == 2791) { return (java.lang.Integer) hugeOneof_; @@ -205152,10 +233284,19 @@ public int getOneof2791() { } public static final int ONEOF_2792_FIELD_NUMBER = 2792; + /** + * int32 oneof_2792 = 2792; + * @return Whether the oneof2792 field is set. + */ + @java.lang.Override + public boolean hasOneof2792() { + return hugeOneofCase_ == 2792; + } /** * int32 oneof_2792 = 2792; * @return The oneof2792. */ + @java.lang.Override public int getOneof2792() { if (hugeOneofCase_ == 2792) { return (java.lang.Integer) hugeOneof_; @@ -205164,10 +233305,19 @@ public int getOneof2792() { } public static final int ONEOF_2793_FIELD_NUMBER = 2793; + /** + * int32 oneof_2793 = 2793; + * @return Whether the oneof2793 field is set. + */ + @java.lang.Override + public boolean hasOneof2793() { + return hugeOneofCase_ == 2793; + } /** * int32 oneof_2793 = 2793; * @return The oneof2793. */ + @java.lang.Override public int getOneof2793() { if (hugeOneofCase_ == 2793) { return (java.lang.Integer) hugeOneof_; @@ -205176,10 +233326,19 @@ public int getOneof2793() { } public static final int ONEOF_2794_FIELD_NUMBER = 2794; + /** + * int32 oneof_2794 = 2794; + * @return Whether the oneof2794 field is set. + */ + @java.lang.Override + public boolean hasOneof2794() { + return hugeOneofCase_ == 2794; + } /** * int32 oneof_2794 = 2794; * @return The oneof2794. */ + @java.lang.Override public int getOneof2794() { if (hugeOneofCase_ == 2794) { return (java.lang.Integer) hugeOneof_; @@ -205188,10 +233347,19 @@ public int getOneof2794() { } public static final int ONEOF_2795_FIELD_NUMBER = 2795; + /** + * int32 oneof_2795 = 2795; + * @return Whether the oneof2795 field is set. + */ + @java.lang.Override + public boolean hasOneof2795() { + return hugeOneofCase_ == 2795; + } /** * int32 oneof_2795 = 2795; * @return The oneof2795. */ + @java.lang.Override public int getOneof2795() { if (hugeOneofCase_ == 2795) { return (java.lang.Integer) hugeOneof_; @@ -205200,10 +233368,19 @@ public int getOneof2795() { } public static final int ONEOF_2796_FIELD_NUMBER = 2796; + /** + * int32 oneof_2796 = 2796; + * @return Whether the oneof2796 field is set. + */ + @java.lang.Override + public boolean hasOneof2796() { + return hugeOneofCase_ == 2796; + } /** * int32 oneof_2796 = 2796; * @return The oneof2796. */ + @java.lang.Override public int getOneof2796() { if (hugeOneofCase_ == 2796) { return (java.lang.Integer) hugeOneof_; @@ -205212,10 +233389,19 @@ public int getOneof2796() { } public static final int ONEOF_2797_FIELD_NUMBER = 2797; + /** + * int32 oneof_2797 = 2797; + * @return Whether the oneof2797 field is set. + */ + @java.lang.Override + public boolean hasOneof2797() { + return hugeOneofCase_ == 2797; + } /** * int32 oneof_2797 = 2797; * @return The oneof2797. */ + @java.lang.Override public int getOneof2797() { if (hugeOneofCase_ == 2797) { return (java.lang.Integer) hugeOneof_; @@ -205224,10 +233410,19 @@ public int getOneof2797() { } public static final int ONEOF_2798_FIELD_NUMBER = 2798; + /** + * int32 oneof_2798 = 2798; + * @return Whether the oneof2798 field is set. + */ + @java.lang.Override + public boolean hasOneof2798() { + return hugeOneofCase_ == 2798; + } /** * int32 oneof_2798 = 2798; * @return The oneof2798. */ + @java.lang.Override public int getOneof2798() { if (hugeOneofCase_ == 2798) { return (java.lang.Integer) hugeOneof_; @@ -205236,10 +233431,19 @@ public int getOneof2798() { } public static final int ONEOF_2799_FIELD_NUMBER = 2799; + /** + * int32 oneof_2799 = 2799; + * @return Whether the oneof2799 field is set. + */ + @java.lang.Override + public boolean hasOneof2799() { + return hugeOneofCase_ == 2799; + } /** * int32 oneof_2799 = 2799; * @return The oneof2799. */ + @java.lang.Override public int getOneof2799() { if (hugeOneofCase_ == 2799) { return (java.lang.Integer) hugeOneof_; @@ -205248,10 +233452,19 @@ public int getOneof2799() { } public static final int ONEOF_2800_FIELD_NUMBER = 2800; + /** + * int32 oneof_2800 = 2800; + * @return Whether the oneof2800 field is set. + */ + @java.lang.Override + public boolean hasOneof2800() { + return hugeOneofCase_ == 2800; + } /** * int32 oneof_2800 = 2800; * @return The oneof2800. */ + @java.lang.Override public int getOneof2800() { if (hugeOneofCase_ == 2800) { return (java.lang.Integer) hugeOneof_; @@ -205260,10 +233473,19 @@ public int getOneof2800() { } public static final int ONEOF_2801_FIELD_NUMBER = 2801; + /** + * int32 oneof_2801 = 2801; + * @return Whether the oneof2801 field is set. + */ + @java.lang.Override + public boolean hasOneof2801() { + return hugeOneofCase_ == 2801; + } /** * int32 oneof_2801 = 2801; * @return The oneof2801. */ + @java.lang.Override public int getOneof2801() { if (hugeOneofCase_ == 2801) { return (java.lang.Integer) hugeOneof_; @@ -205272,10 +233494,19 @@ public int getOneof2801() { } public static final int ONEOF_2802_FIELD_NUMBER = 2802; + /** + * int32 oneof_2802 = 2802; + * @return Whether the oneof2802 field is set. + */ + @java.lang.Override + public boolean hasOneof2802() { + return hugeOneofCase_ == 2802; + } /** * int32 oneof_2802 = 2802; * @return The oneof2802. */ + @java.lang.Override public int getOneof2802() { if (hugeOneofCase_ == 2802) { return (java.lang.Integer) hugeOneof_; @@ -205284,10 +233515,19 @@ public int getOneof2802() { } public static final int ONEOF_2803_FIELD_NUMBER = 2803; + /** + * int32 oneof_2803 = 2803; + * @return Whether the oneof2803 field is set. + */ + @java.lang.Override + public boolean hasOneof2803() { + return hugeOneofCase_ == 2803; + } /** * int32 oneof_2803 = 2803; * @return The oneof2803. */ + @java.lang.Override public int getOneof2803() { if (hugeOneofCase_ == 2803) { return (java.lang.Integer) hugeOneof_; @@ -205296,10 +233536,19 @@ public int getOneof2803() { } public static final int ONEOF_2804_FIELD_NUMBER = 2804; + /** + * int32 oneof_2804 = 2804; + * @return Whether the oneof2804 field is set. + */ + @java.lang.Override + public boolean hasOneof2804() { + return hugeOneofCase_ == 2804; + } /** * int32 oneof_2804 = 2804; * @return The oneof2804. */ + @java.lang.Override public int getOneof2804() { if (hugeOneofCase_ == 2804) { return (java.lang.Integer) hugeOneof_; @@ -205308,10 +233557,19 @@ public int getOneof2804() { } public static final int ONEOF_2805_FIELD_NUMBER = 2805; + /** + * int32 oneof_2805 = 2805; + * @return Whether the oneof2805 field is set. + */ + @java.lang.Override + public boolean hasOneof2805() { + return hugeOneofCase_ == 2805; + } /** * int32 oneof_2805 = 2805; * @return The oneof2805. */ + @java.lang.Override public int getOneof2805() { if (hugeOneofCase_ == 2805) { return (java.lang.Integer) hugeOneof_; @@ -205320,10 +233578,19 @@ public int getOneof2805() { } public static final int ONEOF_2806_FIELD_NUMBER = 2806; + /** + * int32 oneof_2806 = 2806; + * @return Whether the oneof2806 field is set. + */ + @java.lang.Override + public boolean hasOneof2806() { + return hugeOneofCase_ == 2806; + } /** * int32 oneof_2806 = 2806; * @return The oneof2806. */ + @java.lang.Override public int getOneof2806() { if (hugeOneofCase_ == 2806) { return (java.lang.Integer) hugeOneof_; @@ -205332,10 +233599,19 @@ public int getOneof2806() { } public static final int ONEOF_2807_FIELD_NUMBER = 2807; + /** + * int32 oneof_2807 = 2807; + * @return Whether the oneof2807 field is set. + */ + @java.lang.Override + public boolean hasOneof2807() { + return hugeOneofCase_ == 2807; + } /** * int32 oneof_2807 = 2807; * @return The oneof2807. */ + @java.lang.Override public int getOneof2807() { if (hugeOneofCase_ == 2807) { return (java.lang.Integer) hugeOneof_; @@ -205344,10 +233620,19 @@ public int getOneof2807() { } public static final int ONEOF_2808_FIELD_NUMBER = 2808; + /** + * int32 oneof_2808 = 2808; + * @return Whether the oneof2808 field is set. + */ + @java.lang.Override + public boolean hasOneof2808() { + return hugeOneofCase_ == 2808; + } /** * int32 oneof_2808 = 2808; * @return The oneof2808. */ + @java.lang.Override public int getOneof2808() { if (hugeOneofCase_ == 2808) { return (java.lang.Integer) hugeOneof_; @@ -205356,10 +233641,19 @@ public int getOneof2808() { } public static final int ONEOF_2809_FIELD_NUMBER = 2809; + /** + * int32 oneof_2809 = 2809; + * @return Whether the oneof2809 field is set. + */ + @java.lang.Override + public boolean hasOneof2809() { + return hugeOneofCase_ == 2809; + } /** * int32 oneof_2809 = 2809; * @return The oneof2809. */ + @java.lang.Override public int getOneof2809() { if (hugeOneofCase_ == 2809) { return (java.lang.Integer) hugeOneof_; @@ -205368,10 +233662,19 @@ public int getOneof2809() { } public static final int ONEOF_2810_FIELD_NUMBER = 2810; + /** + * int32 oneof_2810 = 2810; + * @return Whether the oneof2810 field is set. + */ + @java.lang.Override + public boolean hasOneof2810() { + return hugeOneofCase_ == 2810; + } /** * int32 oneof_2810 = 2810; * @return The oneof2810. */ + @java.lang.Override public int getOneof2810() { if (hugeOneofCase_ == 2810) { return (java.lang.Integer) hugeOneof_; @@ -205380,10 +233683,19 @@ public int getOneof2810() { } public static final int ONEOF_2811_FIELD_NUMBER = 2811; + /** + * int32 oneof_2811 = 2811; + * @return Whether the oneof2811 field is set. + */ + @java.lang.Override + public boolean hasOneof2811() { + return hugeOneofCase_ == 2811; + } /** * int32 oneof_2811 = 2811; * @return The oneof2811. */ + @java.lang.Override public int getOneof2811() { if (hugeOneofCase_ == 2811) { return (java.lang.Integer) hugeOneof_; @@ -205392,10 +233704,19 @@ public int getOneof2811() { } public static final int ONEOF_2812_FIELD_NUMBER = 2812; + /** + * int32 oneof_2812 = 2812; + * @return Whether the oneof2812 field is set. + */ + @java.lang.Override + public boolean hasOneof2812() { + return hugeOneofCase_ == 2812; + } /** * int32 oneof_2812 = 2812; * @return The oneof2812. */ + @java.lang.Override public int getOneof2812() { if (hugeOneofCase_ == 2812) { return (java.lang.Integer) hugeOneof_; @@ -205404,10 +233725,19 @@ public int getOneof2812() { } public static final int ONEOF_2813_FIELD_NUMBER = 2813; + /** + * int32 oneof_2813 = 2813; + * @return Whether the oneof2813 field is set. + */ + @java.lang.Override + public boolean hasOneof2813() { + return hugeOneofCase_ == 2813; + } /** * int32 oneof_2813 = 2813; * @return The oneof2813. */ + @java.lang.Override public int getOneof2813() { if (hugeOneofCase_ == 2813) { return (java.lang.Integer) hugeOneof_; @@ -205416,10 +233746,19 @@ public int getOneof2813() { } public static final int ONEOF_2814_FIELD_NUMBER = 2814; + /** + * int32 oneof_2814 = 2814; + * @return Whether the oneof2814 field is set. + */ + @java.lang.Override + public boolean hasOneof2814() { + return hugeOneofCase_ == 2814; + } /** * int32 oneof_2814 = 2814; * @return The oneof2814. */ + @java.lang.Override public int getOneof2814() { if (hugeOneofCase_ == 2814) { return (java.lang.Integer) hugeOneof_; @@ -205428,10 +233767,19 @@ public int getOneof2814() { } public static final int ONEOF_2815_FIELD_NUMBER = 2815; + /** + * int32 oneof_2815 = 2815; + * @return Whether the oneof2815 field is set. + */ + @java.lang.Override + public boolean hasOneof2815() { + return hugeOneofCase_ == 2815; + } /** * int32 oneof_2815 = 2815; * @return The oneof2815. */ + @java.lang.Override public int getOneof2815() { if (hugeOneofCase_ == 2815) { return (java.lang.Integer) hugeOneof_; @@ -205440,10 +233788,19 @@ public int getOneof2815() { } public static final int ONEOF_2816_FIELD_NUMBER = 2816; + /** + * int32 oneof_2816 = 2816; + * @return Whether the oneof2816 field is set. + */ + @java.lang.Override + public boolean hasOneof2816() { + return hugeOneofCase_ == 2816; + } /** * int32 oneof_2816 = 2816; * @return The oneof2816. */ + @java.lang.Override public int getOneof2816() { if (hugeOneofCase_ == 2816) { return (java.lang.Integer) hugeOneof_; @@ -205452,10 +233809,19 @@ public int getOneof2816() { } public static final int ONEOF_2817_FIELD_NUMBER = 2817; + /** + * int32 oneof_2817 = 2817; + * @return Whether the oneof2817 field is set. + */ + @java.lang.Override + public boolean hasOneof2817() { + return hugeOneofCase_ == 2817; + } /** * int32 oneof_2817 = 2817; * @return The oneof2817. */ + @java.lang.Override public int getOneof2817() { if (hugeOneofCase_ == 2817) { return (java.lang.Integer) hugeOneof_; @@ -205464,10 +233830,19 @@ public int getOneof2817() { } public static final int ONEOF_2818_FIELD_NUMBER = 2818; + /** + * int32 oneof_2818 = 2818; + * @return Whether the oneof2818 field is set. + */ + @java.lang.Override + public boolean hasOneof2818() { + return hugeOneofCase_ == 2818; + } /** * int32 oneof_2818 = 2818; * @return The oneof2818. */ + @java.lang.Override public int getOneof2818() { if (hugeOneofCase_ == 2818) { return (java.lang.Integer) hugeOneof_; @@ -205476,10 +233851,19 @@ public int getOneof2818() { } public static final int ONEOF_2819_FIELD_NUMBER = 2819; + /** + * int32 oneof_2819 = 2819; + * @return Whether the oneof2819 field is set. + */ + @java.lang.Override + public boolean hasOneof2819() { + return hugeOneofCase_ == 2819; + } /** * int32 oneof_2819 = 2819; * @return The oneof2819. */ + @java.lang.Override public int getOneof2819() { if (hugeOneofCase_ == 2819) { return (java.lang.Integer) hugeOneof_; @@ -205488,10 +233872,19 @@ public int getOneof2819() { } public static final int ONEOF_2820_FIELD_NUMBER = 2820; + /** + * int32 oneof_2820 = 2820; + * @return Whether the oneof2820 field is set. + */ + @java.lang.Override + public boolean hasOneof2820() { + return hugeOneofCase_ == 2820; + } /** * int32 oneof_2820 = 2820; * @return The oneof2820. */ + @java.lang.Override public int getOneof2820() { if (hugeOneofCase_ == 2820) { return (java.lang.Integer) hugeOneof_; @@ -205500,10 +233893,19 @@ public int getOneof2820() { } public static final int ONEOF_2821_FIELD_NUMBER = 2821; + /** + * int32 oneof_2821 = 2821; + * @return Whether the oneof2821 field is set. + */ + @java.lang.Override + public boolean hasOneof2821() { + return hugeOneofCase_ == 2821; + } /** * int32 oneof_2821 = 2821; * @return The oneof2821. */ + @java.lang.Override public int getOneof2821() { if (hugeOneofCase_ == 2821) { return (java.lang.Integer) hugeOneof_; @@ -205512,10 +233914,19 @@ public int getOneof2821() { } public static final int ONEOF_2822_FIELD_NUMBER = 2822; + /** + * int32 oneof_2822 = 2822; + * @return Whether the oneof2822 field is set. + */ + @java.lang.Override + public boolean hasOneof2822() { + return hugeOneofCase_ == 2822; + } /** * int32 oneof_2822 = 2822; * @return The oneof2822. */ + @java.lang.Override public int getOneof2822() { if (hugeOneofCase_ == 2822) { return (java.lang.Integer) hugeOneof_; @@ -205524,10 +233935,19 @@ public int getOneof2822() { } public static final int ONEOF_2823_FIELD_NUMBER = 2823; + /** + * int32 oneof_2823 = 2823; + * @return Whether the oneof2823 field is set. + */ + @java.lang.Override + public boolean hasOneof2823() { + return hugeOneofCase_ == 2823; + } /** * int32 oneof_2823 = 2823; * @return The oneof2823. */ + @java.lang.Override public int getOneof2823() { if (hugeOneofCase_ == 2823) { return (java.lang.Integer) hugeOneof_; @@ -205536,10 +233956,19 @@ public int getOneof2823() { } public static final int ONEOF_2824_FIELD_NUMBER = 2824; + /** + * int32 oneof_2824 = 2824; + * @return Whether the oneof2824 field is set. + */ + @java.lang.Override + public boolean hasOneof2824() { + return hugeOneofCase_ == 2824; + } /** * int32 oneof_2824 = 2824; * @return The oneof2824. */ + @java.lang.Override public int getOneof2824() { if (hugeOneofCase_ == 2824) { return (java.lang.Integer) hugeOneof_; @@ -205548,10 +233977,19 @@ public int getOneof2824() { } public static final int ONEOF_2825_FIELD_NUMBER = 2825; + /** + * int32 oneof_2825 = 2825; + * @return Whether the oneof2825 field is set. + */ + @java.lang.Override + public boolean hasOneof2825() { + return hugeOneofCase_ == 2825; + } /** * int32 oneof_2825 = 2825; * @return The oneof2825. */ + @java.lang.Override public int getOneof2825() { if (hugeOneofCase_ == 2825) { return (java.lang.Integer) hugeOneof_; @@ -205560,10 +233998,19 @@ public int getOneof2825() { } public static final int ONEOF_2826_FIELD_NUMBER = 2826; + /** + * int32 oneof_2826 = 2826; + * @return Whether the oneof2826 field is set. + */ + @java.lang.Override + public boolean hasOneof2826() { + return hugeOneofCase_ == 2826; + } /** * int32 oneof_2826 = 2826; * @return The oneof2826. */ + @java.lang.Override public int getOneof2826() { if (hugeOneofCase_ == 2826) { return (java.lang.Integer) hugeOneof_; @@ -205572,10 +234019,19 @@ public int getOneof2826() { } public static final int ONEOF_2827_FIELD_NUMBER = 2827; + /** + * int32 oneof_2827 = 2827; + * @return Whether the oneof2827 field is set. + */ + @java.lang.Override + public boolean hasOneof2827() { + return hugeOneofCase_ == 2827; + } /** * int32 oneof_2827 = 2827; * @return The oneof2827. */ + @java.lang.Override public int getOneof2827() { if (hugeOneofCase_ == 2827) { return (java.lang.Integer) hugeOneof_; @@ -205584,10 +234040,19 @@ public int getOneof2827() { } public static final int ONEOF_2828_FIELD_NUMBER = 2828; + /** + * int32 oneof_2828 = 2828; + * @return Whether the oneof2828 field is set. + */ + @java.lang.Override + public boolean hasOneof2828() { + return hugeOneofCase_ == 2828; + } /** * int32 oneof_2828 = 2828; * @return The oneof2828. */ + @java.lang.Override public int getOneof2828() { if (hugeOneofCase_ == 2828) { return (java.lang.Integer) hugeOneof_; @@ -205596,10 +234061,19 @@ public int getOneof2828() { } public static final int ONEOF_2829_FIELD_NUMBER = 2829; + /** + * int32 oneof_2829 = 2829; + * @return Whether the oneof2829 field is set. + */ + @java.lang.Override + public boolean hasOneof2829() { + return hugeOneofCase_ == 2829; + } /** * int32 oneof_2829 = 2829; * @return The oneof2829. */ + @java.lang.Override public int getOneof2829() { if (hugeOneofCase_ == 2829) { return (java.lang.Integer) hugeOneof_; @@ -205608,10 +234082,19 @@ public int getOneof2829() { } public static final int ONEOF_2830_FIELD_NUMBER = 2830; + /** + * int32 oneof_2830 = 2830; + * @return Whether the oneof2830 field is set. + */ + @java.lang.Override + public boolean hasOneof2830() { + return hugeOneofCase_ == 2830; + } /** * int32 oneof_2830 = 2830; * @return The oneof2830. */ + @java.lang.Override public int getOneof2830() { if (hugeOneofCase_ == 2830) { return (java.lang.Integer) hugeOneof_; @@ -205620,10 +234103,19 @@ public int getOneof2830() { } public static final int ONEOF_2831_FIELD_NUMBER = 2831; + /** + * int32 oneof_2831 = 2831; + * @return Whether the oneof2831 field is set. + */ + @java.lang.Override + public boolean hasOneof2831() { + return hugeOneofCase_ == 2831; + } /** * int32 oneof_2831 = 2831; * @return The oneof2831. */ + @java.lang.Override public int getOneof2831() { if (hugeOneofCase_ == 2831) { return (java.lang.Integer) hugeOneof_; @@ -205632,10 +234124,19 @@ public int getOneof2831() { } public static final int ONEOF_2832_FIELD_NUMBER = 2832; + /** + * int32 oneof_2832 = 2832; + * @return Whether the oneof2832 field is set. + */ + @java.lang.Override + public boolean hasOneof2832() { + return hugeOneofCase_ == 2832; + } /** * int32 oneof_2832 = 2832; * @return The oneof2832. */ + @java.lang.Override public int getOneof2832() { if (hugeOneofCase_ == 2832) { return (java.lang.Integer) hugeOneof_; @@ -205644,10 +234145,19 @@ public int getOneof2832() { } public static final int ONEOF_2833_FIELD_NUMBER = 2833; + /** + * int32 oneof_2833 = 2833; + * @return Whether the oneof2833 field is set. + */ + @java.lang.Override + public boolean hasOneof2833() { + return hugeOneofCase_ == 2833; + } /** * int32 oneof_2833 = 2833; * @return The oneof2833. */ + @java.lang.Override public int getOneof2833() { if (hugeOneofCase_ == 2833) { return (java.lang.Integer) hugeOneof_; @@ -205656,10 +234166,19 @@ public int getOneof2833() { } public static final int ONEOF_2834_FIELD_NUMBER = 2834; + /** + * int32 oneof_2834 = 2834; + * @return Whether the oneof2834 field is set. + */ + @java.lang.Override + public boolean hasOneof2834() { + return hugeOneofCase_ == 2834; + } /** * int32 oneof_2834 = 2834; * @return The oneof2834. */ + @java.lang.Override public int getOneof2834() { if (hugeOneofCase_ == 2834) { return (java.lang.Integer) hugeOneof_; @@ -205668,10 +234187,19 @@ public int getOneof2834() { } public static final int ONEOF_2835_FIELD_NUMBER = 2835; + /** + * int32 oneof_2835 = 2835; + * @return Whether the oneof2835 field is set. + */ + @java.lang.Override + public boolean hasOneof2835() { + return hugeOneofCase_ == 2835; + } /** * int32 oneof_2835 = 2835; * @return The oneof2835. */ + @java.lang.Override public int getOneof2835() { if (hugeOneofCase_ == 2835) { return (java.lang.Integer) hugeOneof_; @@ -205680,10 +234208,19 @@ public int getOneof2835() { } public static final int ONEOF_2836_FIELD_NUMBER = 2836; + /** + * int32 oneof_2836 = 2836; + * @return Whether the oneof2836 field is set. + */ + @java.lang.Override + public boolean hasOneof2836() { + return hugeOneofCase_ == 2836; + } /** * int32 oneof_2836 = 2836; * @return The oneof2836. */ + @java.lang.Override public int getOneof2836() { if (hugeOneofCase_ == 2836) { return (java.lang.Integer) hugeOneof_; @@ -205692,10 +234229,19 @@ public int getOneof2836() { } public static final int ONEOF_2837_FIELD_NUMBER = 2837; + /** + * int32 oneof_2837 = 2837; + * @return Whether the oneof2837 field is set. + */ + @java.lang.Override + public boolean hasOneof2837() { + return hugeOneofCase_ == 2837; + } /** * int32 oneof_2837 = 2837; * @return The oneof2837. */ + @java.lang.Override public int getOneof2837() { if (hugeOneofCase_ == 2837) { return (java.lang.Integer) hugeOneof_; @@ -205704,10 +234250,19 @@ public int getOneof2837() { } public static final int ONEOF_2838_FIELD_NUMBER = 2838; + /** + * int32 oneof_2838 = 2838; + * @return Whether the oneof2838 field is set. + */ + @java.lang.Override + public boolean hasOneof2838() { + return hugeOneofCase_ == 2838; + } /** * int32 oneof_2838 = 2838; * @return The oneof2838. */ + @java.lang.Override public int getOneof2838() { if (hugeOneofCase_ == 2838) { return (java.lang.Integer) hugeOneof_; @@ -205716,10 +234271,19 @@ public int getOneof2838() { } public static final int ONEOF_2839_FIELD_NUMBER = 2839; + /** + * int32 oneof_2839 = 2839; + * @return Whether the oneof2839 field is set. + */ + @java.lang.Override + public boolean hasOneof2839() { + return hugeOneofCase_ == 2839; + } /** * int32 oneof_2839 = 2839; * @return The oneof2839. */ + @java.lang.Override public int getOneof2839() { if (hugeOneofCase_ == 2839) { return (java.lang.Integer) hugeOneof_; @@ -205728,10 +234292,19 @@ public int getOneof2839() { } public static final int ONEOF_2840_FIELD_NUMBER = 2840; + /** + * int32 oneof_2840 = 2840; + * @return Whether the oneof2840 field is set. + */ + @java.lang.Override + public boolean hasOneof2840() { + return hugeOneofCase_ == 2840; + } /** * int32 oneof_2840 = 2840; * @return The oneof2840. */ + @java.lang.Override public int getOneof2840() { if (hugeOneofCase_ == 2840) { return (java.lang.Integer) hugeOneof_; @@ -205740,10 +234313,19 @@ public int getOneof2840() { } public static final int ONEOF_2841_FIELD_NUMBER = 2841; + /** + * int32 oneof_2841 = 2841; + * @return Whether the oneof2841 field is set. + */ + @java.lang.Override + public boolean hasOneof2841() { + return hugeOneofCase_ == 2841; + } /** * int32 oneof_2841 = 2841; * @return The oneof2841. */ + @java.lang.Override public int getOneof2841() { if (hugeOneofCase_ == 2841) { return (java.lang.Integer) hugeOneof_; @@ -205752,10 +234334,19 @@ public int getOneof2841() { } public static final int ONEOF_2842_FIELD_NUMBER = 2842; + /** + * int32 oneof_2842 = 2842; + * @return Whether the oneof2842 field is set. + */ + @java.lang.Override + public boolean hasOneof2842() { + return hugeOneofCase_ == 2842; + } /** * int32 oneof_2842 = 2842; * @return The oneof2842. */ + @java.lang.Override public int getOneof2842() { if (hugeOneofCase_ == 2842) { return (java.lang.Integer) hugeOneof_; @@ -205764,10 +234355,19 @@ public int getOneof2842() { } public static final int ONEOF_2843_FIELD_NUMBER = 2843; + /** + * int32 oneof_2843 = 2843; + * @return Whether the oneof2843 field is set. + */ + @java.lang.Override + public boolean hasOneof2843() { + return hugeOneofCase_ == 2843; + } /** * int32 oneof_2843 = 2843; * @return The oneof2843. */ + @java.lang.Override public int getOneof2843() { if (hugeOneofCase_ == 2843) { return (java.lang.Integer) hugeOneof_; @@ -205776,10 +234376,19 @@ public int getOneof2843() { } public static final int ONEOF_2844_FIELD_NUMBER = 2844; + /** + * int32 oneof_2844 = 2844; + * @return Whether the oneof2844 field is set. + */ + @java.lang.Override + public boolean hasOneof2844() { + return hugeOneofCase_ == 2844; + } /** * int32 oneof_2844 = 2844; * @return The oneof2844. */ + @java.lang.Override public int getOneof2844() { if (hugeOneofCase_ == 2844) { return (java.lang.Integer) hugeOneof_; @@ -205788,10 +234397,19 @@ public int getOneof2844() { } public static final int ONEOF_2845_FIELD_NUMBER = 2845; + /** + * int32 oneof_2845 = 2845; + * @return Whether the oneof2845 field is set. + */ + @java.lang.Override + public boolean hasOneof2845() { + return hugeOneofCase_ == 2845; + } /** * int32 oneof_2845 = 2845; * @return The oneof2845. */ + @java.lang.Override public int getOneof2845() { if (hugeOneofCase_ == 2845) { return (java.lang.Integer) hugeOneof_; @@ -205800,10 +234418,19 @@ public int getOneof2845() { } public static final int ONEOF_2846_FIELD_NUMBER = 2846; + /** + * int32 oneof_2846 = 2846; + * @return Whether the oneof2846 field is set. + */ + @java.lang.Override + public boolean hasOneof2846() { + return hugeOneofCase_ == 2846; + } /** * int32 oneof_2846 = 2846; * @return The oneof2846. */ + @java.lang.Override public int getOneof2846() { if (hugeOneofCase_ == 2846) { return (java.lang.Integer) hugeOneof_; @@ -205812,10 +234439,19 @@ public int getOneof2846() { } public static final int ONEOF_2847_FIELD_NUMBER = 2847; + /** + * int32 oneof_2847 = 2847; + * @return Whether the oneof2847 field is set. + */ + @java.lang.Override + public boolean hasOneof2847() { + return hugeOneofCase_ == 2847; + } /** * int32 oneof_2847 = 2847; * @return The oneof2847. */ + @java.lang.Override public int getOneof2847() { if (hugeOneofCase_ == 2847) { return (java.lang.Integer) hugeOneof_; @@ -205824,10 +234460,19 @@ public int getOneof2847() { } public static final int ONEOF_2848_FIELD_NUMBER = 2848; + /** + * int32 oneof_2848 = 2848; + * @return Whether the oneof2848 field is set. + */ + @java.lang.Override + public boolean hasOneof2848() { + return hugeOneofCase_ == 2848; + } /** * int32 oneof_2848 = 2848; * @return The oneof2848. */ + @java.lang.Override public int getOneof2848() { if (hugeOneofCase_ == 2848) { return (java.lang.Integer) hugeOneof_; @@ -205836,10 +234481,19 @@ public int getOneof2848() { } public static final int ONEOF_2849_FIELD_NUMBER = 2849; + /** + * int32 oneof_2849 = 2849; + * @return Whether the oneof2849 field is set. + */ + @java.lang.Override + public boolean hasOneof2849() { + return hugeOneofCase_ == 2849; + } /** * int32 oneof_2849 = 2849; * @return The oneof2849. */ + @java.lang.Override public int getOneof2849() { if (hugeOneofCase_ == 2849) { return (java.lang.Integer) hugeOneof_; @@ -205848,10 +234502,19 @@ public int getOneof2849() { } public static final int ONEOF_2850_FIELD_NUMBER = 2850; + /** + * int32 oneof_2850 = 2850; + * @return Whether the oneof2850 field is set. + */ + @java.lang.Override + public boolean hasOneof2850() { + return hugeOneofCase_ == 2850; + } /** * int32 oneof_2850 = 2850; * @return The oneof2850. */ + @java.lang.Override public int getOneof2850() { if (hugeOneofCase_ == 2850) { return (java.lang.Integer) hugeOneof_; @@ -205860,10 +234523,19 @@ public int getOneof2850() { } public static final int ONEOF_2851_FIELD_NUMBER = 2851; + /** + * int32 oneof_2851 = 2851; + * @return Whether the oneof2851 field is set. + */ + @java.lang.Override + public boolean hasOneof2851() { + return hugeOneofCase_ == 2851; + } /** * int32 oneof_2851 = 2851; * @return The oneof2851. */ + @java.lang.Override public int getOneof2851() { if (hugeOneofCase_ == 2851) { return (java.lang.Integer) hugeOneof_; @@ -205872,10 +234544,19 @@ public int getOneof2851() { } public static final int ONEOF_2852_FIELD_NUMBER = 2852; + /** + * int32 oneof_2852 = 2852; + * @return Whether the oneof2852 field is set. + */ + @java.lang.Override + public boolean hasOneof2852() { + return hugeOneofCase_ == 2852; + } /** * int32 oneof_2852 = 2852; * @return The oneof2852. */ + @java.lang.Override public int getOneof2852() { if (hugeOneofCase_ == 2852) { return (java.lang.Integer) hugeOneof_; @@ -205884,10 +234565,19 @@ public int getOneof2852() { } public static final int ONEOF_2853_FIELD_NUMBER = 2853; + /** + * int32 oneof_2853 = 2853; + * @return Whether the oneof2853 field is set. + */ + @java.lang.Override + public boolean hasOneof2853() { + return hugeOneofCase_ == 2853; + } /** * int32 oneof_2853 = 2853; * @return The oneof2853. */ + @java.lang.Override public int getOneof2853() { if (hugeOneofCase_ == 2853) { return (java.lang.Integer) hugeOneof_; @@ -205896,10 +234586,19 @@ public int getOneof2853() { } public static final int ONEOF_2854_FIELD_NUMBER = 2854; + /** + * int32 oneof_2854 = 2854; + * @return Whether the oneof2854 field is set. + */ + @java.lang.Override + public boolean hasOneof2854() { + return hugeOneofCase_ == 2854; + } /** * int32 oneof_2854 = 2854; * @return The oneof2854. */ + @java.lang.Override public int getOneof2854() { if (hugeOneofCase_ == 2854) { return (java.lang.Integer) hugeOneof_; @@ -205908,10 +234607,19 @@ public int getOneof2854() { } public static final int ONEOF_2855_FIELD_NUMBER = 2855; + /** + * int32 oneof_2855 = 2855; + * @return Whether the oneof2855 field is set. + */ + @java.lang.Override + public boolean hasOneof2855() { + return hugeOneofCase_ == 2855; + } /** * int32 oneof_2855 = 2855; * @return The oneof2855. */ + @java.lang.Override public int getOneof2855() { if (hugeOneofCase_ == 2855) { return (java.lang.Integer) hugeOneof_; @@ -205920,10 +234628,19 @@ public int getOneof2855() { } public static final int ONEOF_2856_FIELD_NUMBER = 2856; + /** + * int32 oneof_2856 = 2856; + * @return Whether the oneof2856 field is set. + */ + @java.lang.Override + public boolean hasOneof2856() { + return hugeOneofCase_ == 2856; + } /** * int32 oneof_2856 = 2856; * @return The oneof2856. */ + @java.lang.Override public int getOneof2856() { if (hugeOneofCase_ == 2856) { return (java.lang.Integer) hugeOneof_; @@ -205932,10 +234649,19 @@ public int getOneof2856() { } public static final int ONEOF_2857_FIELD_NUMBER = 2857; + /** + * int32 oneof_2857 = 2857; + * @return Whether the oneof2857 field is set. + */ + @java.lang.Override + public boolean hasOneof2857() { + return hugeOneofCase_ == 2857; + } /** * int32 oneof_2857 = 2857; * @return The oneof2857. */ + @java.lang.Override public int getOneof2857() { if (hugeOneofCase_ == 2857) { return (java.lang.Integer) hugeOneof_; @@ -205944,10 +234670,19 @@ public int getOneof2857() { } public static final int ONEOF_2858_FIELD_NUMBER = 2858; + /** + * int32 oneof_2858 = 2858; + * @return Whether the oneof2858 field is set. + */ + @java.lang.Override + public boolean hasOneof2858() { + return hugeOneofCase_ == 2858; + } /** * int32 oneof_2858 = 2858; * @return The oneof2858. */ + @java.lang.Override public int getOneof2858() { if (hugeOneofCase_ == 2858) { return (java.lang.Integer) hugeOneof_; @@ -205956,10 +234691,19 @@ public int getOneof2858() { } public static final int ONEOF_2859_FIELD_NUMBER = 2859; + /** + * int32 oneof_2859 = 2859; + * @return Whether the oneof2859 field is set. + */ + @java.lang.Override + public boolean hasOneof2859() { + return hugeOneofCase_ == 2859; + } /** * int32 oneof_2859 = 2859; * @return The oneof2859. */ + @java.lang.Override public int getOneof2859() { if (hugeOneofCase_ == 2859) { return (java.lang.Integer) hugeOneof_; @@ -205968,10 +234712,19 @@ public int getOneof2859() { } public static final int ONEOF_2860_FIELD_NUMBER = 2860; + /** + * int32 oneof_2860 = 2860; + * @return Whether the oneof2860 field is set. + */ + @java.lang.Override + public boolean hasOneof2860() { + return hugeOneofCase_ == 2860; + } /** * int32 oneof_2860 = 2860; * @return The oneof2860. */ + @java.lang.Override public int getOneof2860() { if (hugeOneofCase_ == 2860) { return (java.lang.Integer) hugeOneof_; @@ -205980,10 +234733,19 @@ public int getOneof2860() { } public static final int ONEOF_2861_FIELD_NUMBER = 2861; + /** + * int32 oneof_2861 = 2861; + * @return Whether the oneof2861 field is set. + */ + @java.lang.Override + public boolean hasOneof2861() { + return hugeOneofCase_ == 2861; + } /** * int32 oneof_2861 = 2861; * @return The oneof2861. */ + @java.lang.Override public int getOneof2861() { if (hugeOneofCase_ == 2861) { return (java.lang.Integer) hugeOneof_; @@ -205992,10 +234754,19 @@ public int getOneof2861() { } public static final int ONEOF_2862_FIELD_NUMBER = 2862; + /** + * int32 oneof_2862 = 2862; + * @return Whether the oneof2862 field is set. + */ + @java.lang.Override + public boolean hasOneof2862() { + return hugeOneofCase_ == 2862; + } /** * int32 oneof_2862 = 2862; * @return The oneof2862. */ + @java.lang.Override public int getOneof2862() { if (hugeOneofCase_ == 2862) { return (java.lang.Integer) hugeOneof_; @@ -206004,10 +234775,19 @@ public int getOneof2862() { } public static final int ONEOF_2863_FIELD_NUMBER = 2863; + /** + * int32 oneof_2863 = 2863; + * @return Whether the oneof2863 field is set. + */ + @java.lang.Override + public boolean hasOneof2863() { + return hugeOneofCase_ == 2863; + } /** * int32 oneof_2863 = 2863; * @return The oneof2863. */ + @java.lang.Override public int getOneof2863() { if (hugeOneofCase_ == 2863) { return (java.lang.Integer) hugeOneof_; @@ -206016,10 +234796,19 @@ public int getOneof2863() { } public static final int ONEOF_2864_FIELD_NUMBER = 2864; + /** + * int32 oneof_2864 = 2864; + * @return Whether the oneof2864 field is set. + */ + @java.lang.Override + public boolean hasOneof2864() { + return hugeOneofCase_ == 2864; + } /** * int32 oneof_2864 = 2864; * @return The oneof2864. */ + @java.lang.Override public int getOneof2864() { if (hugeOneofCase_ == 2864) { return (java.lang.Integer) hugeOneof_; @@ -206028,10 +234817,19 @@ public int getOneof2864() { } public static final int ONEOF_2865_FIELD_NUMBER = 2865; + /** + * int32 oneof_2865 = 2865; + * @return Whether the oneof2865 field is set. + */ + @java.lang.Override + public boolean hasOneof2865() { + return hugeOneofCase_ == 2865; + } /** * int32 oneof_2865 = 2865; * @return The oneof2865. */ + @java.lang.Override public int getOneof2865() { if (hugeOneofCase_ == 2865) { return (java.lang.Integer) hugeOneof_; @@ -206040,10 +234838,19 @@ public int getOneof2865() { } public static final int ONEOF_2866_FIELD_NUMBER = 2866; + /** + * int32 oneof_2866 = 2866; + * @return Whether the oneof2866 field is set. + */ + @java.lang.Override + public boolean hasOneof2866() { + return hugeOneofCase_ == 2866; + } /** * int32 oneof_2866 = 2866; * @return The oneof2866. */ + @java.lang.Override public int getOneof2866() { if (hugeOneofCase_ == 2866) { return (java.lang.Integer) hugeOneof_; @@ -206052,10 +234859,19 @@ public int getOneof2866() { } public static final int ONEOF_2867_FIELD_NUMBER = 2867; + /** + * int32 oneof_2867 = 2867; + * @return Whether the oneof2867 field is set. + */ + @java.lang.Override + public boolean hasOneof2867() { + return hugeOneofCase_ == 2867; + } /** * int32 oneof_2867 = 2867; * @return The oneof2867. */ + @java.lang.Override public int getOneof2867() { if (hugeOneofCase_ == 2867) { return (java.lang.Integer) hugeOneof_; @@ -206064,10 +234880,19 @@ public int getOneof2867() { } public static final int ONEOF_2868_FIELD_NUMBER = 2868; + /** + * int32 oneof_2868 = 2868; + * @return Whether the oneof2868 field is set. + */ + @java.lang.Override + public boolean hasOneof2868() { + return hugeOneofCase_ == 2868; + } /** * int32 oneof_2868 = 2868; * @return The oneof2868. */ + @java.lang.Override public int getOneof2868() { if (hugeOneofCase_ == 2868) { return (java.lang.Integer) hugeOneof_; @@ -206076,10 +234901,19 @@ public int getOneof2868() { } public static final int ONEOF_2869_FIELD_NUMBER = 2869; + /** + * int32 oneof_2869 = 2869; + * @return Whether the oneof2869 field is set. + */ + @java.lang.Override + public boolean hasOneof2869() { + return hugeOneofCase_ == 2869; + } /** * int32 oneof_2869 = 2869; * @return The oneof2869. */ + @java.lang.Override public int getOneof2869() { if (hugeOneofCase_ == 2869) { return (java.lang.Integer) hugeOneof_; @@ -206088,10 +234922,19 @@ public int getOneof2869() { } public static final int ONEOF_2870_FIELD_NUMBER = 2870; + /** + * int32 oneof_2870 = 2870; + * @return Whether the oneof2870 field is set. + */ + @java.lang.Override + public boolean hasOneof2870() { + return hugeOneofCase_ == 2870; + } /** * int32 oneof_2870 = 2870; * @return The oneof2870. */ + @java.lang.Override public int getOneof2870() { if (hugeOneofCase_ == 2870) { return (java.lang.Integer) hugeOneof_; @@ -206100,10 +234943,19 @@ public int getOneof2870() { } public static final int ONEOF_2871_FIELD_NUMBER = 2871; + /** + * int32 oneof_2871 = 2871; + * @return Whether the oneof2871 field is set. + */ + @java.lang.Override + public boolean hasOneof2871() { + return hugeOneofCase_ == 2871; + } /** * int32 oneof_2871 = 2871; * @return The oneof2871. */ + @java.lang.Override public int getOneof2871() { if (hugeOneofCase_ == 2871) { return (java.lang.Integer) hugeOneof_; @@ -206112,10 +234964,19 @@ public int getOneof2871() { } public static final int ONEOF_2872_FIELD_NUMBER = 2872; + /** + * int32 oneof_2872 = 2872; + * @return Whether the oneof2872 field is set. + */ + @java.lang.Override + public boolean hasOneof2872() { + return hugeOneofCase_ == 2872; + } /** * int32 oneof_2872 = 2872; * @return The oneof2872. */ + @java.lang.Override public int getOneof2872() { if (hugeOneofCase_ == 2872) { return (java.lang.Integer) hugeOneof_; @@ -206124,10 +234985,19 @@ public int getOneof2872() { } public static final int ONEOF_2873_FIELD_NUMBER = 2873; + /** + * int32 oneof_2873 = 2873; + * @return Whether the oneof2873 field is set. + */ + @java.lang.Override + public boolean hasOneof2873() { + return hugeOneofCase_ == 2873; + } /** * int32 oneof_2873 = 2873; * @return The oneof2873. */ + @java.lang.Override public int getOneof2873() { if (hugeOneofCase_ == 2873) { return (java.lang.Integer) hugeOneof_; @@ -206136,10 +235006,19 @@ public int getOneof2873() { } public static final int ONEOF_2874_FIELD_NUMBER = 2874; + /** + * int32 oneof_2874 = 2874; + * @return Whether the oneof2874 field is set. + */ + @java.lang.Override + public boolean hasOneof2874() { + return hugeOneofCase_ == 2874; + } /** * int32 oneof_2874 = 2874; * @return The oneof2874. */ + @java.lang.Override public int getOneof2874() { if (hugeOneofCase_ == 2874) { return (java.lang.Integer) hugeOneof_; @@ -206148,10 +235027,19 @@ public int getOneof2874() { } public static final int ONEOF_2875_FIELD_NUMBER = 2875; + /** + * int32 oneof_2875 = 2875; + * @return Whether the oneof2875 field is set. + */ + @java.lang.Override + public boolean hasOneof2875() { + return hugeOneofCase_ == 2875; + } /** * int32 oneof_2875 = 2875; * @return The oneof2875. */ + @java.lang.Override public int getOneof2875() { if (hugeOneofCase_ == 2875) { return (java.lang.Integer) hugeOneof_; @@ -206160,10 +235048,19 @@ public int getOneof2875() { } public static final int ONEOF_2876_FIELD_NUMBER = 2876; + /** + * int32 oneof_2876 = 2876; + * @return Whether the oneof2876 field is set. + */ + @java.lang.Override + public boolean hasOneof2876() { + return hugeOneofCase_ == 2876; + } /** * int32 oneof_2876 = 2876; * @return The oneof2876. */ + @java.lang.Override public int getOneof2876() { if (hugeOneofCase_ == 2876) { return (java.lang.Integer) hugeOneof_; @@ -206172,10 +235069,19 @@ public int getOneof2876() { } public static final int ONEOF_2877_FIELD_NUMBER = 2877; + /** + * int32 oneof_2877 = 2877; + * @return Whether the oneof2877 field is set. + */ + @java.lang.Override + public boolean hasOneof2877() { + return hugeOneofCase_ == 2877; + } /** * int32 oneof_2877 = 2877; * @return The oneof2877. */ + @java.lang.Override public int getOneof2877() { if (hugeOneofCase_ == 2877) { return (java.lang.Integer) hugeOneof_; @@ -206184,10 +235090,19 @@ public int getOneof2877() { } public static final int ONEOF_2878_FIELD_NUMBER = 2878; + /** + * int32 oneof_2878 = 2878; + * @return Whether the oneof2878 field is set. + */ + @java.lang.Override + public boolean hasOneof2878() { + return hugeOneofCase_ == 2878; + } /** * int32 oneof_2878 = 2878; * @return The oneof2878. */ + @java.lang.Override public int getOneof2878() { if (hugeOneofCase_ == 2878) { return (java.lang.Integer) hugeOneof_; @@ -206196,10 +235111,19 @@ public int getOneof2878() { } public static final int ONEOF_2879_FIELD_NUMBER = 2879; + /** + * int32 oneof_2879 = 2879; + * @return Whether the oneof2879 field is set. + */ + @java.lang.Override + public boolean hasOneof2879() { + return hugeOneofCase_ == 2879; + } /** * int32 oneof_2879 = 2879; * @return The oneof2879. */ + @java.lang.Override public int getOneof2879() { if (hugeOneofCase_ == 2879) { return (java.lang.Integer) hugeOneof_; @@ -206208,10 +235132,19 @@ public int getOneof2879() { } public static final int ONEOF_2880_FIELD_NUMBER = 2880; + /** + * int32 oneof_2880 = 2880; + * @return Whether the oneof2880 field is set. + */ + @java.lang.Override + public boolean hasOneof2880() { + return hugeOneofCase_ == 2880; + } /** * int32 oneof_2880 = 2880; * @return The oneof2880. */ + @java.lang.Override public int getOneof2880() { if (hugeOneofCase_ == 2880) { return (java.lang.Integer) hugeOneof_; @@ -206220,10 +235153,19 @@ public int getOneof2880() { } public static final int ONEOF_2881_FIELD_NUMBER = 2881; + /** + * int32 oneof_2881 = 2881; + * @return Whether the oneof2881 field is set. + */ + @java.lang.Override + public boolean hasOneof2881() { + return hugeOneofCase_ == 2881; + } /** * int32 oneof_2881 = 2881; * @return The oneof2881. */ + @java.lang.Override public int getOneof2881() { if (hugeOneofCase_ == 2881) { return (java.lang.Integer) hugeOneof_; @@ -206232,10 +235174,19 @@ public int getOneof2881() { } public static final int ONEOF_2882_FIELD_NUMBER = 2882; + /** + * int32 oneof_2882 = 2882; + * @return Whether the oneof2882 field is set. + */ + @java.lang.Override + public boolean hasOneof2882() { + return hugeOneofCase_ == 2882; + } /** * int32 oneof_2882 = 2882; * @return The oneof2882. */ + @java.lang.Override public int getOneof2882() { if (hugeOneofCase_ == 2882) { return (java.lang.Integer) hugeOneof_; @@ -206244,10 +235195,19 @@ public int getOneof2882() { } public static final int ONEOF_2883_FIELD_NUMBER = 2883; + /** + * int32 oneof_2883 = 2883; + * @return Whether the oneof2883 field is set. + */ + @java.lang.Override + public boolean hasOneof2883() { + return hugeOneofCase_ == 2883; + } /** * int32 oneof_2883 = 2883; * @return The oneof2883. */ + @java.lang.Override public int getOneof2883() { if (hugeOneofCase_ == 2883) { return (java.lang.Integer) hugeOneof_; @@ -206256,10 +235216,19 @@ public int getOneof2883() { } public static final int ONEOF_2884_FIELD_NUMBER = 2884; + /** + * int32 oneof_2884 = 2884; + * @return Whether the oneof2884 field is set. + */ + @java.lang.Override + public boolean hasOneof2884() { + return hugeOneofCase_ == 2884; + } /** * int32 oneof_2884 = 2884; * @return The oneof2884. */ + @java.lang.Override public int getOneof2884() { if (hugeOneofCase_ == 2884) { return (java.lang.Integer) hugeOneof_; @@ -206268,10 +235237,19 @@ public int getOneof2884() { } public static final int ONEOF_2885_FIELD_NUMBER = 2885; + /** + * int32 oneof_2885 = 2885; + * @return Whether the oneof2885 field is set. + */ + @java.lang.Override + public boolean hasOneof2885() { + return hugeOneofCase_ == 2885; + } /** * int32 oneof_2885 = 2885; * @return The oneof2885. */ + @java.lang.Override public int getOneof2885() { if (hugeOneofCase_ == 2885) { return (java.lang.Integer) hugeOneof_; @@ -206280,10 +235258,19 @@ public int getOneof2885() { } public static final int ONEOF_2886_FIELD_NUMBER = 2886; + /** + * int32 oneof_2886 = 2886; + * @return Whether the oneof2886 field is set. + */ + @java.lang.Override + public boolean hasOneof2886() { + return hugeOneofCase_ == 2886; + } /** * int32 oneof_2886 = 2886; * @return The oneof2886. */ + @java.lang.Override public int getOneof2886() { if (hugeOneofCase_ == 2886) { return (java.lang.Integer) hugeOneof_; @@ -206292,10 +235279,19 @@ public int getOneof2886() { } public static final int ONEOF_2887_FIELD_NUMBER = 2887; + /** + * int32 oneof_2887 = 2887; + * @return Whether the oneof2887 field is set. + */ + @java.lang.Override + public boolean hasOneof2887() { + return hugeOneofCase_ == 2887; + } /** * int32 oneof_2887 = 2887; * @return The oneof2887. */ + @java.lang.Override public int getOneof2887() { if (hugeOneofCase_ == 2887) { return (java.lang.Integer) hugeOneof_; @@ -206304,10 +235300,19 @@ public int getOneof2887() { } public static final int ONEOF_2888_FIELD_NUMBER = 2888; + /** + * int32 oneof_2888 = 2888; + * @return Whether the oneof2888 field is set. + */ + @java.lang.Override + public boolean hasOneof2888() { + return hugeOneofCase_ == 2888; + } /** * int32 oneof_2888 = 2888; * @return The oneof2888. */ + @java.lang.Override public int getOneof2888() { if (hugeOneofCase_ == 2888) { return (java.lang.Integer) hugeOneof_; @@ -206316,10 +235321,19 @@ public int getOneof2888() { } public static final int ONEOF_2889_FIELD_NUMBER = 2889; + /** + * int32 oneof_2889 = 2889; + * @return Whether the oneof2889 field is set. + */ + @java.lang.Override + public boolean hasOneof2889() { + return hugeOneofCase_ == 2889; + } /** * int32 oneof_2889 = 2889; * @return The oneof2889. */ + @java.lang.Override public int getOneof2889() { if (hugeOneofCase_ == 2889) { return (java.lang.Integer) hugeOneof_; @@ -206328,10 +235342,19 @@ public int getOneof2889() { } public static final int ONEOF_2890_FIELD_NUMBER = 2890; + /** + * int32 oneof_2890 = 2890; + * @return Whether the oneof2890 field is set. + */ + @java.lang.Override + public boolean hasOneof2890() { + return hugeOneofCase_ == 2890; + } /** * int32 oneof_2890 = 2890; * @return The oneof2890. */ + @java.lang.Override public int getOneof2890() { if (hugeOneofCase_ == 2890) { return (java.lang.Integer) hugeOneof_; @@ -206340,10 +235363,19 @@ public int getOneof2890() { } public static final int ONEOF_2891_FIELD_NUMBER = 2891; + /** + * int32 oneof_2891 = 2891; + * @return Whether the oneof2891 field is set. + */ + @java.lang.Override + public boolean hasOneof2891() { + return hugeOneofCase_ == 2891; + } /** * int32 oneof_2891 = 2891; * @return The oneof2891. */ + @java.lang.Override public int getOneof2891() { if (hugeOneofCase_ == 2891) { return (java.lang.Integer) hugeOneof_; @@ -206352,10 +235384,19 @@ public int getOneof2891() { } public static final int ONEOF_2892_FIELD_NUMBER = 2892; + /** + * int32 oneof_2892 = 2892; + * @return Whether the oneof2892 field is set. + */ + @java.lang.Override + public boolean hasOneof2892() { + return hugeOneofCase_ == 2892; + } /** * int32 oneof_2892 = 2892; * @return The oneof2892. */ + @java.lang.Override public int getOneof2892() { if (hugeOneofCase_ == 2892) { return (java.lang.Integer) hugeOneof_; @@ -206364,10 +235405,19 @@ public int getOneof2892() { } public static final int ONEOF_2893_FIELD_NUMBER = 2893; + /** + * int32 oneof_2893 = 2893; + * @return Whether the oneof2893 field is set. + */ + @java.lang.Override + public boolean hasOneof2893() { + return hugeOneofCase_ == 2893; + } /** * int32 oneof_2893 = 2893; * @return The oneof2893. */ + @java.lang.Override public int getOneof2893() { if (hugeOneofCase_ == 2893) { return (java.lang.Integer) hugeOneof_; @@ -206376,10 +235426,19 @@ public int getOneof2893() { } public static final int ONEOF_2894_FIELD_NUMBER = 2894; + /** + * int32 oneof_2894 = 2894; + * @return Whether the oneof2894 field is set. + */ + @java.lang.Override + public boolean hasOneof2894() { + return hugeOneofCase_ == 2894; + } /** * int32 oneof_2894 = 2894; * @return The oneof2894. */ + @java.lang.Override public int getOneof2894() { if (hugeOneofCase_ == 2894) { return (java.lang.Integer) hugeOneof_; @@ -206388,10 +235447,19 @@ public int getOneof2894() { } public static final int ONEOF_2895_FIELD_NUMBER = 2895; + /** + * int32 oneof_2895 = 2895; + * @return Whether the oneof2895 field is set. + */ + @java.lang.Override + public boolean hasOneof2895() { + return hugeOneofCase_ == 2895; + } /** * int32 oneof_2895 = 2895; * @return The oneof2895. */ + @java.lang.Override public int getOneof2895() { if (hugeOneofCase_ == 2895) { return (java.lang.Integer) hugeOneof_; @@ -206400,10 +235468,19 @@ public int getOneof2895() { } public static final int ONEOF_2896_FIELD_NUMBER = 2896; + /** + * int32 oneof_2896 = 2896; + * @return Whether the oneof2896 field is set. + */ + @java.lang.Override + public boolean hasOneof2896() { + return hugeOneofCase_ == 2896; + } /** * int32 oneof_2896 = 2896; * @return The oneof2896. */ + @java.lang.Override public int getOneof2896() { if (hugeOneofCase_ == 2896) { return (java.lang.Integer) hugeOneof_; @@ -206412,10 +235489,19 @@ public int getOneof2896() { } public static final int ONEOF_2897_FIELD_NUMBER = 2897; + /** + * int32 oneof_2897 = 2897; + * @return Whether the oneof2897 field is set. + */ + @java.lang.Override + public boolean hasOneof2897() { + return hugeOneofCase_ == 2897; + } /** * int32 oneof_2897 = 2897; * @return The oneof2897. */ + @java.lang.Override public int getOneof2897() { if (hugeOneofCase_ == 2897) { return (java.lang.Integer) hugeOneof_; @@ -206424,10 +235510,19 @@ public int getOneof2897() { } public static final int ONEOF_2898_FIELD_NUMBER = 2898; + /** + * int32 oneof_2898 = 2898; + * @return Whether the oneof2898 field is set. + */ + @java.lang.Override + public boolean hasOneof2898() { + return hugeOneofCase_ == 2898; + } /** * int32 oneof_2898 = 2898; * @return The oneof2898. */ + @java.lang.Override public int getOneof2898() { if (hugeOneofCase_ == 2898) { return (java.lang.Integer) hugeOneof_; @@ -206436,10 +235531,19 @@ public int getOneof2898() { } public static final int ONEOF_2899_FIELD_NUMBER = 2899; + /** + * int32 oneof_2899 = 2899; + * @return Whether the oneof2899 field is set. + */ + @java.lang.Override + public boolean hasOneof2899() { + return hugeOneofCase_ == 2899; + } /** * int32 oneof_2899 = 2899; * @return The oneof2899. */ + @java.lang.Override public int getOneof2899() { if (hugeOneofCase_ == 2899) { return (java.lang.Integer) hugeOneof_; @@ -206448,10 +235552,19 @@ public int getOneof2899() { } public static final int ONEOF_2900_FIELD_NUMBER = 2900; + /** + * int32 oneof_2900 = 2900; + * @return Whether the oneof2900 field is set. + */ + @java.lang.Override + public boolean hasOneof2900() { + return hugeOneofCase_ == 2900; + } /** * int32 oneof_2900 = 2900; * @return The oneof2900. */ + @java.lang.Override public int getOneof2900() { if (hugeOneofCase_ == 2900) { return (java.lang.Integer) hugeOneof_; @@ -206460,10 +235573,19 @@ public int getOneof2900() { } public static final int ONEOF_2901_FIELD_NUMBER = 2901; + /** + * int32 oneof_2901 = 2901; + * @return Whether the oneof2901 field is set. + */ + @java.lang.Override + public boolean hasOneof2901() { + return hugeOneofCase_ == 2901; + } /** * int32 oneof_2901 = 2901; * @return The oneof2901. */ + @java.lang.Override public int getOneof2901() { if (hugeOneofCase_ == 2901) { return (java.lang.Integer) hugeOneof_; @@ -206472,10 +235594,19 @@ public int getOneof2901() { } public static final int ONEOF_2902_FIELD_NUMBER = 2902; + /** + * int32 oneof_2902 = 2902; + * @return Whether the oneof2902 field is set. + */ + @java.lang.Override + public boolean hasOneof2902() { + return hugeOneofCase_ == 2902; + } /** * int32 oneof_2902 = 2902; * @return The oneof2902. */ + @java.lang.Override public int getOneof2902() { if (hugeOneofCase_ == 2902) { return (java.lang.Integer) hugeOneof_; @@ -206484,10 +235615,19 @@ public int getOneof2902() { } public static final int ONEOF_2903_FIELD_NUMBER = 2903; + /** + * int32 oneof_2903 = 2903; + * @return Whether the oneof2903 field is set. + */ + @java.lang.Override + public boolean hasOneof2903() { + return hugeOneofCase_ == 2903; + } /** * int32 oneof_2903 = 2903; * @return The oneof2903. */ + @java.lang.Override public int getOneof2903() { if (hugeOneofCase_ == 2903) { return (java.lang.Integer) hugeOneof_; @@ -206496,10 +235636,19 @@ public int getOneof2903() { } public static final int ONEOF_2904_FIELD_NUMBER = 2904; + /** + * int32 oneof_2904 = 2904; + * @return Whether the oneof2904 field is set. + */ + @java.lang.Override + public boolean hasOneof2904() { + return hugeOneofCase_ == 2904; + } /** * int32 oneof_2904 = 2904; * @return The oneof2904. */ + @java.lang.Override public int getOneof2904() { if (hugeOneofCase_ == 2904) { return (java.lang.Integer) hugeOneof_; @@ -206508,10 +235657,19 @@ public int getOneof2904() { } public static final int ONEOF_2905_FIELD_NUMBER = 2905; + /** + * int32 oneof_2905 = 2905; + * @return Whether the oneof2905 field is set. + */ + @java.lang.Override + public boolean hasOneof2905() { + return hugeOneofCase_ == 2905; + } /** * int32 oneof_2905 = 2905; * @return The oneof2905. */ + @java.lang.Override public int getOneof2905() { if (hugeOneofCase_ == 2905) { return (java.lang.Integer) hugeOneof_; @@ -206520,10 +235678,19 @@ public int getOneof2905() { } public static final int ONEOF_2906_FIELD_NUMBER = 2906; + /** + * int32 oneof_2906 = 2906; + * @return Whether the oneof2906 field is set. + */ + @java.lang.Override + public boolean hasOneof2906() { + return hugeOneofCase_ == 2906; + } /** * int32 oneof_2906 = 2906; * @return The oneof2906. */ + @java.lang.Override public int getOneof2906() { if (hugeOneofCase_ == 2906) { return (java.lang.Integer) hugeOneof_; @@ -206532,10 +235699,19 @@ public int getOneof2906() { } public static final int ONEOF_2907_FIELD_NUMBER = 2907; + /** + * int32 oneof_2907 = 2907; + * @return Whether the oneof2907 field is set. + */ + @java.lang.Override + public boolean hasOneof2907() { + return hugeOneofCase_ == 2907; + } /** * int32 oneof_2907 = 2907; * @return The oneof2907. */ + @java.lang.Override public int getOneof2907() { if (hugeOneofCase_ == 2907) { return (java.lang.Integer) hugeOneof_; @@ -206544,10 +235720,19 @@ public int getOneof2907() { } public static final int ONEOF_2908_FIELD_NUMBER = 2908; + /** + * int32 oneof_2908 = 2908; + * @return Whether the oneof2908 field is set. + */ + @java.lang.Override + public boolean hasOneof2908() { + return hugeOneofCase_ == 2908; + } /** * int32 oneof_2908 = 2908; * @return The oneof2908. */ + @java.lang.Override public int getOneof2908() { if (hugeOneofCase_ == 2908) { return (java.lang.Integer) hugeOneof_; @@ -206556,10 +235741,19 @@ public int getOneof2908() { } public static final int ONEOF_2909_FIELD_NUMBER = 2909; + /** + * int32 oneof_2909 = 2909; + * @return Whether the oneof2909 field is set. + */ + @java.lang.Override + public boolean hasOneof2909() { + return hugeOneofCase_ == 2909; + } /** * int32 oneof_2909 = 2909; * @return The oneof2909. */ + @java.lang.Override public int getOneof2909() { if (hugeOneofCase_ == 2909) { return (java.lang.Integer) hugeOneof_; @@ -206568,10 +235762,19 @@ public int getOneof2909() { } public static final int ONEOF_2910_FIELD_NUMBER = 2910; + /** + * int32 oneof_2910 = 2910; + * @return Whether the oneof2910 field is set. + */ + @java.lang.Override + public boolean hasOneof2910() { + return hugeOneofCase_ == 2910; + } /** * int32 oneof_2910 = 2910; * @return The oneof2910. */ + @java.lang.Override public int getOneof2910() { if (hugeOneofCase_ == 2910) { return (java.lang.Integer) hugeOneof_; @@ -206580,10 +235783,19 @@ public int getOneof2910() { } public static final int ONEOF_2911_FIELD_NUMBER = 2911; + /** + * int32 oneof_2911 = 2911; + * @return Whether the oneof2911 field is set. + */ + @java.lang.Override + public boolean hasOneof2911() { + return hugeOneofCase_ == 2911; + } /** * int32 oneof_2911 = 2911; * @return The oneof2911. */ + @java.lang.Override public int getOneof2911() { if (hugeOneofCase_ == 2911) { return (java.lang.Integer) hugeOneof_; @@ -206592,10 +235804,19 @@ public int getOneof2911() { } public static final int ONEOF_2912_FIELD_NUMBER = 2912; + /** + * int32 oneof_2912 = 2912; + * @return Whether the oneof2912 field is set. + */ + @java.lang.Override + public boolean hasOneof2912() { + return hugeOneofCase_ == 2912; + } /** * int32 oneof_2912 = 2912; * @return The oneof2912. */ + @java.lang.Override public int getOneof2912() { if (hugeOneofCase_ == 2912) { return (java.lang.Integer) hugeOneof_; @@ -206604,10 +235825,19 @@ public int getOneof2912() { } public static final int ONEOF_2913_FIELD_NUMBER = 2913; + /** + * int32 oneof_2913 = 2913; + * @return Whether the oneof2913 field is set. + */ + @java.lang.Override + public boolean hasOneof2913() { + return hugeOneofCase_ == 2913; + } /** * int32 oneof_2913 = 2913; * @return The oneof2913. */ + @java.lang.Override public int getOneof2913() { if (hugeOneofCase_ == 2913) { return (java.lang.Integer) hugeOneof_; @@ -206616,10 +235846,19 @@ public int getOneof2913() { } public static final int ONEOF_2914_FIELD_NUMBER = 2914; + /** + * int32 oneof_2914 = 2914; + * @return Whether the oneof2914 field is set. + */ + @java.lang.Override + public boolean hasOneof2914() { + return hugeOneofCase_ == 2914; + } /** * int32 oneof_2914 = 2914; * @return The oneof2914. */ + @java.lang.Override public int getOneof2914() { if (hugeOneofCase_ == 2914) { return (java.lang.Integer) hugeOneof_; @@ -206628,10 +235867,19 @@ public int getOneof2914() { } public static final int ONEOF_2915_FIELD_NUMBER = 2915; + /** + * int32 oneof_2915 = 2915; + * @return Whether the oneof2915 field is set. + */ + @java.lang.Override + public boolean hasOneof2915() { + return hugeOneofCase_ == 2915; + } /** * int32 oneof_2915 = 2915; * @return The oneof2915. */ + @java.lang.Override public int getOneof2915() { if (hugeOneofCase_ == 2915) { return (java.lang.Integer) hugeOneof_; @@ -206640,10 +235888,19 @@ public int getOneof2915() { } public static final int ONEOF_2916_FIELD_NUMBER = 2916; + /** + * int32 oneof_2916 = 2916; + * @return Whether the oneof2916 field is set. + */ + @java.lang.Override + public boolean hasOneof2916() { + return hugeOneofCase_ == 2916; + } /** * int32 oneof_2916 = 2916; * @return The oneof2916. */ + @java.lang.Override public int getOneof2916() { if (hugeOneofCase_ == 2916) { return (java.lang.Integer) hugeOneof_; @@ -206652,10 +235909,19 @@ public int getOneof2916() { } public static final int ONEOF_2917_FIELD_NUMBER = 2917; + /** + * int32 oneof_2917 = 2917; + * @return Whether the oneof2917 field is set. + */ + @java.lang.Override + public boolean hasOneof2917() { + return hugeOneofCase_ == 2917; + } /** * int32 oneof_2917 = 2917; * @return The oneof2917. */ + @java.lang.Override public int getOneof2917() { if (hugeOneofCase_ == 2917) { return (java.lang.Integer) hugeOneof_; @@ -206664,10 +235930,19 @@ public int getOneof2917() { } public static final int ONEOF_2918_FIELD_NUMBER = 2918; + /** + * int32 oneof_2918 = 2918; + * @return Whether the oneof2918 field is set. + */ + @java.lang.Override + public boolean hasOneof2918() { + return hugeOneofCase_ == 2918; + } /** * int32 oneof_2918 = 2918; * @return The oneof2918. */ + @java.lang.Override public int getOneof2918() { if (hugeOneofCase_ == 2918) { return (java.lang.Integer) hugeOneof_; @@ -206676,10 +235951,19 @@ public int getOneof2918() { } public static final int ONEOF_2919_FIELD_NUMBER = 2919; + /** + * int32 oneof_2919 = 2919; + * @return Whether the oneof2919 field is set. + */ + @java.lang.Override + public boolean hasOneof2919() { + return hugeOneofCase_ == 2919; + } /** * int32 oneof_2919 = 2919; * @return The oneof2919. */ + @java.lang.Override public int getOneof2919() { if (hugeOneofCase_ == 2919) { return (java.lang.Integer) hugeOneof_; @@ -206688,10 +235972,19 @@ public int getOneof2919() { } public static final int ONEOF_2920_FIELD_NUMBER = 2920; + /** + * int32 oneof_2920 = 2920; + * @return Whether the oneof2920 field is set. + */ + @java.lang.Override + public boolean hasOneof2920() { + return hugeOneofCase_ == 2920; + } /** * int32 oneof_2920 = 2920; * @return The oneof2920. */ + @java.lang.Override public int getOneof2920() { if (hugeOneofCase_ == 2920) { return (java.lang.Integer) hugeOneof_; @@ -206700,10 +235993,19 @@ public int getOneof2920() { } public static final int ONEOF_2921_FIELD_NUMBER = 2921; + /** + * int32 oneof_2921 = 2921; + * @return Whether the oneof2921 field is set. + */ + @java.lang.Override + public boolean hasOneof2921() { + return hugeOneofCase_ == 2921; + } /** * int32 oneof_2921 = 2921; * @return The oneof2921. */ + @java.lang.Override public int getOneof2921() { if (hugeOneofCase_ == 2921) { return (java.lang.Integer) hugeOneof_; @@ -206712,10 +236014,19 @@ public int getOneof2921() { } public static final int ONEOF_2922_FIELD_NUMBER = 2922; + /** + * int32 oneof_2922 = 2922; + * @return Whether the oneof2922 field is set. + */ + @java.lang.Override + public boolean hasOneof2922() { + return hugeOneofCase_ == 2922; + } /** * int32 oneof_2922 = 2922; * @return The oneof2922. */ + @java.lang.Override public int getOneof2922() { if (hugeOneofCase_ == 2922) { return (java.lang.Integer) hugeOneof_; @@ -206724,10 +236035,19 @@ public int getOneof2922() { } public static final int ONEOF_2923_FIELD_NUMBER = 2923; + /** + * int32 oneof_2923 = 2923; + * @return Whether the oneof2923 field is set. + */ + @java.lang.Override + public boolean hasOneof2923() { + return hugeOneofCase_ == 2923; + } /** * int32 oneof_2923 = 2923; * @return The oneof2923. */ + @java.lang.Override public int getOneof2923() { if (hugeOneofCase_ == 2923) { return (java.lang.Integer) hugeOneof_; @@ -206736,10 +236056,19 @@ public int getOneof2923() { } public static final int ONEOF_2924_FIELD_NUMBER = 2924; + /** + * int32 oneof_2924 = 2924; + * @return Whether the oneof2924 field is set. + */ + @java.lang.Override + public boolean hasOneof2924() { + return hugeOneofCase_ == 2924; + } /** * int32 oneof_2924 = 2924; * @return The oneof2924. */ + @java.lang.Override public int getOneof2924() { if (hugeOneofCase_ == 2924) { return (java.lang.Integer) hugeOneof_; @@ -206748,10 +236077,19 @@ public int getOneof2924() { } public static final int ONEOF_2925_FIELD_NUMBER = 2925; + /** + * int32 oneof_2925 = 2925; + * @return Whether the oneof2925 field is set. + */ + @java.lang.Override + public boolean hasOneof2925() { + return hugeOneofCase_ == 2925; + } /** * int32 oneof_2925 = 2925; * @return The oneof2925. */ + @java.lang.Override public int getOneof2925() { if (hugeOneofCase_ == 2925) { return (java.lang.Integer) hugeOneof_; @@ -206760,10 +236098,19 @@ public int getOneof2925() { } public static final int ONEOF_2926_FIELD_NUMBER = 2926; + /** + * int32 oneof_2926 = 2926; + * @return Whether the oneof2926 field is set. + */ + @java.lang.Override + public boolean hasOneof2926() { + return hugeOneofCase_ == 2926; + } /** * int32 oneof_2926 = 2926; * @return The oneof2926. */ + @java.lang.Override public int getOneof2926() { if (hugeOneofCase_ == 2926) { return (java.lang.Integer) hugeOneof_; @@ -206772,10 +236119,19 @@ public int getOneof2926() { } public static final int ONEOF_2927_FIELD_NUMBER = 2927; + /** + * int32 oneof_2927 = 2927; + * @return Whether the oneof2927 field is set. + */ + @java.lang.Override + public boolean hasOneof2927() { + return hugeOneofCase_ == 2927; + } /** * int32 oneof_2927 = 2927; * @return The oneof2927. */ + @java.lang.Override public int getOneof2927() { if (hugeOneofCase_ == 2927) { return (java.lang.Integer) hugeOneof_; @@ -206784,10 +236140,19 @@ public int getOneof2927() { } public static final int ONEOF_2928_FIELD_NUMBER = 2928; + /** + * int32 oneof_2928 = 2928; + * @return Whether the oneof2928 field is set. + */ + @java.lang.Override + public boolean hasOneof2928() { + return hugeOneofCase_ == 2928; + } /** * int32 oneof_2928 = 2928; * @return The oneof2928. */ + @java.lang.Override public int getOneof2928() { if (hugeOneofCase_ == 2928) { return (java.lang.Integer) hugeOneof_; @@ -206796,10 +236161,19 @@ public int getOneof2928() { } public static final int ONEOF_2929_FIELD_NUMBER = 2929; + /** + * int32 oneof_2929 = 2929; + * @return Whether the oneof2929 field is set. + */ + @java.lang.Override + public boolean hasOneof2929() { + return hugeOneofCase_ == 2929; + } /** * int32 oneof_2929 = 2929; * @return The oneof2929. */ + @java.lang.Override public int getOneof2929() { if (hugeOneofCase_ == 2929) { return (java.lang.Integer) hugeOneof_; @@ -206808,10 +236182,19 @@ public int getOneof2929() { } public static final int ONEOF_2930_FIELD_NUMBER = 2930; + /** + * int32 oneof_2930 = 2930; + * @return Whether the oneof2930 field is set. + */ + @java.lang.Override + public boolean hasOneof2930() { + return hugeOneofCase_ == 2930; + } /** * int32 oneof_2930 = 2930; * @return The oneof2930. */ + @java.lang.Override public int getOneof2930() { if (hugeOneofCase_ == 2930) { return (java.lang.Integer) hugeOneof_; @@ -206820,10 +236203,19 @@ public int getOneof2930() { } public static final int ONEOF_2931_FIELD_NUMBER = 2931; + /** + * int32 oneof_2931 = 2931; + * @return Whether the oneof2931 field is set. + */ + @java.lang.Override + public boolean hasOneof2931() { + return hugeOneofCase_ == 2931; + } /** * int32 oneof_2931 = 2931; * @return The oneof2931. */ + @java.lang.Override public int getOneof2931() { if (hugeOneofCase_ == 2931) { return (java.lang.Integer) hugeOneof_; @@ -206832,10 +236224,19 @@ public int getOneof2931() { } public static final int ONEOF_2932_FIELD_NUMBER = 2932; + /** + * int32 oneof_2932 = 2932; + * @return Whether the oneof2932 field is set. + */ + @java.lang.Override + public boolean hasOneof2932() { + return hugeOneofCase_ == 2932; + } /** * int32 oneof_2932 = 2932; * @return The oneof2932. */ + @java.lang.Override public int getOneof2932() { if (hugeOneofCase_ == 2932) { return (java.lang.Integer) hugeOneof_; @@ -206844,10 +236245,19 @@ public int getOneof2932() { } public static final int ONEOF_2933_FIELD_NUMBER = 2933; + /** + * int32 oneof_2933 = 2933; + * @return Whether the oneof2933 field is set. + */ + @java.lang.Override + public boolean hasOneof2933() { + return hugeOneofCase_ == 2933; + } /** * int32 oneof_2933 = 2933; * @return The oneof2933. */ + @java.lang.Override public int getOneof2933() { if (hugeOneofCase_ == 2933) { return (java.lang.Integer) hugeOneof_; @@ -206856,10 +236266,19 @@ public int getOneof2933() { } public static final int ONEOF_2934_FIELD_NUMBER = 2934; + /** + * int32 oneof_2934 = 2934; + * @return Whether the oneof2934 field is set. + */ + @java.lang.Override + public boolean hasOneof2934() { + return hugeOneofCase_ == 2934; + } /** * int32 oneof_2934 = 2934; * @return The oneof2934. */ + @java.lang.Override public int getOneof2934() { if (hugeOneofCase_ == 2934) { return (java.lang.Integer) hugeOneof_; @@ -206868,10 +236287,19 @@ public int getOneof2934() { } public static final int ONEOF_2935_FIELD_NUMBER = 2935; + /** + * int32 oneof_2935 = 2935; + * @return Whether the oneof2935 field is set. + */ + @java.lang.Override + public boolean hasOneof2935() { + return hugeOneofCase_ == 2935; + } /** * int32 oneof_2935 = 2935; * @return The oneof2935. */ + @java.lang.Override public int getOneof2935() { if (hugeOneofCase_ == 2935) { return (java.lang.Integer) hugeOneof_; @@ -206880,10 +236308,19 @@ public int getOneof2935() { } public static final int ONEOF_2936_FIELD_NUMBER = 2936; + /** + * int32 oneof_2936 = 2936; + * @return Whether the oneof2936 field is set. + */ + @java.lang.Override + public boolean hasOneof2936() { + return hugeOneofCase_ == 2936; + } /** * int32 oneof_2936 = 2936; * @return The oneof2936. */ + @java.lang.Override public int getOneof2936() { if (hugeOneofCase_ == 2936) { return (java.lang.Integer) hugeOneof_; @@ -206892,10 +236329,19 @@ public int getOneof2936() { } public static final int ONEOF_2937_FIELD_NUMBER = 2937; + /** + * int32 oneof_2937 = 2937; + * @return Whether the oneof2937 field is set. + */ + @java.lang.Override + public boolean hasOneof2937() { + return hugeOneofCase_ == 2937; + } /** * int32 oneof_2937 = 2937; * @return The oneof2937. */ + @java.lang.Override public int getOneof2937() { if (hugeOneofCase_ == 2937) { return (java.lang.Integer) hugeOneof_; @@ -206904,10 +236350,19 @@ public int getOneof2937() { } public static final int ONEOF_2938_FIELD_NUMBER = 2938; + /** + * int32 oneof_2938 = 2938; + * @return Whether the oneof2938 field is set. + */ + @java.lang.Override + public boolean hasOneof2938() { + return hugeOneofCase_ == 2938; + } /** * int32 oneof_2938 = 2938; * @return The oneof2938. */ + @java.lang.Override public int getOneof2938() { if (hugeOneofCase_ == 2938) { return (java.lang.Integer) hugeOneof_; @@ -206916,10 +236371,19 @@ public int getOneof2938() { } public static final int ONEOF_2939_FIELD_NUMBER = 2939; + /** + * int32 oneof_2939 = 2939; + * @return Whether the oneof2939 field is set. + */ + @java.lang.Override + public boolean hasOneof2939() { + return hugeOneofCase_ == 2939; + } /** * int32 oneof_2939 = 2939; * @return The oneof2939. */ + @java.lang.Override public int getOneof2939() { if (hugeOneofCase_ == 2939) { return (java.lang.Integer) hugeOneof_; @@ -206928,10 +236392,19 @@ public int getOneof2939() { } public static final int ONEOF_2940_FIELD_NUMBER = 2940; + /** + * int32 oneof_2940 = 2940; + * @return Whether the oneof2940 field is set. + */ + @java.lang.Override + public boolean hasOneof2940() { + return hugeOneofCase_ == 2940; + } /** * int32 oneof_2940 = 2940; * @return The oneof2940. */ + @java.lang.Override public int getOneof2940() { if (hugeOneofCase_ == 2940) { return (java.lang.Integer) hugeOneof_; @@ -206940,10 +236413,19 @@ public int getOneof2940() { } public static final int ONEOF_2941_FIELD_NUMBER = 2941; + /** + * int32 oneof_2941 = 2941; + * @return Whether the oneof2941 field is set. + */ + @java.lang.Override + public boolean hasOneof2941() { + return hugeOneofCase_ == 2941; + } /** * int32 oneof_2941 = 2941; * @return The oneof2941. */ + @java.lang.Override public int getOneof2941() { if (hugeOneofCase_ == 2941) { return (java.lang.Integer) hugeOneof_; @@ -206952,10 +236434,19 @@ public int getOneof2941() { } public static final int ONEOF_2942_FIELD_NUMBER = 2942; + /** + * int32 oneof_2942 = 2942; + * @return Whether the oneof2942 field is set. + */ + @java.lang.Override + public boolean hasOneof2942() { + return hugeOneofCase_ == 2942; + } /** * int32 oneof_2942 = 2942; * @return The oneof2942. */ + @java.lang.Override public int getOneof2942() { if (hugeOneofCase_ == 2942) { return (java.lang.Integer) hugeOneof_; @@ -206964,10 +236455,19 @@ public int getOneof2942() { } public static final int ONEOF_2943_FIELD_NUMBER = 2943; + /** + * int32 oneof_2943 = 2943; + * @return Whether the oneof2943 field is set. + */ + @java.lang.Override + public boolean hasOneof2943() { + return hugeOneofCase_ == 2943; + } /** * int32 oneof_2943 = 2943; * @return The oneof2943. */ + @java.lang.Override public int getOneof2943() { if (hugeOneofCase_ == 2943) { return (java.lang.Integer) hugeOneof_; @@ -206976,10 +236476,19 @@ public int getOneof2943() { } public static final int ONEOF_2944_FIELD_NUMBER = 2944; + /** + * int32 oneof_2944 = 2944; + * @return Whether the oneof2944 field is set. + */ + @java.lang.Override + public boolean hasOneof2944() { + return hugeOneofCase_ == 2944; + } /** * int32 oneof_2944 = 2944; * @return The oneof2944. */ + @java.lang.Override public int getOneof2944() { if (hugeOneofCase_ == 2944) { return (java.lang.Integer) hugeOneof_; @@ -206988,10 +236497,19 @@ public int getOneof2944() { } public static final int ONEOF_2945_FIELD_NUMBER = 2945; + /** + * int32 oneof_2945 = 2945; + * @return Whether the oneof2945 field is set. + */ + @java.lang.Override + public boolean hasOneof2945() { + return hugeOneofCase_ == 2945; + } /** * int32 oneof_2945 = 2945; * @return The oneof2945. */ + @java.lang.Override public int getOneof2945() { if (hugeOneofCase_ == 2945) { return (java.lang.Integer) hugeOneof_; @@ -207000,10 +236518,19 @@ public int getOneof2945() { } public static final int ONEOF_2946_FIELD_NUMBER = 2946; + /** + * int32 oneof_2946 = 2946; + * @return Whether the oneof2946 field is set. + */ + @java.lang.Override + public boolean hasOneof2946() { + return hugeOneofCase_ == 2946; + } /** * int32 oneof_2946 = 2946; * @return The oneof2946. */ + @java.lang.Override public int getOneof2946() { if (hugeOneofCase_ == 2946) { return (java.lang.Integer) hugeOneof_; @@ -207012,10 +236539,19 @@ public int getOneof2946() { } public static final int ONEOF_2947_FIELD_NUMBER = 2947; + /** + * int32 oneof_2947 = 2947; + * @return Whether the oneof2947 field is set. + */ + @java.lang.Override + public boolean hasOneof2947() { + return hugeOneofCase_ == 2947; + } /** * int32 oneof_2947 = 2947; * @return The oneof2947. */ + @java.lang.Override public int getOneof2947() { if (hugeOneofCase_ == 2947) { return (java.lang.Integer) hugeOneof_; @@ -207024,10 +236560,19 @@ public int getOneof2947() { } public static final int ONEOF_2948_FIELD_NUMBER = 2948; + /** + * int32 oneof_2948 = 2948; + * @return Whether the oneof2948 field is set. + */ + @java.lang.Override + public boolean hasOneof2948() { + return hugeOneofCase_ == 2948; + } /** * int32 oneof_2948 = 2948; * @return The oneof2948. */ + @java.lang.Override public int getOneof2948() { if (hugeOneofCase_ == 2948) { return (java.lang.Integer) hugeOneof_; @@ -207036,10 +236581,19 @@ public int getOneof2948() { } public static final int ONEOF_2949_FIELD_NUMBER = 2949; + /** + * int32 oneof_2949 = 2949; + * @return Whether the oneof2949 field is set. + */ + @java.lang.Override + public boolean hasOneof2949() { + return hugeOneofCase_ == 2949; + } /** * int32 oneof_2949 = 2949; * @return The oneof2949. */ + @java.lang.Override public int getOneof2949() { if (hugeOneofCase_ == 2949) { return (java.lang.Integer) hugeOneof_; @@ -207048,10 +236602,19 @@ public int getOneof2949() { } public static final int ONEOF_2950_FIELD_NUMBER = 2950; + /** + * int32 oneof_2950 = 2950; + * @return Whether the oneof2950 field is set. + */ + @java.lang.Override + public boolean hasOneof2950() { + return hugeOneofCase_ == 2950; + } /** * int32 oneof_2950 = 2950; * @return The oneof2950. */ + @java.lang.Override public int getOneof2950() { if (hugeOneofCase_ == 2950) { return (java.lang.Integer) hugeOneof_; @@ -207060,10 +236623,19 @@ public int getOneof2950() { } public static final int ONEOF_2951_FIELD_NUMBER = 2951; + /** + * int32 oneof_2951 = 2951; + * @return Whether the oneof2951 field is set. + */ + @java.lang.Override + public boolean hasOneof2951() { + return hugeOneofCase_ == 2951; + } /** * int32 oneof_2951 = 2951; * @return The oneof2951. */ + @java.lang.Override public int getOneof2951() { if (hugeOneofCase_ == 2951) { return (java.lang.Integer) hugeOneof_; @@ -207072,10 +236644,19 @@ public int getOneof2951() { } public static final int ONEOF_2952_FIELD_NUMBER = 2952; + /** + * int32 oneof_2952 = 2952; + * @return Whether the oneof2952 field is set. + */ + @java.lang.Override + public boolean hasOneof2952() { + return hugeOneofCase_ == 2952; + } /** * int32 oneof_2952 = 2952; * @return The oneof2952. */ + @java.lang.Override public int getOneof2952() { if (hugeOneofCase_ == 2952) { return (java.lang.Integer) hugeOneof_; @@ -207084,10 +236665,19 @@ public int getOneof2952() { } public static final int ONEOF_2953_FIELD_NUMBER = 2953; + /** + * int32 oneof_2953 = 2953; + * @return Whether the oneof2953 field is set. + */ + @java.lang.Override + public boolean hasOneof2953() { + return hugeOneofCase_ == 2953; + } /** * int32 oneof_2953 = 2953; * @return The oneof2953. */ + @java.lang.Override public int getOneof2953() { if (hugeOneofCase_ == 2953) { return (java.lang.Integer) hugeOneof_; @@ -207096,10 +236686,19 @@ public int getOneof2953() { } public static final int ONEOF_2954_FIELD_NUMBER = 2954; + /** + * int32 oneof_2954 = 2954; + * @return Whether the oneof2954 field is set. + */ + @java.lang.Override + public boolean hasOneof2954() { + return hugeOneofCase_ == 2954; + } /** * int32 oneof_2954 = 2954; * @return The oneof2954. */ + @java.lang.Override public int getOneof2954() { if (hugeOneofCase_ == 2954) { return (java.lang.Integer) hugeOneof_; @@ -207108,10 +236707,19 @@ public int getOneof2954() { } public static final int ONEOF_2955_FIELD_NUMBER = 2955; + /** + * int32 oneof_2955 = 2955; + * @return Whether the oneof2955 field is set. + */ + @java.lang.Override + public boolean hasOneof2955() { + return hugeOneofCase_ == 2955; + } /** * int32 oneof_2955 = 2955; * @return The oneof2955. */ + @java.lang.Override public int getOneof2955() { if (hugeOneofCase_ == 2955) { return (java.lang.Integer) hugeOneof_; @@ -207120,10 +236728,19 @@ public int getOneof2955() { } public static final int ONEOF_2956_FIELD_NUMBER = 2956; + /** + * int32 oneof_2956 = 2956; + * @return Whether the oneof2956 field is set. + */ + @java.lang.Override + public boolean hasOneof2956() { + return hugeOneofCase_ == 2956; + } /** * int32 oneof_2956 = 2956; * @return The oneof2956. */ + @java.lang.Override public int getOneof2956() { if (hugeOneofCase_ == 2956) { return (java.lang.Integer) hugeOneof_; @@ -207132,10 +236749,19 @@ public int getOneof2956() { } public static final int ONEOF_2957_FIELD_NUMBER = 2957; + /** + * int32 oneof_2957 = 2957; + * @return Whether the oneof2957 field is set. + */ + @java.lang.Override + public boolean hasOneof2957() { + return hugeOneofCase_ == 2957; + } /** * int32 oneof_2957 = 2957; * @return The oneof2957. */ + @java.lang.Override public int getOneof2957() { if (hugeOneofCase_ == 2957) { return (java.lang.Integer) hugeOneof_; @@ -207144,10 +236770,19 @@ public int getOneof2957() { } public static final int ONEOF_2958_FIELD_NUMBER = 2958; + /** + * int32 oneof_2958 = 2958; + * @return Whether the oneof2958 field is set. + */ + @java.lang.Override + public boolean hasOneof2958() { + return hugeOneofCase_ == 2958; + } /** * int32 oneof_2958 = 2958; * @return The oneof2958. */ + @java.lang.Override public int getOneof2958() { if (hugeOneofCase_ == 2958) { return (java.lang.Integer) hugeOneof_; @@ -207156,10 +236791,19 @@ public int getOneof2958() { } public static final int ONEOF_2959_FIELD_NUMBER = 2959; + /** + * int32 oneof_2959 = 2959; + * @return Whether the oneof2959 field is set. + */ + @java.lang.Override + public boolean hasOneof2959() { + return hugeOneofCase_ == 2959; + } /** * int32 oneof_2959 = 2959; * @return The oneof2959. */ + @java.lang.Override public int getOneof2959() { if (hugeOneofCase_ == 2959) { return (java.lang.Integer) hugeOneof_; @@ -207168,10 +236812,19 @@ public int getOneof2959() { } public static final int ONEOF_2960_FIELD_NUMBER = 2960; + /** + * int32 oneof_2960 = 2960; + * @return Whether the oneof2960 field is set. + */ + @java.lang.Override + public boolean hasOneof2960() { + return hugeOneofCase_ == 2960; + } /** * int32 oneof_2960 = 2960; * @return The oneof2960. */ + @java.lang.Override public int getOneof2960() { if (hugeOneofCase_ == 2960) { return (java.lang.Integer) hugeOneof_; @@ -207180,10 +236833,19 @@ public int getOneof2960() { } public static final int ONEOF_2961_FIELD_NUMBER = 2961; + /** + * int32 oneof_2961 = 2961; + * @return Whether the oneof2961 field is set. + */ + @java.lang.Override + public boolean hasOneof2961() { + return hugeOneofCase_ == 2961; + } /** * int32 oneof_2961 = 2961; * @return The oneof2961. */ + @java.lang.Override public int getOneof2961() { if (hugeOneofCase_ == 2961) { return (java.lang.Integer) hugeOneof_; @@ -207192,10 +236854,19 @@ public int getOneof2961() { } public static final int ONEOF_2962_FIELD_NUMBER = 2962; + /** + * int32 oneof_2962 = 2962; + * @return Whether the oneof2962 field is set. + */ + @java.lang.Override + public boolean hasOneof2962() { + return hugeOneofCase_ == 2962; + } /** * int32 oneof_2962 = 2962; * @return The oneof2962. */ + @java.lang.Override public int getOneof2962() { if (hugeOneofCase_ == 2962) { return (java.lang.Integer) hugeOneof_; @@ -207204,10 +236875,19 @@ public int getOneof2962() { } public static final int ONEOF_2963_FIELD_NUMBER = 2963; + /** + * int32 oneof_2963 = 2963; + * @return Whether the oneof2963 field is set. + */ + @java.lang.Override + public boolean hasOneof2963() { + return hugeOneofCase_ == 2963; + } /** * int32 oneof_2963 = 2963; * @return The oneof2963. */ + @java.lang.Override public int getOneof2963() { if (hugeOneofCase_ == 2963) { return (java.lang.Integer) hugeOneof_; @@ -207216,10 +236896,19 @@ public int getOneof2963() { } public static final int ONEOF_2964_FIELD_NUMBER = 2964; + /** + * int32 oneof_2964 = 2964; + * @return Whether the oneof2964 field is set. + */ + @java.lang.Override + public boolean hasOneof2964() { + return hugeOneofCase_ == 2964; + } /** * int32 oneof_2964 = 2964; * @return The oneof2964. */ + @java.lang.Override public int getOneof2964() { if (hugeOneofCase_ == 2964) { return (java.lang.Integer) hugeOneof_; @@ -207228,10 +236917,19 @@ public int getOneof2964() { } public static final int ONEOF_2965_FIELD_NUMBER = 2965; + /** + * int32 oneof_2965 = 2965; + * @return Whether the oneof2965 field is set. + */ + @java.lang.Override + public boolean hasOneof2965() { + return hugeOneofCase_ == 2965; + } /** * int32 oneof_2965 = 2965; * @return The oneof2965. */ + @java.lang.Override public int getOneof2965() { if (hugeOneofCase_ == 2965) { return (java.lang.Integer) hugeOneof_; @@ -207240,10 +236938,19 @@ public int getOneof2965() { } public static final int ONEOF_2966_FIELD_NUMBER = 2966; + /** + * int32 oneof_2966 = 2966; + * @return Whether the oneof2966 field is set. + */ + @java.lang.Override + public boolean hasOneof2966() { + return hugeOneofCase_ == 2966; + } /** * int32 oneof_2966 = 2966; * @return The oneof2966. */ + @java.lang.Override public int getOneof2966() { if (hugeOneofCase_ == 2966) { return (java.lang.Integer) hugeOneof_; @@ -207252,10 +236959,19 @@ public int getOneof2966() { } public static final int ONEOF_2967_FIELD_NUMBER = 2967; + /** + * int32 oneof_2967 = 2967; + * @return Whether the oneof2967 field is set. + */ + @java.lang.Override + public boolean hasOneof2967() { + return hugeOneofCase_ == 2967; + } /** * int32 oneof_2967 = 2967; * @return The oneof2967. */ + @java.lang.Override public int getOneof2967() { if (hugeOneofCase_ == 2967) { return (java.lang.Integer) hugeOneof_; @@ -207264,10 +236980,19 @@ public int getOneof2967() { } public static final int ONEOF_2968_FIELD_NUMBER = 2968; + /** + * int32 oneof_2968 = 2968; + * @return Whether the oneof2968 field is set. + */ + @java.lang.Override + public boolean hasOneof2968() { + return hugeOneofCase_ == 2968; + } /** * int32 oneof_2968 = 2968; * @return The oneof2968. */ + @java.lang.Override public int getOneof2968() { if (hugeOneofCase_ == 2968) { return (java.lang.Integer) hugeOneof_; @@ -207276,10 +237001,19 @@ public int getOneof2968() { } public static final int ONEOF_2969_FIELD_NUMBER = 2969; + /** + * int32 oneof_2969 = 2969; + * @return Whether the oneof2969 field is set. + */ + @java.lang.Override + public boolean hasOneof2969() { + return hugeOneofCase_ == 2969; + } /** * int32 oneof_2969 = 2969; * @return The oneof2969. */ + @java.lang.Override public int getOneof2969() { if (hugeOneofCase_ == 2969) { return (java.lang.Integer) hugeOneof_; @@ -207288,10 +237022,19 @@ public int getOneof2969() { } public static final int ONEOF_2970_FIELD_NUMBER = 2970; + /** + * int32 oneof_2970 = 2970; + * @return Whether the oneof2970 field is set. + */ + @java.lang.Override + public boolean hasOneof2970() { + return hugeOneofCase_ == 2970; + } /** * int32 oneof_2970 = 2970; * @return The oneof2970. */ + @java.lang.Override public int getOneof2970() { if (hugeOneofCase_ == 2970) { return (java.lang.Integer) hugeOneof_; @@ -207300,10 +237043,19 @@ public int getOneof2970() { } public static final int ONEOF_2971_FIELD_NUMBER = 2971; + /** + * int32 oneof_2971 = 2971; + * @return Whether the oneof2971 field is set. + */ + @java.lang.Override + public boolean hasOneof2971() { + return hugeOneofCase_ == 2971; + } /** * int32 oneof_2971 = 2971; * @return The oneof2971. */ + @java.lang.Override public int getOneof2971() { if (hugeOneofCase_ == 2971) { return (java.lang.Integer) hugeOneof_; @@ -207312,10 +237064,19 @@ public int getOneof2971() { } public static final int ONEOF_2972_FIELD_NUMBER = 2972; + /** + * int32 oneof_2972 = 2972; + * @return Whether the oneof2972 field is set. + */ + @java.lang.Override + public boolean hasOneof2972() { + return hugeOneofCase_ == 2972; + } /** * int32 oneof_2972 = 2972; * @return The oneof2972. */ + @java.lang.Override public int getOneof2972() { if (hugeOneofCase_ == 2972) { return (java.lang.Integer) hugeOneof_; @@ -207324,10 +237085,19 @@ public int getOneof2972() { } public static final int ONEOF_2973_FIELD_NUMBER = 2973; + /** + * int32 oneof_2973 = 2973; + * @return Whether the oneof2973 field is set. + */ + @java.lang.Override + public boolean hasOneof2973() { + return hugeOneofCase_ == 2973; + } /** * int32 oneof_2973 = 2973; * @return The oneof2973. */ + @java.lang.Override public int getOneof2973() { if (hugeOneofCase_ == 2973) { return (java.lang.Integer) hugeOneof_; @@ -207336,10 +237106,19 @@ public int getOneof2973() { } public static final int ONEOF_2974_FIELD_NUMBER = 2974; + /** + * int32 oneof_2974 = 2974; + * @return Whether the oneof2974 field is set. + */ + @java.lang.Override + public boolean hasOneof2974() { + return hugeOneofCase_ == 2974; + } /** * int32 oneof_2974 = 2974; * @return The oneof2974. */ + @java.lang.Override public int getOneof2974() { if (hugeOneofCase_ == 2974) { return (java.lang.Integer) hugeOneof_; @@ -207348,10 +237127,19 @@ public int getOneof2974() { } public static final int ONEOF_2975_FIELD_NUMBER = 2975; + /** + * int32 oneof_2975 = 2975; + * @return Whether the oneof2975 field is set. + */ + @java.lang.Override + public boolean hasOneof2975() { + return hugeOneofCase_ == 2975; + } /** * int32 oneof_2975 = 2975; * @return The oneof2975. */ + @java.lang.Override public int getOneof2975() { if (hugeOneofCase_ == 2975) { return (java.lang.Integer) hugeOneof_; @@ -207360,10 +237148,19 @@ public int getOneof2975() { } public static final int ONEOF_2976_FIELD_NUMBER = 2976; + /** + * int32 oneof_2976 = 2976; + * @return Whether the oneof2976 field is set. + */ + @java.lang.Override + public boolean hasOneof2976() { + return hugeOneofCase_ == 2976; + } /** * int32 oneof_2976 = 2976; * @return The oneof2976. */ + @java.lang.Override public int getOneof2976() { if (hugeOneofCase_ == 2976) { return (java.lang.Integer) hugeOneof_; @@ -207372,10 +237169,19 @@ public int getOneof2976() { } public static final int ONEOF_2977_FIELD_NUMBER = 2977; + /** + * int32 oneof_2977 = 2977; + * @return Whether the oneof2977 field is set. + */ + @java.lang.Override + public boolean hasOneof2977() { + return hugeOneofCase_ == 2977; + } /** * int32 oneof_2977 = 2977; * @return The oneof2977. */ + @java.lang.Override public int getOneof2977() { if (hugeOneofCase_ == 2977) { return (java.lang.Integer) hugeOneof_; @@ -207384,10 +237190,19 @@ public int getOneof2977() { } public static final int ONEOF_2978_FIELD_NUMBER = 2978; + /** + * int32 oneof_2978 = 2978; + * @return Whether the oneof2978 field is set. + */ + @java.lang.Override + public boolean hasOneof2978() { + return hugeOneofCase_ == 2978; + } /** * int32 oneof_2978 = 2978; * @return The oneof2978. */ + @java.lang.Override public int getOneof2978() { if (hugeOneofCase_ == 2978) { return (java.lang.Integer) hugeOneof_; @@ -207396,10 +237211,19 @@ public int getOneof2978() { } public static final int ONEOF_2979_FIELD_NUMBER = 2979; + /** + * int32 oneof_2979 = 2979; + * @return Whether the oneof2979 field is set. + */ + @java.lang.Override + public boolean hasOneof2979() { + return hugeOneofCase_ == 2979; + } /** * int32 oneof_2979 = 2979; * @return The oneof2979. */ + @java.lang.Override public int getOneof2979() { if (hugeOneofCase_ == 2979) { return (java.lang.Integer) hugeOneof_; @@ -207408,10 +237232,19 @@ public int getOneof2979() { } public static final int ONEOF_2980_FIELD_NUMBER = 2980; + /** + * int32 oneof_2980 = 2980; + * @return Whether the oneof2980 field is set. + */ + @java.lang.Override + public boolean hasOneof2980() { + return hugeOneofCase_ == 2980; + } /** * int32 oneof_2980 = 2980; * @return The oneof2980. */ + @java.lang.Override public int getOneof2980() { if (hugeOneofCase_ == 2980) { return (java.lang.Integer) hugeOneof_; @@ -207420,10 +237253,19 @@ public int getOneof2980() { } public static final int ONEOF_2981_FIELD_NUMBER = 2981; + /** + * int32 oneof_2981 = 2981; + * @return Whether the oneof2981 field is set. + */ + @java.lang.Override + public boolean hasOneof2981() { + return hugeOneofCase_ == 2981; + } /** * int32 oneof_2981 = 2981; * @return The oneof2981. */ + @java.lang.Override public int getOneof2981() { if (hugeOneofCase_ == 2981) { return (java.lang.Integer) hugeOneof_; @@ -207432,10 +237274,19 @@ public int getOneof2981() { } public static final int ONEOF_2982_FIELD_NUMBER = 2982; + /** + * int32 oneof_2982 = 2982; + * @return Whether the oneof2982 field is set. + */ + @java.lang.Override + public boolean hasOneof2982() { + return hugeOneofCase_ == 2982; + } /** * int32 oneof_2982 = 2982; * @return The oneof2982. */ + @java.lang.Override public int getOneof2982() { if (hugeOneofCase_ == 2982) { return (java.lang.Integer) hugeOneof_; @@ -207444,10 +237295,19 @@ public int getOneof2982() { } public static final int ONEOF_2983_FIELD_NUMBER = 2983; + /** + * int32 oneof_2983 = 2983; + * @return Whether the oneof2983 field is set. + */ + @java.lang.Override + public boolean hasOneof2983() { + return hugeOneofCase_ == 2983; + } /** * int32 oneof_2983 = 2983; * @return The oneof2983. */ + @java.lang.Override public int getOneof2983() { if (hugeOneofCase_ == 2983) { return (java.lang.Integer) hugeOneof_; @@ -207456,10 +237316,19 @@ public int getOneof2983() { } public static final int ONEOF_2984_FIELD_NUMBER = 2984; + /** + * int32 oneof_2984 = 2984; + * @return Whether the oneof2984 field is set. + */ + @java.lang.Override + public boolean hasOneof2984() { + return hugeOneofCase_ == 2984; + } /** * int32 oneof_2984 = 2984; * @return The oneof2984. */ + @java.lang.Override public int getOneof2984() { if (hugeOneofCase_ == 2984) { return (java.lang.Integer) hugeOneof_; @@ -207468,10 +237337,19 @@ public int getOneof2984() { } public static final int ONEOF_2985_FIELD_NUMBER = 2985; + /** + * int32 oneof_2985 = 2985; + * @return Whether the oneof2985 field is set. + */ + @java.lang.Override + public boolean hasOneof2985() { + return hugeOneofCase_ == 2985; + } /** * int32 oneof_2985 = 2985; * @return The oneof2985. */ + @java.lang.Override public int getOneof2985() { if (hugeOneofCase_ == 2985) { return (java.lang.Integer) hugeOneof_; @@ -207480,10 +237358,19 @@ public int getOneof2985() { } public static final int ONEOF_2986_FIELD_NUMBER = 2986; + /** + * int32 oneof_2986 = 2986; + * @return Whether the oneof2986 field is set. + */ + @java.lang.Override + public boolean hasOneof2986() { + return hugeOneofCase_ == 2986; + } /** * int32 oneof_2986 = 2986; * @return The oneof2986. */ + @java.lang.Override public int getOneof2986() { if (hugeOneofCase_ == 2986) { return (java.lang.Integer) hugeOneof_; @@ -207492,10 +237379,19 @@ public int getOneof2986() { } public static final int ONEOF_2987_FIELD_NUMBER = 2987; + /** + * int32 oneof_2987 = 2987; + * @return Whether the oneof2987 field is set. + */ + @java.lang.Override + public boolean hasOneof2987() { + return hugeOneofCase_ == 2987; + } /** * int32 oneof_2987 = 2987; * @return The oneof2987. */ + @java.lang.Override public int getOneof2987() { if (hugeOneofCase_ == 2987) { return (java.lang.Integer) hugeOneof_; @@ -207504,10 +237400,19 @@ public int getOneof2987() { } public static final int ONEOF_2988_FIELD_NUMBER = 2988; + /** + * int32 oneof_2988 = 2988; + * @return Whether the oneof2988 field is set. + */ + @java.lang.Override + public boolean hasOneof2988() { + return hugeOneofCase_ == 2988; + } /** * int32 oneof_2988 = 2988; * @return The oneof2988. */ + @java.lang.Override public int getOneof2988() { if (hugeOneofCase_ == 2988) { return (java.lang.Integer) hugeOneof_; @@ -207516,10 +237421,19 @@ public int getOneof2988() { } public static final int ONEOF_2989_FIELD_NUMBER = 2989; + /** + * int32 oneof_2989 = 2989; + * @return Whether the oneof2989 field is set. + */ + @java.lang.Override + public boolean hasOneof2989() { + return hugeOneofCase_ == 2989; + } /** * int32 oneof_2989 = 2989; * @return The oneof2989. */ + @java.lang.Override public int getOneof2989() { if (hugeOneofCase_ == 2989) { return (java.lang.Integer) hugeOneof_; @@ -207528,10 +237442,19 @@ public int getOneof2989() { } public static final int ONEOF_2990_FIELD_NUMBER = 2990; + /** + * int32 oneof_2990 = 2990; + * @return Whether the oneof2990 field is set. + */ + @java.lang.Override + public boolean hasOneof2990() { + return hugeOneofCase_ == 2990; + } /** * int32 oneof_2990 = 2990; * @return The oneof2990. */ + @java.lang.Override public int getOneof2990() { if (hugeOneofCase_ == 2990) { return (java.lang.Integer) hugeOneof_; @@ -207540,10 +237463,19 @@ public int getOneof2990() { } public static final int ONEOF_2991_FIELD_NUMBER = 2991; + /** + * int32 oneof_2991 = 2991; + * @return Whether the oneof2991 field is set. + */ + @java.lang.Override + public boolean hasOneof2991() { + return hugeOneofCase_ == 2991; + } /** * int32 oneof_2991 = 2991; * @return The oneof2991. */ + @java.lang.Override public int getOneof2991() { if (hugeOneofCase_ == 2991) { return (java.lang.Integer) hugeOneof_; @@ -207552,10 +237484,19 @@ public int getOneof2991() { } public static final int ONEOF_2992_FIELD_NUMBER = 2992; + /** + * int32 oneof_2992 = 2992; + * @return Whether the oneof2992 field is set. + */ + @java.lang.Override + public boolean hasOneof2992() { + return hugeOneofCase_ == 2992; + } /** * int32 oneof_2992 = 2992; * @return The oneof2992. */ + @java.lang.Override public int getOneof2992() { if (hugeOneofCase_ == 2992) { return (java.lang.Integer) hugeOneof_; @@ -207564,10 +237505,19 @@ public int getOneof2992() { } public static final int ONEOF_2993_FIELD_NUMBER = 2993; + /** + * int32 oneof_2993 = 2993; + * @return Whether the oneof2993 field is set. + */ + @java.lang.Override + public boolean hasOneof2993() { + return hugeOneofCase_ == 2993; + } /** * int32 oneof_2993 = 2993; * @return The oneof2993. */ + @java.lang.Override public int getOneof2993() { if (hugeOneofCase_ == 2993) { return (java.lang.Integer) hugeOneof_; @@ -207576,10 +237526,19 @@ public int getOneof2993() { } public static final int ONEOF_2994_FIELD_NUMBER = 2994; + /** + * int32 oneof_2994 = 2994; + * @return Whether the oneof2994 field is set. + */ + @java.lang.Override + public boolean hasOneof2994() { + return hugeOneofCase_ == 2994; + } /** * int32 oneof_2994 = 2994; * @return The oneof2994. */ + @java.lang.Override public int getOneof2994() { if (hugeOneofCase_ == 2994) { return (java.lang.Integer) hugeOneof_; @@ -207588,10 +237547,19 @@ public int getOneof2994() { } public static final int ONEOF_2995_FIELD_NUMBER = 2995; + /** + * int32 oneof_2995 = 2995; + * @return Whether the oneof2995 field is set. + */ + @java.lang.Override + public boolean hasOneof2995() { + return hugeOneofCase_ == 2995; + } /** * int32 oneof_2995 = 2995; * @return The oneof2995. */ + @java.lang.Override public int getOneof2995() { if (hugeOneofCase_ == 2995) { return (java.lang.Integer) hugeOneof_; @@ -207600,10 +237568,19 @@ public int getOneof2995() { } public static final int ONEOF_2996_FIELD_NUMBER = 2996; + /** + * int32 oneof_2996 = 2996; + * @return Whether the oneof2996 field is set. + */ + @java.lang.Override + public boolean hasOneof2996() { + return hugeOneofCase_ == 2996; + } /** * int32 oneof_2996 = 2996; * @return The oneof2996. */ + @java.lang.Override public int getOneof2996() { if (hugeOneofCase_ == 2996) { return (java.lang.Integer) hugeOneof_; @@ -207612,10 +237589,19 @@ public int getOneof2996() { } public static final int ONEOF_2997_FIELD_NUMBER = 2997; + /** + * int32 oneof_2997 = 2997; + * @return Whether the oneof2997 field is set. + */ + @java.lang.Override + public boolean hasOneof2997() { + return hugeOneofCase_ == 2997; + } /** * int32 oneof_2997 = 2997; * @return The oneof2997. */ + @java.lang.Override public int getOneof2997() { if (hugeOneofCase_ == 2997) { return (java.lang.Integer) hugeOneof_; @@ -207624,10 +237610,19 @@ public int getOneof2997() { } public static final int ONEOF_2998_FIELD_NUMBER = 2998; + /** + * int32 oneof_2998 = 2998; + * @return Whether the oneof2998 field is set. + */ + @java.lang.Override + public boolean hasOneof2998() { + return hugeOneofCase_ == 2998; + } /** * int32 oneof_2998 = 2998; * @return The oneof2998. */ + @java.lang.Override public int getOneof2998() { if (hugeOneofCase_ == 2998) { return (java.lang.Integer) hugeOneof_; @@ -207636,10 +237631,19 @@ public int getOneof2998() { } public static final int ONEOF_2999_FIELD_NUMBER = 2999; + /** + * int32 oneof_2999 = 2999; + * @return Whether the oneof2999 field is set. + */ + @java.lang.Override + public boolean hasOneof2999() { + return hugeOneofCase_ == 2999; + } /** * int32 oneof_2999 = 2999; * @return The oneof2999. */ + @java.lang.Override public int getOneof2999() { if (hugeOneofCase_ == 2999) { return (java.lang.Integer) hugeOneof_; @@ -255964,6 +285968,13 @@ public Builder clearHugeOneof() { } + /** + * int32 oneof_1000 = 1000; + * @return Whether the oneof1000 field is set. + */ + public boolean hasOneof1000() { + return hugeOneofCase_ == 1000; + } /** * int32 oneof_1000 = 1000; * @return The oneof1000. @@ -255998,6 +286009,13 @@ public Builder clearOneof1000() { return this; } + /** + * int32 oneof_1001 = 1001; + * @return Whether the oneof1001 field is set. + */ + public boolean hasOneof1001() { + return hugeOneofCase_ == 1001; + } /** * int32 oneof_1001 = 1001; * @return The oneof1001. @@ -256032,6 +286050,13 @@ public Builder clearOneof1001() { return this; } + /** + * int32 oneof_1002 = 1002; + * @return Whether the oneof1002 field is set. + */ + public boolean hasOneof1002() { + return hugeOneofCase_ == 1002; + } /** * int32 oneof_1002 = 1002; * @return The oneof1002. @@ -256066,6 +286091,13 @@ public Builder clearOneof1002() { return this; } + /** + * int32 oneof_1003 = 1003; + * @return Whether the oneof1003 field is set. + */ + public boolean hasOneof1003() { + return hugeOneofCase_ == 1003; + } /** * int32 oneof_1003 = 1003; * @return The oneof1003. @@ -256100,6 +286132,13 @@ public Builder clearOneof1003() { return this; } + /** + * int32 oneof_1004 = 1004; + * @return Whether the oneof1004 field is set. + */ + public boolean hasOneof1004() { + return hugeOneofCase_ == 1004; + } /** * int32 oneof_1004 = 1004; * @return The oneof1004. @@ -256134,6 +286173,13 @@ public Builder clearOneof1004() { return this; } + /** + * int32 oneof_1005 = 1005; + * @return Whether the oneof1005 field is set. + */ + public boolean hasOneof1005() { + return hugeOneofCase_ == 1005; + } /** * int32 oneof_1005 = 1005; * @return The oneof1005. @@ -256168,6 +286214,13 @@ public Builder clearOneof1005() { return this; } + /** + * int32 oneof_1006 = 1006; + * @return Whether the oneof1006 field is set. + */ + public boolean hasOneof1006() { + return hugeOneofCase_ == 1006; + } /** * int32 oneof_1006 = 1006; * @return The oneof1006. @@ -256202,6 +286255,13 @@ public Builder clearOneof1006() { return this; } + /** + * int32 oneof_1007 = 1007; + * @return Whether the oneof1007 field is set. + */ + public boolean hasOneof1007() { + return hugeOneofCase_ == 1007; + } /** * int32 oneof_1007 = 1007; * @return The oneof1007. @@ -256236,6 +286296,13 @@ public Builder clearOneof1007() { return this; } + /** + * int32 oneof_1008 = 1008; + * @return Whether the oneof1008 field is set. + */ + public boolean hasOneof1008() { + return hugeOneofCase_ == 1008; + } /** * int32 oneof_1008 = 1008; * @return The oneof1008. @@ -256270,6 +286337,13 @@ public Builder clearOneof1008() { return this; } + /** + * int32 oneof_1009 = 1009; + * @return Whether the oneof1009 field is set. + */ + public boolean hasOneof1009() { + return hugeOneofCase_ == 1009; + } /** * int32 oneof_1009 = 1009; * @return The oneof1009. @@ -256304,6 +286378,13 @@ public Builder clearOneof1009() { return this; } + /** + * int32 oneof_1010 = 1010; + * @return Whether the oneof1010 field is set. + */ + public boolean hasOneof1010() { + return hugeOneofCase_ == 1010; + } /** * int32 oneof_1010 = 1010; * @return The oneof1010. @@ -256338,6 +286419,13 @@ public Builder clearOneof1010() { return this; } + /** + * int32 oneof_1011 = 1011; + * @return Whether the oneof1011 field is set. + */ + public boolean hasOneof1011() { + return hugeOneofCase_ == 1011; + } /** * int32 oneof_1011 = 1011; * @return The oneof1011. @@ -256372,6 +286460,13 @@ public Builder clearOneof1011() { return this; } + /** + * int32 oneof_1012 = 1012; + * @return Whether the oneof1012 field is set. + */ + public boolean hasOneof1012() { + return hugeOneofCase_ == 1012; + } /** * int32 oneof_1012 = 1012; * @return The oneof1012. @@ -256406,6 +286501,13 @@ public Builder clearOneof1012() { return this; } + /** + * int32 oneof_1013 = 1013; + * @return Whether the oneof1013 field is set. + */ + public boolean hasOneof1013() { + return hugeOneofCase_ == 1013; + } /** * int32 oneof_1013 = 1013; * @return The oneof1013. @@ -256440,6 +286542,13 @@ public Builder clearOneof1013() { return this; } + /** + * int32 oneof_1014 = 1014; + * @return Whether the oneof1014 field is set. + */ + public boolean hasOneof1014() { + return hugeOneofCase_ == 1014; + } /** * int32 oneof_1014 = 1014; * @return The oneof1014. @@ -256474,6 +286583,13 @@ public Builder clearOneof1014() { return this; } + /** + * int32 oneof_1015 = 1015; + * @return Whether the oneof1015 field is set. + */ + public boolean hasOneof1015() { + return hugeOneofCase_ == 1015; + } /** * int32 oneof_1015 = 1015; * @return The oneof1015. @@ -256508,6 +286624,13 @@ public Builder clearOneof1015() { return this; } + /** + * int32 oneof_1016 = 1016; + * @return Whether the oneof1016 field is set. + */ + public boolean hasOneof1016() { + return hugeOneofCase_ == 1016; + } /** * int32 oneof_1016 = 1016; * @return The oneof1016. @@ -256542,6 +286665,13 @@ public Builder clearOneof1016() { return this; } + /** + * int32 oneof_1017 = 1017; + * @return Whether the oneof1017 field is set. + */ + public boolean hasOneof1017() { + return hugeOneofCase_ == 1017; + } /** * int32 oneof_1017 = 1017; * @return The oneof1017. @@ -256576,6 +286706,13 @@ public Builder clearOneof1017() { return this; } + /** + * int32 oneof_1018 = 1018; + * @return Whether the oneof1018 field is set. + */ + public boolean hasOneof1018() { + return hugeOneofCase_ == 1018; + } /** * int32 oneof_1018 = 1018; * @return The oneof1018. @@ -256610,6 +286747,13 @@ public Builder clearOneof1018() { return this; } + /** + * int32 oneof_1019 = 1019; + * @return Whether the oneof1019 field is set. + */ + public boolean hasOneof1019() { + return hugeOneofCase_ == 1019; + } /** * int32 oneof_1019 = 1019; * @return The oneof1019. @@ -256644,6 +286788,13 @@ public Builder clearOneof1019() { return this; } + /** + * int32 oneof_1020 = 1020; + * @return Whether the oneof1020 field is set. + */ + public boolean hasOneof1020() { + return hugeOneofCase_ == 1020; + } /** * int32 oneof_1020 = 1020; * @return The oneof1020. @@ -256678,6 +286829,13 @@ public Builder clearOneof1020() { return this; } + /** + * int32 oneof_1021 = 1021; + * @return Whether the oneof1021 field is set. + */ + public boolean hasOneof1021() { + return hugeOneofCase_ == 1021; + } /** * int32 oneof_1021 = 1021; * @return The oneof1021. @@ -256712,6 +286870,13 @@ public Builder clearOneof1021() { return this; } + /** + * int32 oneof_1022 = 1022; + * @return Whether the oneof1022 field is set. + */ + public boolean hasOneof1022() { + return hugeOneofCase_ == 1022; + } /** * int32 oneof_1022 = 1022; * @return The oneof1022. @@ -256746,6 +286911,13 @@ public Builder clearOneof1022() { return this; } + /** + * int32 oneof_1023 = 1023; + * @return Whether the oneof1023 field is set. + */ + public boolean hasOneof1023() { + return hugeOneofCase_ == 1023; + } /** * int32 oneof_1023 = 1023; * @return The oneof1023. @@ -256780,6 +286952,13 @@ public Builder clearOneof1023() { return this; } + /** + * int32 oneof_1024 = 1024; + * @return Whether the oneof1024 field is set. + */ + public boolean hasOneof1024() { + return hugeOneofCase_ == 1024; + } /** * int32 oneof_1024 = 1024; * @return The oneof1024. @@ -256814,6 +286993,13 @@ public Builder clearOneof1024() { return this; } + /** + * int32 oneof_1025 = 1025; + * @return Whether the oneof1025 field is set. + */ + public boolean hasOneof1025() { + return hugeOneofCase_ == 1025; + } /** * int32 oneof_1025 = 1025; * @return The oneof1025. @@ -256848,6 +287034,13 @@ public Builder clearOneof1025() { return this; } + /** + * int32 oneof_1026 = 1026; + * @return Whether the oneof1026 field is set. + */ + public boolean hasOneof1026() { + return hugeOneofCase_ == 1026; + } /** * int32 oneof_1026 = 1026; * @return The oneof1026. @@ -256882,6 +287075,13 @@ public Builder clearOneof1026() { return this; } + /** + * int32 oneof_1027 = 1027; + * @return Whether the oneof1027 field is set. + */ + public boolean hasOneof1027() { + return hugeOneofCase_ == 1027; + } /** * int32 oneof_1027 = 1027; * @return The oneof1027. @@ -256916,6 +287116,13 @@ public Builder clearOneof1027() { return this; } + /** + * int32 oneof_1028 = 1028; + * @return Whether the oneof1028 field is set. + */ + public boolean hasOneof1028() { + return hugeOneofCase_ == 1028; + } /** * int32 oneof_1028 = 1028; * @return The oneof1028. @@ -256950,6 +287157,13 @@ public Builder clearOneof1028() { return this; } + /** + * int32 oneof_1029 = 1029; + * @return Whether the oneof1029 field is set. + */ + public boolean hasOneof1029() { + return hugeOneofCase_ == 1029; + } /** * int32 oneof_1029 = 1029; * @return The oneof1029. @@ -256984,6 +287198,13 @@ public Builder clearOneof1029() { return this; } + /** + * int32 oneof_1030 = 1030; + * @return Whether the oneof1030 field is set. + */ + public boolean hasOneof1030() { + return hugeOneofCase_ == 1030; + } /** * int32 oneof_1030 = 1030; * @return The oneof1030. @@ -257018,6 +287239,13 @@ public Builder clearOneof1030() { return this; } + /** + * int32 oneof_1031 = 1031; + * @return Whether the oneof1031 field is set. + */ + public boolean hasOneof1031() { + return hugeOneofCase_ == 1031; + } /** * int32 oneof_1031 = 1031; * @return The oneof1031. @@ -257052,6 +287280,13 @@ public Builder clearOneof1031() { return this; } + /** + * int32 oneof_1032 = 1032; + * @return Whether the oneof1032 field is set. + */ + public boolean hasOneof1032() { + return hugeOneofCase_ == 1032; + } /** * int32 oneof_1032 = 1032; * @return The oneof1032. @@ -257086,6 +287321,13 @@ public Builder clearOneof1032() { return this; } + /** + * int32 oneof_1033 = 1033; + * @return Whether the oneof1033 field is set. + */ + public boolean hasOneof1033() { + return hugeOneofCase_ == 1033; + } /** * int32 oneof_1033 = 1033; * @return The oneof1033. @@ -257120,6 +287362,13 @@ public Builder clearOneof1033() { return this; } + /** + * int32 oneof_1034 = 1034; + * @return Whether the oneof1034 field is set. + */ + public boolean hasOneof1034() { + return hugeOneofCase_ == 1034; + } /** * int32 oneof_1034 = 1034; * @return The oneof1034. @@ -257154,6 +287403,13 @@ public Builder clearOneof1034() { return this; } + /** + * int32 oneof_1035 = 1035; + * @return Whether the oneof1035 field is set. + */ + public boolean hasOneof1035() { + return hugeOneofCase_ == 1035; + } /** * int32 oneof_1035 = 1035; * @return The oneof1035. @@ -257188,6 +287444,13 @@ public Builder clearOneof1035() { return this; } + /** + * int32 oneof_1036 = 1036; + * @return Whether the oneof1036 field is set. + */ + public boolean hasOneof1036() { + return hugeOneofCase_ == 1036; + } /** * int32 oneof_1036 = 1036; * @return The oneof1036. @@ -257222,6 +287485,13 @@ public Builder clearOneof1036() { return this; } + /** + * int32 oneof_1037 = 1037; + * @return Whether the oneof1037 field is set. + */ + public boolean hasOneof1037() { + return hugeOneofCase_ == 1037; + } /** * int32 oneof_1037 = 1037; * @return The oneof1037. @@ -257256,6 +287526,13 @@ public Builder clearOneof1037() { return this; } + /** + * int32 oneof_1038 = 1038; + * @return Whether the oneof1038 field is set. + */ + public boolean hasOneof1038() { + return hugeOneofCase_ == 1038; + } /** * int32 oneof_1038 = 1038; * @return The oneof1038. @@ -257290,6 +287567,13 @@ public Builder clearOneof1038() { return this; } + /** + * int32 oneof_1039 = 1039; + * @return Whether the oneof1039 field is set. + */ + public boolean hasOneof1039() { + return hugeOneofCase_ == 1039; + } /** * int32 oneof_1039 = 1039; * @return The oneof1039. @@ -257324,6 +287608,13 @@ public Builder clearOneof1039() { return this; } + /** + * int32 oneof_1040 = 1040; + * @return Whether the oneof1040 field is set. + */ + public boolean hasOneof1040() { + return hugeOneofCase_ == 1040; + } /** * int32 oneof_1040 = 1040; * @return The oneof1040. @@ -257358,6 +287649,13 @@ public Builder clearOneof1040() { return this; } + /** + * int32 oneof_1041 = 1041; + * @return Whether the oneof1041 field is set. + */ + public boolean hasOneof1041() { + return hugeOneofCase_ == 1041; + } /** * int32 oneof_1041 = 1041; * @return The oneof1041. @@ -257392,6 +287690,13 @@ public Builder clearOneof1041() { return this; } + /** + * int32 oneof_1042 = 1042; + * @return Whether the oneof1042 field is set. + */ + public boolean hasOneof1042() { + return hugeOneofCase_ == 1042; + } /** * int32 oneof_1042 = 1042; * @return The oneof1042. @@ -257426,6 +287731,13 @@ public Builder clearOneof1042() { return this; } + /** + * int32 oneof_1043 = 1043; + * @return Whether the oneof1043 field is set. + */ + public boolean hasOneof1043() { + return hugeOneofCase_ == 1043; + } /** * int32 oneof_1043 = 1043; * @return The oneof1043. @@ -257460,6 +287772,13 @@ public Builder clearOneof1043() { return this; } + /** + * int32 oneof_1044 = 1044; + * @return Whether the oneof1044 field is set. + */ + public boolean hasOneof1044() { + return hugeOneofCase_ == 1044; + } /** * int32 oneof_1044 = 1044; * @return The oneof1044. @@ -257494,6 +287813,13 @@ public Builder clearOneof1044() { return this; } + /** + * int32 oneof_1045 = 1045; + * @return Whether the oneof1045 field is set. + */ + public boolean hasOneof1045() { + return hugeOneofCase_ == 1045; + } /** * int32 oneof_1045 = 1045; * @return The oneof1045. @@ -257528,6 +287854,13 @@ public Builder clearOneof1045() { return this; } + /** + * int32 oneof_1046 = 1046; + * @return Whether the oneof1046 field is set. + */ + public boolean hasOneof1046() { + return hugeOneofCase_ == 1046; + } /** * int32 oneof_1046 = 1046; * @return The oneof1046. @@ -257562,6 +287895,13 @@ public Builder clearOneof1046() { return this; } + /** + * int32 oneof_1047 = 1047; + * @return Whether the oneof1047 field is set. + */ + public boolean hasOneof1047() { + return hugeOneofCase_ == 1047; + } /** * int32 oneof_1047 = 1047; * @return The oneof1047. @@ -257596,6 +287936,13 @@ public Builder clearOneof1047() { return this; } + /** + * int32 oneof_1048 = 1048; + * @return Whether the oneof1048 field is set. + */ + public boolean hasOneof1048() { + return hugeOneofCase_ == 1048; + } /** * int32 oneof_1048 = 1048; * @return The oneof1048. @@ -257630,6 +287977,13 @@ public Builder clearOneof1048() { return this; } + /** + * int32 oneof_1049 = 1049; + * @return Whether the oneof1049 field is set. + */ + public boolean hasOneof1049() { + return hugeOneofCase_ == 1049; + } /** * int32 oneof_1049 = 1049; * @return The oneof1049. @@ -257664,6 +288018,13 @@ public Builder clearOneof1049() { return this; } + /** + * int32 oneof_1050 = 1050; + * @return Whether the oneof1050 field is set. + */ + public boolean hasOneof1050() { + return hugeOneofCase_ == 1050; + } /** * int32 oneof_1050 = 1050; * @return The oneof1050. @@ -257698,6 +288059,13 @@ public Builder clearOneof1050() { return this; } + /** + * int32 oneof_1051 = 1051; + * @return Whether the oneof1051 field is set. + */ + public boolean hasOneof1051() { + return hugeOneofCase_ == 1051; + } /** * int32 oneof_1051 = 1051; * @return The oneof1051. @@ -257732,6 +288100,13 @@ public Builder clearOneof1051() { return this; } + /** + * int32 oneof_1052 = 1052; + * @return Whether the oneof1052 field is set. + */ + public boolean hasOneof1052() { + return hugeOneofCase_ == 1052; + } /** * int32 oneof_1052 = 1052; * @return The oneof1052. @@ -257766,6 +288141,13 @@ public Builder clearOneof1052() { return this; } + /** + * int32 oneof_1053 = 1053; + * @return Whether the oneof1053 field is set. + */ + public boolean hasOneof1053() { + return hugeOneofCase_ == 1053; + } /** * int32 oneof_1053 = 1053; * @return The oneof1053. @@ -257800,6 +288182,13 @@ public Builder clearOneof1053() { return this; } + /** + * int32 oneof_1054 = 1054; + * @return Whether the oneof1054 field is set. + */ + public boolean hasOneof1054() { + return hugeOneofCase_ == 1054; + } /** * int32 oneof_1054 = 1054; * @return The oneof1054. @@ -257834,6 +288223,13 @@ public Builder clearOneof1054() { return this; } + /** + * int32 oneof_1055 = 1055; + * @return Whether the oneof1055 field is set. + */ + public boolean hasOneof1055() { + return hugeOneofCase_ == 1055; + } /** * int32 oneof_1055 = 1055; * @return The oneof1055. @@ -257868,6 +288264,13 @@ public Builder clearOneof1055() { return this; } + /** + * int32 oneof_1056 = 1056; + * @return Whether the oneof1056 field is set. + */ + public boolean hasOneof1056() { + return hugeOneofCase_ == 1056; + } /** * int32 oneof_1056 = 1056; * @return The oneof1056. @@ -257902,6 +288305,13 @@ public Builder clearOneof1056() { return this; } + /** + * int32 oneof_1057 = 1057; + * @return Whether the oneof1057 field is set. + */ + public boolean hasOneof1057() { + return hugeOneofCase_ == 1057; + } /** * int32 oneof_1057 = 1057; * @return The oneof1057. @@ -257936,6 +288346,13 @@ public Builder clearOneof1057() { return this; } + /** + * int32 oneof_1058 = 1058; + * @return Whether the oneof1058 field is set. + */ + public boolean hasOneof1058() { + return hugeOneofCase_ == 1058; + } /** * int32 oneof_1058 = 1058; * @return The oneof1058. @@ -257970,6 +288387,13 @@ public Builder clearOneof1058() { return this; } + /** + * int32 oneof_1059 = 1059; + * @return Whether the oneof1059 field is set. + */ + public boolean hasOneof1059() { + return hugeOneofCase_ == 1059; + } /** * int32 oneof_1059 = 1059; * @return The oneof1059. @@ -258004,6 +288428,13 @@ public Builder clearOneof1059() { return this; } + /** + * int32 oneof_1060 = 1060; + * @return Whether the oneof1060 field is set. + */ + public boolean hasOneof1060() { + return hugeOneofCase_ == 1060; + } /** * int32 oneof_1060 = 1060; * @return The oneof1060. @@ -258038,6 +288469,13 @@ public Builder clearOneof1060() { return this; } + /** + * int32 oneof_1061 = 1061; + * @return Whether the oneof1061 field is set. + */ + public boolean hasOneof1061() { + return hugeOneofCase_ == 1061; + } /** * int32 oneof_1061 = 1061; * @return The oneof1061. @@ -258072,6 +288510,13 @@ public Builder clearOneof1061() { return this; } + /** + * int32 oneof_1062 = 1062; + * @return Whether the oneof1062 field is set. + */ + public boolean hasOneof1062() { + return hugeOneofCase_ == 1062; + } /** * int32 oneof_1062 = 1062; * @return The oneof1062. @@ -258106,6 +288551,13 @@ public Builder clearOneof1062() { return this; } + /** + * int32 oneof_1063 = 1063; + * @return Whether the oneof1063 field is set. + */ + public boolean hasOneof1063() { + return hugeOneofCase_ == 1063; + } /** * int32 oneof_1063 = 1063; * @return The oneof1063. @@ -258140,6 +288592,13 @@ public Builder clearOneof1063() { return this; } + /** + * int32 oneof_1064 = 1064; + * @return Whether the oneof1064 field is set. + */ + public boolean hasOneof1064() { + return hugeOneofCase_ == 1064; + } /** * int32 oneof_1064 = 1064; * @return The oneof1064. @@ -258174,6 +288633,13 @@ public Builder clearOneof1064() { return this; } + /** + * int32 oneof_1065 = 1065; + * @return Whether the oneof1065 field is set. + */ + public boolean hasOneof1065() { + return hugeOneofCase_ == 1065; + } /** * int32 oneof_1065 = 1065; * @return The oneof1065. @@ -258208,6 +288674,13 @@ public Builder clearOneof1065() { return this; } + /** + * int32 oneof_1066 = 1066; + * @return Whether the oneof1066 field is set. + */ + public boolean hasOneof1066() { + return hugeOneofCase_ == 1066; + } /** * int32 oneof_1066 = 1066; * @return The oneof1066. @@ -258242,6 +288715,13 @@ public Builder clearOneof1066() { return this; } + /** + * int32 oneof_1067 = 1067; + * @return Whether the oneof1067 field is set. + */ + public boolean hasOneof1067() { + return hugeOneofCase_ == 1067; + } /** * int32 oneof_1067 = 1067; * @return The oneof1067. @@ -258276,6 +288756,13 @@ public Builder clearOneof1067() { return this; } + /** + * int32 oneof_1068 = 1068; + * @return Whether the oneof1068 field is set. + */ + public boolean hasOneof1068() { + return hugeOneofCase_ == 1068; + } /** * int32 oneof_1068 = 1068; * @return The oneof1068. @@ -258310,6 +288797,13 @@ public Builder clearOneof1068() { return this; } + /** + * int32 oneof_1069 = 1069; + * @return Whether the oneof1069 field is set. + */ + public boolean hasOneof1069() { + return hugeOneofCase_ == 1069; + } /** * int32 oneof_1069 = 1069; * @return The oneof1069. @@ -258344,6 +288838,13 @@ public Builder clearOneof1069() { return this; } + /** + * int32 oneof_1070 = 1070; + * @return Whether the oneof1070 field is set. + */ + public boolean hasOneof1070() { + return hugeOneofCase_ == 1070; + } /** * int32 oneof_1070 = 1070; * @return The oneof1070. @@ -258378,6 +288879,13 @@ public Builder clearOneof1070() { return this; } + /** + * int32 oneof_1071 = 1071; + * @return Whether the oneof1071 field is set. + */ + public boolean hasOneof1071() { + return hugeOneofCase_ == 1071; + } /** * int32 oneof_1071 = 1071; * @return The oneof1071. @@ -258412,6 +288920,13 @@ public Builder clearOneof1071() { return this; } + /** + * int32 oneof_1072 = 1072; + * @return Whether the oneof1072 field is set. + */ + public boolean hasOneof1072() { + return hugeOneofCase_ == 1072; + } /** * int32 oneof_1072 = 1072; * @return The oneof1072. @@ -258446,6 +288961,13 @@ public Builder clearOneof1072() { return this; } + /** + * int32 oneof_1073 = 1073; + * @return Whether the oneof1073 field is set. + */ + public boolean hasOneof1073() { + return hugeOneofCase_ == 1073; + } /** * int32 oneof_1073 = 1073; * @return The oneof1073. @@ -258480,6 +289002,13 @@ public Builder clearOneof1073() { return this; } + /** + * int32 oneof_1074 = 1074; + * @return Whether the oneof1074 field is set. + */ + public boolean hasOneof1074() { + return hugeOneofCase_ == 1074; + } /** * int32 oneof_1074 = 1074; * @return The oneof1074. @@ -258514,6 +289043,13 @@ public Builder clearOneof1074() { return this; } + /** + * int32 oneof_1075 = 1075; + * @return Whether the oneof1075 field is set. + */ + public boolean hasOneof1075() { + return hugeOneofCase_ == 1075; + } /** * int32 oneof_1075 = 1075; * @return The oneof1075. @@ -258548,6 +289084,13 @@ public Builder clearOneof1075() { return this; } + /** + * int32 oneof_1076 = 1076; + * @return Whether the oneof1076 field is set. + */ + public boolean hasOneof1076() { + return hugeOneofCase_ == 1076; + } /** * int32 oneof_1076 = 1076; * @return The oneof1076. @@ -258582,6 +289125,13 @@ public Builder clearOneof1076() { return this; } + /** + * int32 oneof_1077 = 1077; + * @return Whether the oneof1077 field is set. + */ + public boolean hasOneof1077() { + return hugeOneofCase_ == 1077; + } /** * int32 oneof_1077 = 1077; * @return The oneof1077. @@ -258616,6 +289166,13 @@ public Builder clearOneof1077() { return this; } + /** + * int32 oneof_1078 = 1078; + * @return Whether the oneof1078 field is set. + */ + public boolean hasOneof1078() { + return hugeOneofCase_ == 1078; + } /** * int32 oneof_1078 = 1078; * @return The oneof1078. @@ -258650,6 +289207,13 @@ public Builder clearOneof1078() { return this; } + /** + * int32 oneof_1079 = 1079; + * @return Whether the oneof1079 field is set. + */ + public boolean hasOneof1079() { + return hugeOneofCase_ == 1079; + } /** * int32 oneof_1079 = 1079; * @return The oneof1079. @@ -258684,6 +289248,13 @@ public Builder clearOneof1079() { return this; } + /** + * int32 oneof_1080 = 1080; + * @return Whether the oneof1080 field is set. + */ + public boolean hasOneof1080() { + return hugeOneofCase_ == 1080; + } /** * int32 oneof_1080 = 1080; * @return The oneof1080. @@ -258718,6 +289289,13 @@ public Builder clearOneof1080() { return this; } + /** + * int32 oneof_1081 = 1081; + * @return Whether the oneof1081 field is set. + */ + public boolean hasOneof1081() { + return hugeOneofCase_ == 1081; + } /** * int32 oneof_1081 = 1081; * @return The oneof1081. @@ -258752,6 +289330,13 @@ public Builder clearOneof1081() { return this; } + /** + * int32 oneof_1082 = 1082; + * @return Whether the oneof1082 field is set. + */ + public boolean hasOneof1082() { + return hugeOneofCase_ == 1082; + } /** * int32 oneof_1082 = 1082; * @return The oneof1082. @@ -258786,6 +289371,13 @@ public Builder clearOneof1082() { return this; } + /** + * int32 oneof_1083 = 1083; + * @return Whether the oneof1083 field is set. + */ + public boolean hasOneof1083() { + return hugeOneofCase_ == 1083; + } /** * int32 oneof_1083 = 1083; * @return The oneof1083. @@ -258820,6 +289412,13 @@ public Builder clearOneof1083() { return this; } + /** + * int32 oneof_1084 = 1084; + * @return Whether the oneof1084 field is set. + */ + public boolean hasOneof1084() { + return hugeOneofCase_ == 1084; + } /** * int32 oneof_1084 = 1084; * @return The oneof1084. @@ -258854,6 +289453,13 @@ public Builder clearOneof1084() { return this; } + /** + * int32 oneof_1085 = 1085; + * @return Whether the oneof1085 field is set. + */ + public boolean hasOneof1085() { + return hugeOneofCase_ == 1085; + } /** * int32 oneof_1085 = 1085; * @return The oneof1085. @@ -258888,6 +289494,13 @@ public Builder clearOneof1085() { return this; } + /** + * int32 oneof_1086 = 1086; + * @return Whether the oneof1086 field is set. + */ + public boolean hasOneof1086() { + return hugeOneofCase_ == 1086; + } /** * int32 oneof_1086 = 1086; * @return The oneof1086. @@ -258922,6 +289535,13 @@ public Builder clearOneof1086() { return this; } + /** + * int32 oneof_1087 = 1087; + * @return Whether the oneof1087 field is set. + */ + public boolean hasOneof1087() { + return hugeOneofCase_ == 1087; + } /** * int32 oneof_1087 = 1087; * @return The oneof1087. @@ -258956,6 +289576,13 @@ public Builder clearOneof1087() { return this; } + /** + * int32 oneof_1088 = 1088; + * @return Whether the oneof1088 field is set. + */ + public boolean hasOneof1088() { + return hugeOneofCase_ == 1088; + } /** * int32 oneof_1088 = 1088; * @return The oneof1088. @@ -258990,6 +289617,13 @@ public Builder clearOneof1088() { return this; } + /** + * int32 oneof_1089 = 1089; + * @return Whether the oneof1089 field is set. + */ + public boolean hasOneof1089() { + return hugeOneofCase_ == 1089; + } /** * int32 oneof_1089 = 1089; * @return The oneof1089. @@ -259024,6 +289658,13 @@ public Builder clearOneof1089() { return this; } + /** + * int32 oneof_1090 = 1090; + * @return Whether the oneof1090 field is set. + */ + public boolean hasOneof1090() { + return hugeOneofCase_ == 1090; + } /** * int32 oneof_1090 = 1090; * @return The oneof1090. @@ -259058,6 +289699,13 @@ public Builder clearOneof1090() { return this; } + /** + * int32 oneof_1091 = 1091; + * @return Whether the oneof1091 field is set. + */ + public boolean hasOneof1091() { + return hugeOneofCase_ == 1091; + } /** * int32 oneof_1091 = 1091; * @return The oneof1091. @@ -259092,6 +289740,13 @@ public Builder clearOneof1091() { return this; } + /** + * int32 oneof_1092 = 1092; + * @return Whether the oneof1092 field is set. + */ + public boolean hasOneof1092() { + return hugeOneofCase_ == 1092; + } /** * int32 oneof_1092 = 1092; * @return The oneof1092. @@ -259126,6 +289781,13 @@ public Builder clearOneof1092() { return this; } + /** + * int32 oneof_1093 = 1093; + * @return Whether the oneof1093 field is set. + */ + public boolean hasOneof1093() { + return hugeOneofCase_ == 1093; + } /** * int32 oneof_1093 = 1093; * @return The oneof1093. @@ -259160,6 +289822,13 @@ public Builder clearOneof1093() { return this; } + /** + * int32 oneof_1094 = 1094; + * @return Whether the oneof1094 field is set. + */ + public boolean hasOneof1094() { + return hugeOneofCase_ == 1094; + } /** * int32 oneof_1094 = 1094; * @return The oneof1094. @@ -259194,6 +289863,13 @@ public Builder clearOneof1094() { return this; } + /** + * int32 oneof_1095 = 1095; + * @return Whether the oneof1095 field is set. + */ + public boolean hasOneof1095() { + return hugeOneofCase_ == 1095; + } /** * int32 oneof_1095 = 1095; * @return The oneof1095. @@ -259228,6 +289904,13 @@ public Builder clearOneof1095() { return this; } + /** + * int32 oneof_1096 = 1096; + * @return Whether the oneof1096 field is set. + */ + public boolean hasOneof1096() { + return hugeOneofCase_ == 1096; + } /** * int32 oneof_1096 = 1096; * @return The oneof1096. @@ -259262,6 +289945,13 @@ public Builder clearOneof1096() { return this; } + /** + * int32 oneof_1097 = 1097; + * @return Whether the oneof1097 field is set. + */ + public boolean hasOneof1097() { + return hugeOneofCase_ == 1097; + } /** * int32 oneof_1097 = 1097; * @return The oneof1097. @@ -259296,6 +289986,13 @@ public Builder clearOneof1097() { return this; } + /** + * int32 oneof_1098 = 1098; + * @return Whether the oneof1098 field is set. + */ + public boolean hasOneof1098() { + return hugeOneofCase_ == 1098; + } /** * int32 oneof_1098 = 1098; * @return The oneof1098. @@ -259330,6 +290027,13 @@ public Builder clearOneof1098() { return this; } + /** + * int32 oneof_1099 = 1099; + * @return Whether the oneof1099 field is set. + */ + public boolean hasOneof1099() { + return hugeOneofCase_ == 1099; + } /** * int32 oneof_1099 = 1099; * @return The oneof1099. @@ -259364,6 +290068,13 @@ public Builder clearOneof1099() { return this; } + /** + * int32 oneof_1100 = 1100; + * @return Whether the oneof1100 field is set. + */ + public boolean hasOneof1100() { + return hugeOneofCase_ == 1100; + } /** * int32 oneof_1100 = 1100; * @return The oneof1100. @@ -259398,6 +290109,13 @@ public Builder clearOneof1100() { return this; } + /** + * int32 oneof_1101 = 1101; + * @return Whether the oneof1101 field is set. + */ + public boolean hasOneof1101() { + return hugeOneofCase_ == 1101; + } /** * int32 oneof_1101 = 1101; * @return The oneof1101. @@ -259432,6 +290150,13 @@ public Builder clearOneof1101() { return this; } + /** + * int32 oneof_1102 = 1102; + * @return Whether the oneof1102 field is set. + */ + public boolean hasOneof1102() { + return hugeOneofCase_ == 1102; + } /** * int32 oneof_1102 = 1102; * @return The oneof1102. @@ -259466,6 +290191,13 @@ public Builder clearOneof1102() { return this; } + /** + * int32 oneof_1103 = 1103; + * @return Whether the oneof1103 field is set. + */ + public boolean hasOneof1103() { + return hugeOneofCase_ == 1103; + } /** * int32 oneof_1103 = 1103; * @return The oneof1103. @@ -259500,6 +290232,13 @@ public Builder clearOneof1103() { return this; } + /** + * int32 oneof_1104 = 1104; + * @return Whether the oneof1104 field is set. + */ + public boolean hasOneof1104() { + return hugeOneofCase_ == 1104; + } /** * int32 oneof_1104 = 1104; * @return The oneof1104. @@ -259534,6 +290273,13 @@ public Builder clearOneof1104() { return this; } + /** + * int32 oneof_1105 = 1105; + * @return Whether the oneof1105 field is set. + */ + public boolean hasOneof1105() { + return hugeOneofCase_ == 1105; + } /** * int32 oneof_1105 = 1105; * @return The oneof1105. @@ -259568,6 +290314,13 @@ public Builder clearOneof1105() { return this; } + /** + * int32 oneof_1106 = 1106; + * @return Whether the oneof1106 field is set. + */ + public boolean hasOneof1106() { + return hugeOneofCase_ == 1106; + } /** * int32 oneof_1106 = 1106; * @return The oneof1106. @@ -259602,6 +290355,13 @@ public Builder clearOneof1106() { return this; } + /** + * int32 oneof_1107 = 1107; + * @return Whether the oneof1107 field is set. + */ + public boolean hasOneof1107() { + return hugeOneofCase_ == 1107; + } /** * int32 oneof_1107 = 1107; * @return The oneof1107. @@ -259636,6 +290396,13 @@ public Builder clearOneof1107() { return this; } + /** + * int32 oneof_1108 = 1108; + * @return Whether the oneof1108 field is set. + */ + public boolean hasOneof1108() { + return hugeOneofCase_ == 1108; + } /** * int32 oneof_1108 = 1108; * @return The oneof1108. @@ -259670,6 +290437,13 @@ public Builder clearOneof1108() { return this; } + /** + * int32 oneof_1109 = 1109; + * @return Whether the oneof1109 field is set. + */ + public boolean hasOneof1109() { + return hugeOneofCase_ == 1109; + } /** * int32 oneof_1109 = 1109; * @return The oneof1109. @@ -259704,6 +290478,13 @@ public Builder clearOneof1109() { return this; } + /** + * int32 oneof_1110 = 1110; + * @return Whether the oneof1110 field is set. + */ + public boolean hasOneof1110() { + return hugeOneofCase_ == 1110; + } /** * int32 oneof_1110 = 1110; * @return The oneof1110. @@ -259738,6 +290519,13 @@ public Builder clearOneof1110() { return this; } + /** + * int32 oneof_1111 = 1111; + * @return Whether the oneof1111 field is set. + */ + public boolean hasOneof1111() { + return hugeOneofCase_ == 1111; + } /** * int32 oneof_1111 = 1111; * @return The oneof1111. @@ -259772,6 +290560,13 @@ public Builder clearOneof1111() { return this; } + /** + * int32 oneof_1112 = 1112; + * @return Whether the oneof1112 field is set. + */ + public boolean hasOneof1112() { + return hugeOneofCase_ == 1112; + } /** * int32 oneof_1112 = 1112; * @return The oneof1112. @@ -259806,6 +290601,13 @@ public Builder clearOneof1112() { return this; } + /** + * int32 oneof_1113 = 1113; + * @return Whether the oneof1113 field is set. + */ + public boolean hasOneof1113() { + return hugeOneofCase_ == 1113; + } /** * int32 oneof_1113 = 1113; * @return The oneof1113. @@ -259840,6 +290642,13 @@ public Builder clearOneof1113() { return this; } + /** + * int32 oneof_1114 = 1114; + * @return Whether the oneof1114 field is set. + */ + public boolean hasOneof1114() { + return hugeOneofCase_ == 1114; + } /** * int32 oneof_1114 = 1114; * @return The oneof1114. @@ -259874,6 +290683,13 @@ public Builder clearOneof1114() { return this; } + /** + * int32 oneof_1115 = 1115; + * @return Whether the oneof1115 field is set. + */ + public boolean hasOneof1115() { + return hugeOneofCase_ == 1115; + } /** * int32 oneof_1115 = 1115; * @return The oneof1115. @@ -259908,6 +290724,13 @@ public Builder clearOneof1115() { return this; } + /** + * int32 oneof_1116 = 1116; + * @return Whether the oneof1116 field is set. + */ + public boolean hasOneof1116() { + return hugeOneofCase_ == 1116; + } /** * int32 oneof_1116 = 1116; * @return The oneof1116. @@ -259942,6 +290765,13 @@ public Builder clearOneof1116() { return this; } + /** + * int32 oneof_1117 = 1117; + * @return Whether the oneof1117 field is set. + */ + public boolean hasOneof1117() { + return hugeOneofCase_ == 1117; + } /** * int32 oneof_1117 = 1117; * @return The oneof1117. @@ -259976,6 +290806,13 @@ public Builder clearOneof1117() { return this; } + /** + * int32 oneof_1118 = 1118; + * @return Whether the oneof1118 field is set. + */ + public boolean hasOneof1118() { + return hugeOneofCase_ == 1118; + } /** * int32 oneof_1118 = 1118; * @return The oneof1118. @@ -260010,6 +290847,13 @@ public Builder clearOneof1118() { return this; } + /** + * int32 oneof_1119 = 1119; + * @return Whether the oneof1119 field is set. + */ + public boolean hasOneof1119() { + return hugeOneofCase_ == 1119; + } /** * int32 oneof_1119 = 1119; * @return The oneof1119. @@ -260044,6 +290888,13 @@ public Builder clearOneof1119() { return this; } + /** + * int32 oneof_1120 = 1120; + * @return Whether the oneof1120 field is set. + */ + public boolean hasOneof1120() { + return hugeOneofCase_ == 1120; + } /** * int32 oneof_1120 = 1120; * @return The oneof1120. @@ -260078,6 +290929,13 @@ public Builder clearOneof1120() { return this; } + /** + * int32 oneof_1121 = 1121; + * @return Whether the oneof1121 field is set. + */ + public boolean hasOneof1121() { + return hugeOneofCase_ == 1121; + } /** * int32 oneof_1121 = 1121; * @return The oneof1121. @@ -260112,6 +290970,13 @@ public Builder clearOneof1121() { return this; } + /** + * int32 oneof_1122 = 1122; + * @return Whether the oneof1122 field is set. + */ + public boolean hasOneof1122() { + return hugeOneofCase_ == 1122; + } /** * int32 oneof_1122 = 1122; * @return The oneof1122. @@ -260146,6 +291011,13 @@ public Builder clearOneof1122() { return this; } + /** + * int32 oneof_1123 = 1123; + * @return Whether the oneof1123 field is set. + */ + public boolean hasOneof1123() { + return hugeOneofCase_ == 1123; + } /** * int32 oneof_1123 = 1123; * @return The oneof1123. @@ -260180,6 +291052,13 @@ public Builder clearOneof1123() { return this; } + /** + * int32 oneof_1124 = 1124; + * @return Whether the oneof1124 field is set. + */ + public boolean hasOneof1124() { + return hugeOneofCase_ == 1124; + } /** * int32 oneof_1124 = 1124; * @return The oneof1124. @@ -260214,6 +291093,13 @@ public Builder clearOneof1124() { return this; } + /** + * int32 oneof_1125 = 1125; + * @return Whether the oneof1125 field is set. + */ + public boolean hasOneof1125() { + return hugeOneofCase_ == 1125; + } /** * int32 oneof_1125 = 1125; * @return The oneof1125. @@ -260248,6 +291134,13 @@ public Builder clearOneof1125() { return this; } + /** + * int32 oneof_1126 = 1126; + * @return Whether the oneof1126 field is set. + */ + public boolean hasOneof1126() { + return hugeOneofCase_ == 1126; + } /** * int32 oneof_1126 = 1126; * @return The oneof1126. @@ -260282,6 +291175,13 @@ public Builder clearOneof1126() { return this; } + /** + * int32 oneof_1127 = 1127; + * @return Whether the oneof1127 field is set. + */ + public boolean hasOneof1127() { + return hugeOneofCase_ == 1127; + } /** * int32 oneof_1127 = 1127; * @return The oneof1127. @@ -260316,6 +291216,13 @@ public Builder clearOneof1127() { return this; } + /** + * int32 oneof_1128 = 1128; + * @return Whether the oneof1128 field is set. + */ + public boolean hasOneof1128() { + return hugeOneofCase_ == 1128; + } /** * int32 oneof_1128 = 1128; * @return The oneof1128. @@ -260350,6 +291257,13 @@ public Builder clearOneof1128() { return this; } + /** + * int32 oneof_1129 = 1129; + * @return Whether the oneof1129 field is set. + */ + public boolean hasOneof1129() { + return hugeOneofCase_ == 1129; + } /** * int32 oneof_1129 = 1129; * @return The oneof1129. @@ -260384,6 +291298,13 @@ public Builder clearOneof1129() { return this; } + /** + * int32 oneof_1130 = 1130; + * @return Whether the oneof1130 field is set. + */ + public boolean hasOneof1130() { + return hugeOneofCase_ == 1130; + } /** * int32 oneof_1130 = 1130; * @return The oneof1130. @@ -260418,6 +291339,13 @@ public Builder clearOneof1130() { return this; } + /** + * int32 oneof_1131 = 1131; + * @return Whether the oneof1131 field is set. + */ + public boolean hasOneof1131() { + return hugeOneofCase_ == 1131; + } /** * int32 oneof_1131 = 1131; * @return The oneof1131. @@ -260452,6 +291380,13 @@ public Builder clearOneof1131() { return this; } + /** + * int32 oneof_1132 = 1132; + * @return Whether the oneof1132 field is set. + */ + public boolean hasOneof1132() { + return hugeOneofCase_ == 1132; + } /** * int32 oneof_1132 = 1132; * @return The oneof1132. @@ -260486,6 +291421,13 @@ public Builder clearOneof1132() { return this; } + /** + * int32 oneof_1133 = 1133; + * @return Whether the oneof1133 field is set. + */ + public boolean hasOneof1133() { + return hugeOneofCase_ == 1133; + } /** * int32 oneof_1133 = 1133; * @return The oneof1133. @@ -260520,6 +291462,13 @@ public Builder clearOneof1133() { return this; } + /** + * int32 oneof_1134 = 1134; + * @return Whether the oneof1134 field is set. + */ + public boolean hasOneof1134() { + return hugeOneofCase_ == 1134; + } /** * int32 oneof_1134 = 1134; * @return The oneof1134. @@ -260554,6 +291503,13 @@ public Builder clearOneof1134() { return this; } + /** + * int32 oneof_1135 = 1135; + * @return Whether the oneof1135 field is set. + */ + public boolean hasOneof1135() { + return hugeOneofCase_ == 1135; + } /** * int32 oneof_1135 = 1135; * @return The oneof1135. @@ -260588,6 +291544,13 @@ public Builder clearOneof1135() { return this; } + /** + * int32 oneof_1136 = 1136; + * @return Whether the oneof1136 field is set. + */ + public boolean hasOneof1136() { + return hugeOneofCase_ == 1136; + } /** * int32 oneof_1136 = 1136; * @return The oneof1136. @@ -260622,6 +291585,13 @@ public Builder clearOneof1136() { return this; } + /** + * int32 oneof_1137 = 1137; + * @return Whether the oneof1137 field is set. + */ + public boolean hasOneof1137() { + return hugeOneofCase_ == 1137; + } /** * int32 oneof_1137 = 1137; * @return The oneof1137. @@ -260656,6 +291626,13 @@ public Builder clearOneof1137() { return this; } + /** + * int32 oneof_1138 = 1138; + * @return Whether the oneof1138 field is set. + */ + public boolean hasOneof1138() { + return hugeOneofCase_ == 1138; + } /** * int32 oneof_1138 = 1138; * @return The oneof1138. @@ -260690,6 +291667,13 @@ public Builder clearOneof1138() { return this; } + /** + * int32 oneof_1139 = 1139; + * @return Whether the oneof1139 field is set. + */ + public boolean hasOneof1139() { + return hugeOneofCase_ == 1139; + } /** * int32 oneof_1139 = 1139; * @return The oneof1139. @@ -260724,6 +291708,13 @@ public Builder clearOneof1139() { return this; } + /** + * int32 oneof_1140 = 1140; + * @return Whether the oneof1140 field is set. + */ + public boolean hasOneof1140() { + return hugeOneofCase_ == 1140; + } /** * int32 oneof_1140 = 1140; * @return The oneof1140. @@ -260758,6 +291749,13 @@ public Builder clearOneof1140() { return this; } + /** + * int32 oneof_1141 = 1141; + * @return Whether the oneof1141 field is set. + */ + public boolean hasOneof1141() { + return hugeOneofCase_ == 1141; + } /** * int32 oneof_1141 = 1141; * @return The oneof1141. @@ -260792,6 +291790,13 @@ public Builder clearOneof1141() { return this; } + /** + * int32 oneof_1142 = 1142; + * @return Whether the oneof1142 field is set. + */ + public boolean hasOneof1142() { + return hugeOneofCase_ == 1142; + } /** * int32 oneof_1142 = 1142; * @return The oneof1142. @@ -260826,6 +291831,13 @@ public Builder clearOneof1142() { return this; } + /** + * int32 oneof_1143 = 1143; + * @return Whether the oneof1143 field is set. + */ + public boolean hasOneof1143() { + return hugeOneofCase_ == 1143; + } /** * int32 oneof_1143 = 1143; * @return The oneof1143. @@ -260860,6 +291872,13 @@ public Builder clearOneof1143() { return this; } + /** + * int32 oneof_1144 = 1144; + * @return Whether the oneof1144 field is set. + */ + public boolean hasOneof1144() { + return hugeOneofCase_ == 1144; + } /** * int32 oneof_1144 = 1144; * @return The oneof1144. @@ -260894,6 +291913,13 @@ public Builder clearOneof1144() { return this; } + /** + * int32 oneof_1145 = 1145; + * @return Whether the oneof1145 field is set. + */ + public boolean hasOneof1145() { + return hugeOneofCase_ == 1145; + } /** * int32 oneof_1145 = 1145; * @return The oneof1145. @@ -260928,6 +291954,13 @@ public Builder clearOneof1145() { return this; } + /** + * int32 oneof_1146 = 1146; + * @return Whether the oneof1146 field is set. + */ + public boolean hasOneof1146() { + return hugeOneofCase_ == 1146; + } /** * int32 oneof_1146 = 1146; * @return The oneof1146. @@ -260962,6 +291995,13 @@ public Builder clearOneof1146() { return this; } + /** + * int32 oneof_1147 = 1147; + * @return Whether the oneof1147 field is set. + */ + public boolean hasOneof1147() { + return hugeOneofCase_ == 1147; + } /** * int32 oneof_1147 = 1147; * @return The oneof1147. @@ -260996,6 +292036,13 @@ public Builder clearOneof1147() { return this; } + /** + * int32 oneof_1148 = 1148; + * @return Whether the oneof1148 field is set. + */ + public boolean hasOneof1148() { + return hugeOneofCase_ == 1148; + } /** * int32 oneof_1148 = 1148; * @return The oneof1148. @@ -261030,6 +292077,13 @@ public Builder clearOneof1148() { return this; } + /** + * int32 oneof_1149 = 1149; + * @return Whether the oneof1149 field is set. + */ + public boolean hasOneof1149() { + return hugeOneofCase_ == 1149; + } /** * int32 oneof_1149 = 1149; * @return The oneof1149. @@ -261064,6 +292118,13 @@ public Builder clearOneof1149() { return this; } + /** + * int32 oneof_1150 = 1150; + * @return Whether the oneof1150 field is set. + */ + public boolean hasOneof1150() { + return hugeOneofCase_ == 1150; + } /** * int32 oneof_1150 = 1150; * @return The oneof1150. @@ -261098,6 +292159,13 @@ public Builder clearOneof1150() { return this; } + /** + * int32 oneof_1151 = 1151; + * @return Whether the oneof1151 field is set. + */ + public boolean hasOneof1151() { + return hugeOneofCase_ == 1151; + } /** * int32 oneof_1151 = 1151; * @return The oneof1151. @@ -261132,6 +292200,13 @@ public Builder clearOneof1151() { return this; } + /** + * int32 oneof_1152 = 1152; + * @return Whether the oneof1152 field is set. + */ + public boolean hasOneof1152() { + return hugeOneofCase_ == 1152; + } /** * int32 oneof_1152 = 1152; * @return The oneof1152. @@ -261166,6 +292241,13 @@ public Builder clearOneof1152() { return this; } + /** + * int32 oneof_1153 = 1153; + * @return Whether the oneof1153 field is set. + */ + public boolean hasOneof1153() { + return hugeOneofCase_ == 1153; + } /** * int32 oneof_1153 = 1153; * @return The oneof1153. @@ -261200,6 +292282,13 @@ public Builder clearOneof1153() { return this; } + /** + * int32 oneof_1154 = 1154; + * @return Whether the oneof1154 field is set. + */ + public boolean hasOneof1154() { + return hugeOneofCase_ == 1154; + } /** * int32 oneof_1154 = 1154; * @return The oneof1154. @@ -261234,6 +292323,13 @@ public Builder clearOneof1154() { return this; } + /** + * int32 oneof_1155 = 1155; + * @return Whether the oneof1155 field is set. + */ + public boolean hasOneof1155() { + return hugeOneofCase_ == 1155; + } /** * int32 oneof_1155 = 1155; * @return The oneof1155. @@ -261268,6 +292364,13 @@ public Builder clearOneof1155() { return this; } + /** + * int32 oneof_1156 = 1156; + * @return Whether the oneof1156 field is set. + */ + public boolean hasOneof1156() { + return hugeOneofCase_ == 1156; + } /** * int32 oneof_1156 = 1156; * @return The oneof1156. @@ -261302,6 +292405,13 @@ public Builder clearOneof1156() { return this; } + /** + * int32 oneof_1157 = 1157; + * @return Whether the oneof1157 field is set. + */ + public boolean hasOneof1157() { + return hugeOneofCase_ == 1157; + } /** * int32 oneof_1157 = 1157; * @return The oneof1157. @@ -261336,6 +292446,13 @@ public Builder clearOneof1157() { return this; } + /** + * int32 oneof_1158 = 1158; + * @return Whether the oneof1158 field is set. + */ + public boolean hasOneof1158() { + return hugeOneofCase_ == 1158; + } /** * int32 oneof_1158 = 1158; * @return The oneof1158. @@ -261370,6 +292487,13 @@ public Builder clearOneof1158() { return this; } + /** + * int32 oneof_1159 = 1159; + * @return Whether the oneof1159 field is set. + */ + public boolean hasOneof1159() { + return hugeOneofCase_ == 1159; + } /** * int32 oneof_1159 = 1159; * @return The oneof1159. @@ -261404,6 +292528,13 @@ public Builder clearOneof1159() { return this; } + /** + * int32 oneof_1160 = 1160; + * @return Whether the oneof1160 field is set. + */ + public boolean hasOneof1160() { + return hugeOneofCase_ == 1160; + } /** * int32 oneof_1160 = 1160; * @return The oneof1160. @@ -261438,6 +292569,13 @@ public Builder clearOneof1160() { return this; } + /** + * int32 oneof_1161 = 1161; + * @return Whether the oneof1161 field is set. + */ + public boolean hasOneof1161() { + return hugeOneofCase_ == 1161; + } /** * int32 oneof_1161 = 1161; * @return The oneof1161. @@ -261472,6 +292610,13 @@ public Builder clearOneof1161() { return this; } + /** + * int32 oneof_1162 = 1162; + * @return Whether the oneof1162 field is set. + */ + public boolean hasOneof1162() { + return hugeOneofCase_ == 1162; + } /** * int32 oneof_1162 = 1162; * @return The oneof1162. @@ -261506,6 +292651,13 @@ public Builder clearOneof1162() { return this; } + /** + * int32 oneof_1163 = 1163; + * @return Whether the oneof1163 field is set. + */ + public boolean hasOneof1163() { + return hugeOneofCase_ == 1163; + } /** * int32 oneof_1163 = 1163; * @return The oneof1163. @@ -261540,6 +292692,13 @@ public Builder clearOneof1163() { return this; } + /** + * int32 oneof_1164 = 1164; + * @return Whether the oneof1164 field is set. + */ + public boolean hasOneof1164() { + return hugeOneofCase_ == 1164; + } /** * int32 oneof_1164 = 1164; * @return The oneof1164. @@ -261574,6 +292733,13 @@ public Builder clearOneof1164() { return this; } + /** + * int32 oneof_1165 = 1165; + * @return Whether the oneof1165 field is set. + */ + public boolean hasOneof1165() { + return hugeOneofCase_ == 1165; + } /** * int32 oneof_1165 = 1165; * @return The oneof1165. @@ -261608,6 +292774,13 @@ public Builder clearOneof1165() { return this; } + /** + * int32 oneof_1166 = 1166; + * @return Whether the oneof1166 field is set. + */ + public boolean hasOneof1166() { + return hugeOneofCase_ == 1166; + } /** * int32 oneof_1166 = 1166; * @return The oneof1166. @@ -261642,6 +292815,13 @@ public Builder clearOneof1166() { return this; } + /** + * int32 oneof_1167 = 1167; + * @return Whether the oneof1167 field is set. + */ + public boolean hasOneof1167() { + return hugeOneofCase_ == 1167; + } /** * int32 oneof_1167 = 1167; * @return The oneof1167. @@ -261676,6 +292856,13 @@ public Builder clearOneof1167() { return this; } + /** + * int32 oneof_1168 = 1168; + * @return Whether the oneof1168 field is set. + */ + public boolean hasOneof1168() { + return hugeOneofCase_ == 1168; + } /** * int32 oneof_1168 = 1168; * @return The oneof1168. @@ -261710,6 +292897,13 @@ public Builder clearOneof1168() { return this; } + /** + * int32 oneof_1169 = 1169; + * @return Whether the oneof1169 field is set. + */ + public boolean hasOneof1169() { + return hugeOneofCase_ == 1169; + } /** * int32 oneof_1169 = 1169; * @return The oneof1169. @@ -261744,6 +292938,13 @@ public Builder clearOneof1169() { return this; } + /** + * int32 oneof_1170 = 1170; + * @return Whether the oneof1170 field is set. + */ + public boolean hasOneof1170() { + return hugeOneofCase_ == 1170; + } /** * int32 oneof_1170 = 1170; * @return The oneof1170. @@ -261778,6 +292979,13 @@ public Builder clearOneof1170() { return this; } + /** + * int32 oneof_1171 = 1171; + * @return Whether the oneof1171 field is set. + */ + public boolean hasOneof1171() { + return hugeOneofCase_ == 1171; + } /** * int32 oneof_1171 = 1171; * @return The oneof1171. @@ -261812,6 +293020,13 @@ public Builder clearOneof1171() { return this; } + /** + * int32 oneof_1172 = 1172; + * @return Whether the oneof1172 field is set. + */ + public boolean hasOneof1172() { + return hugeOneofCase_ == 1172; + } /** * int32 oneof_1172 = 1172; * @return The oneof1172. @@ -261846,6 +293061,13 @@ public Builder clearOneof1172() { return this; } + /** + * int32 oneof_1173 = 1173; + * @return Whether the oneof1173 field is set. + */ + public boolean hasOneof1173() { + return hugeOneofCase_ == 1173; + } /** * int32 oneof_1173 = 1173; * @return The oneof1173. @@ -261880,6 +293102,13 @@ public Builder clearOneof1173() { return this; } + /** + * int32 oneof_1174 = 1174; + * @return Whether the oneof1174 field is set. + */ + public boolean hasOneof1174() { + return hugeOneofCase_ == 1174; + } /** * int32 oneof_1174 = 1174; * @return The oneof1174. @@ -261914,6 +293143,13 @@ public Builder clearOneof1174() { return this; } + /** + * int32 oneof_1175 = 1175; + * @return Whether the oneof1175 field is set. + */ + public boolean hasOneof1175() { + return hugeOneofCase_ == 1175; + } /** * int32 oneof_1175 = 1175; * @return The oneof1175. @@ -261948,6 +293184,13 @@ public Builder clearOneof1175() { return this; } + /** + * int32 oneof_1176 = 1176; + * @return Whether the oneof1176 field is set. + */ + public boolean hasOneof1176() { + return hugeOneofCase_ == 1176; + } /** * int32 oneof_1176 = 1176; * @return The oneof1176. @@ -261982,6 +293225,13 @@ public Builder clearOneof1176() { return this; } + /** + * int32 oneof_1177 = 1177; + * @return Whether the oneof1177 field is set. + */ + public boolean hasOneof1177() { + return hugeOneofCase_ == 1177; + } /** * int32 oneof_1177 = 1177; * @return The oneof1177. @@ -262016,6 +293266,13 @@ public Builder clearOneof1177() { return this; } + /** + * int32 oneof_1178 = 1178; + * @return Whether the oneof1178 field is set. + */ + public boolean hasOneof1178() { + return hugeOneofCase_ == 1178; + } /** * int32 oneof_1178 = 1178; * @return The oneof1178. @@ -262050,6 +293307,13 @@ public Builder clearOneof1178() { return this; } + /** + * int32 oneof_1179 = 1179; + * @return Whether the oneof1179 field is set. + */ + public boolean hasOneof1179() { + return hugeOneofCase_ == 1179; + } /** * int32 oneof_1179 = 1179; * @return The oneof1179. @@ -262084,6 +293348,13 @@ public Builder clearOneof1179() { return this; } + /** + * int32 oneof_1180 = 1180; + * @return Whether the oneof1180 field is set. + */ + public boolean hasOneof1180() { + return hugeOneofCase_ == 1180; + } /** * int32 oneof_1180 = 1180; * @return The oneof1180. @@ -262118,6 +293389,13 @@ public Builder clearOneof1180() { return this; } + /** + * int32 oneof_1181 = 1181; + * @return Whether the oneof1181 field is set. + */ + public boolean hasOneof1181() { + return hugeOneofCase_ == 1181; + } /** * int32 oneof_1181 = 1181; * @return The oneof1181. @@ -262152,6 +293430,13 @@ public Builder clearOneof1181() { return this; } + /** + * int32 oneof_1182 = 1182; + * @return Whether the oneof1182 field is set. + */ + public boolean hasOneof1182() { + return hugeOneofCase_ == 1182; + } /** * int32 oneof_1182 = 1182; * @return The oneof1182. @@ -262186,6 +293471,13 @@ public Builder clearOneof1182() { return this; } + /** + * int32 oneof_1183 = 1183; + * @return Whether the oneof1183 field is set. + */ + public boolean hasOneof1183() { + return hugeOneofCase_ == 1183; + } /** * int32 oneof_1183 = 1183; * @return The oneof1183. @@ -262220,6 +293512,13 @@ public Builder clearOneof1183() { return this; } + /** + * int32 oneof_1184 = 1184; + * @return Whether the oneof1184 field is set. + */ + public boolean hasOneof1184() { + return hugeOneofCase_ == 1184; + } /** * int32 oneof_1184 = 1184; * @return The oneof1184. @@ -262254,6 +293553,13 @@ public Builder clearOneof1184() { return this; } + /** + * int32 oneof_1185 = 1185; + * @return Whether the oneof1185 field is set. + */ + public boolean hasOneof1185() { + return hugeOneofCase_ == 1185; + } /** * int32 oneof_1185 = 1185; * @return The oneof1185. @@ -262288,6 +293594,13 @@ public Builder clearOneof1185() { return this; } + /** + * int32 oneof_1186 = 1186; + * @return Whether the oneof1186 field is set. + */ + public boolean hasOneof1186() { + return hugeOneofCase_ == 1186; + } /** * int32 oneof_1186 = 1186; * @return The oneof1186. @@ -262322,6 +293635,13 @@ public Builder clearOneof1186() { return this; } + /** + * int32 oneof_1187 = 1187; + * @return Whether the oneof1187 field is set. + */ + public boolean hasOneof1187() { + return hugeOneofCase_ == 1187; + } /** * int32 oneof_1187 = 1187; * @return The oneof1187. @@ -262356,6 +293676,13 @@ public Builder clearOneof1187() { return this; } + /** + * int32 oneof_1188 = 1188; + * @return Whether the oneof1188 field is set. + */ + public boolean hasOneof1188() { + return hugeOneofCase_ == 1188; + } /** * int32 oneof_1188 = 1188; * @return The oneof1188. @@ -262390,6 +293717,13 @@ public Builder clearOneof1188() { return this; } + /** + * int32 oneof_1189 = 1189; + * @return Whether the oneof1189 field is set. + */ + public boolean hasOneof1189() { + return hugeOneofCase_ == 1189; + } /** * int32 oneof_1189 = 1189; * @return The oneof1189. @@ -262424,6 +293758,13 @@ public Builder clearOneof1189() { return this; } + /** + * int32 oneof_1190 = 1190; + * @return Whether the oneof1190 field is set. + */ + public boolean hasOneof1190() { + return hugeOneofCase_ == 1190; + } /** * int32 oneof_1190 = 1190; * @return The oneof1190. @@ -262458,6 +293799,13 @@ public Builder clearOneof1190() { return this; } + /** + * int32 oneof_1191 = 1191; + * @return Whether the oneof1191 field is set. + */ + public boolean hasOneof1191() { + return hugeOneofCase_ == 1191; + } /** * int32 oneof_1191 = 1191; * @return The oneof1191. @@ -262492,6 +293840,13 @@ public Builder clearOneof1191() { return this; } + /** + * int32 oneof_1192 = 1192; + * @return Whether the oneof1192 field is set. + */ + public boolean hasOneof1192() { + return hugeOneofCase_ == 1192; + } /** * int32 oneof_1192 = 1192; * @return The oneof1192. @@ -262526,6 +293881,13 @@ public Builder clearOneof1192() { return this; } + /** + * int32 oneof_1193 = 1193; + * @return Whether the oneof1193 field is set. + */ + public boolean hasOneof1193() { + return hugeOneofCase_ == 1193; + } /** * int32 oneof_1193 = 1193; * @return The oneof1193. @@ -262560,6 +293922,13 @@ public Builder clearOneof1193() { return this; } + /** + * int32 oneof_1194 = 1194; + * @return Whether the oneof1194 field is set. + */ + public boolean hasOneof1194() { + return hugeOneofCase_ == 1194; + } /** * int32 oneof_1194 = 1194; * @return The oneof1194. @@ -262594,6 +293963,13 @@ public Builder clearOneof1194() { return this; } + /** + * int32 oneof_1195 = 1195; + * @return Whether the oneof1195 field is set. + */ + public boolean hasOneof1195() { + return hugeOneofCase_ == 1195; + } /** * int32 oneof_1195 = 1195; * @return The oneof1195. @@ -262628,6 +294004,13 @@ public Builder clearOneof1195() { return this; } + /** + * int32 oneof_1196 = 1196; + * @return Whether the oneof1196 field is set. + */ + public boolean hasOneof1196() { + return hugeOneofCase_ == 1196; + } /** * int32 oneof_1196 = 1196; * @return The oneof1196. @@ -262662,6 +294045,13 @@ public Builder clearOneof1196() { return this; } + /** + * int32 oneof_1197 = 1197; + * @return Whether the oneof1197 field is set. + */ + public boolean hasOneof1197() { + return hugeOneofCase_ == 1197; + } /** * int32 oneof_1197 = 1197; * @return The oneof1197. @@ -262696,6 +294086,13 @@ public Builder clearOneof1197() { return this; } + /** + * int32 oneof_1198 = 1198; + * @return Whether the oneof1198 field is set. + */ + public boolean hasOneof1198() { + return hugeOneofCase_ == 1198; + } /** * int32 oneof_1198 = 1198; * @return The oneof1198. @@ -262730,6 +294127,13 @@ public Builder clearOneof1198() { return this; } + /** + * int32 oneof_1199 = 1199; + * @return Whether the oneof1199 field is set. + */ + public boolean hasOneof1199() { + return hugeOneofCase_ == 1199; + } /** * int32 oneof_1199 = 1199; * @return The oneof1199. @@ -262764,6 +294168,13 @@ public Builder clearOneof1199() { return this; } + /** + * int32 oneof_1200 = 1200; + * @return Whether the oneof1200 field is set. + */ + public boolean hasOneof1200() { + return hugeOneofCase_ == 1200; + } /** * int32 oneof_1200 = 1200; * @return The oneof1200. @@ -262798,6 +294209,13 @@ public Builder clearOneof1200() { return this; } + /** + * int32 oneof_1201 = 1201; + * @return Whether the oneof1201 field is set. + */ + public boolean hasOneof1201() { + return hugeOneofCase_ == 1201; + } /** * int32 oneof_1201 = 1201; * @return The oneof1201. @@ -262832,6 +294250,13 @@ public Builder clearOneof1201() { return this; } + /** + * int32 oneof_1202 = 1202; + * @return Whether the oneof1202 field is set. + */ + public boolean hasOneof1202() { + return hugeOneofCase_ == 1202; + } /** * int32 oneof_1202 = 1202; * @return The oneof1202. @@ -262866,6 +294291,13 @@ public Builder clearOneof1202() { return this; } + /** + * int32 oneof_1203 = 1203; + * @return Whether the oneof1203 field is set. + */ + public boolean hasOneof1203() { + return hugeOneofCase_ == 1203; + } /** * int32 oneof_1203 = 1203; * @return The oneof1203. @@ -262900,6 +294332,13 @@ public Builder clearOneof1203() { return this; } + /** + * int32 oneof_1204 = 1204; + * @return Whether the oneof1204 field is set. + */ + public boolean hasOneof1204() { + return hugeOneofCase_ == 1204; + } /** * int32 oneof_1204 = 1204; * @return The oneof1204. @@ -262934,6 +294373,13 @@ public Builder clearOneof1204() { return this; } + /** + * int32 oneof_1205 = 1205; + * @return Whether the oneof1205 field is set. + */ + public boolean hasOneof1205() { + return hugeOneofCase_ == 1205; + } /** * int32 oneof_1205 = 1205; * @return The oneof1205. @@ -262968,6 +294414,13 @@ public Builder clearOneof1205() { return this; } + /** + * int32 oneof_1206 = 1206; + * @return Whether the oneof1206 field is set. + */ + public boolean hasOneof1206() { + return hugeOneofCase_ == 1206; + } /** * int32 oneof_1206 = 1206; * @return The oneof1206. @@ -263002,6 +294455,13 @@ public Builder clearOneof1206() { return this; } + /** + * int32 oneof_1207 = 1207; + * @return Whether the oneof1207 field is set. + */ + public boolean hasOneof1207() { + return hugeOneofCase_ == 1207; + } /** * int32 oneof_1207 = 1207; * @return The oneof1207. @@ -263036,6 +294496,13 @@ public Builder clearOneof1207() { return this; } + /** + * int32 oneof_1208 = 1208; + * @return Whether the oneof1208 field is set. + */ + public boolean hasOneof1208() { + return hugeOneofCase_ == 1208; + } /** * int32 oneof_1208 = 1208; * @return The oneof1208. @@ -263070,6 +294537,13 @@ public Builder clearOneof1208() { return this; } + /** + * int32 oneof_1209 = 1209; + * @return Whether the oneof1209 field is set. + */ + public boolean hasOneof1209() { + return hugeOneofCase_ == 1209; + } /** * int32 oneof_1209 = 1209; * @return The oneof1209. @@ -263104,6 +294578,13 @@ public Builder clearOneof1209() { return this; } + /** + * int32 oneof_1210 = 1210; + * @return Whether the oneof1210 field is set. + */ + public boolean hasOneof1210() { + return hugeOneofCase_ == 1210; + } /** * int32 oneof_1210 = 1210; * @return The oneof1210. @@ -263138,6 +294619,13 @@ public Builder clearOneof1210() { return this; } + /** + * int32 oneof_1211 = 1211; + * @return Whether the oneof1211 field is set. + */ + public boolean hasOneof1211() { + return hugeOneofCase_ == 1211; + } /** * int32 oneof_1211 = 1211; * @return The oneof1211. @@ -263172,6 +294660,13 @@ public Builder clearOneof1211() { return this; } + /** + * int32 oneof_1212 = 1212; + * @return Whether the oneof1212 field is set. + */ + public boolean hasOneof1212() { + return hugeOneofCase_ == 1212; + } /** * int32 oneof_1212 = 1212; * @return The oneof1212. @@ -263206,6 +294701,13 @@ public Builder clearOneof1212() { return this; } + /** + * int32 oneof_1213 = 1213; + * @return Whether the oneof1213 field is set. + */ + public boolean hasOneof1213() { + return hugeOneofCase_ == 1213; + } /** * int32 oneof_1213 = 1213; * @return The oneof1213. @@ -263240,6 +294742,13 @@ public Builder clearOneof1213() { return this; } + /** + * int32 oneof_1214 = 1214; + * @return Whether the oneof1214 field is set. + */ + public boolean hasOneof1214() { + return hugeOneofCase_ == 1214; + } /** * int32 oneof_1214 = 1214; * @return The oneof1214. @@ -263274,6 +294783,13 @@ public Builder clearOneof1214() { return this; } + /** + * int32 oneof_1215 = 1215; + * @return Whether the oneof1215 field is set. + */ + public boolean hasOneof1215() { + return hugeOneofCase_ == 1215; + } /** * int32 oneof_1215 = 1215; * @return The oneof1215. @@ -263308,6 +294824,13 @@ public Builder clearOneof1215() { return this; } + /** + * int32 oneof_1216 = 1216; + * @return Whether the oneof1216 field is set. + */ + public boolean hasOneof1216() { + return hugeOneofCase_ == 1216; + } /** * int32 oneof_1216 = 1216; * @return The oneof1216. @@ -263342,6 +294865,13 @@ public Builder clearOneof1216() { return this; } + /** + * int32 oneof_1217 = 1217; + * @return Whether the oneof1217 field is set. + */ + public boolean hasOneof1217() { + return hugeOneofCase_ == 1217; + } /** * int32 oneof_1217 = 1217; * @return The oneof1217. @@ -263376,6 +294906,13 @@ public Builder clearOneof1217() { return this; } + /** + * int32 oneof_1218 = 1218; + * @return Whether the oneof1218 field is set. + */ + public boolean hasOneof1218() { + return hugeOneofCase_ == 1218; + } /** * int32 oneof_1218 = 1218; * @return The oneof1218. @@ -263410,6 +294947,13 @@ public Builder clearOneof1218() { return this; } + /** + * int32 oneof_1219 = 1219; + * @return Whether the oneof1219 field is set. + */ + public boolean hasOneof1219() { + return hugeOneofCase_ == 1219; + } /** * int32 oneof_1219 = 1219; * @return The oneof1219. @@ -263444,6 +294988,13 @@ public Builder clearOneof1219() { return this; } + /** + * int32 oneof_1220 = 1220; + * @return Whether the oneof1220 field is set. + */ + public boolean hasOneof1220() { + return hugeOneofCase_ == 1220; + } /** * int32 oneof_1220 = 1220; * @return The oneof1220. @@ -263478,6 +295029,13 @@ public Builder clearOneof1220() { return this; } + /** + * int32 oneof_1221 = 1221; + * @return Whether the oneof1221 field is set. + */ + public boolean hasOneof1221() { + return hugeOneofCase_ == 1221; + } /** * int32 oneof_1221 = 1221; * @return The oneof1221. @@ -263512,6 +295070,13 @@ public Builder clearOneof1221() { return this; } + /** + * int32 oneof_1222 = 1222; + * @return Whether the oneof1222 field is set. + */ + public boolean hasOneof1222() { + return hugeOneofCase_ == 1222; + } /** * int32 oneof_1222 = 1222; * @return The oneof1222. @@ -263546,6 +295111,13 @@ public Builder clearOneof1222() { return this; } + /** + * int32 oneof_1223 = 1223; + * @return Whether the oneof1223 field is set. + */ + public boolean hasOneof1223() { + return hugeOneofCase_ == 1223; + } /** * int32 oneof_1223 = 1223; * @return The oneof1223. @@ -263580,6 +295152,13 @@ public Builder clearOneof1223() { return this; } + /** + * int32 oneof_1224 = 1224; + * @return Whether the oneof1224 field is set. + */ + public boolean hasOneof1224() { + return hugeOneofCase_ == 1224; + } /** * int32 oneof_1224 = 1224; * @return The oneof1224. @@ -263614,6 +295193,13 @@ public Builder clearOneof1224() { return this; } + /** + * int32 oneof_1225 = 1225; + * @return Whether the oneof1225 field is set. + */ + public boolean hasOneof1225() { + return hugeOneofCase_ == 1225; + } /** * int32 oneof_1225 = 1225; * @return The oneof1225. @@ -263648,6 +295234,13 @@ public Builder clearOneof1225() { return this; } + /** + * int32 oneof_1226 = 1226; + * @return Whether the oneof1226 field is set. + */ + public boolean hasOneof1226() { + return hugeOneofCase_ == 1226; + } /** * int32 oneof_1226 = 1226; * @return The oneof1226. @@ -263682,6 +295275,13 @@ public Builder clearOneof1226() { return this; } + /** + * int32 oneof_1227 = 1227; + * @return Whether the oneof1227 field is set. + */ + public boolean hasOneof1227() { + return hugeOneofCase_ == 1227; + } /** * int32 oneof_1227 = 1227; * @return The oneof1227. @@ -263716,6 +295316,13 @@ public Builder clearOneof1227() { return this; } + /** + * int32 oneof_1228 = 1228; + * @return Whether the oneof1228 field is set. + */ + public boolean hasOneof1228() { + return hugeOneofCase_ == 1228; + } /** * int32 oneof_1228 = 1228; * @return The oneof1228. @@ -263750,6 +295357,13 @@ public Builder clearOneof1228() { return this; } + /** + * int32 oneof_1229 = 1229; + * @return Whether the oneof1229 field is set. + */ + public boolean hasOneof1229() { + return hugeOneofCase_ == 1229; + } /** * int32 oneof_1229 = 1229; * @return The oneof1229. @@ -263784,6 +295398,13 @@ public Builder clearOneof1229() { return this; } + /** + * int32 oneof_1230 = 1230; + * @return Whether the oneof1230 field is set. + */ + public boolean hasOneof1230() { + return hugeOneofCase_ == 1230; + } /** * int32 oneof_1230 = 1230; * @return The oneof1230. @@ -263818,6 +295439,13 @@ public Builder clearOneof1230() { return this; } + /** + * int32 oneof_1231 = 1231; + * @return Whether the oneof1231 field is set. + */ + public boolean hasOneof1231() { + return hugeOneofCase_ == 1231; + } /** * int32 oneof_1231 = 1231; * @return The oneof1231. @@ -263852,6 +295480,13 @@ public Builder clearOneof1231() { return this; } + /** + * int32 oneof_1232 = 1232; + * @return Whether the oneof1232 field is set. + */ + public boolean hasOneof1232() { + return hugeOneofCase_ == 1232; + } /** * int32 oneof_1232 = 1232; * @return The oneof1232. @@ -263886,6 +295521,13 @@ public Builder clearOneof1232() { return this; } + /** + * int32 oneof_1233 = 1233; + * @return Whether the oneof1233 field is set. + */ + public boolean hasOneof1233() { + return hugeOneofCase_ == 1233; + } /** * int32 oneof_1233 = 1233; * @return The oneof1233. @@ -263920,6 +295562,13 @@ public Builder clearOneof1233() { return this; } + /** + * int32 oneof_1234 = 1234; + * @return Whether the oneof1234 field is set. + */ + public boolean hasOneof1234() { + return hugeOneofCase_ == 1234; + } /** * int32 oneof_1234 = 1234; * @return The oneof1234. @@ -263954,6 +295603,13 @@ public Builder clearOneof1234() { return this; } + /** + * int32 oneof_1235 = 1235; + * @return Whether the oneof1235 field is set. + */ + public boolean hasOneof1235() { + return hugeOneofCase_ == 1235; + } /** * int32 oneof_1235 = 1235; * @return The oneof1235. @@ -263988,6 +295644,13 @@ public Builder clearOneof1235() { return this; } + /** + * int32 oneof_1236 = 1236; + * @return Whether the oneof1236 field is set. + */ + public boolean hasOneof1236() { + return hugeOneofCase_ == 1236; + } /** * int32 oneof_1236 = 1236; * @return The oneof1236. @@ -264022,6 +295685,13 @@ public Builder clearOneof1236() { return this; } + /** + * int32 oneof_1237 = 1237; + * @return Whether the oneof1237 field is set. + */ + public boolean hasOneof1237() { + return hugeOneofCase_ == 1237; + } /** * int32 oneof_1237 = 1237; * @return The oneof1237. @@ -264056,6 +295726,13 @@ public Builder clearOneof1237() { return this; } + /** + * int32 oneof_1238 = 1238; + * @return Whether the oneof1238 field is set. + */ + public boolean hasOneof1238() { + return hugeOneofCase_ == 1238; + } /** * int32 oneof_1238 = 1238; * @return The oneof1238. @@ -264090,6 +295767,13 @@ public Builder clearOneof1238() { return this; } + /** + * int32 oneof_1239 = 1239; + * @return Whether the oneof1239 field is set. + */ + public boolean hasOneof1239() { + return hugeOneofCase_ == 1239; + } /** * int32 oneof_1239 = 1239; * @return The oneof1239. @@ -264124,6 +295808,13 @@ public Builder clearOneof1239() { return this; } + /** + * int32 oneof_1240 = 1240; + * @return Whether the oneof1240 field is set. + */ + public boolean hasOneof1240() { + return hugeOneofCase_ == 1240; + } /** * int32 oneof_1240 = 1240; * @return The oneof1240. @@ -264158,6 +295849,13 @@ public Builder clearOneof1240() { return this; } + /** + * int32 oneof_1241 = 1241; + * @return Whether the oneof1241 field is set. + */ + public boolean hasOneof1241() { + return hugeOneofCase_ == 1241; + } /** * int32 oneof_1241 = 1241; * @return The oneof1241. @@ -264192,6 +295890,13 @@ public Builder clearOneof1241() { return this; } + /** + * int32 oneof_1242 = 1242; + * @return Whether the oneof1242 field is set. + */ + public boolean hasOneof1242() { + return hugeOneofCase_ == 1242; + } /** * int32 oneof_1242 = 1242; * @return The oneof1242. @@ -264226,6 +295931,13 @@ public Builder clearOneof1242() { return this; } + /** + * int32 oneof_1243 = 1243; + * @return Whether the oneof1243 field is set. + */ + public boolean hasOneof1243() { + return hugeOneofCase_ == 1243; + } /** * int32 oneof_1243 = 1243; * @return The oneof1243. @@ -264260,6 +295972,13 @@ public Builder clearOneof1243() { return this; } + /** + * int32 oneof_1244 = 1244; + * @return Whether the oneof1244 field is set. + */ + public boolean hasOneof1244() { + return hugeOneofCase_ == 1244; + } /** * int32 oneof_1244 = 1244; * @return The oneof1244. @@ -264294,6 +296013,13 @@ public Builder clearOneof1244() { return this; } + /** + * int32 oneof_1245 = 1245; + * @return Whether the oneof1245 field is set. + */ + public boolean hasOneof1245() { + return hugeOneofCase_ == 1245; + } /** * int32 oneof_1245 = 1245; * @return The oneof1245. @@ -264328,6 +296054,13 @@ public Builder clearOneof1245() { return this; } + /** + * int32 oneof_1246 = 1246; + * @return Whether the oneof1246 field is set. + */ + public boolean hasOneof1246() { + return hugeOneofCase_ == 1246; + } /** * int32 oneof_1246 = 1246; * @return The oneof1246. @@ -264362,6 +296095,13 @@ public Builder clearOneof1246() { return this; } + /** + * int32 oneof_1247 = 1247; + * @return Whether the oneof1247 field is set. + */ + public boolean hasOneof1247() { + return hugeOneofCase_ == 1247; + } /** * int32 oneof_1247 = 1247; * @return The oneof1247. @@ -264396,6 +296136,13 @@ public Builder clearOneof1247() { return this; } + /** + * int32 oneof_1248 = 1248; + * @return Whether the oneof1248 field is set. + */ + public boolean hasOneof1248() { + return hugeOneofCase_ == 1248; + } /** * int32 oneof_1248 = 1248; * @return The oneof1248. @@ -264430,6 +296177,13 @@ public Builder clearOneof1248() { return this; } + /** + * int32 oneof_1249 = 1249; + * @return Whether the oneof1249 field is set. + */ + public boolean hasOneof1249() { + return hugeOneofCase_ == 1249; + } /** * int32 oneof_1249 = 1249; * @return The oneof1249. @@ -264464,6 +296218,13 @@ public Builder clearOneof1249() { return this; } + /** + * int32 oneof_1250 = 1250; + * @return Whether the oneof1250 field is set. + */ + public boolean hasOneof1250() { + return hugeOneofCase_ == 1250; + } /** * int32 oneof_1250 = 1250; * @return The oneof1250. @@ -264498,6 +296259,13 @@ public Builder clearOneof1250() { return this; } + /** + * int32 oneof_1251 = 1251; + * @return Whether the oneof1251 field is set. + */ + public boolean hasOneof1251() { + return hugeOneofCase_ == 1251; + } /** * int32 oneof_1251 = 1251; * @return The oneof1251. @@ -264532,6 +296300,13 @@ public Builder clearOneof1251() { return this; } + /** + * int32 oneof_1252 = 1252; + * @return Whether the oneof1252 field is set. + */ + public boolean hasOneof1252() { + return hugeOneofCase_ == 1252; + } /** * int32 oneof_1252 = 1252; * @return The oneof1252. @@ -264566,6 +296341,13 @@ public Builder clearOneof1252() { return this; } + /** + * int32 oneof_1253 = 1253; + * @return Whether the oneof1253 field is set. + */ + public boolean hasOneof1253() { + return hugeOneofCase_ == 1253; + } /** * int32 oneof_1253 = 1253; * @return The oneof1253. @@ -264600,6 +296382,13 @@ public Builder clearOneof1253() { return this; } + /** + * int32 oneof_1254 = 1254; + * @return Whether the oneof1254 field is set. + */ + public boolean hasOneof1254() { + return hugeOneofCase_ == 1254; + } /** * int32 oneof_1254 = 1254; * @return The oneof1254. @@ -264634,6 +296423,13 @@ public Builder clearOneof1254() { return this; } + /** + * int32 oneof_1255 = 1255; + * @return Whether the oneof1255 field is set. + */ + public boolean hasOneof1255() { + return hugeOneofCase_ == 1255; + } /** * int32 oneof_1255 = 1255; * @return The oneof1255. @@ -264668,6 +296464,13 @@ public Builder clearOneof1255() { return this; } + /** + * int32 oneof_1256 = 1256; + * @return Whether the oneof1256 field is set. + */ + public boolean hasOneof1256() { + return hugeOneofCase_ == 1256; + } /** * int32 oneof_1256 = 1256; * @return The oneof1256. @@ -264702,6 +296505,13 @@ public Builder clearOneof1256() { return this; } + /** + * int32 oneof_1257 = 1257; + * @return Whether the oneof1257 field is set. + */ + public boolean hasOneof1257() { + return hugeOneofCase_ == 1257; + } /** * int32 oneof_1257 = 1257; * @return The oneof1257. @@ -264736,6 +296546,13 @@ public Builder clearOneof1257() { return this; } + /** + * int32 oneof_1258 = 1258; + * @return Whether the oneof1258 field is set. + */ + public boolean hasOneof1258() { + return hugeOneofCase_ == 1258; + } /** * int32 oneof_1258 = 1258; * @return The oneof1258. @@ -264770,6 +296587,13 @@ public Builder clearOneof1258() { return this; } + /** + * int32 oneof_1259 = 1259; + * @return Whether the oneof1259 field is set. + */ + public boolean hasOneof1259() { + return hugeOneofCase_ == 1259; + } /** * int32 oneof_1259 = 1259; * @return The oneof1259. @@ -264804,6 +296628,13 @@ public Builder clearOneof1259() { return this; } + /** + * int32 oneof_1260 = 1260; + * @return Whether the oneof1260 field is set. + */ + public boolean hasOneof1260() { + return hugeOneofCase_ == 1260; + } /** * int32 oneof_1260 = 1260; * @return The oneof1260. @@ -264838,6 +296669,13 @@ public Builder clearOneof1260() { return this; } + /** + * int32 oneof_1261 = 1261; + * @return Whether the oneof1261 field is set. + */ + public boolean hasOneof1261() { + return hugeOneofCase_ == 1261; + } /** * int32 oneof_1261 = 1261; * @return The oneof1261. @@ -264872,6 +296710,13 @@ public Builder clearOneof1261() { return this; } + /** + * int32 oneof_1262 = 1262; + * @return Whether the oneof1262 field is set. + */ + public boolean hasOneof1262() { + return hugeOneofCase_ == 1262; + } /** * int32 oneof_1262 = 1262; * @return The oneof1262. @@ -264906,6 +296751,13 @@ public Builder clearOneof1262() { return this; } + /** + * int32 oneof_1263 = 1263; + * @return Whether the oneof1263 field is set. + */ + public boolean hasOneof1263() { + return hugeOneofCase_ == 1263; + } /** * int32 oneof_1263 = 1263; * @return The oneof1263. @@ -264940,6 +296792,13 @@ public Builder clearOneof1263() { return this; } + /** + * int32 oneof_1264 = 1264; + * @return Whether the oneof1264 field is set. + */ + public boolean hasOneof1264() { + return hugeOneofCase_ == 1264; + } /** * int32 oneof_1264 = 1264; * @return The oneof1264. @@ -264974,6 +296833,13 @@ public Builder clearOneof1264() { return this; } + /** + * int32 oneof_1265 = 1265; + * @return Whether the oneof1265 field is set. + */ + public boolean hasOneof1265() { + return hugeOneofCase_ == 1265; + } /** * int32 oneof_1265 = 1265; * @return The oneof1265. @@ -265008,6 +296874,13 @@ public Builder clearOneof1265() { return this; } + /** + * int32 oneof_1266 = 1266; + * @return Whether the oneof1266 field is set. + */ + public boolean hasOneof1266() { + return hugeOneofCase_ == 1266; + } /** * int32 oneof_1266 = 1266; * @return The oneof1266. @@ -265042,6 +296915,13 @@ public Builder clearOneof1266() { return this; } + /** + * int32 oneof_1267 = 1267; + * @return Whether the oneof1267 field is set. + */ + public boolean hasOneof1267() { + return hugeOneofCase_ == 1267; + } /** * int32 oneof_1267 = 1267; * @return The oneof1267. @@ -265076,6 +296956,13 @@ public Builder clearOneof1267() { return this; } + /** + * int32 oneof_1268 = 1268; + * @return Whether the oneof1268 field is set. + */ + public boolean hasOneof1268() { + return hugeOneofCase_ == 1268; + } /** * int32 oneof_1268 = 1268; * @return The oneof1268. @@ -265110,6 +296997,13 @@ public Builder clearOneof1268() { return this; } + /** + * int32 oneof_1269 = 1269; + * @return Whether the oneof1269 field is set. + */ + public boolean hasOneof1269() { + return hugeOneofCase_ == 1269; + } /** * int32 oneof_1269 = 1269; * @return The oneof1269. @@ -265144,6 +297038,13 @@ public Builder clearOneof1269() { return this; } + /** + * int32 oneof_1270 = 1270; + * @return Whether the oneof1270 field is set. + */ + public boolean hasOneof1270() { + return hugeOneofCase_ == 1270; + } /** * int32 oneof_1270 = 1270; * @return The oneof1270. @@ -265178,6 +297079,13 @@ public Builder clearOneof1270() { return this; } + /** + * int32 oneof_1271 = 1271; + * @return Whether the oneof1271 field is set. + */ + public boolean hasOneof1271() { + return hugeOneofCase_ == 1271; + } /** * int32 oneof_1271 = 1271; * @return The oneof1271. @@ -265212,6 +297120,13 @@ public Builder clearOneof1271() { return this; } + /** + * int32 oneof_1272 = 1272; + * @return Whether the oneof1272 field is set. + */ + public boolean hasOneof1272() { + return hugeOneofCase_ == 1272; + } /** * int32 oneof_1272 = 1272; * @return The oneof1272. @@ -265246,6 +297161,13 @@ public Builder clearOneof1272() { return this; } + /** + * int32 oneof_1273 = 1273; + * @return Whether the oneof1273 field is set. + */ + public boolean hasOneof1273() { + return hugeOneofCase_ == 1273; + } /** * int32 oneof_1273 = 1273; * @return The oneof1273. @@ -265280,6 +297202,13 @@ public Builder clearOneof1273() { return this; } + /** + * int32 oneof_1274 = 1274; + * @return Whether the oneof1274 field is set. + */ + public boolean hasOneof1274() { + return hugeOneofCase_ == 1274; + } /** * int32 oneof_1274 = 1274; * @return The oneof1274. @@ -265314,6 +297243,13 @@ public Builder clearOneof1274() { return this; } + /** + * int32 oneof_1275 = 1275; + * @return Whether the oneof1275 field is set. + */ + public boolean hasOneof1275() { + return hugeOneofCase_ == 1275; + } /** * int32 oneof_1275 = 1275; * @return The oneof1275. @@ -265348,6 +297284,13 @@ public Builder clearOneof1275() { return this; } + /** + * int32 oneof_1276 = 1276; + * @return Whether the oneof1276 field is set. + */ + public boolean hasOneof1276() { + return hugeOneofCase_ == 1276; + } /** * int32 oneof_1276 = 1276; * @return The oneof1276. @@ -265382,6 +297325,13 @@ public Builder clearOneof1276() { return this; } + /** + * int32 oneof_1277 = 1277; + * @return Whether the oneof1277 field is set. + */ + public boolean hasOneof1277() { + return hugeOneofCase_ == 1277; + } /** * int32 oneof_1277 = 1277; * @return The oneof1277. @@ -265416,6 +297366,13 @@ public Builder clearOneof1277() { return this; } + /** + * int32 oneof_1278 = 1278; + * @return Whether the oneof1278 field is set. + */ + public boolean hasOneof1278() { + return hugeOneofCase_ == 1278; + } /** * int32 oneof_1278 = 1278; * @return The oneof1278. @@ -265450,6 +297407,13 @@ public Builder clearOneof1278() { return this; } + /** + * int32 oneof_1279 = 1279; + * @return Whether the oneof1279 field is set. + */ + public boolean hasOneof1279() { + return hugeOneofCase_ == 1279; + } /** * int32 oneof_1279 = 1279; * @return The oneof1279. @@ -265484,6 +297448,13 @@ public Builder clearOneof1279() { return this; } + /** + * int32 oneof_1280 = 1280; + * @return Whether the oneof1280 field is set. + */ + public boolean hasOneof1280() { + return hugeOneofCase_ == 1280; + } /** * int32 oneof_1280 = 1280; * @return The oneof1280. @@ -265518,6 +297489,13 @@ public Builder clearOneof1280() { return this; } + /** + * int32 oneof_1281 = 1281; + * @return Whether the oneof1281 field is set. + */ + public boolean hasOneof1281() { + return hugeOneofCase_ == 1281; + } /** * int32 oneof_1281 = 1281; * @return The oneof1281. @@ -265552,6 +297530,13 @@ public Builder clearOneof1281() { return this; } + /** + * int32 oneof_1282 = 1282; + * @return Whether the oneof1282 field is set. + */ + public boolean hasOneof1282() { + return hugeOneofCase_ == 1282; + } /** * int32 oneof_1282 = 1282; * @return The oneof1282. @@ -265586,6 +297571,13 @@ public Builder clearOneof1282() { return this; } + /** + * int32 oneof_1283 = 1283; + * @return Whether the oneof1283 field is set. + */ + public boolean hasOneof1283() { + return hugeOneofCase_ == 1283; + } /** * int32 oneof_1283 = 1283; * @return The oneof1283. @@ -265620,6 +297612,13 @@ public Builder clearOneof1283() { return this; } + /** + * int32 oneof_1284 = 1284; + * @return Whether the oneof1284 field is set. + */ + public boolean hasOneof1284() { + return hugeOneofCase_ == 1284; + } /** * int32 oneof_1284 = 1284; * @return The oneof1284. @@ -265654,6 +297653,13 @@ public Builder clearOneof1284() { return this; } + /** + * int32 oneof_1285 = 1285; + * @return Whether the oneof1285 field is set. + */ + public boolean hasOneof1285() { + return hugeOneofCase_ == 1285; + } /** * int32 oneof_1285 = 1285; * @return The oneof1285. @@ -265688,6 +297694,13 @@ public Builder clearOneof1285() { return this; } + /** + * int32 oneof_1286 = 1286; + * @return Whether the oneof1286 field is set. + */ + public boolean hasOneof1286() { + return hugeOneofCase_ == 1286; + } /** * int32 oneof_1286 = 1286; * @return The oneof1286. @@ -265722,6 +297735,13 @@ public Builder clearOneof1286() { return this; } + /** + * int32 oneof_1287 = 1287; + * @return Whether the oneof1287 field is set. + */ + public boolean hasOneof1287() { + return hugeOneofCase_ == 1287; + } /** * int32 oneof_1287 = 1287; * @return The oneof1287. @@ -265756,6 +297776,13 @@ public Builder clearOneof1287() { return this; } + /** + * int32 oneof_1288 = 1288; + * @return Whether the oneof1288 field is set. + */ + public boolean hasOneof1288() { + return hugeOneofCase_ == 1288; + } /** * int32 oneof_1288 = 1288; * @return The oneof1288. @@ -265790,6 +297817,13 @@ public Builder clearOneof1288() { return this; } + /** + * int32 oneof_1289 = 1289; + * @return Whether the oneof1289 field is set. + */ + public boolean hasOneof1289() { + return hugeOneofCase_ == 1289; + } /** * int32 oneof_1289 = 1289; * @return The oneof1289. @@ -265824,6 +297858,13 @@ public Builder clearOneof1289() { return this; } + /** + * int32 oneof_1290 = 1290; + * @return Whether the oneof1290 field is set. + */ + public boolean hasOneof1290() { + return hugeOneofCase_ == 1290; + } /** * int32 oneof_1290 = 1290; * @return The oneof1290. @@ -265858,6 +297899,13 @@ public Builder clearOneof1290() { return this; } + /** + * int32 oneof_1291 = 1291; + * @return Whether the oneof1291 field is set. + */ + public boolean hasOneof1291() { + return hugeOneofCase_ == 1291; + } /** * int32 oneof_1291 = 1291; * @return The oneof1291. @@ -265892,6 +297940,13 @@ public Builder clearOneof1291() { return this; } + /** + * int32 oneof_1292 = 1292; + * @return Whether the oneof1292 field is set. + */ + public boolean hasOneof1292() { + return hugeOneofCase_ == 1292; + } /** * int32 oneof_1292 = 1292; * @return The oneof1292. @@ -265926,6 +297981,13 @@ public Builder clearOneof1292() { return this; } + /** + * int32 oneof_1293 = 1293; + * @return Whether the oneof1293 field is set. + */ + public boolean hasOneof1293() { + return hugeOneofCase_ == 1293; + } /** * int32 oneof_1293 = 1293; * @return The oneof1293. @@ -265960,6 +298022,13 @@ public Builder clearOneof1293() { return this; } + /** + * int32 oneof_1294 = 1294; + * @return Whether the oneof1294 field is set. + */ + public boolean hasOneof1294() { + return hugeOneofCase_ == 1294; + } /** * int32 oneof_1294 = 1294; * @return The oneof1294. @@ -265994,6 +298063,13 @@ public Builder clearOneof1294() { return this; } + /** + * int32 oneof_1295 = 1295; + * @return Whether the oneof1295 field is set. + */ + public boolean hasOneof1295() { + return hugeOneofCase_ == 1295; + } /** * int32 oneof_1295 = 1295; * @return The oneof1295. @@ -266028,6 +298104,13 @@ public Builder clearOneof1295() { return this; } + /** + * int32 oneof_1296 = 1296; + * @return Whether the oneof1296 field is set. + */ + public boolean hasOneof1296() { + return hugeOneofCase_ == 1296; + } /** * int32 oneof_1296 = 1296; * @return The oneof1296. @@ -266062,6 +298145,13 @@ public Builder clearOneof1296() { return this; } + /** + * int32 oneof_1297 = 1297; + * @return Whether the oneof1297 field is set. + */ + public boolean hasOneof1297() { + return hugeOneofCase_ == 1297; + } /** * int32 oneof_1297 = 1297; * @return The oneof1297. @@ -266096,6 +298186,13 @@ public Builder clearOneof1297() { return this; } + /** + * int32 oneof_1298 = 1298; + * @return Whether the oneof1298 field is set. + */ + public boolean hasOneof1298() { + return hugeOneofCase_ == 1298; + } /** * int32 oneof_1298 = 1298; * @return The oneof1298. @@ -266130,6 +298227,13 @@ public Builder clearOneof1298() { return this; } + /** + * int32 oneof_1299 = 1299; + * @return Whether the oneof1299 field is set. + */ + public boolean hasOneof1299() { + return hugeOneofCase_ == 1299; + } /** * int32 oneof_1299 = 1299; * @return The oneof1299. @@ -266164,6 +298268,13 @@ public Builder clearOneof1299() { return this; } + /** + * int32 oneof_1300 = 1300; + * @return Whether the oneof1300 field is set. + */ + public boolean hasOneof1300() { + return hugeOneofCase_ == 1300; + } /** * int32 oneof_1300 = 1300; * @return The oneof1300. @@ -266198,6 +298309,13 @@ public Builder clearOneof1300() { return this; } + /** + * int32 oneof_1301 = 1301; + * @return Whether the oneof1301 field is set. + */ + public boolean hasOneof1301() { + return hugeOneofCase_ == 1301; + } /** * int32 oneof_1301 = 1301; * @return The oneof1301. @@ -266232,6 +298350,13 @@ public Builder clearOneof1301() { return this; } + /** + * int32 oneof_1302 = 1302; + * @return Whether the oneof1302 field is set. + */ + public boolean hasOneof1302() { + return hugeOneofCase_ == 1302; + } /** * int32 oneof_1302 = 1302; * @return The oneof1302. @@ -266266,6 +298391,13 @@ public Builder clearOneof1302() { return this; } + /** + * int32 oneof_1303 = 1303; + * @return Whether the oneof1303 field is set. + */ + public boolean hasOneof1303() { + return hugeOneofCase_ == 1303; + } /** * int32 oneof_1303 = 1303; * @return The oneof1303. @@ -266300,6 +298432,13 @@ public Builder clearOneof1303() { return this; } + /** + * int32 oneof_1304 = 1304; + * @return Whether the oneof1304 field is set. + */ + public boolean hasOneof1304() { + return hugeOneofCase_ == 1304; + } /** * int32 oneof_1304 = 1304; * @return The oneof1304. @@ -266334,6 +298473,13 @@ public Builder clearOneof1304() { return this; } + /** + * int32 oneof_1305 = 1305; + * @return Whether the oneof1305 field is set. + */ + public boolean hasOneof1305() { + return hugeOneofCase_ == 1305; + } /** * int32 oneof_1305 = 1305; * @return The oneof1305. @@ -266368,6 +298514,13 @@ public Builder clearOneof1305() { return this; } + /** + * int32 oneof_1306 = 1306; + * @return Whether the oneof1306 field is set. + */ + public boolean hasOneof1306() { + return hugeOneofCase_ == 1306; + } /** * int32 oneof_1306 = 1306; * @return The oneof1306. @@ -266402,6 +298555,13 @@ public Builder clearOneof1306() { return this; } + /** + * int32 oneof_1307 = 1307; + * @return Whether the oneof1307 field is set. + */ + public boolean hasOneof1307() { + return hugeOneofCase_ == 1307; + } /** * int32 oneof_1307 = 1307; * @return The oneof1307. @@ -266436,6 +298596,13 @@ public Builder clearOneof1307() { return this; } + /** + * int32 oneof_1308 = 1308; + * @return Whether the oneof1308 field is set. + */ + public boolean hasOneof1308() { + return hugeOneofCase_ == 1308; + } /** * int32 oneof_1308 = 1308; * @return The oneof1308. @@ -266470,6 +298637,13 @@ public Builder clearOneof1308() { return this; } + /** + * int32 oneof_1309 = 1309; + * @return Whether the oneof1309 field is set. + */ + public boolean hasOneof1309() { + return hugeOneofCase_ == 1309; + } /** * int32 oneof_1309 = 1309; * @return The oneof1309. @@ -266504,6 +298678,13 @@ public Builder clearOneof1309() { return this; } + /** + * int32 oneof_1310 = 1310; + * @return Whether the oneof1310 field is set. + */ + public boolean hasOneof1310() { + return hugeOneofCase_ == 1310; + } /** * int32 oneof_1310 = 1310; * @return The oneof1310. @@ -266538,6 +298719,13 @@ public Builder clearOneof1310() { return this; } + /** + * int32 oneof_1311 = 1311; + * @return Whether the oneof1311 field is set. + */ + public boolean hasOneof1311() { + return hugeOneofCase_ == 1311; + } /** * int32 oneof_1311 = 1311; * @return The oneof1311. @@ -266572,6 +298760,13 @@ public Builder clearOneof1311() { return this; } + /** + * int32 oneof_1312 = 1312; + * @return Whether the oneof1312 field is set. + */ + public boolean hasOneof1312() { + return hugeOneofCase_ == 1312; + } /** * int32 oneof_1312 = 1312; * @return The oneof1312. @@ -266606,6 +298801,13 @@ public Builder clearOneof1312() { return this; } + /** + * int32 oneof_1313 = 1313; + * @return Whether the oneof1313 field is set. + */ + public boolean hasOneof1313() { + return hugeOneofCase_ == 1313; + } /** * int32 oneof_1313 = 1313; * @return The oneof1313. @@ -266640,6 +298842,13 @@ public Builder clearOneof1313() { return this; } + /** + * int32 oneof_1314 = 1314; + * @return Whether the oneof1314 field is set. + */ + public boolean hasOneof1314() { + return hugeOneofCase_ == 1314; + } /** * int32 oneof_1314 = 1314; * @return The oneof1314. @@ -266674,6 +298883,13 @@ public Builder clearOneof1314() { return this; } + /** + * int32 oneof_1315 = 1315; + * @return Whether the oneof1315 field is set. + */ + public boolean hasOneof1315() { + return hugeOneofCase_ == 1315; + } /** * int32 oneof_1315 = 1315; * @return The oneof1315. @@ -266708,6 +298924,13 @@ public Builder clearOneof1315() { return this; } + /** + * int32 oneof_1316 = 1316; + * @return Whether the oneof1316 field is set. + */ + public boolean hasOneof1316() { + return hugeOneofCase_ == 1316; + } /** * int32 oneof_1316 = 1316; * @return The oneof1316. @@ -266742,6 +298965,13 @@ public Builder clearOneof1316() { return this; } + /** + * int32 oneof_1317 = 1317; + * @return Whether the oneof1317 field is set. + */ + public boolean hasOneof1317() { + return hugeOneofCase_ == 1317; + } /** * int32 oneof_1317 = 1317; * @return The oneof1317. @@ -266776,6 +299006,13 @@ public Builder clearOneof1317() { return this; } + /** + * int32 oneof_1318 = 1318; + * @return Whether the oneof1318 field is set. + */ + public boolean hasOneof1318() { + return hugeOneofCase_ == 1318; + } /** * int32 oneof_1318 = 1318; * @return The oneof1318. @@ -266810,6 +299047,13 @@ public Builder clearOneof1318() { return this; } + /** + * int32 oneof_1319 = 1319; + * @return Whether the oneof1319 field is set. + */ + public boolean hasOneof1319() { + return hugeOneofCase_ == 1319; + } /** * int32 oneof_1319 = 1319; * @return The oneof1319. @@ -266844,6 +299088,13 @@ public Builder clearOneof1319() { return this; } + /** + * int32 oneof_1320 = 1320; + * @return Whether the oneof1320 field is set. + */ + public boolean hasOneof1320() { + return hugeOneofCase_ == 1320; + } /** * int32 oneof_1320 = 1320; * @return The oneof1320. @@ -266878,6 +299129,13 @@ public Builder clearOneof1320() { return this; } + /** + * int32 oneof_1321 = 1321; + * @return Whether the oneof1321 field is set. + */ + public boolean hasOneof1321() { + return hugeOneofCase_ == 1321; + } /** * int32 oneof_1321 = 1321; * @return The oneof1321. @@ -266912,6 +299170,13 @@ public Builder clearOneof1321() { return this; } + /** + * int32 oneof_1322 = 1322; + * @return Whether the oneof1322 field is set. + */ + public boolean hasOneof1322() { + return hugeOneofCase_ == 1322; + } /** * int32 oneof_1322 = 1322; * @return The oneof1322. @@ -266946,6 +299211,13 @@ public Builder clearOneof1322() { return this; } + /** + * int32 oneof_1323 = 1323; + * @return Whether the oneof1323 field is set. + */ + public boolean hasOneof1323() { + return hugeOneofCase_ == 1323; + } /** * int32 oneof_1323 = 1323; * @return The oneof1323. @@ -266980,6 +299252,13 @@ public Builder clearOneof1323() { return this; } + /** + * int32 oneof_1324 = 1324; + * @return Whether the oneof1324 field is set. + */ + public boolean hasOneof1324() { + return hugeOneofCase_ == 1324; + } /** * int32 oneof_1324 = 1324; * @return The oneof1324. @@ -267014,6 +299293,13 @@ public Builder clearOneof1324() { return this; } + /** + * int32 oneof_1325 = 1325; + * @return Whether the oneof1325 field is set. + */ + public boolean hasOneof1325() { + return hugeOneofCase_ == 1325; + } /** * int32 oneof_1325 = 1325; * @return The oneof1325. @@ -267048,6 +299334,13 @@ public Builder clearOneof1325() { return this; } + /** + * int32 oneof_1326 = 1326; + * @return Whether the oneof1326 field is set. + */ + public boolean hasOneof1326() { + return hugeOneofCase_ == 1326; + } /** * int32 oneof_1326 = 1326; * @return The oneof1326. @@ -267082,6 +299375,13 @@ public Builder clearOneof1326() { return this; } + /** + * int32 oneof_1327 = 1327; + * @return Whether the oneof1327 field is set. + */ + public boolean hasOneof1327() { + return hugeOneofCase_ == 1327; + } /** * int32 oneof_1327 = 1327; * @return The oneof1327. @@ -267116,6 +299416,13 @@ public Builder clearOneof1327() { return this; } + /** + * int32 oneof_1328 = 1328; + * @return Whether the oneof1328 field is set. + */ + public boolean hasOneof1328() { + return hugeOneofCase_ == 1328; + } /** * int32 oneof_1328 = 1328; * @return The oneof1328. @@ -267150,6 +299457,13 @@ public Builder clearOneof1328() { return this; } + /** + * int32 oneof_1329 = 1329; + * @return Whether the oneof1329 field is set. + */ + public boolean hasOneof1329() { + return hugeOneofCase_ == 1329; + } /** * int32 oneof_1329 = 1329; * @return The oneof1329. @@ -267184,6 +299498,13 @@ public Builder clearOneof1329() { return this; } + /** + * int32 oneof_1330 = 1330; + * @return Whether the oneof1330 field is set. + */ + public boolean hasOneof1330() { + return hugeOneofCase_ == 1330; + } /** * int32 oneof_1330 = 1330; * @return The oneof1330. @@ -267218,6 +299539,13 @@ public Builder clearOneof1330() { return this; } + /** + * int32 oneof_1331 = 1331; + * @return Whether the oneof1331 field is set. + */ + public boolean hasOneof1331() { + return hugeOneofCase_ == 1331; + } /** * int32 oneof_1331 = 1331; * @return The oneof1331. @@ -267252,6 +299580,13 @@ public Builder clearOneof1331() { return this; } + /** + * int32 oneof_1332 = 1332; + * @return Whether the oneof1332 field is set. + */ + public boolean hasOneof1332() { + return hugeOneofCase_ == 1332; + } /** * int32 oneof_1332 = 1332; * @return The oneof1332. @@ -267286,6 +299621,13 @@ public Builder clearOneof1332() { return this; } + /** + * int32 oneof_1333 = 1333; + * @return Whether the oneof1333 field is set. + */ + public boolean hasOneof1333() { + return hugeOneofCase_ == 1333; + } /** * int32 oneof_1333 = 1333; * @return The oneof1333. @@ -267320,6 +299662,13 @@ public Builder clearOneof1333() { return this; } + /** + * int32 oneof_1334 = 1334; + * @return Whether the oneof1334 field is set. + */ + public boolean hasOneof1334() { + return hugeOneofCase_ == 1334; + } /** * int32 oneof_1334 = 1334; * @return The oneof1334. @@ -267354,6 +299703,13 @@ public Builder clearOneof1334() { return this; } + /** + * int32 oneof_1335 = 1335; + * @return Whether the oneof1335 field is set. + */ + public boolean hasOneof1335() { + return hugeOneofCase_ == 1335; + } /** * int32 oneof_1335 = 1335; * @return The oneof1335. @@ -267388,6 +299744,13 @@ public Builder clearOneof1335() { return this; } + /** + * int32 oneof_1336 = 1336; + * @return Whether the oneof1336 field is set. + */ + public boolean hasOneof1336() { + return hugeOneofCase_ == 1336; + } /** * int32 oneof_1336 = 1336; * @return The oneof1336. @@ -267422,6 +299785,13 @@ public Builder clearOneof1336() { return this; } + /** + * int32 oneof_1337 = 1337; + * @return Whether the oneof1337 field is set. + */ + public boolean hasOneof1337() { + return hugeOneofCase_ == 1337; + } /** * int32 oneof_1337 = 1337; * @return The oneof1337. @@ -267456,6 +299826,13 @@ public Builder clearOneof1337() { return this; } + /** + * int32 oneof_1338 = 1338; + * @return Whether the oneof1338 field is set. + */ + public boolean hasOneof1338() { + return hugeOneofCase_ == 1338; + } /** * int32 oneof_1338 = 1338; * @return The oneof1338. @@ -267490,6 +299867,13 @@ public Builder clearOneof1338() { return this; } + /** + * int32 oneof_1339 = 1339; + * @return Whether the oneof1339 field is set. + */ + public boolean hasOneof1339() { + return hugeOneofCase_ == 1339; + } /** * int32 oneof_1339 = 1339; * @return The oneof1339. @@ -267524,6 +299908,13 @@ public Builder clearOneof1339() { return this; } + /** + * int32 oneof_1340 = 1340; + * @return Whether the oneof1340 field is set. + */ + public boolean hasOneof1340() { + return hugeOneofCase_ == 1340; + } /** * int32 oneof_1340 = 1340; * @return The oneof1340. @@ -267558,6 +299949,13 @@ public Builder clearOneof1340() { return this; } + /** + * int32 oneof_1341 = 1341; + * @return Whether the oneof1341 field is set. + */ + public boolean hasOneof1341() { + return hugeOneofCase_ == 1341; + } /** * int32 oneof_1341 = 1341; * @return The oneof1341. @@ -267592,6 +299990,13 @@ public Builder clearOneof1341() { return this; } + /** + * int32 oneof_1342 = 1342; + * @return Whether the oneof1342 field is set. + */ + public boolean hasOneof1342() { + return hugeOneofCase_ == 1342; + } /** * int32 oneof_1342 = 1342; * @return The oneof1342. @@ -267626,6 +300031,13 @@ public Builder clearOneof1342() { return this; } + /** + * int32 oneof_1343 = 1343; + * @return Whether the oneof1343 field is set. + */ + public boolean hasOneof1343() { + return hugeOneofCase_ == 1343; + } /** * int32 oneof_1343 = 1343; * @return The oneof1343. @@ -267660,6 +300072,13 @@ public Builder clearOneof1343() { return this; } + /** + * int32 oneof_1344 = 1344; + * @return Whether the oneof1344 field is set. + */ + public boolean hasOneof1344() { + return hugeOneofCase_ == 1344; + } /** * int32 oneof_1344 = 1344; * @return The oneof1344. @@ -267694,6 +300113,13 @@ public Builder clearOneof1344() { return this; } + /** + * int32 oneof_1345 = 1345; + * @return Whether the oneof1345 field is set. + */ + public boolean hasOneof1345() { + return hugeOneofCase_ == 1345; + } /** * int32 oneof_1345 = 1345; * @return The oneof1345. @@ -267728,6 +300154,13 @@ public Builder clearOneof1345() { return this; } + /** + * int32 oneof_1346 = 1346; + * @return Whether the oneof1346 field is set. + */ + public boolean hasOneof1346() { + return hugeOneofCase_ == 1346; + } /** * int32 oneof_1346 = 1346; * @return The oneof1346. @@ -267762,6 +300195,13 @@ public Builder clearOneof1346() { return this; } + /** + * int32 oneof_1347 = 1347; + * @return Whether the oneof1347 field is set. + */ + public boolean hasOneof1347() { + return hugeOneofCase_ == 1347; + } /** * int32 oneof_1347 = 1347; * @return The oneof1347. @@ -267796,6 +300236,13 @@ public Builder clearOneof1347() { return this; } + /** + * int32 oneof_1348 = 1348; + * @return Whether the oneof1348 field is set. + */ + public boolean hasOneof1348() { + return hugeOneofCase_ == 1348; + } /** * int32 oneof_1348 = 1348; * @return The oneof1348. @@ -267830,6 +300277,13 @@ public Builder clearOneof1348() { return this; } + /** + * int32 oneof_1349 = 1349; + * @return Whether the oneof1349 field is set. + */ + public boolean hasOneof1349() { + return hugeOneofCase_ == 1349; + } /** * int32 oneof_1349 = 1349; * @return The oneof1349. @@ -267864,6 +300318,13 @@ public Builder clearOneof1349() { return this; } + /** + * int32 oneof_1350 = 1350; + * @return Whether the oneof1350 field is set. + */ + public boolean hasOneof1350() { + return hugeOneofCase_ == 1350; + } /** * int32 oneof_1350 = 1350; * @return The oneof1350. @@ -267898,6 +300359,13 @@ public Builder clearOneof1350() { return this; } + /** + * int32 oneof_1351 = 1351; + * @return Whether the oneof1351 field is set. + */ + public boolean hasOneof1351() { + return hugeOneofCase_ == 1351; + } /** * int32 oneof_1351 = 1351; * @return The oneof1351. @@ -267932,6 +300400,13 @@ public Builder clearOneof1351() { return this; } + /** + * int32 oneof_1352 = 1352; + * @return Whether the oneof1352 field is set. + */ + public boolean hasOneof1352() { + return hugeOneofCase_ == 1352; + } /** * int32 oneof_1352 = 1352; * @return The oneof1352. @@ -267966,6 +300441,13 @@ public Builder clearOneof1352() { return this; } + /** + * int32 oneof_1353 = 1353; + * @return Whether the oneof1353 field is set. + */ + public boolean hasOneof1353() { + return hugeOneofCase_ == 1353; + } /** * int32 oneof_1353 = 1353; * @return The oneof1353. @@ -268000,6 +300482,13 @@ public Builder clearOneof1353() { return this; } + /** + * int32 oneof_1354 = 1354; + * @return Whether the oneof1354 field is set. + */ + public boolean hasOneof1354() { + return hugeOneofCase_ == 1354; + } /** * int32 oneof_1354 = 1354; * @return The oneof1354. @@ -268034,6 +300523,13 @@ public Builder clearOneof1354() { return this; } + /** + * int32 oneof_1355 = 1355; + * @return Whether the oneof1355 field is set. + */ + public boolean hasOneof1355() { + return hugeOneofCase_ == 1355; + } /** * int32 oneof_1355 = 1355; * @return The oneof1355. @@ -268068,6 +300564,13 @@ public Builder clearOneof1355() { return this; } + /** + * int32 oneof_1356 = 1356; + * @return Whether the oneof1356 field is set. + */ + public boolean hasOneof1356() { + return hugeOneofCase_ == 1356; + } /** * int32 oneof_1356 = 1356; * @return The oneof1356. @@ -268102,6 +300605,13 @@ public Builder clearOneof1356() { return this; } + /** + * int32 oneof_1357 = 1357; + * @return Whether the oneof1357 field is set. + */ + public boolean hasOneof1357() { + return hugeOneofCase_ == 1357; + } /** * int32 oneof_1357 = 1357; * @return The oneof1357. @@ -268136,6 +300646,13 @@ public Builder clearOneof1357() { return this; } + /** + * int32 oneof_1358 = 1358; + * @return Whether the oneof1358 field is set. + */ + public boolean hasOneof1358() { + return hugeOneofCase_ == 1358; + } /** * int32 oneof_1358 = 1358; * @return The oneof1358. @@ -268170,6 +300687,13 @@ public Builder clearOneof1358() { return this; } + /** + * int32 oneof_1359 = 1359; + * @return Whether the oneof1359 field is set. + */ + public boolean hasOneof1359() { + return hugeOneofCase_ == 1359; + } /** * int32 oneof_1359 = 1359; * @return The oneof1359. @@ -268204,6 +300728,13 @@ public Builder clearOneof1359() { return this; } + /** + * int32 oneof_1360 = 1360; + * @return Whether the oneof1360 field is set. + */ + public boolean hasOneof1360() { + return hugeOneofCase_ == 1360; + } /** * int32 oneof_1360 = 1360; * @return The oneof1360. @@ -268238,6 +300769,13 @@ public Builder clearOneof1360() { return this; } + /** + * int32 oneof_1361 = 1361; + * @return Whether the oneof1361 field is set. + */ + public boolean hasOneof1361() { + return hugeOneofCase_ == 1361; + } /** * int32 oneof_1361 = 1361; * @return The oneof1361. @@ -268272,6 +300810,13 @@ public Builder clearOneof1361() { return this; } + /** + * int32 oneof_1362 = 1362; + * @return Whether the oneof1362 field is set. + */ + public boolean hasOneof1362() { + return hugeOneofCase_ == 1362; + } /** * int32 oneof_1362 = 1362; * @return The oneof1362. @@ -268306,6 +300851,13 @@ public Builder clearOneof1362() { return this; } + /** + * int32 oneof_1363 = 1363; + * @return Whether the oneof1363 field is set. + */ + public boolean hasOneof1363() { + return hugeOneofCase_ == 1363; + } /** * int32 oneof_1363 = 1363; * @return The oneof1363. @@ -268340,6 +300892,13 @@ public Builder clearOneof1363() { return this; } + /** + * int32 oneof_1364 = 1364; + * @return Whether the oneof1364 field is set. + */ + public boolean hasOneof1364() { + return hugeOneofCase_ == 1364; + } /** * int32 oneof_1364 = 1364; * @return The oneof1364. @@ -268374,6 +300933,13 @@ public Builder clearOneof1364() { return this; } + /** + * int32 oneof_1365 = 1365; + * @return Whether the oneof1365 field is set. + */ + public boolean hasOneof1365() { + return hugeOneofCase_ == 1365; + } /** * int32 oneof_1365 = 1365; * @return The oneof1365. @@ -268408,6 +300974,13 @@ public Builder clearOneof1365() { return this; } + /** + * int32 oneof_1366 = 1366; + * @return Whether the oneof1366 field is set. + */ + public boolean hasOneof1366() { + return hugeOneofCase_ == 1366; + } /** * int32 oneof_1366 = 1366; * @return The oneof1366. @@ -268442,6 +301015,13 @@ public Builder clearOneof1366() { return this; } + /** + * int32 oneof_1367 = 1367; + * @return Whether the oneof1367 field is set. + */ + public boolean hasOneof1367() { + return hugeOneofCase_ == 1367; + } /** * int32 oneof_1367 = 1367; * @return The oneof1367. @@ -268476,6 +301056,13 @@ public Builder clearOneof1367() { return this; } + /** + * int32 oneof_1368 = 1368; + * @return Whether the oneof1368 field is set. + */ + public boolean hasOneof1368() { + return hugeOneofCase_ == 1368; + } /** * int32 oneof_1368 = 1368; * @return The oneof1368. @@ -268510,6 +301097,13 @@ public Builder clearOneof1368() { return this; } + /** + * int32 oneof_1369 = 1369; + * @return Whether the oneof1369 field is set. + */ + public boolean hasOneof1369() { + return hugeOneofCase_ == 1369; + } /** * int32 oneof_1369 = 1369; * @return The oneof1369. @@ -268544,6 +301138,13 @@ public Builder clearOneof1369() { return this; } + /** + * int32 oneof_1370 = 1370; + * @return Whether the oneof1370 field is set. + */ + public boolean hasOneof1370() { + return hugeOneofCase_ == 1370; + } /** * int32 oneof_1370 = 1370; * @return The oneof1370. @@ -268578,6 +301179,13 @@ public Builder clearOneof1370() { return this; } + /** + * int32 oneof_1371 = 1371; + * @return Whether the oneof1371 field is set. + */ + public boolean hasOneof1371() { + return hugeOneofCase_ == 1371; + } /** * int32 oneof_1371 = 1371; * @return The oneof1371. @@ -268612,6 +301220,13 @@ public Builder clearOneof1371() { return this; } + /** + * int32 oneof_1372 = 1372; + * @return Whether the oneof1372 field is set. + */ + public boolean hasOneof1372() { + return hugeOneofCase_ == 1372; + } /** * int32 oneof_1372 = 1372; * @return The oneof1372. @@ -268646,6 +301261,13 @@ public Builder clearOneof1372() { return this; } + /** + * int32 oneof_1373 = 1373; + * @return Whether the oneof1373 field is set. + */ + public boolean hasOneof1373() { + return hugeOneofCase_ == 1373; + } /** * int32 oneof_1373 = 1373; * @return The oneof1373. @@ -268680,6 +301302,13 @@ public Builder clearOneof1373() { return this; } + /** + * int32 oneof_1374 = 1374; + * @return Whether the oneof1374 field is set. + */ + public boolean hasOneof1374() { + return hugeOneofCase_ == 1374; + } /** * int32 oneof_1374 = 1374; * @return The oneof1374. @@ -268714,6 +301343,13 @@ public Builder clearOneof1374() { return this; } + /** + * int32 oneof_1375 = 1375; + * @return Whether the oneof1375 field is set. + */ + public boolean hasOneof1375() { + return hugeOneofCase_ == 1375; + } /** * int32 oneof_1375 = 1375; * @return The oneof1375. @@ -268748,6 +301384,13 @@ public Builder clearOneof1375() { return this; } + /** + * int32 oneof_1376 = 1376; + * @return Whether the oneof1376 field is set. + */ + public boolean hasOneof1376() { + return hugeOneofCase_ == 1376; + } /** * int32 oneof_1376 = 1376; * @return The oneof1376. @@ -268782,6 +301425,13 @@ public Builder clearOneof1376() { return this; } + /** + * int32 oneof_1377 = 1377; + * @return Whether the oneof1377 field is set. + */ + public boolean hasOneof1377() { + return hugeOneofCase_ == 1377; + } /** * int32 oneof_1377 = 1377; * @return The oneof1377. @@ -268816,6 +301466,13 @@ public Builder clearOneof1377() { return this; } + /** + * int32 oneof_1378 = 1378; + * @return Whether the oneof1378 field is set. + */ + public boolean hasOneof1378() { + return hugeOneofCase_ == 1378; + } /** * int32 oneof_1378 = 1378; * @return The oneof1378. @@ -268850,6 +301507,13 @@ public Builder clearOneof1378() { return this; } + /** + * int32 oneof_1379 = 1379; + * @return Whether the oneof1379 field is set. + */ + public boolean hasOneof1379() { + return hugeOneofCase_ == 1379; + } /** * int32 oneof_1379 = 1379; * @return The oneof1379. @@ -268884,6 +301548,13 @@ public Builder clearOneof1379() { return this; } + /** + * int32 oneof_1380 = 1380; + * @return Whether the oneof1380 field is set. + */ + public boolean hasOneof1380() { + return hugeOneofCase_ == 1380; + } /** * int32 oneof_1380 = 1380; * @return The oneof1380. @@ -268918,6 +301589,13 @@ public Builder clearOneof1380() { return this; } + /** + * int32 oneof_1381 = 1381; + * @return Whether the oneof1381 field is set. + */ + public boolean hasOneof1381() { + return hugeOneofCase_ == 1381; + } /** * int32 oneof_1381 = 1381; * @return The oneof1381. @@ -268952,6 +301630,13 @@ public Builder clearOneof1381() { return this; } + /** + * int32 oneof_1382 = 1382; + * @return Whether the oneof1382 field is set. + */ + public boolean hasOneof1382() { + return hugeOneofCase_ == 1382; + } /** * int32 oneof_1382 = 1382; * @return The oneof1382. @@ -268986,6 +301671,13 @@ public Builder clearOneof1382() { return this; } + /** + * int32 oneof_1383 = 1383; + * @return Whether the oneof1383 field is set. + */ + public boolean hasOneof1383() { + return hugeOneofCase_ == 1383; + } /** * int32 oneof_1383 = 1383; * @return The oneof1383. @@ -269020,6 +301712,13 @@ public Builder clearOneof1383() { return this; } + /** + * int32 oneof_1384 = 1384; + * @return Whether the oneof1384 field is set. + */ + public boolean hasOneof1384() { + return hugeOneofCase_ == 1384; + } /** * int32 oneof_1384 = 1384; * @return The oneof1384. @@ -269054,6 +301753,13 @@ public Builder clearOneof1384() { return this; } + /** + * int32 oneof_1385 = 1385; + * @return Whether the oneof1385 field is set. + */ + public boolean hasOneof1385() { + return hugeOneofCase_ == 1385; + } /** * int32 oneof_1385 = 1385; * @return The oneof1385. @@ -269088,6 +301794,13 @@ public Builder clearOneof1385() { return this; } + /** + * int32 oneof_1386 = 1386; + * @return Whether the oneof1386 field is set. + */ + public boolean hasOneof1386() { + return hugeOneofCase_ == 1386; + } /** * int32 oneof_1386 = 1386; * @return The oneof1386. @@ -269122,6 +301835,13 @@ public Builder clearOneof1386() { return this; } + /** + * int32 oneof_1387 = 1387; + * @return Whether the oneof1387 field is set. + */ + public boolean hasOneof1387() { + return hugeOneofCase_ == 1387; + } /** * int32 oneof_1387 = 1387; * @return The oneof1387. @@ -269156,6 +301876,13 @@ public Builder clearOneof1387() { return this; } + /** + * int32 oneof_1388 = 1388; + * @return Whether the oneof1388 field is set. + */ + public boolean hasOneof1388() { + return hugeOneofCase_ == 1388; + } /** * int32 oneof_1388 = 1388; * @return The oneof1388. @@ -269190,6 +301917,13 @@ public Builder clearOneof1388() { return this; } + /** + * int32 oneof_1389 = 1389; + * @return Whether the oneof1389 field is set. + */ + public boolean hasOneof1389() { + return hugeOneofCase_ == 1389; + } /** * int32 oneof_1389 = 1389; * @return The oneof1389. @@ -269224,6 +301958,13 @@ public Builder clearOneof1389() { return this; } + /** + * int32 oneof_1390 = 1390; + * @return Whether the oneof1390 field is set. + */ + public boolean hasOneof1390() { + return hugeOneofCase_ == 1390; + } /** * int32 oneof_1390 = 1390; * @return The oneof1390. @@ -269258,6 +301999,13 @@ public Builder clearOneof1390() { return this; } + /** + * int32 oneof_1391 = 1391; + * @return Whether the oneof1391 field is set. + */ + public boolean hasOneof1391() { + return hugeOneofCase_ == 1391; + } /** * int32 oneof_1391 = 1391; * @return The oneof1391. @@ -269292,6 +302040,13 @@ public Builder clearOneof1391() { return this; } + /** + * int32 oneof_1392 = 1392; + * @return Whether the oneof1392 field is set. + */ + public boolean hasOneof1392() { + return hugeOneofCase_ == 1392; + } /** * int32 oneof_1392 = 1392; * @return The oneof1392. @@ -269326,6 +302081,13 @@ public Builder clearOneof1392() { return this; } + /** + * int32 oneof_1393 = 1393; + * @return Whether the oneof1393 field is set. + */ + public boolean hasOneof1393() { + return hugeOneofCase_ == 1393; + } /** * int32 oneof_1393 = 1393; * @return The oneof1393. @@ -269360,6 +302122,13 @@ public Builder clearOneof1393() { return this; } + /** + * int32 oneof_1394 = 1394; + * @return Whether the oneof1394 field is set. + */ + public boolean hasOneof1394() { + return hugeOneofCase_ == 1394; + } /** * int32 oneof_1394 = 1394; * @return The oneof1394. @@ -269394,6 +302163,13 @@ public Builder clearOneof1394() { return this; } + /** + * int32 oneof_1395 = 1395; + * @return Whether the oneof1395 field is set. + */ + public boolean hasOneof1395() { + return hugeOneofCase_ == 1395; + } /** * int32 oneof_1395 = 1395; * @return The oneof1395. @@ -269428,6 +302204,13 @@ public Builder clearOneof1395() { return this; } + /** + * int32 oneof_1396 = 1396; + * @return Whether the oneof1396 field is set. + */ + public boolean hasOneof1396() { + return hugeOneofCase_ == 1396; + } /** * int32 oneof_1396 = 1396; * @return The oneof1396. @@ -269462,6 +302245,13 @@ public Builder clearOneof1396() { return this; } + /** + * int32 oneof_1397 = 1397; + * @return Whether the oneof1397 field is set. + */ + public boolean hasOneof1397() { + return hugeOneofCase_ == 1397; + } /** * int32 oneof_1397 = 1397; * @return The oneof1397. @@ -269496,6 +302286,13 @@ public Builder clearOneof1397() { return this; } + /** + * int32 oneof_1398 = 1398; + * @return Whether the oneof1398 field is set. + */ + public boolean hasOneof1398() { + return hugeOneofCase_ == 1398; + } /** * int32 oneof_1398 = 1398; * @return The oneof1398. @@ -269530,6 +302327,13 @@ public Builder clearOneof1398() { return this; } + /** + * int32 oneof_1399 = 1399; + * @return Whether the oneof1399 field is set. + */ + public boolean hasOneof1399() { + return hugeOneofCase_ == 1399; + } /** * int32 oneof_1399 = 1399; * @return The oneof1399. @@ -269564,6 +302368,13 @@ public Builder clearOneof1399() { return this; } + /** + * int32 oneof_1400 = 1400; + * @return Whether the oneof1400 field is set. + */ + public boolean hasOneof1400() { + return hugeOneofCase_ == 1400; + } /** * int32 oneof_1400 = 1400; * @return The oneof1400. @@ -269598,6 +302409,13 @@ public Builder clearOneof1400() { return this; } + /** + * int32 oneof_1401 = 1401; + * @return Whether the oneof1401 field is set. + */ + public boolean hasOneof1401() { + return hugeOneofCase_ == 1401; + } /** * int32 oneof_1401 = 1401; * @return The oneof1401. @@ -269632,6 +302450,13 @@ public Builder clearOneof1401() { return this; } + /** + * int32 oneof_1402 = 1402; + * @return Whether the oneof1402 field is set. + */ + public boolean hasOneof1402() { + return hugeOneofCase_ == 1402; + } /** * int32 oneof_1402 = 1402; * @return The oneof1402. @@ -269666,6 +302491,13 @@ public Builder clearOneof1402() { return this; } + /** + * int32 oneof_1403 = 1403; + * @return Whether the oneof1403 field is set. + */ + public boolean hasOneof1403() { + return hugeOneofCase_ == 1403; + } /** * int32 oneof_1403 = 1403; * @return The oneof1403. @@ -269700,6 +302532,13 @@ public Builder clearOneof1403() { return this; } + /** + * int32 oneof_1404 = 1404; + * @return Whether the oneof1404 field is set. + */ + public boolean hasOneof1404() { + return hugeOneofCase_ == 1404; + } /** * int32 oneof_1404 = 1404; * @return The oneof1404. @@ -269734,6 +302573,13 @@ public Builder clearOneof1404() { return this; } + /** + * int32 oneof_1405 = 1405; + * @return Whether the oneof1405 field is set. + */ + public boolean hasOneof1405() { + return hugeOneofCase_ == 1405; + } /** * int32 oneof_1405 = 1405; * @return The oneof1405. @@ -269768,6 +302614,13 @@ public Builder clearOneof1405() { return this; } + /** + * int32 oneof_1406 = 1406; + * @return Whether the oneof1406 field is set. + */ + public boolean hasOneof1406() { + return hugeOneofCase_ == 1406; + } /** * int32 oneof_1406 = 1406; * @return The oneof1406. @@ -269802,6 +302655,13 @@ public Builder clearOneof1406() { return this; } + /** + * int32 oneof_1407 = 1407; + * @return Whether the oneof1407 field is set. + */ + public boolean hasOneof1407() { + return hugeOneofCase_ == 1407; + } /** * int32 oneof_1407 = 1407; * @return The oneof1407. @@ -269836,6 +302696,13 @@ public Builder clearOneof1407() { return this; } + /** + * int32 oneof_1408 = 1408; + * @return Whether the oneof1408 field is set. + */ + public boolean hasOneof1408() { + return hugeOneofCase_ == 1408; + } /** * int32 oneof_1408 = 1408; * @return The oneof1408. @@ -269870,6 +302737,13 @@ public Builder clearOneof1408() { return this; } + /** + * int32 oneof_1409 = 1409; + * @return Whether the oneof1409 field is set. + */ + public boolean hasOneof1409() { + return hugeOneofCase_ == 1409; + } /** * int32 oneof_1409 = 1409; * @return The oneof1409. @@ -269904,6 +302778,13 @@ public Builder clearOneof1409() { return this; } + /** + * int32 oneof_1410 = 1410; + * @return Whether the oneof1410 field is set. + */ + public boolean hasOneof1410() { + return hugeOneofCase_ == 1410; + } /** * int32 oneof_1410 = 1410; * @return The oneof1410. @@ -269938,6 +302819,13 @@ public Builder clearOneof1410() { return this; } + /** + * int32 oneof_1411 = 1411; + * @return Whether the oneof1411 field is set. + */ + public boolean hasOneof1411() { + return hugeOneofCase_ == 1411; + } /** * int32 oneof_1411 = 1411; * @return The oneof1411. @@ -269972,6 +302860,13 @@ public Builder clearOneof1411() { return this; } + /** + * int32 oneof_1412 = 1412; + * @return Whether the oneof1412 field is set. + */ + public boolean hasOneof1412() { + return hugeOneofCase_ == 1412; + } /** * int32 oneof_1412 = 1412; * @return The oneof1412. @@ -270006,6 +302901,13 @@ public Builder clearOneof1412() { return this; } + /** + * int32 oneof_1413 = 1413; + * @return Whether the oneof1413 field is set. + */ + public boolean hasOneof1413() { + return hugeOneofCase_ == 1413; + } /** * int32 oneof_1413 = 1413; * @return The oneof1413. @@ -270040,6 +302942,13 @@ public Builder clearOneof1413() { return this; } + /** + * int32 oneof_1414 = 1414; + * @return Whether the oneof1414 field is set. + */ + public boolean hasOneof1414() { + return hugeOneofCase_ == 1414; + } /** * int32 oneof_1414 = 1414; * @return The oneof1414. @@ -270074,6 +302983,13 @@ public Builder clearOneof1414() { return this; } + /** + * int32 oneof_1415 = 1415; + * @return Whether the oneof1415 field is set. + */ + public boolean hasOneof1415() { + return hugeOneofCase_ == 1415; + } /** * int32 oneof_1415 = 1415; * @return The oneof1415. @@ -270108,6 +303024,13 @@ public Builder clearOneof1415() { return this; } + /** + * int32 oneof_1416 = 1416; + * @return Whether the oneof1416 field is set. + */ + public boolean hasOneof1416() { + return hugeOneofCase_ == 1416; + } /** * int32 oneof_1416 = 1416; * @return The oneof1416. @@ -270142,6 +303065,13 @@ public Builder clearOneof1416() { return this; } + /** + * int32 oneof_1417 = 1417; + * @return Whether the oneof1417 field is set. + */ + public boolean hasOneof1417() { + return hugeOneofCase_ == 1417; + } /** * int32 oneof_1417 = 1417; * @return The oneof1417. @@ -270176,6 +303106,13 @@ public Builder clearOneof1417() { return this; } + /** + * int32 oneof_1418 = 1418; + * @return Whether the oneof1418 field is set. + */ + public boolean hasOneof1418() { + return hugeOneofCase_ == 1418; + } /** * int32 oneof_1418 = 1418; * @return The oneof1418. @@ -270210,6 +303147,13 @@ public Builder clearOneof1418() { return this; } + /** + * int32 oneof_1419 = 1419; + * @return Whether the oneof1419 field is set. + */ + public boolean hasOneof1419() { + return hugeOneofCase_ == 1419; + } /** * int32 oneof_1419 = 1419; * @return The oneof1419. @@ -270244,6 +303188,13 @@ public Builder clearOneof1419() { return this; } + /** + * int32 oneof_1420 = 1420; + * @return Whether the oneof1420 field is set. + */ + public boolean hasOneof1420() { + return hugeOneofCase_ == 1420; + } /** * int32 oneof_1420 = 1420; * @return The oneof1420. @@ -270278,6 +303229,13 @@ public Builder clearOneof1420() { return this; } + /** + * int32 oneof_1421 = 1421; + * @return Whether the oneof1421 field is set. + */ + public boolean hasOneof1421() { + return hugeOneofCase_ == 1421; + } /** * int32 oneof_1421 = 1421; * @return The oneof1421. @@ -270312,6 +303270,13 @@ public Builder clearOneof1421() { return this; } + /** + * int32 oneof_1422 = 1422; + * @return Whether the oneof1422 field is set. + */ + public boolean hasOneof1422() { + return hugeOneofCase_ == 1422; + } /** * int32 oneof_1422 = 1422; * @return The oneof1422. @@ -270346,6 +303311,13 @@ public Builder clearOneof1422() { return this; } + /** + * int32 oneof_1423 = 1423; + * @return Whether the oneof1423 field is set. + */ + public boolean hasOneof1423() { + return hugeOneofCase_ == 1423; + } /** * int32 oneof_1423 = 1423; * @return The oneof1423. @@ -270380,6 +303352,13 @@ public Builder clearOneof1423() { return this; } + /** + * int32 oneof_1424 = 1424; + * @return Whether the oneof1424 field is set. + */ + public boolean hasOneof1424() { + return hugeOneofCase_ == 1424; + } /** * int32 oneof_1424 = 1424; * @return The oneof1424. @@ -270414,6 +303393,13 @@ public Builder clearOneof1424() { return this; } + /** + * int32 oneof_1425 = 1425; + * @return Whether the oneof1425 field is set. + */ + public boolean hasOneof1425() { + return hugeOneofCase_ == 1425; + } /** * int32 oneof_1425 = 1425; * @return The oneof1425. @@ -270448,6 +303434,13 @@ public Builder clearOneof1425() { return this; } + /** + * int32 oneof_1426 = 1426; + * @return Whether the oneof1426 field is set. + */ + public boolean hasOneof1426() { + return hugeOneofCase_ == 1426; + } /** * int32 oneof_1426 = 1426; * @return The oneof1426. @@ -270482,6 +303475,13 @@ public Builder clearOneof1426() { return this; } + /** + * int32 oneof_1427 = 1427; + * @return Whether the oneof1427 field is set. + */ + public boolean hasOneof1427() { + return hugeOneofCase_ == 1427; + } /** * int32 oneof_1427 = 1427; * @return The oneof1427. @@ -270516,6 +303516,13 @@ public Builder clearOneof1427() { return this; } + /** + * int32 oneof_1428 = 1428; + * @return Whether the oneof1428 field is set. + */ + public boolean hasOneof1428() { + return hugeOneofCase_ == 1428; + } /** * int32 oneof_1428 = 1428; * @return The oneof1428. @@ -270550,6 +303557,13 @@ public Builder clearOneof1428() { return this; } + /** + * int32 oneof_1429 = 1429; + * @return Whether the oneof1429 field is set. + */ + public boolean hasOneof1429() { + return hugeOneofCase_ == 1429; + } /** * int32 oneof_1429 = 1429; * @return The oneof1429. @@ -270584,6 +303598,13 @@ public Builder clearOneof1429() { return this; } + /** + * int32 oneof_1430 = 1430; + * @return Whether the oneof1430 field is set. + */ + public boolean hasOneof1430() { + return hugeOneofCase_ == 1430; + } /** * int32 oneof_1430 = 1430; * @return The oneof1430. @@ -270618,6 +303639,13 @@ public Builder clearOneof1430() { return this; } + /** + * int32 oneof_1431 = 1431; + * @return Whether the oneof1431 field is set. + */ + public boolean hasOneof1431() { + return hugeOneofCase_ == 1431; + } /** * int32 oneof_1431 = 1431; * @return The oneof1431. @@ -270652,6 +303680,13 @@ public Builder clearOneof1431() { return this; } + /** + * int32 oneof_1432 = 1432; + * @return Whether the oneof1432 field is set. + */ + public boolean hasOneof1432() { + return hugeOneofCase_ == 1432; + } /** * int32 oneof_1432 = 1432; * @return The oneof1432. @@ -270686,6 +303721,13 @@ public Builder clearOneof1432() { return this; } + /** + * int32 oneof_1433 = 1433; + * @return Whether the oneof1433 field is set. + */ + public boolean hasOneof1433() { + return hugeOneofCase_ == 1433; + } /** * int32 oneof_1433 = 1433; * @return The oneof1433. @@ -270720,6 +303762,13 @@ public Builder clearOneof1433() { return this; } + /** + * int32 oneof_1434 = 1434; + * @return Whether the oneof1434 field is set. + */ + public boolean hasOneof1434() { + return hugeOneofCase_ == 1434; + } /** * int32 oneof_1434 = 1434; * @return The oneof1434. @@ -270754,6 +303803,13 @@ public Builder clearOneof1434() { return this; } + /** + * int32 oneof_1435 = 1435; + * @return Whether the oneof1435 field is set. + */ + public boolean hasOneof1435() { + return hugeOneofCase_ == 1435; + } /** * int32 oneof_1435 = 1435; * @return The oneof1435. @@ -270788,6 +303844,13 @@ public Builder clearOneof1435() { return this; } + /** + * int32 oneof_1436 = 1436; + * @return Whether the oneof1436 field is set. + */ + public boolean hasOneof1436() { + return hugeOneofCase_ == 1436; + } /** * int32 oneof_1436 = 1436; * @return The oneof1436. @@ -270822,6 +303885,13 @@ public Builder clearOneof1436() { return this; } + /** + * int32 oneof_1437 = 1437; + * @return Whether the oneof1437 field is set. + */ + public boolean hasOneof1437() { + return hugeOneofCase_ == 1437; + } /** * int32 oneof_1437 = 1437; * @return The oneof1437. @@ -270856,6 +303926,13 @@ public Builder clearOneof1437() { return this; } + /** + * int32 oneof_1438 = 1438; + * @return Whether the oneof1438 field is set. + */ + public boolean hasOneof1438() { + return hugeOneofCase_ == 1438; + } /** * int32 oneof_1438 = 1438; * @return The oneof1438. @@ -270890,6 +303967,13 @@ public Builder clearOneof1438() { return this; } + /** + * int32 oneof_1439 = 1439; + * @return Whether the oneof1439 field is set. + */ + public boolean hasOneof1439() { + return hugeOneofCase_ == 1439; + } /** * int32 oneof_1439 = 1439; * @return The oneof1439. @@ -270924,6 +304008,13 @@ public Builder clearOneof1439() { return this; } + /** + * int32 oneof_1440 = 1440; + * @return Whether the oneof1440 field is set. + */ + public boolean hasOneof1440() { + return hugeOneofCase_ == 1440; + } /** * int32 oneof_1440 = 1440; * @return The oneof1440. @@ -270958,6 +304049,13 @@ public Builder clearOneof1440() { return this; } + /** + * int32 oneof_1441 = 1441; + * @return Whether the oneof1441 field is set. + */ + public boolean hasOneof1441() { + return hugeOneofCase_ == 1441; + } /** * int32 oneof_1441 = 1441; * @return The oneof1441. @@ -270992,6 +304090,13 @@ public Builder clearOneof1441() { return this; } + /** + * int32 oneof_1442 = 1442; + * @return Whether the oneof1442 field is set. + */ + public boolean hasOneof1442() { + return hugeOneofCase_ == 1442; + } /** * int32 oneof_1442 = 1442; * @return The oneof1442. @@ -271026,6 +304131,13 @@ public Builder clearOneof1442() { return this; } + /** + * int32 oneof_1443 = 1443; + * @return Whether the oneof1443 field is set. + */ + public boolean hasOneof1443() { + return hugeOneofCase_ == 1443; + } /** * int32 oneof_1443 = 1443; * @return The oneof1443. @@ -271060,6 +304172,13 @@ public Builder clearOneof1443() { return this; } + /** + * int32 oneof_1444 = 1444; + * @return Whether the oneof1444 field is set. + */ + public boolean hasOneof1444() { + return hugeOneofCase_ == 1444; + } /** * int32 oneof_1444 = 1444; * @return The oneof1444. @@ -271094,6 +304213,13 @@ public Builder clearOneof1444() { return this; } + /** + * int32 oneof_1445 = 1445; + * @return Whether the oneof1445 field is set. + */ + public boolean hasOneof1445() { + return hugeOneofCase_ == 1445; + } /** * int32 oneof_1445 = 1445; * @return The oneof1445. @@ -271128,6 +304254,13 @@ public Builder clearOneof1445() { return this; } + /** + * int32 oneof_1446 = 1446; + * @return Whether the oneof1446 field is set. + */ + public boolean hasOneof1446() { + return hugeOneofCase_ == 1446; + } /** * int32 oneof_1446 = 1446; * @return The oneof1446. @@ -271162,6 +304295,13 @@ public Builder clearOneof1446() { return this; } + /** + * int32 oneof_1447 = 1447; + * @return Whether the oneof1447 field is set. + */ + public boolean hasOneof1447() { + return hugeOneofCase_ == 1447; + } /** * int32 oneof_1447 = 1447; * @return The oneof1447. @@ -271196,6 +304336,13 @@ public Builder clearOneof1447() { return this; } + /** + * int32 oneof_1448 = 1448; + * @return Whether the oneof1448 field is set. + */ + public boolean hasOneof1448() { + return hugeOneofCase_ == 1448; + } /** * int32 oneof_1448 = 1448; * @return The oneof1448. @@ -271230,6 +304377,13 @@ public Builder clearOneof1448() { return this; } + /** + * int32 oneof_1449 = 1449; + * @return Whether the oneof1449 field is set. + */ + public boolean hasOneof1449() { + return hugeOneofCase_ == 1449; + } /** * int32 oneof_1449 = 1449; * @return The oneof1449. @@ -271264,6 +304418,13 @@ public Builder clearOneof1449() { return this; } + /** + * int32 oneof_1450 = 1450; + * @return Whether the oneof1450 field is set. + */ + public boolean hasOneof1450() { + return hugeOneofCase_ == 1450; + } /** * int32 oneof_1450 = 1450; * @return The oneof1450. @@ -271298,6 +304459,13 @@ public Builder clearOneof1450() { return this; } + /** + * int32 oneof_1451 = 1451; + * @return Whether the oneof1451 field is set. + */ + public boolean hasOneof1451() { + return hugeOneofCase_ == 1451; + } /** * int32 oneof_1451 = 1451; * @return The oneof1451. @@ -271332,6 +304500,13 @@ public Builder clearOneof1451() { return this; } + /** + * int32 oneof_1452 = 1452; + * @return Whether the oneof1452 field is set. + */ + public boolean hasOneof1452() { + return hugeOneofCase_ == 1452; + } /** * int32 oneof_1452 = 1452; * @return The oneof1452. @@ -271366,6 +304541,13 @@ public Builder clearOneof1452() { return this; } + /** + * int32 oneof_1453 = 1453; + * @return Whether the oneof1453 field is set. + */ + public boolean hasOneof1453() { + return hugeOneofCase_ == 1453; + } /** * int32 oneof_1453 = 1453; * @return The oneof1453. @@ -271400,6 +304582,13 @@ public Builder clearOneof1453() { return this; } + /** + * int32 oneof_1454 = 1454; + * @return Whether the oneof1454 field is set. + */ + public boolean hasOneof1454() { + return hugeOneofCase_ == 1454; + } /** * int32 oneof_1454 = 1454; * @return The oneof1454. @@ -271434,6 +304623,13 @@ public Builder clearOneof1454() { return this; } + /** + * int32 oneof_1455 = 1455; + * @return Whether the oneof1455 field is set. + */ + public boolean hasOneof1455() { + return hugeOneofCase_ == 1455; + } /** * int32 oneof_1455 = 1455; * @return The oneof1455. @@ -271468,6 +304664,13 @@ public Builder clearOneof1455() { return this; } + /** + * int32 oneof_1456 = 1456; + * @return Whether the oneof1456 field is set. + */ + public boolean hasOneof1456() { + return hugeOneofCase_ == 1456; + } /** * int32 oneof_1456 = 1456; * @return The oneof1456. @@ -271502,6 +304705,13 @@ public Builder clearOneof1456() { return this; } + /** + * int32 oneof_1457 = 1457; + * @return Whether the oneof1457 field is set. + */ + public boolean hasOneof1457() { + return hugeOneofCase_ == 1457; + } /** * int32 oneof_1457 = 1457; * @return The oneof1457. @@ -271536,6 +304746,13 @@ public Builder clearOneof1457() { return this; } + /** + * int32 oneof_1458 = 1458; + * @return Whether the oneof1458 field is set. + */ + public boolean hasOneof1458() { + return hugeOneofCase_ == 1458; + } /** * int32 oneof_1458 = 1458; * @return The oneof1458. @@ -271570,6 +304787,13 @@ public Builder clearOneof1458() { return this; } + /** + * int32 oneof_1459 = 1459; + * @return Whether the oneof1459 field is set. + */ + public boolean hasOneof1459() { + return hugeOneofCase_ == 1459; + } /** * int32 oneof_1459 = 1459; * @return The oneof1459. @@ -271604,6 +304828,13 @@ public Builder clearOneof1459() { return this; } + /** + * int32 oneof_1460 = 1460; + * @return Whether the oneof1460 field is set. + */ + public boolean hasOneof1460() { + return hugeOneofCase_ == 1460; + } /** * int32 oneof_1460 = 1460; * @return The oneof1460. @@ -271638,6 +304869,13 @@ public Builder clearOneof1460() { return this; } + /** + * int32 oneof_1461 = 1461; + * @return Whether the oneof1461 field is set. + */ + public boolean hasOneof1461() { + return hugeOneofCase_ == 1461; + } /** * int32 oneof_1461 = 1461; * @return The oneof1461. @@ -271672,6 +304910,13 @@ public Builder clearOneof1461() { return this; } + /** + * int32 oneof_1462 = 1462; + * @return Whether the oneof1462 field is set. + */ + public boolean hasOneof1462() { + return hugeOneofCase_ == 1462; + } /** * int32 oneof_1462 = 1462; * @return The oneof1462. @@ -271706,6 +304951,13 @@ public Builder clearOneof1462() { return this; } + /** + * int32 oneof_1463 = 1463; + * @return Whether the oneof1463 field is set. + */ + public boolean hasOneof1463() { + return hugeOneofCase_ == 1463; + } /** * int32 oneof_1463 = 1463; * @return The oneof1463. @@ -271740,6 +304992,13 @@ public Builder clearOneof1463() { return this; } + /** + * int32 oneof_1464 = 1464; + * @return Whether the oneof1464 field is set. + */ + public boolean hasOneof1464() { + return hugeOneofCase_ == 1464; + } /** * int32 oneof_1464 = 1464; * @return The oneof1464. @@ -271774,6 +305033,13 @@ public Builder clearOneof1464() { return this; } + /** + * int32 oneof_1465 = 1465; + * @return Whether the oneof1465 field is set. + */ + public boolean hasOneof1465() { + return hugeOneofCase_ == 1465; + } /** * int32 oneof_1465 = 1465; * @return The oneof1465. @@ -271808,6 +305074,13 @@ public Builder clearOneof1465() { return this; } + /** + * int32 oneof_1466 = 1466; + * @return Whether the oneof1466 field is set. + */ + public boolean hasOneof1466() { + return hugeOneofCase_ == 1466; + } /** * int32 oneof_1466 = 1466; * @return The oneof1466. @@ -271842,6 +305115,13 @@ public Builder clearOneof1466() { return this; } + /** + * int32 oneof_1467 = 1467; + * @return Whether the oneof1467 field is set. + */ + public boolean hasOneof1467() { + return hugeOneofCase_ == 1467; + } /** * int32 oneof_1467 = 1467; * @return The oneof1467. @@ -271876,6 +305156,13 @@ public Builder clearOneof1467() { return this; } + /** + * int32 oneof_1468 = 1468; + * @return Whether the oneof1468 field is set. + */ + public boolean hasOneof1468() { + return hugeOneofCase_ == 1468; + } /** * int32 oneof_1468 = 1468; * @return The oneof1468. @@ -271910,6 +305197,13 @@ public Builder clearOneof1468() { return this; } + /** + * int32 oneof_1469 = 1469; + * @return Whether the oneof1469 field is set. + */ + public boolean hasOneof1469() { + return hugeOneofCase_ == 1469; + } /** * int32 oneof_1469 = 1469; * @return The oneof1469. @@ -271944,6 +305238,13 @@ public Builder clearOneof1469() { return this; } + /** + * int32 oneof_1470 = 1470; + * @return Whether the oneof1470 field is set. + */ + public boolean hasOneof1470() { + return hugeOneofCase_ == 1470; + } /** * int32 oneof_1470 = 1470; * @return The oneof1470. @@ -271978,6 +305279,13 @@ public Builder clearOneof1470() { return this; } + /** + * int32 oneof_1471 = 1471; + * @return Whether the oneof1471 field is set. + */ + public boolean hasOneof1471() { + return hugeOneofCase_ == 1471; + } /** * int32 oneof_1471 = 1471; * @return The oneof1471. @@ -272012,6 +305320,13 @@ public Builder clearOneof1471() { return this; } + /** + * int32 oneof_1472 = 1472; + * @return Whether the oneof1472 field is set. + */ + public boolean hasOneof1472() { + return hugeOneofCase_ == 1472; + } /** * int32 oneof_1472 = 1472; * @return The oneof1472. @@ -272046,6 +305361,13 @@ public Builder clearOneof1472() { return this; } + /** + * int32 oneof_1473 = 1473; + * @return Whether the oneof1473 field is set. + */ + public boolean hasOneof1473() { + return hugeOneofCase_ == 1473; + } /** * int32 oneof_1473 = 1473; * @return The oneof1473. @@ -272080,6 +305402,13 @@ public Builder clearOneof1473() { return this; } + /** + * int32 oneof_1474 = 1474; + * @return Whether the oneof1474 field is set. + */ + public boolean hasOneof1474() { + return hugeOneofCase_ == 1474; + } /** * int32 oneof_1474 = 1474; * @return The oneof1474. @@ -272114,6 +305443,13 @@ public Builder clearOneof1474() { return this; } + /** + * int32 oneof_1475 = 1475; + * @return Whether the oneof1475 field is set. + */ + public boolean hasOneof1475() { + return hugeOneofCase_ == 1475; + } /** * int32 oneof_1475 = 1475; * @return The oneof1475. @@ -272148,6 +305484,13 @@ public Builder clearOneof1475() { return this; } + /** + * int32 oneof_1476 = 1476; + * @return Whether the oneof1476 field is set. + */ + public boolean hasOneof1476() { + return hugeOneofCase_ == 1476; + } /** * int32 oneof_1476 = 1476; * @return The oneof1476. @@ -272182,6 +305525,13 @@ public Builder clearOneof1476() { return this; } + /** + * int32 oneof_1477 = 1477; + * @return Whether the oneof1477 field is set. + */ + public boolean hasOneof1477() { + return hugeOneofCase_ == 1477; + } /** * int32 oneof_1477 = 1477; * @return The oneof1477. @@ -272216,6 +305566,13 @@ public Builder clearOneof1477() { return this; } + /** + * int32 oneof_1478 = 1478; + * @return Whether the oneof1478 field is set. + */ + public boolean hasOneof1478() { + return hugeOneofCase_ == 1478; + } /** * int32 oneof_1478 = 1478; * @return The oneof1478. @@ -272250,6 +305607,13 @@ public Builder clearOneof1478() { return this; } + /** + * int32 oneof_1479 = 1479; + * @return Whether the oneof1479 field is set. + */ + public boolean hasOneof1479() { + return hugeOneofCase_ == 1479; + } /** * int32 oneof_1479 = 1479; * @return The oneof1479. @@ -272284,6 +305648,13 @@ public Builder clearOneof1479() { return this; } + /** + * int32 oneof_1480 = 1480; + * @return Whether the oneof1480 field is set. + */ + public boolean hasOneof1480() { + return hugeOneofCase_ == 1480; + } /** * int32 oneof_1480 = 1480; * @return The oneof1480. @@ -272318,6 +305689,13 @@ public Builder clearOneof1480() { return this; } + /** + * int32 oneof_1481 = 1481; + * @return Whether the oneof1481 field is set. + */ + public boolean hasOneof1481() { + return hugeOneofCase_ == 1481; + } /** * int32 oneof_1481 = 1481; * @return The oneof1481. @@ -272352,6 +305730,13 @@ public Builder clearOneof1481() { return this; } + /** + * int32 oneof_1482 = 1482; + * @return Whether the oneof1482 field is set. + */ + public boolean hasOneof1482() { + return hugeOneofCase_ == 1482; + } /** * int32 oneof_1482 = 1482; * @return The oneof1482. @@ -272386,6 +305771,13 @@ public Builder clearOneof1482() { return this; } + /** + * int32 oneof_1483 = 1483; + * @return Whether the oneof1483 field is set. + */ + public boolean hasOneof1483() { + return hugeOneofCase_ == 1483; + } /** * int32 oneof_1483 = 1483; * @return The oneof1483. @@ -272420,6 +305812,13 @@ public Builder clearOneof1483() { return this; } + /** + * int32 oneof_1484 = 1484; + * @return Whether the oneof1484 field is set. + */ + public boolean hasOneof1484() { + return hugeOneofCase_ == 1484; + } /** * int32 oneof_1484 = 1484; * @return The oneof1484. @@ -272454,6 +305853,13 @@ public Builder clearOneof1484() { return this; } + /** + * int32 oneof_1485 = 1485; + * @return Whether the oneof1485 field is set. + */ + public boolean hasOneof1485() { + return hugeOneofCase_ == 1485; + } /** * int32 oneof_1485 = 1485; * @return The oneof1485. @@ -272488,6 +305894,13 @@ public Builder clearOneof1485() { return this; } + /** + * int32 oneof_1486 = 1486; + * @return Whether the oneof1486 field is set. + */ + public boolean hasOneof1486() { + return hugeOneofCase_ == 1486; + } /** * int32 oneof_1486 = 1486; * @return The oneof1486. @@ -272522,6 +305935,13 @@ public Builder clearOneof1486() { return this; } + /** + * int32 oneof_1487 = 1487; + * @return Whether the oneof1487 field is set. + */ + public boolean hasOneof1487() { + return hugeOneofCase_ == 1487; + } /** * int32 oneof_1487 = 1487; * @return The oneof1487. @@ -272556,6 +305976,13 @@ public Builder clearOneof1487() { return this; } + /** + * int32 oneof_1488 = 1488; + * @return Whether the oneof1488 field is set. + */ + public boolean hasOneof1488() { + return hugeOneofCase_ == 1488; + } /** * int32 oneof_1488 = 1488; * @return The oneof1488. @@ -272590,6 +306017,13 @@ public Builder clearOneof1488() { return this; } + /** + * int32 oneof_1489 = 1489; + * @return Whether the oneof1489 field is set. + */ + public boolean hasOneof1489() { + return hugeOneofCase_ == 1489; + } /** * int32 oneof_1489 = 1489; * @return The oneof1489. @@ -272624,6 +306058,13 @@ public Builder clearOneof1489() { return this; } + /** + * int32 oneof_1490 = 1490; + * @return Whether the oneof1490 field is set. + */ + public boolean hasOneof1490() { + return hugeOneofCase_ == 1490; + } /** * int32 oneof_1490 = 1490; * @return The oneof1490. @@ -272658,6 +306099,13 @@ public Builder clearOneof1490() { return this; } + /** + * int32 oneof_1491 = 1491; + * @return Whether the oneof1491 field is set. + */ + public boolean hasOneof1491() { + return hugeOneofCase_ == 1491; + } /** * int32 oneof_1491 = 1491; * @return The oneof1491. @@ -272692,6 +306140,13 @@ public Builder clearOneof1491() { return this; } + /** + * int32 oneof_1492 = 1492; + * @return Whether the oneof1492 field is set. + */ + public boolean hasOneof1492() { + return hugeOneofCase_ == 1492; + } /** * int32 oneof_1492 = 1492; * @return The oneof1492. @@ -272726,6 +306181,13 @@ public Builder clearOneof1492() { return this; } + /** + * int32 oneof_1493 = 1493; + * @return Whether the oneof1493 field is set. + */ + public boolean hasOneof1493() { + return hugeOneofCase_ == 1493; + } /** * int32 oneof_1493 = 1493; * @return The oneof1493. @@ -272760,6 +306222,13 @@ public Builder clearOneof1493() { return this; } + /** + * int32 oneof_1494 = 1494; + * @return Whether the oneof1494 field is set. + */ + public boolean hasOneof1494() { + return hugeOneofCase_ == 1494; + } /** * int32 oneof_1494 = 1494; * @return The oneof1494. @@ -272794,6 +306263,13 @@ public Builder clearOneof1494() { return this; } + /** + * int32 oneof_1495 = 1495; + * @return Whether the oneof1495 field is set. + */ + public boolean hasOneof1495() { + return hugeOneofCase_ == 1495; + } /** * int32 oneof_1495 = 1495; * @return The oneof1495. @@ -272828,6 +306304,13 @@ public Builder clearOneof1495() { return this; } + /** + * int32 oneof_1496 = 1496; + * @return Whether the oneof1496 field is set. + */ + public boolean hasOneof1496() { + return hugeOneofCase_ == 1496; + } /** * int32 oneof_1496 = 1496; * @return The oneof1496. @@ -272862,6 +306345,13 @@ public Builder clearOneof1496() { return this; } + /** + * int32 oneof_1497 = 1497; + * @return Whether the oneof1497 field is set. + */ + public boolean hasOneof1497() { + return hugeOneofCase_ == 1497; + } /** * int32 oneof_1497 = 1497; * @return The oneof1497. @@ -272896,6 +306386,13 @@ public Builder clearOneof1497() { return this; } + /** + * int32 oneof_1498 = 1498; + * @return Whether the oneof1498 field is set. + */ + public boolean hasOneof1498() { + return hugeOneofCase_ == 1498; + } /** * int32 oneof_1498 = 1498; * @return The oneof1498. @@ -272930,6 +306427,13 @@ public Builder clearOneof1498() { return this; } + /** + * int32 oneof_1499 = 1499; + * @return Whether the oneof1499 field is set. + */ + public boolean hasOneof1499() { + return hugeOneofCase_ == 1499; + } /** * int32 oneof_1499 = 1499; * @return The oneof1499. @@ -272964,6 +306468,13 @@ public Builder clearOneof1499() { return this; } + /** + * int32 oneof_1500 = 1500; + * @return Whether the oneof1500 field is set. + */ + public boolean hasOneof1500() { + return hugeOneofCase_ == 1500; + } /** * int32 oneof_1500 = 1500; * @return The oneof1500. @@ -272998,6 +306509,13 @@ public Builder clearOneof1500() { return this; } + /** + * int32 oneof_1501 = 1501; + * @return Whether the oneof1501 field is set. + */ + public boolean hasOneof1501() { + return hugeOneofCase_ == 1501; + } /** * int32 oneof_1501 = 1501; * @return The oneof1501. @@ -273032,6 +306550,13 @@ public Builder clearOneof1501() { return this; } + /** + * int32 oneof_1502 = 1502; + * @return Whether the oneof1502 field is set. + */ + public boolean hasOneof1502() { + return hugeOneofCase_ == 1502; + } /** * int32 oneof_1502 = 1502; * @return The oneof1502. @@ -273066,6 +306591,13 @@ public Builder clearOneof1502() { return this; } + /** + * int32 oneof_1503 = 1503; + * @return Whether the oneof1503 field is set. + */ + public boolean hasOneof1503() { + return hugeOneofCase_ == 1503; + } /** * int32 oneof_1503 = 1503; * @return The oneof1503. @@ -273100,6 +306632,13 @@ public Builder clearOneof1503() { return this; } + /** + * int32 oneof_1504 = 1504; + * @return Whether the oneof1504 field is set. + */ + public boolean hasOneof1504() { + return hugeOneofCase_ == 1504; + } /** * int32 oneof_1504 = 1504; * @return The oneof1504. @@ -273134,6 +306673,13 @@ public Builder clearOneof1504() { return this; } + /** + * int32 oneof_1505 = 1505; + * @return Whether the oneof1505 field is set. + */ + public boolean hasOneof1505() { + return hugeOneofCase_ == 1505; + } /** * int32 oneof_1505 = 1505; * @return The oneof1505. @@ -273168,6 +306714,13 @@ public Builder clearOneof1505() { return this; } + /** + * int32 oneof_1506 = 1506; + * @return Whether the oneof1506 field is set. + */ + public boolean hasOneof1506() { + return hugeOneofCase_ == 1506; + } /** * int32 oneof_1506 = 1506; * @return The oneof1506. @@ -273202,6 +306755,13 @@ public Builder clearOneof1506() { return this; } + /** + * int32 oneof_1507 = 1507; + * @return Whether the oneof1507 field is set. + */ + public boolean hasOneof1507() { + return hugeOneofCase_ == 1507; + } /** * int32 oneof_1507 = 1507; * @return The oneof1507. @@ -273236,6 +306796,13 @@ public Builder clearOneof1507() { return this; } + /** + * int32 oneof_1508 = 1508; + * @return Whether the oneof1508 field is set. + */ + public boolean hasOneof1508() { + return hugeOneofCase_ == 1508; + } /** * int32 oneof_1508 = 1508; * @return The oneof1508. @@ -273270,6 +306837,13 @@ public Builder clearOneof1508() { return this; } + /** + * int32 oneof_1509 = 1509; + * @return Whether the oneof1509 field is set. + */ + public boolean hasOneof1509() { + return hugeOneofCase_ == 1509; + } /** * int32 oneof_1509 = 1509; * @return The oneof1509. @@ -273304,6 +306878,13 @@ public Builder clearOneof1509() { return this; } + /** + * int32 oneof_1510 = 1510; + * @return Whether the oneof1510 field is set. + */ + public boolean hasOneof1510() { + return hugeOneofCase_ == 1510; + } /** * int32 oneof_1510 = 1510; * @return The oneof1510. @@ -273338,6 +306919,13 @@ public Builder clearOneof1510() { return this; } + /** + * int32 oneof_1511 = 1511; + * @return Whether the oneof1511 field is set. + */ + public boolean hasOneof1511() { + return hugeOneofCase_ == 1511; + } /** * int32 oneof_1511 = 1511; * @return The oneof1511. @@ -273372,6 +306960,13 @@ public Builder clearOneof1511() { return this; } + /** + * int32 oneof_1512 = 1512; + * @return Whether the oneof1512 field is set. + */ + public boolean hasOneof1512() { + return hugeOneofCase_ == 1512; + } /** * int32 oneof_1512 = 1512; * @return The oneof1512. @@ -273406,6 +307001,13 @@ public Builder clearOneof1512() { return this; } + /** + * int32 oneof_1513 = 1513; + * @return Whether the oneof1513 field is set. + */ + public boolean hasOneof1513() { + return hugeOneofCase_ == 1513; + } /** * int32 oneof_1513 = 1513; * @return The oneof1513. @@ -273440,6 +307042,13 @@ public Builder clearOneof1513() { return this; } + /** + * int32 oneof_1514 = 1514; + * @return Whether the oneof1514 field is set. + */ + public boolean hasOneof1514() { + return hugeOneofCase_ == 1514; + } /** * int32 oneof_1514 = 1514; * @return The oneof1514. @@ -273474,6 +307083,13 @@ public Builder clearOneof1514() { return this; } + /** + * int32 oneof_1515 = 1515; + * @return Whether the oneof1515 field is set. + */ + public boolean hasOneof1515() { + return hugeOneofCase_ == 1515; + } /** * int32 oneof_1515 = 1515; * @return The oneof1515. @@ -273508,6 +307124,13 @@ public Builder clearOneof1515() { return this; } + /** + * int32 oneof_1516 = 1516; + * @return Whether the oneof1516 field is set. + */ + public boolean hasOneof1516() { + return hugeOneofCase_ == 1516; + } /** * int32 oneof_1516 = 1516; * @return The oneof1516. @@ -273542,6 +307165,13 @@ public Builder clearOneof1516() { return this; } + /** + * int32 oneof_1517 = 1517; + * @return Whether the oneof1517 field is set. + */ + public boolean hasOneof1517() { + return hugeOneofCase_ == 1517; + } /** * int32 oneof_1517 = 1517; * @return The oneof1517. @@ -273576,6 +307206,13 @@ public Builder clearOneof1517() { return this; } + /** + * int32 oneof_1518 = 1518; + * @return Whether the oneof1518 field is set. + */ + public boolean hasOneof1518() { + return hugeOneofCase_ == 1518; + } /** * int32 oneof_1518 = 1518; * @return The oneof1518. @@ -273610,6 +307247,13 @@ public Builder clearOneof1518() { return this; } + /** + * int32 oneof_1519 = 1519; + * @return Whether the oneof1519 field is set. + */ + public boolean hasOneof1519() { + return hugeOneofCase_ == 1519; + } /** * int32 oneof_1519 = 1519; * @return The oneof1519. @@ -273644,6 +307288,13 @@ public Builder clearOneof1519() { return this; } + /** + * int32 oneof_1520 = 1520; + * @return Whether the oneof1520 field is set. + */ + public boolean hasOneof1520() { + return hugeOneofCase_ == 1520; + } /** * int32 oneof_1520 = 1520; * @return The oneof1520. @@ -273678,6 +307329,13 @@ public Builder clearOneof1520() { return this; } + /** + * int32 oneof_1521 = 1521; + * @return Whether the oneof1521 field is set. + */ + public boolean hasOneof1521() { + return hugeOneofCase_ == 1521; + } /** * int32 oneof_1521 = 1521; * @return The oneof1521. @@ -273712,6 +307370,13 @@ public Builder clearOneof1521() { return this; } + /** + * int32 oneof_1522 = 1522; + * @return Whether the oneof1522 field is set. + */ + public boolean hasOneof1522() { + return hugeOneofCase_ == 1522; + } /** * int32 oneof_1522 = 1522; * @return The oneof1522. @@ -273746,6 +307411,13 @@ public Builder clearOneof1522() { return this; } + /** + * int32 oneof_1523 = 1523; + * @return Whether the oneof1523 field is set. + */ + public boolean hasOneof1523() { + return hugeOneofCase_ == 1523; + } /** * int32 oneof_1523 = 1523; * @return The oneof1523. @@ -273780,6 +307452,13 @@ public Builder clearOneof1523() { return this; } + /** + * int32 oneof_1524 = 1524; + * @return Whether the oneof1524 field is set. + */ + public boolean hasOneof1524() { + return hugeOneofCase_ == 1524; + } /** * int32 oneof_1524 = 1524; * @return The oneof1524. @@ -273814,6 +307493,13 @@ public Builder clearOneof1524() { return this; } + /** + * int32 oneof_1525 = 1525; + * @return Whether the oneof1525 field is set. + */ + public boolean hasOneof1525() { + return hugeOneofCase_ == 1525; + } /** * int32 oneof_1525 = 1525; * @return The oneof1525. @@ -273848,6 +307534,13 @@ public Builder clearOneof1525() { return this; } + /** + * int32 oneof_1526 = 1526; + * @return Whether the oneof1526 field is set. + */ + public boolean hasOneof1526() { + return hugeOneofCase_ == 1526; + } /** * int32 oneof_1526 = 1526; * @return The oneof1526. @@ -273882,6 +307575,13 @@ public Builder clearOneof1526() { return this; } + /** + * int32 oneof_1527 = 1527; + * @return Whether the oneof1527 field is set. + */ + public boolean hasOneof1527() { + return hugeOneofCase_ == 1527; + } /** * int32 oneof_1527 = 1527; * @return The oneof1527. @@ -273916,6 +307616,13 @@ public Builder clearOneof1527() { return this; } + /** + * int32 oneof_1528 = 1528; + * @return Whether the oneof1528 field is set. + */ + public boolean hasOneof1528() { + return hugeOneofCase_ == 1528; + } /** * int32 oneof_1528 = 1528; * @return The oneof1528. @@ -273950,6 +307657,13 @@ public Builder clearOneof1528() { return this; } + /** + * int32 oneof_1529 = 1529; + * @return Whether the oneof1529 field is set. + */ + public boolean hasOneof1529() { + return hugeOneofCase_ == 1529; + } /** * int32 oneof_1529 = 1529; * @return The oneof1529. @@ -273984,6 +307698,13 @@ public Builder clearOneof1529() { return this; } + /** + * int32 oneof_1530 = 1530; + * @return Whether the oneof1530 field is set. + */ + public boolean hasOneof1530() { + return hugeOneofCase_ == 1530; + } /** * int32 oneof_1530 = 1530; * @return The oneof1530. @@ -274018,6 +307739,13 @@ public Builder clearOneof1530() { return this; } + /** + * int32 oneof_1531 = 1531; + * @return Whether the oneof1531 field is set. + */ + public boolean hasOneof1531() { + return hugeOneofCase_ == 1531; + } /** * int32 oneof_1531 = 1531; * @return The oneof1531. @@ -274052,6 +307780,13 @@ public Builder clearOneof1531() { return this; } + /** + * int32 oneof_1532 = 1532; + * @return Whether the oneof1532 field is set. + */ + public boolean hasOneof1532() { + return hugeOneofCase_ == 1532; + } /** * int32 oneof_1532 = 1532; * @return The oneof1532. @@ -274086,6 +307821,13 @@ public Builder clearOneof1532() { return this; } + /** + * int32 oneof_1533 = 1533; + * @return Whether the oneof1533 field is set. + */ + public boolean hasOneof1533() { + return hugeOneofCase_ == 1533; + } /** * int32 oneof_1533 = 1533; * @return The oneof1533. @@ -274120,6 +307862,13 @@ public Builder clearOneof1533() { return this; } + /** + * int32 oneof_1534 = 1534; + * @return Whether the oneof1534 field is set. + */ + public boolean hasOneof1534() { + return hugeOneofCase_ == 1534; + } /** * int32 oneof_1534 = 1534; * @return The oneof1534. @@ -274154,6 +307903,13 @@ public Builder clearOneof1534() { return this; } + /** + * int32 oneof_1535 = 1535; + * @return Whether the oneof1535 field is set. + */ + public boolean hasOneof1535() { + return hugeOneofCase_ == 1535; + } /** * int32 oneof_1535 = 1535; * @return The oneof1535. @@ -274188,6 +307944,13 @@ public Builder clearOneof1535() { return this; } + /** + * int32 oneof_1536 = 1536; + * @return Whether the oneof1536 field is set. + */ + public boolean hasOneof1536() { + return hugeOneofCase_ == 1536; + } /** * int32 oneof_1536 = 1536; * @return The oneof1536. @@ -274222,6 +307985,13 @@ public Builder clearOneof1536() { return this; } + /** + * int32 oneof_1537 = 1537; + * @return Whether the oneof1537 field is set. + */ + public boolean hasOneof1537() { + return hugeOneofCase_ == 1537; + } /** * int32 oneof_1537 = 1537; * @return The oneof1537. @@ -274256,6 +308026,13 @@ public Builder clearOneof1537() { return this; } + /** + * int32 oneof_1538 = 1538; + * @return Whether the oneof1538 field is set. + */ + public boolean hasOneof1538() { + return hugeOneofCase_ == 1538; + } /** * int32 oneof_1538 = 1538; * @return The oneof1538. @@ -274290,6 +308067,13 @@ public Builder clearOneof1538() { return this; } + /** + * int32 oneof_1539 = 1539; + * @return Whether the oneof1539 field is set. + */ + public boolean hasOneof1539() { + return hugeOneofCase_ == 1539; + } /** * int32 oneof_1539 = 1539; * @return The oneof1539. @@ -274324,6 +308108,13 @@ public Builder clearOneof1539() { return this; } + /** + * int32 oneof_1540 = 1540; + * @return Whether the oneof1540 field is set. + */ + public boolean hasOneof1540() { + return hugeOneofCase_ == 1540; + } /** * int32 oneof_1540 = 1540; * @return The oneof1540. @@ -274358,6 +308149,13 @@ public Builder clearOneof1540() { return this; } + /** + * int32 oneof_1541 = 1541; + * @return Whether the oneof1541 field is set. + */ + public boolean hasOneof1541() { + return hugeOneofCase_ == 1541; + } /** * int32 oneof_1541 = 1541; * @return The oneof1541. @@ -274392,6 +308190,13 @@ public Builder clearOneof1541() { return this; } + /** + * int32 oneof_1542 = 1542; + * @return Whether the oneof1542 field is set. + */ + public boolean hasOneof1542() { + return hugeOneofCase_ == 1542; + } /** * int32 oneof_1542 = 1542; * @return The oneof1542. @@ -274426,6 +308231,13 @@ public Builder clearOneof1542() { return this; } + /** + * int32 oneof_1543 = 1543; + * @return Whether the oneof1543 field is set. + */ + public boolean hasOneof1543() { + return hugeOneofCase_ == 1543; + } /** * int32 oneof_1543 = 1543; * @return The oneof1543. @@ -274460,6 +308272,13 @@ public Builder clearOneof1543() { return this; } + /** + * int32 oneof_1544 = 1544; + * @return Whether the oneof1544 field is set. + */ + public boolean hasOneof1544() { + return hugeOneofCase_ == 1544; + } /** * int32 oneof_1544 = 1544; * @return The oneof1544. @@ -274494,6 +308313,13 @@ public Builder clearOneof1544() { return this; } + /** + * int32 oneof_1545 = 1545; + * @return Whether the oneof1545 field is set. + */ + public boolean hasOneof1545() { + return hugeOneofCase_ == 1545; + } /** * int32 oneof_1545 = 1545; * @return The oneof1545. @@ -274528,6 +308354,13 @@ public Builder clearOneof1545() { return this; } + /** + * int32 oneof_1546 = 1546; + * @return Whether the oneof1546 field is set. + */ + public boolean hasOneof1546() { + return hugeOneofCase_ == 1546; + } /** * int32 oneof_1546 = 1546; * @return The oneof1546. @@ -274562,6 +308395,13 @@ public Builder clearOneof1546() { return this; } + /** + * int32 oneof_1547 = 1547; + * @return Whether the oneof1547 field is set. + */ + public boolean hasOneof1547() { + return hugeOneofCase_ == 1547; + } /** * int32 oneof_1547 = 1547; * @return The oneof1547. @@ -274596,6 +308436,13 @@ public Builder clearOneof1547() { return this; } + /** + * int32 oneof_1548 = 1548; + * @return Whether the oneof1548 field is set. + */ + public boolean hasOneof1548() { + return hugeOneofCase_ == 1548; + } /** * int32 oneof_1548 = 1548; * @return The oneof1548. @@ -274630,6 +308477,13 @@ public Builder clearOneof1548() { return this; } + /** + * int32 oneof_1549 = 1549; + * @return Whether the oneof1549 field is set. + */ + public boolean hasOneof1549() { + return hugeOneofCase_ == 1549; + } /** * int32 oneof_1549 = 1549; * @return The oneof1549. @@ -274664,6 +308518,13 @@ public Builder clearOneof1549() { return this; } + /** + * int32 oneof_1550 = 1550; + * @return Whether the oneof1550 field is set. + */ + public boolean hasOneof1550() { + return hugeOneofCase_ == 1550; + } /** * int32 oneof_1550 = 1550; * @return The oneof1550. @@ -274698,6 +308559,13 @@ public Builder clearOneof1550() { return this; } + /** + * int32 oneof_1551 = 1551; + * @return Whether the oneof1551 field is set. + */ + public boolean hasOneof1551() { + return hugeOneofCase_ == 1551; + } /** * int32 oneof_1551 = 1551; * @return The oneof1551. @@ -274732,6 +308600,13 @@ public Builder clearOneof1551() { return this; } + /** + * int32 oneof_1552 = 1552; + * @return Whether the oneof1552 field is set. + */ + public boolean hasOneof1552() { + return hugeOneofCase_ == 1552; + } /** * int32 oneof_1552 = 1552; * @return The oneof1552. @@ -274766,6 +308641,13 @@ public Builder clearOneof1552() { return this; } + /** + * int32 oneof_1553 = 1553; + * @return Whether the oneof1553 field is set. + */ + public boolean hasOneof1553() { + return hugeOneofCase_ == 1553; + } /** * int32 oneof_1553 = 1553; * @return The oneof1553. @@ -274800,6 +308682,13 @@ public Builder clearOneof1553() { return this; } + /** + * int32 oneof_1554 = 1554; + * @return Whether the oneof1554 field is set. + */ + public boolean hasOneof1554() { + return hugeOneofCase_ == 1554; + } /** * int32 oneof_1554 = 1554; * @return The oneof1554. @@ -274834,6 +308723,13 @@ public Builder clearOneof1554() { return this; } + /** + * int32 oneof_1555 = 1555; + * @return Whether the oneof1555 field is set. + */ + public boolean hasOneof1555() { + return hugeOneofCase_ == 1555; + } /** * int32 oneof_1555 = 1555; * @return The oneof1555. @@ -274868,6 +308764,13 @@ public Builder clearOneof1555() { return this; } + /** + * int32 oneof_1556 = 1556; + * @return Whether the oneof1556 field is set. + */ + public boolean hasOneof1556() { + return hugeOneofCase_ == 1556; + } /** * int32 oneof_1556 = 1556; * @return The oneof1556. @@ -274902,6 +308805,13 @@ public Builder clearOneof1556() { return this; } + /** + * int32 oneof_1557 = 1557; + * @return Whether the oneof1557 field is set. + */ + public boolean hasOneof1557() { + return hugeOneofCase_ == 1557; + } /** * int32 oneof_1557 = 1557; * @return The oneof1557. @@ -274936,6 +308846,13 @@ public Builder clearOneof1557() { return this; } + /** + * int32 oneof_1558 = 1558; + * @return Whether the oneof1558 field is set. + */ + public boolean hasOneof1558() { + return hugeOneofCase_ == 1558; + } /** * int32 oneof_1558 = 1558; * @return The oneof1558. @@ -274970,6 +308887,13 @@ public Builder clearOneof1558() { return this; } + /** + * int32 oneof_1559 = 1559; + * @return Whether the oneof1559 field is set. + */ + public boolean hasOneof1559() { + return hugeOneofCase_ == 1559; + } /** * int32 oneof_1559 = 1559; * @return The oneof1559. @@ -275004,6 +308928,13 @@ public Builder clearOneof1559() { return this; } + /** + * int32 oneof_1560 = 1560; + * @return Whether the oneof1560 field is set. + */ + public boolean hasOneof1560() { + return hugeOneofCase_ == 1560; + } /** * int32 oneof_1560 = 1560; * @return The oneof1560. @@ -275038,6 +308969,13 @@ public Builder clearOneof1560() { return this; } + /** + * int32 oneof_1561 = 1561; + * @return Whether the oneof1561 field is set. + */ + public boolean hasOneof1561() { + return hugeOneofCase_ == 1561; + } /** * int32 oneof_1561 = 1561; * @return The oneof1561. @@ -275072,6 +309010,13 @@ public Builder clearOneof1561() { return this; } + /** + * int32 oneof_1562 = 1562; + * @return Whether the oneof1562 field is set. + */ + public boolean hasOneof1562() { + return hugeOneofCase_ == 1562; + } /** * int32 oneof_1562 = 1562; * @return The oneof1562. @@ -275106,6 +309051,13 @@ public Builder clearOneof1562() { return this; } + /** + * int32 oneof_1563 = 1563; + * @return Whether the oneof1563 field is set. + */ + public boolean hasOneof1563() { + return hugeOneofCase_ == 1563; + } /** * int32 oneof_1563 = 1563; * @return The oneof1563. @@ -275140,6 +309092,13 @@ public Builder clearOneof1563() { return this; } + /** + * int32 oneof_1564 = 1564; + * @return Whether the oneof1564 field is set. + */ + public boolean hasOneof1564() { + return hugeOneofCase_ == 1564; + } /** * int32 oneof_1564 = 1564; * @return The oneof1564. @@ -275174,6 +309133,13 @@ public Builder clearOneof1564() { return this; } + /** + * int32 oneof_1565 = 1565; + * @return Whether the oneof1565 field is set. + */ + public boolean hasOneof1565() { + return hugeOneofCase_ == 1565; + } /** * int32 oneof_1565 = 1565; * @return The oneof1565. @@ -275208,6 +309174,13 @@ public Builder clearOneof1565() { return this; } + /** + * int32 oneof_1566 = 1566; + * @return Whether the oneof1566 field is set. + */ + public boolean hasOneof1566() { + return hugeOneofCase_ == 1566; + } /** * int32 oneof_1566 = 1566; * @return The oneof1566. @@ -275242,6 +309215,13 @@ public Builder clearOneof1566() { return this; } + /** + * int32 oneof_1567 = 1567; + * @return Whether the oneof1567 field is set. + */ + public boolean hasOneof1567() { + return hugeOneofCase_ == 1567; + } /** * int32 oneof_1567 = 1567; * @return The oneof1567. @@ -275276,6 +309256,13 @@ public Builder clearOneof1567() { return this; } + /** + * int32 oneof_1568 = 1568; + * @return Whether the oneof1568 field is set. + */ + public boolean hasOneof1568() { + return hugeOneofCase_ == 1568; + } /** * int32 oneof_1568 = 1568; * @return The oneof1568. @@ -275310,6 +309297,13 @@ public Builder clearOneof1568() { return this; } + /** + * int32 oneof_1569 = 1569; + * @return Whether the oneof1569 field is set. + */ + public boolean hasOneof1569() { + return hugeOneofCase_ == 1569; + } /** * int32 oneof_1569 = 1569; * @return The oneof1569. @@ -275344,6 +309338,13 @@ public Builder clearOneof1569() { return this; } + /** + * int32 oneof_1570 = 1570; + * @return Whether the oneof1570 field is set. + */ + public boolean hasOneof1570() { + return hugeOneofCase_ == 1570; + } /** * int32 oneof_1570 = 1570; * @return The oneof1570. @@ -275378,6 +309379,13 @@ public Builder clearOneof1570() { return this; } + /** + * int32 oneof_1571 = 1571; + * @return Whether the oneof1571 field is set. + */ + public boolean hasOneof1571() { + return hugeOneofCase_ == 1571; + } /** * int32 oneof_1571 = 1571; * @return The oneof1571. @@ -275412,6 +309420,13 @@ public Builder clearOneof1571() { return this; } + /** + * int32 oneof_1572 = 1572; + * @return Whether the oneof1572 field is set. + */ + public boolean hasOneof1572() { + return hugeOneofCase_ == 1572; + } /** * int32 oneof_1572 = 1572; * @return The oneof1572. @@ -275446,6 +309461,13 @@ public Builder clearOneof1572() { return this; } + /** + * int32 oneof_1573 = 1573; + * @return Whether the oneof1573 field is set. + */ + public boolean hasOneof1573() { + return hugeOneofCase_ == 1573; + } /** * int32 oneof_1573 = 1573; * @return The oneof1573. @@ -275480,6 +309502,13 @@ public Builder clearOneof1573() { return this; } + /** + * int32 oneof_1574 = 1574; + * @return Whether the oneof1574 field is set. + */ + public boolean hasOneof1574() { + return hugeOneofCase_ == 1574; + } /** * int32 oneof_1574 = 1574; * @return The oneof1574. @@ -275514,6 +309543,13 @@ public Builder clearOneof1574() { return this; } + /** + * int32 oneof_1575 = 1575; + * @return Whether the oneof1575 field is set. + */ + public boolean hasOneof1575() { + return hugeOneofCase_ == 1575; + } /** * int32 oneof_1575 = 1575; * @return The oneof1575. @@ -275548,6 +309584,13 @@ public Builder clearOneof1575() { return this; } + /** + * int32 oneof_1576 = 1576; + * @return Whether the oneof1576 field is set. + */ + public boolean hasOneof1576() { + return hugeOneofCase_ == 1576; + } /** * int32 oneof_1576 = 1576; * @return The oneof1576. @@ -275582,6 +309625,13 @@ public Builder clearOneof1576() { return this; } + /** + * int32 oneof_1577 = 1577; + * @return Whether the oneof1577 field is set. + */ + public boolean hasOneof1577() { + return hugeOneofCase_ == 1577; + } /** * int32 oneof_1577 = 1577; * @return The oneof1577. @@ -275616,6 +309666,13 @@ public Builder clearOneof1577() { return this; } + /** + * int32 oneof_1578 = 1578; + * @return Whether the oneof1578 field is set. + */ + public boolean hasOneof1578() { + return hugeOneofCase_ == 1578; + } /** * int32 oneof_1578 = 1578; * @return The oneof1578. @@ -275650,6 +309707,13 @@ public Builder clearOneof1578() { return this; } + /** + * int32 oneof_1579 = 1579; + * @return Whether the oneof1579 field is set. + */ + public boolean hasOneof1579() { + return hugeOneofCase_ == 1579; + } /** * int32 oneof_1579 = 1579; * @return The oneof1579. @@ -275684,6 +309748,13 @@ public Builder clearOneof1579() { return this; } + /** + * int32 oneof_1580 = 1580; + * @return Whether the oneof1580 field is set. + */ + public boolean hasOneof1580() { + return hugeOneofCase_ == 1580; + } /** * int32 oneof_1580 = 1580; * @return The oneof1580. @@ -275718,6 +309789,13 @@ public Builder clearOneof1580() { return this; } + /** + * int32 oneof_1581 = 1581; + * @return Whether the oneof1581 field is set. + */ + public boolean hasOneof1581() { + return hugeOneofCase_ == 1581; + } /** * int32 oneof_1581 = 1581; * @return The oneof1581. @@ -275752,6 +309830,13 @@ public Builder clearOneof1581() { return this; } + /** + * int32 oneof_1582 = 1582; + * @return Whether the oneof1582 field is set. + */ + public boolean hasOneof1582() { + return hugeOneofCase_ == 1582; + } /** * int32 oneof_1582 = 1582; * @return The oneof1582. @@ -275786,6 +309871,13 @@ public Builder clearOneof1582() { return this; } + /** + * int32 oneof_1583 = 1583; + * @return Whether the oneof1583 field is set. + */ + public boolean hasOneof1583() { + return hugeOneofCase_ == 1583; + } /** * int32 oneof_1583 = 1583; * @return The oneof1583. @@ -275820,6 +309912,13 @@ public Builder clearOneof1583() { return this; } + /** + * int32 oneof_1584 = 1584; + * @return Whether the oneof1584 field is set. + */ + public boolean hasOneof1584() { + return hugeOneofCase_ == 1584; + } /** * int32 oneof_1584 = 1584; * @return The oneof1584. @@ -275854,6 +309953,13 @@ public Builder clearOneof1584() { return this; } + /** + * int32 oneof_1585 = 1585; + * @return Whether the oneof1585 field is set. + */ + public boolean hasOneof1585() { + return hugeOneofCase_ == 1585; + } /** * int32 oneof_1585 = 1585; * @return The oneof1585. @@ -275888,6 +309994,13 @@ public Builder clearOneof1585() { return this; } + /** + * int32 oneof_1586 = 1586; + * @return Whether the oneof1586 field is set. + */ + public boolean hasOneof1586() { + return hugeOneofCase_ == 1586; + } /** * int32 oneof_1586 = 1586; * @return The oneof1586. @@ -275922,6 +310035,13 @@ public Builder clearOneof1586() { return this; } + /** + * int32 oneof_1587 = 1587; + * @return Whether the oneof1587 field is set. + */ + public boolean hasOneof1587() { + return hugeOneofCase_ == 1587; + } /** * int32 oneof_1587 = 1587; * @return The oneof1587. @@ -275956,6 +310076,13 @@ public Builder clearOneof1587() { return this; } + /** + * int32 oneof_1588 = 1588; + * @return Whether the oneof1588 field is set. + */ + public boolean hasOneof1588() { + return hugeOneofCase_ == 1588; + } /** * int32 oneof_1588 = 1588; * @return The oneof1588. @@ -275990,6 +310117,13 @@ public Builder clearOneof1588() { return this; } + /** + * int32 oneof_1589 = 1589; + * @return Whether the oneof1589 field is set. + */ + public boolean hasOneof1589() { + return hugeOneofCase_ == 1589; + } /** * int32 oneof_1589 = 1589; * @return The oneof1589. @@ -276024,6 +310158,13 @@ public Builder clearOneof1589() { return this; } + /** + * int32 oneof_1590 = 1590; + * @return Whether the oneof1590 field is set. + */ + public boolean hasOneof1590() { + return hugeOneofCase_ == 1590; + } /** * int32 oneof_1590 = 1590; * @return The oneof1590. @@ -276058,6 +310199,13 @@ public Builder clearOneof1590() { return this; } + /** + * int32 oneof_1591 = 1591; + * @return Whether the oneof1591 field is set. + */ + public boolean hasOneof1591() { + return hugeOneofCase_ == 1591; + } /** * int32 oneof_1591 = 1591; * @return The oneof1591. @@ -276092,6 +310240,13 @@ public Builder clearOneof1591() { return this; } + /** + * int32 oneof_1592 = 1592; + * @return Whether the oneof1592 field is set. + */ + public boolean hasOneof1592() { + return hugeOneofCase_ == 1592; + } /** * int32 oneof_1592 = 1592; * @return The oneof1592. @@ -276126,6 +310281,13 @@ public Builder clearOneof1592() { return this; } + /** + * int32 oneof_1593 = 1593; + * @return Whether the oneof1593 field is set. + */ + public boolean hasOneof1593() { + return hugeOneofCase_ == 1593; + } /** * int32 oneof_1593 = 1593; * @return The oneof1593. @@ -276160,6 +310322,13 @@ public Builder clearOneof1593() { return this; } + /** + * int32 oneof_1594 = 1594; + * @return Whether the oneof1594 field is set. + */ + public boolean hasOneof1594() { + return hugeOneofCase_ == 1594; + } /** * int32 oneof_1594 = 1594; * @return The oneof1594. @@ -276194,6 +310363,13 @@ public Builder clearOneof1594() { return this; } + /** + * int32 oneof_1595 = 1595; + * @return Whether the oneof1595 field is set. + */ + public boolean hasOneof1595() { + return hugeOneofCase_ == 1595; + } /** * int32 oneof_1595 = 1595; * @return The oneof1595. @@ -276228,6 +310404,13 @@ public Builder clearOneof1595() { return this; } + /** + * int32 oneof_1596 = 1596; + * @return Whether the oneof1596 field is set. + */ + public boolean hasOneof1596() { + return hugeOneofCase_ == 1596; + } /** * int32 oneof_1596 = 1596; * @return The oneof1596. @@ -276262,6 +310445,13 @@ public Builder clearOneof1596() { return this; } + /** + * int32 oneof_1597 = 1597; + * @return Whether the oneof1597 field is set. + */ + public boolean hasOneof1597() { + return hugeOneofCase_ == 1597; + } /** * int32 oneof_1597 = 1597; * @return The oneof1597. @@ -276296,6 +310486,13 @@ public Builder clearOneof1597() { return this; } + /** + * int32 oneof_1598 = 1598; + * @return Whether the oneof1598 field is set. + */ + public boolean hasOneof1598() { + return hugeOneofCase_ == 1598; + } /** * int32 oneof_1598 = 1598; * @return The oneof1598. @@ -276330,6 +310527,13 @@ public Builder clearOneof1598() { return this; } + /** + * int32 oneof_1599 = 1599; + * @return Whether the oneof1599 field is set. + */ + public boolean hasOneof1599() { + return hugeOneofCase_ == 1599; + } /** * int32 oneof_1599 = 1599; * @return The oneof1599. @@ -276364,6 +310568,13 @@ public Builder clearOneof1599() { return this; } + /** + * int32 oneof_1600 = 1600; + * @return Whether the oneof1600 field is set. + */ + public boolean hasOneof1600() { + return hugeOneofCase_ == 1600; + } /** * int32 oneof_1600 = 1600; * @return The oneof1600. @@ -276398,6 +310609,13 @@ public Builder clearOneof1600() { return this; } + /** + * int32 oneof_1601 = 1601; + * @return Whether the oneof1601 field is set. + */ + public boolean hasOneof1601() { + return hugeOneofCase_ == 1601; + } /** * int32 oneof_1601 = 1601; * @return The oneof1601. @@ -276432,6 +310650,13 @@ public Builder clearOneof1601() { return this; } + /** + * int32 oneof_1602 = 1602; + * @return Whether the oneof1602 field is set. + */ + public boolean hasOneof1602() { + return hugeOneofCase_ == 1602; + } /** * int32 oneof_1602 = 1602; * @return The oneof1602. @@ -276466,6 +310691,13 @@ public Builder clearOneof1602() { return this; } + /** + * int32 oneof_1603 = 1603; + * @return Whether the oneof1603 field is set. + */ + public boolean hasOneof1603() { + return hugeOneofCase_ == 1603; + } /** * int32 oneof_1603 = 1603; * @return The oneof1603. @@ -276500,6 +310732,13 @@ public Builder clearOneof1603() { return this; } + /** + * int32 oneof_1604 = 1604; + * @return Whether the oneof1604 field is set. + */ + public boolean hasOneof1604() { + return hugeOneofCase_ == 1604; + } /** * int32 oneof_1604 = 1604; * @return The oneof1604. @@ -276534,6 +310773,13 @@ public Builder clearOneof1604() { return this; } + /** + * int32 oneof_1605 = 1605; + * @return Whether the oneof1605 field is set. + */ + public boolean hasOneof1605() { + return hugeOneofCase_ == 1605; + } /** * int32 oneof_1605 = 1605; * @return The oneof1605. @@ -276568,6 +310814,13 @@ public Builder clearOneof1605() { return this; } + /** + * int32 oneof_1606 = 1606; + * @return Whether the oneof1606 field is set. + */ + public boolean hasOneof1606() { + return hugeOneofCase_ == 1606; + } /** * int32 oneof_1606 = 1606; * @return The oneof1606. @@ -276602,6 +310855,13 @@ public Builder clearOneof1606() { return this; } + /** + * int32 oneof_1607 = 1607; + * @return Whether the oneof1607 field is set. + */ + public boolean hasOneof1607() { + return hugeOneofCase_ == 1607; + } /** * int32 oneof_1607 = 1607; * @return The oneof1607. @@ -276636,6 +310896,13 @@ public Builder clearOneof1607() { return this; } + /** + * int32 oneof_1608 = 1608; + * @return Whether the oneof1608 field is set. + */ + public boolean hasOneof1608() { + return hugeOneofCase_ == 1608; + } /** * int32 oneof_1608 = 1608; * @return The oneof1608. @@ -276670,6 +310937,13 @@ public Builder clearOneof1608() { return this; } + /** + * int32 oneof_1609 = 1609; + * @return Whether the oneof1609 field is set. + */ + public boolean hasOneof1609() { + return hugeOneofCase_ == 1609; + } /** * int32 oneof_1609 = 1609; * @return The oneof1609. @@ -276704,6 +310978,13 @@ public Builder clearOneof1609() { return this; } + /** + * int32 oneof_1610 = 1610; + * @return Whether the oneof1610 field is set. + */ + public boolean hasOneof1610() { + return hugeOneofCase_ == 1610; + } /** * int32 oneof_1610 = 1610; * @return The oneof1610. @@ -276738,6 +311019,13 @@ public Builder clearOneof1610() { return this; } + /** + * int32 oneof_1611 = 1611; + * @return Whether the oneof1611 field is set. + */ + public boolean hasOneof1611() { + return hugeOneofCase_ == 1611; + } /** * int32 oneof_1611 = 1611; * @return The oneof1611. @@ -276772,6 +311060,13 @@ public Builder clearOneof1611() { return this; } + /** + * int32 oneof_1612 = 1612; + * @return Whether the oneof1612 field is set. + */ + public boolean hasOneof1612() { + return hugeOneofCase_ == 1612; + } /** * int32 oneof_1612 = 1612; * @return The oneof1612. @@ -276806,6 +311101,13 @@ public Builder clearOneof1612() { return this; } + /** + * int32 oneof_1613 = 1613; + * @return Whether the oneof1613 field is set. + */ + public boolean hasOneof1613() { + return hugeOneofCase_ == 1613; + } /** * int32 oneof_1613 = 1613; * @return The oneof1613. @@ -276840,6 +311142,13 @@ public Builder clearOneof1613() { return this; } + /** + * int32 oneof_1614 = 1614; + * @return Whether the oneof1614 field is set. + */ + public boolean hasOneof1614() { + return hugeOneofCase_ == 1614; + } /** * int32 oneof_1614 = 1614; * @return The oneof1614. @@ -276874,6 +311183,13 @@ public Builder clearOneof1614() { return this; } + /** + * int32 oneof_1615 = 1615; + * @return Whether the oneof1615 field is set. + */ + public boolean hasOneof1615() { + return hugeOneofCase_ == 1615; + } /** * int32 oneof_1615 = 1615; * @return The oneof1615. @@ -276908,6 +311224,13 @@ public Builder clearOneof1615() { return this; } + /** + * int32 oneof_1616 = 1616; + * @return Whether the oneof1616 field is set. + */ + public boolean hasOneof1616() { + return hugeOneofCase_ == 1616; + } /** * int32 oneof_1616 = 1616; * @return The oneof1616. @@ -276942,6 +311265,13 @@ public Builder clearOneof1616() { return this; } + /** + * int32 oneof_1617 = 1617; + * @return Whether the oneof1617 field is set. + */ + public boolean hasOneof1617() { + return hugeOneofCase_ == 1617; + } /** * int32 oneof_1617 = 1617; * @return The oneof1617. @@ -276976,6 +311306,13 @@ public Builder clearOneof1617() { return this; } + /** + * int32 oneof_1618 = 1618; + * @return Whether the oneof1618 field is set. + */ + public boolean hasOneof1618() { + return hugeOneofCase_ == 1618; + } /** * int32 oneof_1618 = 1618; * @return The oneof1618. @@ -277010,6 +311347,13 @@ public Builder clearOneof1618() { return this; } + /** + * int32 oneof_1619 = 1619; + * @return Whether the oneof1619 field is set. + */ + public boolean hasOneof1619() { + return hugeOneofCase_ == 1619; + } /** * int32 oneof_1619 = 1619; * @return The oneof1619. @@ -277044,6 +311388,13 @@ public Builder clearOneof1619() { return this; } + /** + * int32 oneof_1620 = 1620; + * @return Whether the oneof1620 field is set. + */ + public boolean hasOneof1620() { + return hugeOneofCase_ == 1620; + } /** * int32 oneof_1620 = 1620; * @return The oneof1620. @@ -277078,6 +311429,13 @@ public Builder clearOneof1620() { return this; } + /** + * int32 oneof_1621 = 1621; + * @return Whether the oneof1621 field is set. + */ + public boolean hasOneof1621() { + return hugeOneofCase_ == 1621; + } /** * int32 oneof_1621 = 1621; * @return The oneof1621. @@ -277112,6 +311470,13 @@ public Builder clearOneof1621() { return this; } + /** + * int32 oneof_1622 = 1622; + * @return Whether the oneof1622 field is set. + */ + public boolean hasOneof1622() { + return hugeOneofCase_ == 1622; + } /** * int32 oneof_1622 = 1622; * @return The oneof1622. @@ -277146,6 +311511,13 @@ public Builder clearOneof1622() { return this; } + /** + * int32 oneof_1623 = 1623; + * @return Whether the oneof1623 field is set. + */ + public boolean hasOneof1623() { + return hugeOneofCase_ == 1623; + } /** * int32 oneof_1623 = 1623; * @return The oneof1623. @@ -277180,6 +311552,13 @@ public Builder clearOneof1623() { return this; } + /** + * int32 oneof_1624 = 1624; + * @return Whether the oneof1624 field is set. + */ + public boolean hasOneof1624() { + return hugeOneofCase_ == 1624; + } /** * int32 oneof_1624 = 1624; * @return The oneof1624. @@ -277214,6 +311593,13 @@ public Builder clearOneof1624() { return this; } + /** + * int32 oneof_1625 = 1625; + * @return Whether the oneof1625 field is set. + */ + public boolean hasOneof1625() { + return hugeOneofCase_ == 1625; + } /** * int32 oneof_1625 = 1625; * @return The oneof1625. @@ -277248,6 +311634,13 @@ public Builder clearOneof1625() { return this; } + /** + * int32 oneof_1626 = 1626; + * @return Whether the oneof1626 field is set. + */ + public boolean hasOneof1626() { + return hugeOneofCase_ == 1626; + } /** * int32 oneof_1626 = 1626; * @return The oneof1626. @@ -277282,6 +311675,13 @@ public Builder clearOneof1626() { return this; } + /** + * int32 oneof_1627 = 1627; + * @return Whether the oneof1627 field is set. + */ + public boolean hasOneof1627() { + return hugeOneofCase_ == 1627; + } /** * int32 oneof_1627 = 1627; * @return The oneof1627. @@ -277316,6 +311716,13 @@ public Builder clearOneof1627() { return this; } + /** + * int32 oneof_1628 = 1628; + * @return Whether the oneof1628 field is set. + */ + public boolean hasOneof1628() { + return hugeOneofCase_ == 1628; + } /** * int32 oneof_1628 = 1628; * @return The oneof1628. @@ -277350,6 +311757,13 @@ public Builder clearOneof1628() { return this; } + /** + * int32 oneof_1629 = 1629; + * @return Whether the oneof1629 field is set. + */ + public boolean hasOneof1629() { + return hugeOneofCase_ == 1629; + } /** * int32 oneof_1629 = 1629; * @return The oneof1629. @@ -277384,6 +311798,13 @@ public Builder clearOneof1629() { return this; } + /** + * int32 oneof_1630 = 1630; + * @return Whether the oneof1630 field is set. + */ + public boolean hasOneof1630() { + return hugeOneofCase_ == 1630; + } /** * int32 oneof_1630 = 1630; * @return The oneof1630. @@ -277418,6 +311839,13 @@ public Builder clearOneof1630() { return this; } + /** + * int32 oneof_1631 = 1631; + * @return Whether the oneof1631 field is set. + */ + public boolean hasOneof1631() { + return hugeOneofCase_ == 1631; + } /** * int32 oneof_1631 = 1631; * @return The oneof1631. @@ -277452,6 +311880,13 @@ public Builder clearOneof1631() { return this; } + /** + * int32 oneof_1632 = 1632; + * @return Whether the oneof1632 field is set. + */ + public boolean hasOneof1632() { + return hugeOneofCase_ == 1632; + } /** * int32 oneof_1632 = 1632; * @return The oneof1632. @@ -277486,6 +311921,13 @@ public Builder clearOneof1632() { return this; } + /** + * int32 oneof_1633 = 1633; + * @return Whether the oneof1633 field is set. + */ + public boolean hasOneof1633() { + return hugeOneofCase_ == 1633; + } /** * int32 oneof_1633 = 1633; * @return The oneof1633. @@ -277520,6 +311962,13 @@ public Builder clearOneof1633() { return this; } + /** + * int32 oneof_1634 = 1634; + * @return Whether the oneof1634 field is set. + */ + public boolean hasOneof1634() { + return hugeOneofCase_ == 1634; + } /** * int32 oneof_1634 = 1634; * @return The oneof1634. @@ -277554,6 +312003,13 @@ public Builder clearOneof1634() { return this; } + /** + * int32 oneof_1635 = 1635; + * @return Whether the oneof1635 field is set. + */ + public boolean hasOneof1635() { + return hugeOneofCase_ == 1635; + } /** * int32 oneof_1635 = 1635; * @return The oneof1635. @@ -277588,6 +312044,13 @@ public Builder clearOneof1635() { return this; } + /** + * int32 oneof_1636 = 1636; + * @return Whether the oneof1636 field is set. + */ + public boolean hasOneof1636() { + return hugeOneofCase_ == 1636; + } /** * int32 oneof_1636 = 1636; * @return The oneof1636. @@ -277622,6 +312085,13 @@ public Builder clearOneof1636() { return this; } + /** + * int32 oneof_1637 = 1637; + * @return Whether the oneof1637 field is set. + */ + public boolean hasOneof1637() { + return hugeOneofCase_ == 1637; + } /** * int32 oneof_1637 = 1637; * @return The oneof1637. @@ -277656,6 +312126,13 @@ public Builder clearOneof1637() { return this; } + /** + * int32 oneof_1638 = 1638; + * @return Whether the oneof1638 field is set. + */ + public boolean hasOneof1638() { + return hugeOneofCase_ == 1638; + } /** * int32 oneof_1638 = 1638; * @return The oneof1638. @@ -277690,6 +312167,13 @@ public Builder clearOneof1638() { return this; } + /** + * int32 oneof_1639 = 1639; + * @return Whether the oneof1639 field is set. + */ + public boolean hasOneof1639() { + return hugeOneofCase_ == 1639; + } /** * int32 oneof_1639 = 1639; * @return The oneof1639. @@ -277724,6 +312208,13 @@ public Builder clearOneof1639() { return this; } + /** + * int32 oneof_1640 = 1640; + * @return Whether the oneof1640 field is set. + */ + public boolean hasOneof1640() { + return hugeOneofCase_ == 1640; + } /** * int32 oneof_1640 = 1640; * @return The oneof1640. @@ -277758,6 +312249,13 @@ public Builder clearOneof1640() { return this; } + /** + * int32 oneof_1641 = 1641; + * @return Whether the oneof1641 field is set. + */ + public boolean hasOneof1641() { + return hugeOneofCase_ == 1641; + } /** * int32 oneof_1641 = 1641; * @return The oneof1641. @@ -277792,6 +312290,13 @@ public Builder clearOneof1641() { return this; } + /** + * int32 oneof_1642 = 1642; + * @return Whether the oneof1642 field is set. + */ + public boolean hasOneof1642() { + return hugeOneofCase_ == 1642; + } /** * int32 oneof_1642 = 1642; * @return The oneof1642. @@ -277826,6 +312331,13 @@ public Builder clearOneof1642() { return this; } + /** + * int32 oneof_1643 = 1643; + * @return Whether the oneof1643 field is set. + */ + public boolean hasOneof1643() { + return hugeOneofCase_ == 1643; + } /** * int32 oneof_1643 = 1643; * @return The oneof1643. @@ -277860,6 +312372,13 @@ public Builder clearOneof1643() { return this; } + /** + * int32 oneof_1644 = 1644; + * @return Whether the oneof1644 field is set. + */ + public boolean hasOneof1644() { + return hugeOneofCase_ == 1644; + } /** * int32 oneof_1644 = 1644; * @return The oneof1644. @@ -277894,6 +312413,13 @@ public Builder clearOneof1644() { return this; } + /** + * int32 oneof_1645 = 1645; + * @return Whether the oneof1645 field is set. + */ + public boolean hasOneof1645() { + return hugeOneofCase_ == 1645; + } /** * int32 oneof_1645 = 1645; * @return The oneof1645. @@ -277928,6 +312454,13 @@ public Builder clearOneof1645() { return this; } + /** + * int32 oneof_1646 = 1646; + * @return Whether the oneof1646 field is set. + */ + public boolean hasOneof1646() { + return hugeOneofCase_ == 1646; + } /** * int32 oneof_1646 = 1646; * @return The oneof1646. @@ -277962,6 +312495,13 @@ public Builder clearOneof1646() { return this; } + /** + * int32 oneof_1647 = 1647; + * @return Whether the oneof1647 field is set. + */ + public boolean hasOneof1647() { + return hugeOneofCase_ == 1647; + } /** * int32 oneof_1647 = 1647; * @return The oneof1647. @@ -277996,6 +312536,13 @@ public Builder clearOneof1647() { return this; } + /** + * int32 oneof_1648 = 1648; + * @return Whether the oneof1648 field is set. + */ + public boolean hasOneof1648() { + return hugeOneofCase_ == 1648; + } /** * int32 oneof_1648 = 1648; * @return The oneof1648. @@ -278030,6 +312577,13 @@ public Builder clearOneof1648() { return this; } + /** + * int32 oneof_1649 = 1649; + * @return Whether the oneof1649 field is set. + */ + public boolean hasOneof1649() { + return hugeOneofCase_ == 1649; + } /** * int32 oneof_1649 = 1649; * @return The oneof1649. @@ -278064,6 +312618,13 @@ public Builder clearOneof1649() { return this; } + /** + * int32 oneof_1650 = 1650; + * @return Whether the oneof1650 field is set. + */ + public boolean hasOneof1650() { + return hugeOneofCase_ == 1650; + } /** * int32 oneof_1650 = 1650; * @return The oneof1650. @@ -278098,6 +312659,13 @@ public Builder clearOneof1650() { return this; } + /** + * int32 oneof_1651 = 1651; + * @return Whether the oneof1651 field is set. + */ + public boolean hasOneof1651() { + return hugeOneofCase_ == 1651; + } /** * int32 oneof_1651 = 1651; * @return The oneof1651. @@ -278132,6 +312700,13 @@ public Builder clearOneof1651() { return this; } + /** + * int32 oneof_1652 = 1652; + * @return Whether the oneof1652 field is set. + */ + public boolean hasOneof1652() { + return hugeOneofCase_ == 1652; + } /** * int32 oneof_1652 = 1652; * @return The oneof1652. @@ -278166,6 +312741,13 @@ public Builder clearOneof1652() { return this; } + /** + * int32 oneof_1653 = 1653; + * @return Whether the oneof1653 field is set. + */ + public boolean hasOneof1653() { + return hugeOneofCase_ == 1653; + } /** * int32 oneof_1653 = 1653; * @return The oneof1653. @@ -278200,6 +312782,13 @@ public Builder clearOneof1653() { return this; } + /** + * int32 oneof_1654 = 1654; + * @return Whether the oneof1654 field is set. + */ + public boolean hasOneof1654() { + return hugeOneofCase_ == 1654; + } /** * int32 oneof_1654 = 1654; * @return The oneof1654. @@ -278234,6 +312823,13 @@ public Builder clearOneof1654() { return this; } + /** + * int32 oneof_1655 = 1655; + * @return Whether the oneof1655 field is set. + */ + public boolean hasOneof1655() { + return hugeOneofCase_ == 1655; + } /** * int32 oneof_1655 = 1655; * @return The oneof1655. @@ -278268,6 +312864,13 @@ public Builder clearOneof1655() { return this; } + /** + * int32 oneof_1656 = 1656; + * @return Whether the oneof1656 field is set. + */ + public boolean hasOneof1656() { + return hugeOneofCase_ == 1656; + } /** * int32 oneof_1656 = 1656; * @return The oneof1656. @@ -278302,6 +312905,13 @@ public Builder clearOneof1656() { return this; } + /** + * int32 oneof_1657 = 1657; + * @return Whether the oneof1657 field is set. + */ + public boolean hasOneof1657() { + return hugeOneofCase_ == 1657; + } /** * int32 oneof_1657 = 1657; * @return The oneof1657. @@ -278336,6 +312946,13 @@ public Builder clearOneof1657() { return this; } + /** + * int32 oneof_1658 = 1658; + * @return Whether the oneof1658 field is set. + */ + public boolean hasOneof1658() { + return hugeOneofCase_ == 1658; + } /** * int32 oneof_1658 = 1658; * @return The oneof1658. @@ -278370,6 +312987,13 @@ public Builder clearOneof1658() { return this; } + /** + * int32 oneof_1659 = 1659; + * @return Whether the oneof1659 field is set. + */ + public boolean hasOneof1659() { + return hugeOneofCase_ == 1659; + } /** * int32 oneof_1659 = 1659; * @return The oneof1659. @@ -278404,6 +313028,13 @@ public Builder clearOneof1659() { return this; } + /** + * int32 oneof_1660 = 1660; + * @return Whether the oneof1660 field is set. + */ + public boolean hasOneof1660() { + return hugeOneofCase_ == 1660; + } /** * int32 oneof_1660 = 1660; * @return The oneof1660. @@ -278438,6 +313069,13 @@ public Builder clearOneof1660() { return this; } + /** + * int32 oneof_1661 = 1661; + * @return Whether the oneof1661 field is set. + */ + public boolean hasOneof1661() { + return hugeOneofCase_ == 1661; + } /** * int32 oneof_1661 = 1661; * @return The oneof1661. @@ -278472,6 +313110,13 @@ public Builder clearOneof1661() { return this; } + /** + * int32 oneof_1662 = 1662; + * @return Whether the oneof1662 field is set. + */ + public boolean hasOneof1662() { + return hugeOneofCase_ == 1662; + } /** * int32 oneof_1662 = 1662; * @return The oneof1662. @@ -278506,6 +313151,13 @@ public Builder clearOneof1662() { return this; } + /** + * int32 oneof_1663 = 1663; + * @return Whether the oneof1663 field is set. + */ + public boolean hasOneof1663() { + return hugeOneofCase_ == 1663; + } /** * int32 oneof_1663 = 1663; * @return The oneof1663. @@ -278540,6 +313192,13 @@ public Builder clearOneof1663() { return this; } + /** + * int32 oneof_1664 = 1664; + * @return Whether the oneof1664 field is set. + */ + public boolean hasOneof1664() { + return hugeOneofCase_ == 1664; + } /** * int32 oneof_1664 = 1664; * @return The oneof1664. @@ -278574,6 +313233,13 @@ public Builder clearOneof1664() { return this; } + /** + * int32 oneof_1665 = 1665; + * @return Whether the oneof1665 field is set. + */ + public boolean hasOneof1665() { + return hugeOneofCase_ == 1665; + } /** * int32 oneof_1665 = 1665; * @return The oneof1665. @@ -278608,6 +313274,13 @@ public Builder clearOneof1665() { return this; } + /** + * int32 oneof_1666 = 1666; + * @return Whether the oneof1666 field is set. + */ + public boolean hasOneof1666() { + return hugeOneofCase_ == 1666; + } /** * int32 oneof_1666 = 1666; * @return The oneof1666. @@ -278642,6 +313315,13 @@ public Builder clearOneof1666() { return this; } + /** + * int32 oneof_1667 = 1667; + * @return Whether the oneof1667 field is set. + */ + public boolean hasOneof1667() { + return hugeOneofCase_ == 1667; + } /** * int32 oneof_1667 = 1667; * @return The oneof1667. @@ -278676,6 +313356,13 @@ public Builder clearOneof1667() { return this; } + /** + * int32 oneof_1668 = 1668; + * @return Whether the oneof1668 field is set. + */ + public boolean hasOneof1668() { + return hugeOneofCase_ == 1668; + } /** * int32 oneof_1668 = 1668; * @return The oneof1668. @@ -278710,6 +313397,13 @@ public Builder clearOneof1668() { return this; } + /** + * int32 oneof_1669 = 1669; + * @return Whether the oneof1669 field is set. + */ + public boolean hasOneof1669() { + return hugeOneofCase_ == 1669; + } /** * int32 oneof_1669 = 1669; * @return The oneof1669. @@ -278744,6 +313438,13 @@ public Builder clearOneof1669() { return this; } + /** + * int32 oneof_1670 = 1670; + * @return Whether the oneof1670 field is set. + */ + public boolean hasOneof1670() { + return hugeOneofCase_ == 1670; + } /** * int32 oneof_1670 = 1670; * @return The oneof1670. @@ -278778,6 +313479,13 @@ public Builder clearOneof1670() { return this; } + /** + * int32 oneof_1671 = 1671; + * @return Whether the oneof1671 field is set. + */ + public boolean hasOneof1671() { + return hugeOneofCase_ == 1671; + } /** * int32 oneof_1671 = 1671; * @return The oneof1671. @@ -278812,6 +313520,13 @@ public Builder clearOneof1671() { return this; } + /** + * int32 oneof_1672 = 1672; + * @return Whether the oneof1672 field is set. + */ + public boolean hasOneof1672() { + return hugeOneofCase_ == 1672; + } /** * int32 oneof_1672 = 1672; * @return The oneof1672. @@ -278846,6 +313561,13 @@ public Builder clearOneof1672() { return this; } + /** + * int32 oneof_1673 = 1673; + * @return Whether the oneof1673 field is set. + */ + public boolean hasOneof1673() { + return hugeOneofCase_ == 1673; + } /** * int32 oneof_1673 = 1673; * @return The oneof1673. @@ -278880,6 +313602,13 @@ public Builder clearOneof1673() { return this; } + /** + * int32 oneof_1674 = 1674; + * @return Whether the oneof1674 field is set. + */ + public boolean hasOneof1674() { + return hugeOneofCase_ == 1674; + } /** * int32 oneof_1674 = 1674; * @return The oneof1674. @@ -278914,6 +313643,13 @@ public Builder clearOneof1674() { return this; } + /** + * int32 oneof_1675 = 1675; + * @return Whether the oneof1675 field is set. + */ + public boolean hasOneof1675() { + return hugeOneofCase_ == 1675; + } /** * int32 oneof_1675 = 1675; * @return The oneof1675. @@ -278948,6 +313684,13 @@ public Builder clearOneof1675() { return this; } + /** + * int32 oneof_1676 = 1676; + * @return Whether the oneof1676 field is set. + */ + public boolean hasOneof1676() { + return hugeOneofCase_ == 1676; + } /** * int32 oneof_1676 = 1676; * @return The oneof1676. @@ -278982,6 +313725,13 @@ public Builder clearOneof1676() { return this; } + /** + * int32 oneof_1677 = 1677; + * @return Whether the oneof1677 field is set. + */ + public boolean hasOneof1677() { + return hugeOneofCase_ == 1677; + } /** * int32 oneof_1677 = 1677; * @return The oneof1677. @@ -279016,6 +313766,13 @@ public Builder clearOneof1677() { return this; } + /** + * int32 oneof_1678 = 1678; + * @return Whether the oneof1678 field is set. + */ + public boolean hasOneof1678() { + return hugeOneofCase_ == 1678; + } /** * int32 oneof_1678 = 1678; * @return The oneof1678. @@ -279050,6 +313807,13 @@ public Builder clearOneof1678() { return this; } + /** + * int32 oneof_1679 = 1679; + * @return Whether the oneof1679 field is set. + */ + public boolean hasOneof1679() { + return hugeOneofCase_ == 1679; + } /** * int32 oneof_1679 = 1679; * @return The oneof1679. @@ -279084,6 +313848,13 @@ public Builder clearOneof1679() { return this; } + /** + * int32 oneof_1680 = 1680; + * @return Whether the oneof1680 field is set. + */ + public boolean hasOneof1680() { + return hugeOneofCase_ == 1680; + } /** * int32 oneof_1680 = 1680; * @return The oneof1680. @@ -279118,6 +313889,13 @@ public Builder clearOneof1680() { return this; } + /** + * int32 oneof_1681 = 1681; + * @return Whether the oneof1681 field is set. + */ + public boolean hasOneof1681() { + return hugeOneofCase_ == 1681; + } /** * int32 oneof_1681 = 1681; * @return The oneof1681. @@ -279152,6 +313930,13 @@ public Builder clearOneof1681() { return this; } + /** + * int32 oneof_1682 = 1682; + * @return Whether the oneof1682 field is set. + */ + public boolean hasOneof1682() { + return hugeOneofCase_ == 1682; + } /** * int32 oneof_1682 = 1682; * @return The oneof1682. @@ -279186,6 +313971,13 @@ public Builder clearOneof1682() { return this; } + /** + * int32 oneof_1683 = 1683; + * @return Whether the oneof1683 field is set. + */ + public boolean hasOneof1683() { + return hugeOneofCase_ == 1683; + } /** * int32 oneof_1683 = 1683; * @return The oneof1683. @@ -279220,6 +314012,13 @@ public Builder clearOneof1683() { return this; } + /** + * int32 oneof_1684 = 1684; + * @return Whether the oneof1684 field is set. + */ + public boolean hasOneof1684() { + return hugeOneofCase_ == 1684; + } /** * int32 oneof_1684 = 1684; * @return The oneof1684. @@ -279254,6 +314053,13 @@ public Builder clearOneof1684() { return this; } + /** + * int32 oneof_1685 = 1685; + * @return Whether the oneof1685 field is set. + */ + public boolean hasOneof1685() { + return hugeOneofCase_ == 1685; + } /** * int32 oneof_1685 = 1685; * @return The oneof1685. @@ -279288,6 +314094,13 @@ public Builder clearOneof1685() { return this; } + /** + * int32 oneof_1686 = 1686; + * @return Whether the oneof1686 field is set. + */ + public boolean hasOneof1686() { + return hugeOneofCase_ == 1686; + } /** * int32 oneof_1686 = 1686; * @return The oneof1686. @@ -279322,6 +314135,13 @@ public Builder clearOneof1686() { return this; } + /** + * int32 oneof_1687 = 1687; + * @return Whether the oneof1687 field is set. + */ + public boolean hasOneof1687() { + return hugeOneofCase_ == 1687; + } /** * int32 oneof_1687 = 1687; * @return The oneof1687. @@ -279356,6 +314176,13 @@ public Builder clearOneof1687() { return this; } + /** + * int32 oneof_1688 = 1688; + * @return Whether the oneof1688 field is set. + */ + public boolean hasOneof1688() { + return hugeOneofCase_ == 1688; + } /** * int32 oneof_1688 = 1688; * @return The oneof1688. @@ -279390,6 +314217,13 @@ public Builder clearOneof1688() { return this; } + /** + * int32 oneof_1689 = 1689; + * @return Whether the oneof1689 field is set. + */ + public boolean hasOneof1689() { + return hugeOneofCase_ == 1689; + } /** * int32 oneof_1689 = 1689; * @return The oneof1689. @@ -279424,6 +314258,13 @@ public Builder clearOneof1689() { return this; } + /** + * int32 oneof_1690 = 1690; + * @return Whether the oneof1690 field is set. + */ + public boolean hasOneof1690() { + return hugeOneofCase_ == 1690; + } /** * int32 oneof_1690 = 1690; * @return The oneof1690. @@ -279458,6 +314299,13 @@ public Builder clearOneof1690() { return this; } + /** + * int32 oneof_1691 = 1691; + * @return Whether the oneof1691 field is set. + */ + public boolean hasOneof1691() { + return hugeOneofCase_ == 1691; + } /** * int32 oneof_1691 = 1691; * @return The oneof1691. @@ -279492,6 +314340,13 @@ public Builder clearOneof1691() { return this; } + /** + * int32 oneof_1692 = 1692; + * @return Whether the oneof1692 field is set. + */ + public boolean hasOneof1692() { + return hugeOneofCase_ == 1692; + } /** * int32 oneof_1692 = 1692; * @return The oneof1692. @@ -279526,6 +314381,13 @@ public Builder clearOneof1692() { return this; } + /** + * int32 oneof_1693 = 1693; + * @return Whether the oneof1693 field is set. + */ + public boolean hasOneof1693() { + return hugeOneofCase_ == 1693; + } /** * int32 oneof_1693 = 1693; * @return The oneof1693. @@ -279560,6 +314422,13 @@ public Builder clearOneof1693() { return this; } + /** + * int32 oneof_1694 = 1694; + * @return Whether the oneof1694 field is set. + */ + public boolean hasOneof1694() { + return hugeOneofCase_ == 1694; + } /** * int32 oneof_1694 = 1694; * @return The oneof1694. @@ -279594,6 +314463,13 @@ public Builder clearOneof1694() { return this; } + /** + * int32 oneof_1695 = 1695; + * @return Whether the oneof1695 field is set. + */ + public boolean hasOneof1695() { + return hugeOneofCase_ == 1695; + } /** * int32 oneof_1695 = 1695; * @return The oneof1695. @@ -279628,6 +314504,13 @@ public Builder clearOneof1695() { return this; } + /** + * int32 oneof_1696 = 1696; + * @return Whether the oneof1696 field is set. + */ + public boolean hasOneof1696() { + return hugeOneofCase_ == 1696; + } /** * int32 oneof_1696 = 1696; * @return The oneof1696. @@ -279662,6 +314545,13 @@ public Builder clearOneof1696() { return this; } + /** + * int32 oneof_1697 = 1697; + * @return Whether the oneof1697 field is set. + */ + public boolean hasOneof1697() { + return hugeOneofCase_ == 1697; + } /** * int32 oneof_1697 = 1697; * @return The oneof1697. @@ -279696,6 +314586,13 @@ public Builder clearOneof1697() { return this; } + /** + * int32 oneof_1698 = 1698; + * @return Whether the oneof1698 field is set. + */ + public boolean hasOneof1698() { + return hugeOneofCase_ == 1698; + } /** * int32 oneof_1698 = 1698; * @return The oneof1698. @@ -279730,6 +314627,13 @@ public Builder clearOneof1698() { return this; } + /** + * int32 oneof_1699 = 1699; + * @return Whether the oneof1699 field is set. + */ + public boolean hasOneof1699() { + return hugeOneofCase_ == 1699; + } /** * int32 oneof_1699 = 1699; * @return The oneof1699. @@ -279764,6 +314668,13 @@ public Builder clearOneof1699() { return this; } + /** + * int32 oneof_1700 = 1700; + * @return Whether the oneof1700 field is set. + */ + public boolean hasOneof1700() { + return hugeOneofCase_ == 1700; + } /** * int32 oneof_1700 = 1700; * @return The oneof1700. @@ -279798,6 +314709,13 @@ public Builder clearOneof1700() { return this; } + /** + * int32 oneof_1701 = 1701; + * @return Whether the oneof1701 field is set. + */ + public boolean hasOneof1701() { + return hugeOneofCase_ == 1701; + } /** * int32 oneof_1701 = 1701; * @return The oneof1701. @@ -279832,6 +314750,13 @@ public Builder clearOneof1701() { return this; } + /** + * int32 oneof_1702 = 1702; + * @return Whether the oneof1702 field is set. + */ + public boolean hasOneof1702() { + return hugeOneofCase_ == 1702; + } /** * int32 oneof_1702 = 1702; * @return The oneof1702. @@ -279866,6 +314791,13 @@ public Builder clearOneof1702() { return this; } + /** + * int32 oneof_1703 = 1703; + * @return Whether the oneof1703 field is set. + */ + public boolean hasOneof1703() { + return hugeOneofCase_ == 1703; + } /** * int32 oneof_1703 = 1703; * @return The oneof1703. @@ -279900,6 +314832,13 @@ public Builder clearOneof1703() { return this; } + /** + * int32 oneof_1704 = 1704; + * @return Whether the oneof1704 field is set. + */ + public boolean hasOneof1704() { + return hugeOneofCase_ == 1704; + } /** * int32 oneof_1704 = 1704; * @return The oneof1704. @@ -279934,6 +314873,13 @@ public Builder clearOneof1704() { return this; } + /** + * int32 oneof_1705 = 1705; + * @return Whether the oneof1705 field is set. + */ + public boolean hasOneof1705() { + return hugeOneofCase_ == 1705; + } /** * int32 oneof_1705 = 1705; * @return The oneof1705. @@ -279968,6 +314914,13 @@ public Builder clearOneof1705() { return this; } + /** + * int32 oneof_1706 = 1706; + * @return Whether the oneof1706 field is set. + */ + public boolean hasOneof1706() { + return hugeOneofCase_ == 1706; + } /** * int32 oneof_1706 = 1706; * @return The oneof1706. @@ -280002,6 +314955,13 @@ public Builder clearOneof1706() { return this; } + /** + * int32 oneof_1707 = 1707; + * @return Whether the oneof1707 field is set. + */ + public boolean hasOneof1707() { + return hugeOneofCase_ == 1707; + } /** * int32 oneof_1707 = 1707; * @return The oneof1707. @@ -280036,6 +314996,13 @@ public Builder clearOneof1707() { return this; } + /** + * int32 oneof_1708 = 1708; + * @return Whether the oneof1708 field is set. + */ + public boolean hasOneof1708() { + return hugeOneofCase_ == 1708; + } /** * int32 oneof_1708 = 1708; * @return The oneof1708. @@ -280070,6 +315037,13 @@ public Builder clearOneof1708() { return this; } + /** + * int32 oneof_1709 = 1709; + * @return Whether the oneof1709 field is set. + */ + public boolean hasOneof1709() { + return hugeOneofCase_ == 1709; + } /** * int32 oneof_1709 = 1709; * @return The oneof1709. @@ -280104,6 +315078,13 @@ public Builder clearOneof1709() { return this; } + /** + * int32 oneof_1710 = 1710; + * @return Whether the oneof1710 field is set. + */ + public boolean hasOneof1710() { + return hugeOneofCase_ == 1710; + } /** * int32 oneof_1710 = 1710; * @return The oneof1710. @@ -280138,6 +315119,13 @@ public Builder clearOneof1710() { return this; } + /** + * int32 oneof_1711 = 1711; + * @return Whether the oneof1711 field is set. + */ + public boolean hasOneof1711() { + return hugeOneofCase_ == 1711; + } /** * int32 oneof_1711 = 1711; * @return The oneof1711. @@ -280172,6 +315160,13 @@ public Builder clearOneof1711() { return this; } + /** + * int32 oneof_1712 = 1712; + * @return Whether the oneof1712 field is set. + */ + public boolean hasOneof1712() { + return hugeOneofCase_ == 1712; + } /** * int32 oneof_1712 = 1712; * @return The oneof1712. @@ -280206,6 +315201,13 @@ public Builder clearOneof1712() { return this; } + /** + * int32 oneof_1713 = 1713; + * @return Whether the oneof1713 field is set. + */ + public boolean hasOneof1713() { + return hugeOneofCase_ == 1713; + } /** * int32 oneof_1713 = 1713; * @return The oneof1713. @@ -280240,6 +315242,13 @@ public Builder clearOneof1713() { return this; } + /** + * int32 oneof_1714 = 1714; + * @return Whether the oneof1714 field is set. + */ + public boolean hasOneof1714() { + return hugeOneofCase_ == 1714; + } /** * int32 oneof_1714 = 1714; * @return The oneof1714. @@ -280274,6 +315283,13 @@ public Builder clearOneof1714() { return this; } + /** + * int32 oneof_1715 = 1715; + * @return Whether the oneof1715 field is set. + */ + public boolean hasOneof1715() { + return hugeOneofCase_ == 1715; + } /** * int32 oneof_1715 = 1715; * @return The oneof1715. @@ -280308,6 +315324,13 @@ public Builder clearOneof1715() { return this; } + /** + * int32 oneof_1716 = 1716; + * @return Whether the oneof1716 field is set. + */ + public boolean hasOneof1716() { + return hugeOneofCase_ == 1716; + } /** * int32 oneof_1716 = 1716; * @return The oneof1716. @@ -280342,6 +315365,13 @@ public Builder clearOneof1716() { return this; } + /** + * int32 oneof_1717 = 1717; + * @return Whether the oneof1717 field is set. + */ + public boolean hasOneof1717() { + return hugeOneofCase_ == 1717; + } /** * int32 oneof_1717 = 1717; * @return The oneof1717. @@ -280376,6 +315406,13 @@ public Builder clearOneof1717() { return this; } + /** + * int32 oneof_1718 = 1718; + * @return Whether the oneof1718 field is set. + */ + public boolean hasOneof1718() { + return hugeOneofCase_ == 1718; + } /** * int32 oneof_1718 = 1718; * @return The oneof1718. @@ -280410,6 +315447,13 @@ public Builder clearOneof1718() { return this; } + /** + * int32 oneof_1719 = 1719; + * @return Whether the oneof1719 field is set. + */ + public boolean hasOneof1719() { + return hugeOneofCase_ == 1719; + } /** * int32 oneof_1719 = 1719; * @return The oneof1719. @@ -280444,6 +315488,13 @@ public Builder clearOneof1719() { return this; } + /** + * int32 oneof_1720 = 1720; + * @return Whether the oneof1720 field is set. + */ + public boolean hasOneof1720() { + return hugeOneofCase_ == 1720; + } /** * int32 oneof_1720 = 1720; * @return The oneof1720. @@ -280478,6 +315529,13 @@ public Builder clearOneof1720() { return this; } + /** + * int32 oneof_1721 = 1721; + * @return Whether the oneof1721 field is set. + */ + public boolean hasOneof1721() { + return hugeOneofCase_ == 1721; + } /** * int32 oneof_1721 = 1721; * @return The oneof1721. @@ -280512,6 +315570,13 @@ public Builder clearOneof1721() { return this; } + /** + * int32 oneof_1722 = 1722; + * @return Whether the oneof1722 field is set. + */ + public boolean hasOneof1722() { + return hugeOneofCase_ == 1722; + } /** * int32 oneof_1722 = 1722; * @return The oneof1722. @@ -280546,6 +315611,13 @@ public Builder clearOneof1722() { return this; } + /** + * int32 oneof_1723 = 1723; + * @return Whether the oneof1723 field is set. + */ + public boolean hasOneof1723() { + return hugeOneofCase_ == 1723; + } /** * int32 oneof_1723 = 1723; * @return The oneof1723. @@ -280580,6 +315652,13 @@ public Builder clearOneof1723() { return this; } + /** + * int32 oneof_1724 = 1724; + * @return Whether the oneof1724 field is set. + */ + public boolean hasOneof1724() { + return hugeOneofCase_ == 1724; + } /** * int32 oneof_1724 = 1724; * @return The oneof1724. @@ -280614,6 +315693,13 @@ public Builder clearOneof1724() { return this; } + /** + * int32 oneof_1725 = 1725; + * @return Whether the oneof1725 field is set. + */ + public boolean hasOneof1725() { + return hugeOneofCase_ == 1725; + } /** * int32 oneof_1725 = 1725; * @return The oneof1725. @@ -280648,6 +315734,13 @@ public Builder clearOneof1725() { return this; } + /** + * int32 oneof_1726 = 1726; + * @return Whether the oneof1726 field is set. + */ + public boolean hasOneof1726() { + return hugeOneofCase_ == 1726; + } /** * int32 oneof_1726 = 1726; * @return The oneof1726. @@ -280682,6 +315775,13 @@ public Builder clearOneof1726() { return this; } + /** + * int32 oneof_1727 = 1727; + * @return Whether the oneof1727 field is set. + */ + public boolean hasOneof1727() { + return hugeOneofCase_ == 1727; + } /** * int32 oneof_1727 = 1727; * @return The oneof1727. @@ -280716,6 +315816,13 @@ public Builder clearOneof1727() { return this; } + /** + * int32 oneof_1728 = 1728; + * @return Whether the oneof1728 field is set. + */ + public boolean hasOneof1728() { + return hugeOneofCase_ == 1728; + } /** * int32 oneof_1728 = 1728; * @return The oneof1728. @@ -280750,6 +315857,13 @@ public Builder clearOneof1728() { return this; } + /** + * int32 oneof_1729 = 1729; + * @return Whether the oneof1729 field is set. + */ + public boolean hasOneof1729() { + return hugeOneofCase_ == 1729; + } /** * int32 oneof_1729 = 1729; * @return The oneof1729. @@ -280784,6 +315898,13 @@ public Builder clearOneof1729() { return this; } + /** + * int32 oneof_1730 = 1730; + * @return Whether the oneof1730 field is set. + */ + public boolean hasOneof1730() { + return hugeOneofCase_ == 1730; + } /** * int32 oneof_1730 = 1730; * @return The oneof1730. @@ -280818,6 +315939,13 @@ public Builder clearOneof1730() { return this; } + /** + * int32 oneof_1731 = 1731; + * @return Whether the oneof1731 field is set. + */ + public boolean hasOneof1731() { + return hugeOneofCase_ == 1731; + } /** * int32 oneof_1731 = 1731; * @return The oneof1731. @@ -280852,6 +315980,13 @@ public Builder clearOneof1731() { return this; } + /** + * int32 oneof_1732 = 1732; + * @return Whether the oneof1732 field is set. + */ + public boolean hasOneof1732() { + return hugeOneofCase_ == 1732; + } /** * int32 oneof_1732 = 1732; * @return The oneof1732. @@ -280886,6 +316021,13 @@ public Builder clearOneof1732() { return this; } + /** + * int32 oneof_1733 = 1733; + * @return Whether the oneof1733 field is set. + */ + public boolean hasOneof1733() { + return hugeOneofCase_ == 1733; + } /** * int32 oneof_1733 = 1733; * @return The oneof1733. @@ -280920,6 +316062,13 @@ public Builder clearOneof1733() { return this; } + /** + * int32 oneof_1734 = 1734; + * @return Whether the oneof1734 field is set. + */ + public boolean hasOneof1734() { + return hugeOneofCase_ == 1734; + } /** * int32 oneof_1734 = 1734; * @return The oneof1734. @@ -280954,6 +316103,13 @@ public Builder clearOneof1734() { return this; } + /** + * int32 oneof_1735 = 1735; + * @return Whether the oneof1735 field is set. + */ + public boolean hasOneof1735() { + return hugeOneofCase_ == 1735; + } /** * int32 oneof_1735 = 1735; * @return The oneof1735. @@ -280988,6 +316144,13 @@ public Builder clearOneof1735() { return this; } + /** + * int32 oneof_1736 = 1736; + * @return Whether the oneof1736 field is set. + */ + public boolean hasOneof1736() { + return hugeOneofCase_ == 1736; + } /** * int32 oneof_1736 = 1736; * @return The oneof1736. @@ -281022,6 +316185,13 @@ public Builder clearOneof1736() { return this; } + /** + * int32 oneof_1737 = 1737; + * @return Whether the oneof1737 field is set. + */ + public boolean hasOneof1737() { + return hugeOneofCase_ == 1737; + } /** * int32 oneof_1737 = 1737; * @return The oneof1737. @@ -281056,6 +316226,13 @@ public Builder clearOneof1737() { return this; } + /** + * int32 oneof_1738 = 1738; + * @return Whether the oneof1738 field is set. + */ + public boolean hasOneof1738() { + return hugeOneofCase_ == 1738; + } /** * int32 oneof_1738 = 1738; * @return The oneof1738. @@ -281090,6 +316267,13 @@ public Builder clearOneof1738() { return this; } + /** + * int32 oneof_1739 = 1739; + * @return Whether the oneof1739 field is set. + */ + public boolean hasOneof1739() { + return hugeOneofCase_ == 1739; + } /** * int32 oneof_1739 = 1739; * @return The oneof1739. @@ -281124,6 +316308,13 @@ public Builder clearOneof1739() { return this; } + /** + * int32 oneof_1740 = 1740; + * @return Whether the oneof1740 field is set. + */ + public boolean hasOneof1740() { + return hugeOneofCase_ == 1740; + } /** * int32 oneof_1740 = 1740; * @return The oneof1740. @@ -281158,6 +316349,13 @@ public Builder clearOneof1740() { return this; } + /** + * int32 oneof_1741 = 1741; + * @return Whether the oneof1741 field is set. + */ + public boolean hasOneof1741() { + return hugeOneofCase_ == 1741; + } /** * int32 oneof_1741 = 1741; * @return The oneof1741. @@ -281192,6 +316390,13 @@ public Builder clearOneof1741() { return this; } + /** + * int32 oneof_1742 = 1742; + * @return Whether the oneof1742 field is set. + */ + public boolean hasOneof1742() { + return hugeOneofCase_ == 1742; + } /** * int32 oneof_1742 = 1742; * @return The oneof1742. @@ -281226,6 +316431,13 @@ public Builder clearOneof1742() { return this; } + /** + * int32 oneof_1743 = 1743; + * @return Whether the oneof1743 field is set. + */ + public boolean hasOneof1743() { + return hugeOneofCase_ == 1743; + } /** * int32 oneof_1743 = 1743; * @return The oneof1743. @@ -281260,6 +316472,13 @@ public Builder clearOneof1743() { return this; } + /** + * int32 oneof_1744 = 1744; + * @return Whether the oneof1744 field is set. + */ + public boolean hasOneof1744() { + return hugeOneofCase_ == 1744; + } /** * int32 oneof_1744 = 1744; * @return The oneof1744. @@ -281294,6 +316513,13 @@ public Builder clearOneof1744() { return this; } + /** + * int32 oneof_1745 = 1745; + * @return Whether the oneof1745 field is set. + */ + public boolean hasOneof1745() { + return hugeOneofCase_ == 1745; + } /** * int32 oneof_1745 = 1745; * @return The oneof1745. @@ -281328,6 +316554,13 @@ public Builder clearOneof1745() { return this; } + /** + * int32 oneof_1746 = 1746; + * @return Whether the oneof1746 field is set. + */ + public boolean hasOneof1746() { + return hugeOneofCase_ == 1746; + } /** * int32 oneof_1746 = 1746; * @return The oneof1746. @@ -281362,6 +316595,13 @@ public Builder clearOneof1746() { return this; } + /** + * int32 oneof_1747 = 1747; + * @return Whether the oneof1747 field is set. + */ + public boolean hasOneof1747() { + return hugeOneofCase_ == 1747; + } /** * int32 oneof_1747 = 1747; * @return The oneof1747. @@ -281396,6 +316636,13 @@ public Builder clearOneof1747() { return this; } + /** + * int32 oneof_1748 = 1748; + * @return Whether the oneof1748 field is set. + */ + public boolean hasOneof1748() { + return hugeOneofCase_ == 1748; + } /** * int32 oneof_1748 = 1748; * @return The oneof1748. @@ -281430,6 +316677,13 @@ public Builder clearOneof1748() { return this; } + /** + * int32 oneof_1749 = 1749; + * @return Whether the oneof1749 field is set. + */ + public boolean hasOneof1749() { + return hugeOneofCase_ == 1749; + } /** * int32 oneof_1749 = 1749; * @return The oneof1749. @@ -281464,6 +316718,13 @@ public Builder clearOneof1749() { return this; } + /** + * int32 oneof_1750 = 1750; + * @return Whether the oneof1750 field is set. + */ + public boolean hasOneof1750() { + return hugeOneofCase_ == 1750; + } /** * int32 oneof_1750 = 1750; * @return The oneof1750. @@ -281498,6 +316759,13 @@ public Builder clearOneof1750() { return this; } + /** + * int32 oneof_1751 = 1751; + * @return Whether the oneof1751 field is set. + */ + public boolean hasOneof1751() { + return hugeOneofCase_ == 1751; + } /** * int32 oneof_1751 = 1751; * @return The oneof1751. @@ -281532,6 +316800,13 @@ public Builder clearOneof1751() { return this; } + /** + * int32 oneof_1752 = 1752; + * @return Whether the oneof1752 field is set. + */ + public boolean hasOneof1752() { + return hugeOneofCase_ == 1752; + } /** * int32 oneof_1752 = 1752; * @return The oneof1752. @@ -281566,6 +316841,13 @@ public Builder clearOneof1752() { return this; } + /** + * int32 oneof_1753 = 1753; + * @return Whether the oneof1753 field is set. + */ + public boolean hasOneof1753() { + return hugeOneofCase_ == 1753; + } /** * int32 oneof_1753 = 1753; * @return The oneof1753. @@ -281600,6 +316882,13 @@ public Builder clearOneof1753() { return this; } + /** + * int32 oneof_1754 = 1754; + * @return Whether the oneof1754 field is set. + */ + public boolean hasOneof1754() { + return hugeOneofCase_ == 1754; + } /** * int32 oneof_1754 = 1754; * @return The oneof1754. @@ -281634,6 +316923,13 @@ public Builder clearOneof1754() { return this; } + /** + * int32 oneof_1755 = 1755; + * @return Whether the oneof1755 field is set. + */ + public boolean hasOneof1755() { + return hugeOneofCase_ == 1755; + } /** * int32 oneof_1755 = 1755; * @return The oneof1755. @@ -281668,6 +316964,13 @@ public Builder clearOneof1755() { return this; } + /** + * int32 oneof_1756 = 1756; + * @return Whether the oneof1756 field is set. + */ + public boolean hasOneof1756() { + return hugeOneofCase_ == 1756; + } /** * int32 oneof_1756 = 1756; * @return The oneof1756. @@ -281702,6 +317005,13 @@ public Builder clearOneof1756() { return this; } + /** + * int32 oneof_1757 = 1757; + * @return Whether the oneof1757 field is set. + */ + public boolean hasOneof1757() { + return hugeOneofCase_ == 1757; + } /** * int32 oneof_1757 = 1757; * @return The oneof1757. @@ -281736,6 +317046,13 @@ public Builder clearOneof1757() { return this; } + /** + * int32 oneof_1758 = 1758; + * @return Whether the oneof1758 field is set. + */ + public boolean hasOneof1758() { + return hugeOneofCase_ == 1758; + } /** * int32 oneof_1758 = 1758; * @return The oneof1758. @@ -281770,6 +317087,13 @@ public Builder clearOneof1758() { return this; } + /** + * int32 oneof_1759 = 1759; + * @return Whether the oneof1759 field is set. + */ + public boolean hasOneof1759() { + return hugeOneofCase_ == 1759; + } /** * int32 oneof_1759 = 1759; * @return The oneof1759. @@ -281804,6 +317128,13 @@ public Builder clearOneof1759() { return this; } + /** + * int32 oneof_1760 = 1760; + * @return Whether the oneof1760 field is set. + */ + public boolean hasOneof1760() { + return hugeOneofCase_ == 1760; + } /** * int32 oneof_1760 = 1760; * @return The oneof1760. @@ -281838,6 +317169,13 @@ public Builder clearOneof1760() { return this; } + /** + * int32 oneof_1761 = 1761; + * @return Whether the oneof1761 field is set. + */ + public boolean hasOneof1761() { + return hugeOneofCase_ == 1761; + } /** * int32 oneof_1761 = 1761; * @return The oneof1761. @@ -281872,6 +317210,13 @@ public Builder clearOneof1761() { return this; } + /** + * int32 oneof_1762 = 1762; + * @return Whether the oneof1762 field is set. + */ + public boolean hasOneof1762() { + return hugeOneofCase_ == 1762; + } /** * int32 oneof_1762 = 1762; * @return The oneof1762. @@ -281906,6 +317251,13 @@ public Builder clearOneof1762() { return this; } + /** + * int32 oneof_1763 = 1763; + * @return Whether the oneof1763 field is set. + */ + public boolean hasOneof1763() { + return hugeOneofCase_ == 1763; + } /** * int32 oneof_1763 = 1763; * @return The oneof1763. @@ -281940,6 +317292,13 @@ public Builder clearOneof1763() { return this; } + /** + * int32 oneof_1764 = 1764; + * @return Whether the oneof1764 field is set. + */ + public boolean hasOneof1764() { + return hugeOneofCase_ == 1764; + } /** * int32 oneof_1764 = 1764; * @return The oneof1764. @@ -281974,6 +317333,13 @@ public Builder clearOneof1764() { return this; } + /** + * int32 oneof_1765 = 1765; + * @return Whether the oneof1765 field is set. + */ + public boolean hasOneof1765() { + return hugeOneofCase_ == 1765; + } /** * int32 oneof_1765 = 1765; * @return The oneof1765. @@ -282008,6 +317374,13 @@ public Builder clearOneof1765() { return this; } + /** + * int32 oneof_1766 = 1766; + * @return Whether the oneof1766 field is set. + */ + public boolean hasOneof1766() { + return hugeOneofCase_ == 1766; + } /** * int32 oneof_1766 = 1766; * @return The oneof1766. @@ -282042,6 +317415,13 @@ public Builder clearOneof1766() { return this; } + /** + * int32 oneof_1767 = 1767; + * @return Whether the oneof1767 field is set. + */ + public boolean hasOneof1767() { + return hugeOneofCase_ == 1767; + } /** * int32 oneof_1767 = 1767; * @return The oneof1767. @@ -282076,6 +317456,13 @@ public Builder clearOneof1767() { return this; } + /** + * int32 oneof_1768 = 1768; + * @return Whether the oneof1768 field is set. + */ + public boolean hasOneof1768() { + return hugeOneofCase_ == 1768; + } /** * int32 oneof_1768 = 1768; * @return The oneof1768. @@ -282110,6 +317497,13 @@ public Builder clearOneof1768() { return this; } + /** + * int32 oneof_1769 = 1769; + * @return Whether the oneof1769 field is set. + */ + public boolean hasOneof1769() { + return hugeOneofCase_ == 1769; + } /** * int32 oneof_1769 = 1769; * @return The oneof1769. @@ -282144,6 +317538,13 @@ public Builder clearOneof1769() { return this; } + /** + * int32 oneof_1770 = 1770; + * @return Whether the oneof1770 field is set. + */ + public boolean hasOneof1770() { + return hugeOneofCase_ == 1770; + } /** * int32 oneof_1770 = 1770; * @return The oneof1770. @@ -282178,6 +317579,13 @@ public Builder clearOneof1770() { return this; } + /** + * int32 oneof_1771 = 1771; + * @return Whether the oneof1771 field is set. + */ + public boolean hasOneof1771() { + return hugeOneofCase_ == 1771; + } /** * int32 oneof_1771 = 1771; * @return The oneof1771. @@ -282212,6 +317620,13 @@ public Builder clearOneof1771() { return this; } + /** + * int32 oneof_1772 = 1772; + * @return Whether the oneof1772 field is set. + */ + public boolean hasOneof1772() { + return hugeOneofCase_ == 1772; + } /** * int32 oneof_1772 = 1772; * @return The oneof1772. @@ -282246,6 +317661,13 @@ public Builder clearOneof1772() { return this; } + /** + * int32 oneof_1773 = 1773; + * @return Whether the oneof1773 field is set. + */ + public boolean hasOneof1773() { + return hugeOneofCase_ == 1773; + } /** * int32 oneof_1773 = 1773; * @return The oneof1773. @@ -282280,6 +317702,13 @@ public Builder clearOneof1773() { return this; } + /** + * int32 oneof_1774 = 1774; + * @return Whether the oneof1774 field is set. + */ + public boolean hasOneof1774() { + return hugeOneofCase_ == 1774; + } /** * int32 oneof_1774 = 1774; * @return The oneof1774. @@ -282314,6 +317743,13 @@ public Builder clearOneof1774() { return this; } + /** + * int32 oneof_1775 = 1775; + * @return Whether the oneof1775 field is set. + */ + public boolean hasOneof1775() { + return hugeOneofCase_ == 1775; + } /** * int32 oneof_1775 = 1775; * @return The oneof1775. @@ -282348,6 +317784,13 @@ public Builder clearOneof1775() { return this; } + /** + * int32 oneof_1776 = 1776; + * @return Whether the oneof1776 field is set. + */ + public boolean hasOneof1776() { + return hugeOneofCase_ == 1776; + } /** * int32 oneof_1776 = 1776; * @return The oneof1776. @@ -282382,6 +317825,13 @@ public Builder clearOneof1776() { return this; } + /** + * int32 oneof_1777 = 1777; + * @return Whether the oneof1777 field is set. + */ + public boolean hasOneof1777() { + return hugeOneofCase_ == 1777; + } /** * int32 oneof_1777 = 1777; * @return The oneof1777. @@ -282416,6 +317866,13 @@ public Builder clearOneof1777() { return this; } + /** + * int32 oneof_1778 = 1778; + * @return Whether the oneof1778 field is set. + */ + public boolean hasOneof1778() { + return hugeOneofCase_ == 1778; + } /** * int32 oneof_1778 = 1778; * @return The oneof1778. @@ -282450,6 +317907,13 @@ public Builder clearOneof1778() { return this; } + /** + * int32 oneof_1779 = 1779; + * @return Whether the oneof1779 field is set. + */ + public boolean hasOneof1779() { + return hugeOneofCase_ == 1779; + } /** * int32 oneof_1779 = 1779; * @return The oneof1779. @@ -282484,6 +317948,13 @@ public Builder clearOneof1779() { return this; } + /** + * int32 oneof_1780 = 1780; + * @return Whether the oneof1780 field is set. + */ + public boolean hasOneof1780() { + return hugeOneofCase_ == 1780; + } /** * int32 oneof_1780 = 1780; * @return The oneof1780. @@ -282518,6 +317989,13 @@ public Builder clearOneof1780() { return this; } + /** + * int32 oneof_1781 = 1781; + * @return Whether the oneof1781 field is set. + */ + public boolean hasOneof1781() { + return hugeOneofCase_ == 1781; + } /** * int32 oneof_1781 = 1781; * @return The oneof1781. @@ -282552,6 +318030,13 @@ public Builder clearOneof1781() { return this; } + /** + * int32 oneof_1782 = 1782; + * @return Whether the oneof1782 field is set. + */ + public boolean hasOneof1782() { + return hugeOneofCase_ == 1782; + } /** * int32 oneof_1782 = 1782; * @return The oneof1782. @@ -282586,6 +318071,13 @@ public Builder clearOneof1782() { return this; } + /** + * int32 oneof_1783 = 1783; + * @return Whether the oneof1783 field is set. + */ + public boolean hasOneof1783() { + return hugeOneofCase_ == 1783; + } /** * int32 oneof_1783 = 1783; * @return The oneof1783. @@ -282620,6 +318112,13 @@ public Builder clearOneof1783() { return this; } + /** + * int32 oneof_1784 = 1784; + * @return Whether the oneof1784 field is set. + */ + public boolean hasOneof1784() { + return hugeOneofCase_ == 1784; + } /** * int32 oneof_1784 = 1784; * @return The oneof1784. @@ -282654,6 +318153,13 @@ public Builder clearOneof1784() { return this; } + /** + * int32 oneof_1785 = 1785; + * @return Whether the oneof1785 field is set. + */ + public boolean hasOneof1785() { + return hugeOneofCase_ == 1785; + } /** * int32 oneof_1785 = 1785; * @return The oneof1785. @@ -282688,6 +318194,13 @@ public Builder clearOneof1785() { return this; } + /** + * int32 oneof_1786 = 1786; + * @return Whether the oneof1786 field is set. + */ + public boolean hasOneof1786() { + return hugeOneofCase_ == 1786; + } /** * int32 oneof_1786 = 1786; * @return The oneof1786. @@ -282722,6 +318235,13 @@ public Builder clearOneof1786() { return this; } + /** + * int32 oneof_1787 = 1787; + * @return Whether the oneof1787 field is set. + */ + public boolean hasOneof1787() { + return hugeOneofCase_ == 1787; + } /** * int32 oneof_1787 = 1787; * @return The oneof1787. @@ -282756,6 +318276,13 @@ public Builder clearOneof1787() { return this; } + /** + * int32 oneof_1788 = 1788; + * @return Whether the oneof1788 field is set. + */ + public boolean hasOneof1788() { + return hugeOneofCase_ == 1788; + } /** * int32 oneof_1788 = 1788; * @return The oneof1788. @@ -282790,6 +318317,13 @@ public Builder clearOneof1788() { return this; } + /** + * int32 oneof_1789 = 1789; + * @return Whether the oneof1789 field is set. + */ + public boolean hasOneof1789() { + return hugeOneofCase_ == 1789; + } /** * int32 oneof_1789 = 1789; * @return The oneof1789. @@ -282824,6 +318358,13 @@ public Builder clearOneof1789() { return this; } + /** + * int32 oneof_1790 = 1790; + * @return Whether the oneof1790 field is set. + */ + public boolean hasOneof1790() { + return hugeOneofCase_ == 1790; + } /** * int32 oneof_1790 = 1790; * @return The oneof1790. @@ -282858,6 +318399,13 @@ public Builder clearOneof1790() { return this; } + /** + * int32 oneof_1791 = 1791; + * @return Whether the oneof1791 field is set. + */ + public boolean hasOneof1791() { + return hugeOneofCase_ == 1791; + } /** * int32 oneof_1791 = 1791; * @return The oneof1791. @@ -282892,6 +318440,13 @@ public Builder clearOneof1791() { return this; } + /** + * int32 oneof_1792 = 1792; + * @return Whether the oneof1792 field is set. + */ + public boolean hasOneof1792() { + return hugeOneofCase_ == 1792; + } /** * int32 oneof_1792 = 1792; * @return The oneof1792. @@ -282926,6 +318481,13 @@ public Builder clearOneof1792() { return this; } + /** + * int32 oneof_1793 = 1793; + * @return Whether the oneof1793 field is set. + */ + public boolean hasOneof1793() { + return hugeOneofCase_ == 1793; + } /** * int32 oneof_1793 = 1793; * @return The oneof1793. @@ -282960,6 +318522,13 @@ public Builder clearOneof1793() { return this; } + /** + * int32 oneof_1794 = 1794; + * @return Whether the oneof1794 field is set. + */ + public boolean hasOneof1794() { + return hugeOneofCase_ == 1794; + } /** * int32 oneof_1794 = 1794; * @return The oneof1794. @@ -282994,6 +318563,13 @@ public Builder clearOneof1794() { return this; } + /** + * int32 oneof_1795 = 1795; + * @return Whether the oneof1795 field is set. + */ + public boolean hasOneof1795() { + return hugeOneofCase_ == 1795; + } /** * int32 oneof_1795 = 1795; * @return The oneof1795. @@ -283028,6 +318604,13 @@ public Builder clearOneof1795() { return this; } + /** + * int32 oneof_1796 = 1796; + * @return Whether the oneof1796 field is set. + */ + public boolean hasOneof1796() { + return hugeOneofCase_ == 1796; + } /** * int32 oneof_1796 = 1796; * @return The oneof1796. @@ -283062,6 +318645,13 @@ public Builder clearOneof1796() { return this; } + /** + * int32 oneof_1797 = 1797; + * @return Whether the oneof1797 field is set. + */ + public boolean hasOneof1797() { + return hugeOneofCase_ == 1797; + } /** * int32 oneof_1797 = 1797; * @return The oneof1797. @@ -283096,6 +318686,13 @@ public Builder clearOneof1797() { return this; } + /** + * int32 oneof_1798 = 1798; + * @return Whether the oneof1798 field is set. + */ + public boolean hasOneof1798() { + return hugeOneofCase_ == 1798; + } /** * int32 oneof_1798 = 1798; * @return The oneof1798. @@ -283130,6 +318727,13 @@ public Builder clearOneof1798() { return this; } + /** + * int32 oneof_1799 = 1799; + * @return Whether the oneof1799 field is set. + */ + public boolean hasOneof1799() { + return hugeOneofCase_ == 1799; + } /** * int32 oneof_1799 = 1799; * @return The oneof1799. @@ -283164,6 +318768,13 @@ public Builder clearOneof1799() { return this; } + /** + * int32 oneof_1800 = 1800; + * @return Whether the oneof1800 field is set. + */ + public boolean hasOneof1800() { + return hugeOneofCase_ == 1800; + } /** * int32 oneof_1800 = 1800; * @return The oneof1800. @@ -283198,6 +318809,13 @@ public Builder clearOneof1800() { return this; } + /** + * int32 oneof_1801 = 1801; + * @return Whether the oneof1801 field is set. + */ + public boolean hasOneof1801() { + return hugeOneofCase_ == 1801; + } /** * int32 oneof_1801 = 1801; * @return The oneof1801. @@ -283232,6 +318850,13 @@ public Builder clearOneof1801() { return this; } + /** + * int32 oneof_1802 = 1802; + * @return Whether the oneof1802 field is set. + */ + public boolean hasOneof1802() { + return hugeOneofCase_ == 1802; + } /** * int32 oneof_1802 = 1802; * @return The oneof1802. @@ -283266,6 +318891,13 @@ public Builder clearOneof1802() { return this; } + /** + * int32 oneof_1803 = 1803; + * @return Whether the oneof1803 field is set. + */ + public boolean hasOneof1803() { + return hugeOneofCase_ == 1803; + } /** * int32 oneof_1803 = 1803; * @return The oneof1803. @@ -283300,6 +318932,13 @@ public Builder clearOneof1803() { return this; } + /** + * int32 oneof_1804 = 1804; + * @return Whether the oneof1804 field is set. + */ + public boolean hasOneof1804() { + return hugeOneofCase_ == 1804; + } /** * int32 oneof_1804 = 1804; * @return The oneof1804. @@ -283334,6 +318973,13 @@ public Builder clearOneof1804() { return this; } + /** + * int32 oneof_1805 = 1805; + * @return Whether the oneof1805 field is set. + */ + public boolean hasOneof1805() { + return hugeOneofCase_ == 1805; + } /** * int32 oneof_1805 = 1805; * @return The oneof1805. @@ -283368,6 +319014,13 @@ public Builder clearOneof1805() { return this; } + /** + * int32 oneof_1806 = 1806; + * @return Whether the oneof1806 field is set. + */ + public boolean hasOneof1806() { + return hugeOneofCase_ == 1806; + } /** * int32 oneof_1806 = 1806; * @return The oneof1806. @@ -283402,6 +319055,13 @@ public Builder clearOneof1806() { return this; } + /** + * int32 oneof_1807 = 1807; + * @return Whether the oneof1807 field is set. + */ + public boolean hasOneof1807() { + return hugeOneofCase_ == 1807; + } /** * int32 oneof_1807 = 1807; * @return The oneof1807. @@ -283436,6 +319096,13 @@ public Builder clearOneof1807() { return this; } + /** + * int32 oneof_1808 = 1808; + * @return Whether the oneof1808 field is set. + */ + public boolean hasOneof1808() { + return hugeOneofCase_ == 1808; + } /** * int32 oneof_1808 = 1808; * @return The oneof1808. @@ -283470,6 +319137,13 @@ public Builder clearOneof1808() { return this; } + /** + * int32 oneof_1809 = 1809; + * @return Whether the oneof1809 field is set. + */ + public boolean hasOneof1809() { + return hugeOneofCase_ == 1809; + } /** * int32 oneof_1809 = 1809; * @return The oneof1809. @@ -283504,6 +319178,13 @@ public Builder clearOneof1809() { return this; } + /** + * int32 oneof_1810 = 1810; + * @return Whether the oneof1810 field is set. + */ + public boolean hasOneof1810() { + return hugeOneofCase_ == 1810; + } /** * int32 oneof_1810 = 1810; * @return The oneof1810. @@ -283538,6 +319219,13 @@ public Builder clearOneof1810() { return this; } + /** + * int32 oneof_1811 = 1811; + * @return Whether the oneof1811 field is set. + */ + public boolean hasOneof1811() { + return hugeOneofCase_ == 1811; + } /** * int32 oneof_1811 = 1811; * @return The oneof1811. @@ -283572,6 +319260,13 @@ public Builder clearOneof1811() { return this; } + /** + * int32 oneof_1812 = 1812; + * @return Whether the oneof1812 field is set. + */ + public boolean hasOneof1812() { + return hugeOneofCase_ == 1812; + } /** * int32 oneof_1812 = 1812; * @return The oneof1812. @@ -283606,6 +319301,13 @@ public Builder clearOneof1812() { return this; } + /** + * int32 oneof_1813 = 1813; + * @return Whether the oneof1813 field is set. + */ + public boolean hasOneof1813() { + return hugeOneofCase_ == 1813; + } /** * int32 oneof_1813 = 1813; * @return The oneof1813. @@ -283640,6 +319342,13 @@ public Builder clearOneof1813() { return this; } + /** + * int32 oneof_1814 = 1814; + * @return Whether the oneof1814 field is set. + */ + public boolean hasOneof1814() { + return hugeOneofCase_ == 1814; + } /** * int32 oneof_1814 = 1814; * @return The oneof1814. @@ -283674,6 +319383,13 @@ public Builder clearOneof1814() { return this; } + /** + * int32 oneof_1815 = 1815; + * @return Whether the oneof1815 field is set. + */ + public boolean hasOneof1815() { + return hugeOneofCase_ == 1815; + } /** * int32 oneof_1815 = 1815; * @return The oneof1815. @@ -283708,6 +319424,13 @@ public Builder clearOneof1815() { return this; } + /** + * int32 oneof_1816 = 1816; + * @return Whether the oneof1816 field is set. + */ + public boolean hasOneof1816() { + return hugeOneofCase_ == 1816; + } /** * int32 oneof_1816 = 1816; * @return The oneof1816. @@ -283742,6 +319465,13 @@ public Builder clearOneof1816() { return this; } + /** + * int32 oneof_1817 = 1817; + * @return Whether the oneof1817 field is set. + */ + public boolean hasOneof1817() { + return hugeOneofCase_ == 1817; + } /** * int32 oneof_1817 = 1817; * @return The oneof1817. @@ -283776,6 +319506,13 @@ public Builder clearOneof1817() { return this; } + /** + * int32 oneof_1818 = 1818; + * @return Whether the oneof1818 field is set. + */ + public boolean hasOneof1818() { + return hugeOneofCase_ == 1818; + } /** * int32 oneof_1818 = 1818; * @return The oneof1818. @@ -283810,6 +319547,13 @@ public Builder clearOneof1818() { return this; } + /** + * int32 oneof_1819 = 1819; + * @return Whether the oneof1819 field is set. + */ + public boolean hasOneof1819() { + return hugeOneofCase_ == 1819; + } /** * int32 oneof_1819 = 1819; * @return The oneof1819. @@ -283844,6 +319588,13 @@ public Builder clearOneof1819() { return this; } + /** + * int32 oneof_1820 = 1820; + * @return Whether the oneof1820 field is set. + */ + public boolean hasOneof1820() { + return hugeOneofCase_ == 1820; + } /** * int32 oneof_1820 = 1820; * @return The oneof1820. @@ -283878,6 +319629,13 @@ public Builder clearOneof1820() { return this; } + /** + * int32 oneof_1821 = 1821; + * @return Whether the oneof1821 field is set. + */ + public boolean hasOneof1821() { + return hugeOneofCase_ == 1821; + } /** * int32 oneof_1821 = 1821; * @return The oneof1821. @@ -283912,6 +319670,13 @@ public Builder clearOneof1821() { return this; } + /** + * int32 oneof_1822 = 1822; + * @return Whether the oneof1822 field is set. + */ + public boolean hasOneof1822() { + return hugeOneofCase_ == 1822; + } /** * int32 oneof_1822 = 1822; * @return The oneof1822. @@ -283946,6 +319711,13 @@ public Builder clearOneof1822() { return this; } + /** + * int32 oneof_1823 = 1823; + * @return Whether the oneof1823 field is set. + */ + public boolean hasOneof1823() { + return hugeOneofCase_ == 1823; + } /** * int32 oneof_1823 = 1823; * @return The oneof1823. @@ -283980,6 +319752,13 @@ public Builder clearOneof1823() { return this; } + /** + * int32 oneof_1824 = 1824; + * @return Whether the oneof1824 field is set. + */ + public boolean hasOneof1824() { + return hugeOneofCase_ == 1824; + } /** * int32 oneof_1824 = 1824; * @return The oneof1824. @@ -284014,6 +319793,13 @@ public Builder clearOneof1824() { return this; } + /** + * int32 oneof_1825 = 1825; + * @return Whether the oneof1825 field is set. + */ + public boolean hasOneof1825() { + return hugeOneofCase_ == 1825; + } /** * int32 oneof_1825 = 1825; * @return The oneof1825. @@ -284048,6 +319834,13 @@ public Builder clearOneof1825() { return this; } + /** + * int32 oneof_1826 = 1826; + * @return Whether the oneof1826 field is set. + */ + public boolean hasOneof1826() { + return hugeOneofCase_ == 1826; + } /** * int32 oneof_1826 = 1826; * @return The oneof1826. @@ -284082,6 +319875,13 @@ public Builder clearOneof1826() { return this; } + /** + * int32 oneof_1827 = 1827; + * @return Whether the oneof1827 field is set. + */ + public boolean hasOneof1827() { + return hugeOneofCase_ == 1827; + } /** * int32 oneof_1827 = 1827; * @return The oneof1827. @@ -284116,6 +319916,13 @@ public Builder clearOneof1827() { return this; } + /** + * int32 oneof_1828 = 1828; + * @return Whether the oneof1828 field is set. + */ + public boolean hasOneof1828() { + return hugeOneofCase_ == 1828; + } /** * int32 oneof_1828 = 1828; * @return The oneof1828. @@ -284150,6 +319957,13 @@ public Builder clearOneof1828() { return this; } + /** + * int32 oneof_1829 = 1829; + * @return Whether the oneof1829 field is set. + */ + public boolean hasOneof1829() { + return hugeOneofCase_ == 1829; + } /** * int32 oneof_1829 = 1829; * @return The oneof1829. @@ -284184,6 +319998,13 @@ public Builder clearOneof1829() { return this; } + /** + * int32 oneof_1830 = 1830; + * @return Whether the oneof1830 field is set. + */ + public boolean hasOneof1830() { + return hugeOneofCase_ == 1830; + } /** * int32 oneof_1830 = 1830; * @return The oneof1830. @@ -284218,6 +320039,13 @@ public Builder clearOneof1830() { return this; } + /** + * int32 oneof_1831 = 1831; + * @return Whether the oneof1831 field is set. + */ + public boolean hasOneof1831() { + return hugeOneofCase_ == 1831; + } /** * int32 oneof_1831 = 1831; * @return The oneof1831. @@ -284252,6 +320080,13 @@ public Builder clearOneof1831() { return this; } + /** + * int32 oneof_1832 = 1832; + * @return Whether the oneof1832 field is set. + */ + public boolean hasOneof1832() { + return hugeOneofCase_ == 1832; + } /** * int32 oneof_1832 = 1832; * @return The oneof1832. @@ -284286,6 +320121,13 @@ public Builder clearOneof1832() { return this; } + /** + * int32 oneof_1833 = 1833; + * @return Whether the oneof1833 field is set. + */ + public boolean hasOneof1833() { + return hugeOneofCase_ == 1833; + } /** * int32 oneof_1833 = 1833; * @return The oneof1833. @@ -284320,6 +320162,13 @@ public Builder clearOneof1833() { return this; } + /** + * int32 oneof_1834 = 1834; + * @return Whether the oneof1834 field is set. + */ + public boolean hasOneof1834() { + return hugeOneofCase_ == 1834; + } /** * int32 oneof_1834 = 1834; * @return The oneof1834. @@ -284354,6 +320203,13 @@ public Builder clearOneof1834() { return this; } + /** + * int32 oneof_1835 = 1835; + * @return Whether the oneof1835 field is set. + */ + public boolean hasOneof1835() { + return hugeOneofCase_ == 1835; + } /** * int32 oneof_1835 = 1835; * @return The oneof1835. @@ -284388,6 +320244,13 @@ public Builder clearOneof1835() { return this; } + /** + * int32 oneof_1836 = 1836; + * @return Whether the oneof1836 field is set. + */ + public boolean hasOneof1836() { + return hugeOneofCase_ == 1836; + } /** * int32 oneof_1836 = 1836; * @return The oneof1836. @@ -284422,6 +320285,13 @@ public Builder clearOneof1836() { return this; } + /** + * int32 oneof_1837 = 1837; + * @return Whether the oneof1837 field is set. + */ + public boolean hasOneof1837() { + return hugeOneofCase_ == 1837; + } /** * int32 oneof_1837 = 1837; * @return The oneof1837. @@ -284456,6 +320326,13 @@ public Builder clearOneof1837() { return this; } + /** + * int32 oneof_1838 = 1838; + * @return Whether the oneof1838 field is set. + */ + public boolean hasOneof1838() { + return hugeOneofCase_ == 1838; + } /** * int32 oneof_1838 = 1838; * @return The oneof1838. @@ -284490,6 +320367,13 @@ public Builder clearOneof1838() { return this; } + /** + * int32 oneof_1839 = 1839; + * @return Whether the oneof1839 field is set. + */ + public boolean hasOneof1839() { + return hugeOneofCase_ == 1839; + } /** * int32 oneof_1839 = 1839; * @return The oneof1839. @@ -284524,6 +320408,13 @@ public Builder clearOneof1839() { return this; } + /** + * int32 oneof_1840 = 1840; + * @return Whether the oneof1840 field is set. + */ + public boolean hasOneof1840() { + return hugeOneofCase_ == 1840; + } /** * int32 oneof_1840 = 1840; * @return The oneof1840. @@ -284558,6 +320449,13 @@ public Builder clearOneof1840() { return this; } + /** + * int32 oneof_1841 = 1841; + * @return Whether the oneof1841 field is set. + */ + public boolean hasOneof1841() { + return hugeOneofCase_ == 1841; + } /** * int32 oneof_1841 = 1841; * @return The oneof1841. @@ -284592,6 +320490,13 @@ public Builder clearOneof1841() { return this; } + /** + * int32 oneof_1842 = 1842; + * @return Whether the oneof1842 field is set. + */ + public boolean hasOneof1842() { + return hugeOneofCase_ == 1842; + } /** * int32 oneof_1842 = 1842; * @return The oneof1842. @@ -284626,6 +320531,13 @@ public Builder clearOneof1842() { return this; } + /** + * int32 oneof_1843 = 1843; + * @return Whether the oneof1843 field is set. + */ + public boolean hasOneof1843() { + return hugeOneofCase_ == 1843; + } /** * int32 oneof_1843 = 1843; * @return The oneof1843. @@ -284660,6 +320572,13 @@ public Builder clearOneof1843() { return this; } + /** + * int32 oneof_1844 = 1844; + * @return Whether the oneof1844 field is set. + */ + public boolean hasOneof1844() { + return hugeOneofCase_ == 1844; + } /** * int32 oneof_1844 = 1844; * @return The oneof1844. @@ -284694,6 +320613,13 @@ public Builder clearOneof1844() { return this; } + /** + * int32 oneof_1845 = 1845; + * @return Whether the oneof1845 field is set. + */ + public boolean hasOneof1845() { + return hugeOneofCase_ == 1845; + } /** * int32 oneof_1845 = 1845; * @return The oneof1845. @@ -284728,6 +320654,13 @@ public Builder clearOneof1845() { return this; } + /** + * int32 oneof_1846 = 1846; + * @return Whether the oneof1846 field is set. + */ + public boolean hasOneof1846() { + return hugeOneofCase_ == 1846; + } /** * int32 oneof_1846 = 1846; * @return The oneof1846. @@ -284762,6 +320695,13 @@ public Builder clearOneof1846() { return this; } + /** + * int32 oneof_1847 = 1847; + * @return Whether the oneof1847 field is set. + */ + public boolean hasOneof1847() { + return hugeOneofCase_ == 1847; + } /** * int32 oneof_1847 = 1847; * @return The oneof1847. @@ -284796,6 +320736,13 @@ public Builder clearOneof1847() { return this; } + /** + * int32 oneof_1848 = 1848; + * @return Whether the oneof1848 field is set. + */ + public boolean hasOneof1848() { + return hugeOneofCase_ == 1848; + } /** * int32 oneof_1848 = 1848; * @return The oneof1848. @@ -284830,6 +320777,13 @@ public Builder clearOneof1848() { return this; } + /** + * int32 oneof_1849 = 1849; + * @return Whether the oneof1849 field is set. + */ + public boolean hasOneof1849() { + return hugeOneofCase_ == 1849; + } /** * int32 oneof_1849 = 1849; * @return The oneof1849. @@ -284864,6 +320818,13 @@ public Builder clearOneof1849() { return this; } + /** + * int32 oneof_1850 = 1850; + * @return Whether the oneof1850 field is set. + */ + public boolean hasOneof1850() { + return hugeOneofCase_ == 1850; + } /** * int32 oneof_1850 = 1850; * @return The oneof1850. @@ -284898,6 +320859,13 @@ public Builder clearOneof1850() { return this; } + /** + * int32 oneof_1851 = 1851; + * @return Whether the oneof1851 field is set. + */ + public boolean hasOneof1851() { + return hugeOneofCase_ == 1851; + } /** * int32 oneof_1851 = 1851; * @return The oneof1851. @@ -284932,6 +320900,13 @@ public Builder clearOneof1851() { return this; } + /** + * int32 oneof_1852 = 1852; + * @return Whether the oneof1852 field is set. + */ + public boolean hasOneof1852() { + return hugeOneofCase_ == 1852; + } /** * int32 oneof_1852 = 1852; * @return The oneof1852. @@ -284966,6 +320941,13 @@ public Builder clearOneof1852() { return this; } + /** + * int32 oneof_1853 = 1853; + * @return Whether the oneof1853 field is set. + */ + public boolean hasOneof1853() { + return hugeOneofCase_ == 1853; + } /** * int32 oneof_1853 = 1853; * @return The oneof1853. @@ -285000,6 +320982,13 @@ public Builder clearOneof1853() { return this; } + /** + * int32 oneof_1854 = 1854; + * @return Whether the oneof1854 field is set. + */ + public boolean hasOneof1854() { + return hugeOneofCase_ == 1854; + } /** * int32 oneof_1854 = 1854; * @return The oneof1854. @@ -285034,6 +321023,13 @@ public Builder clearOneof1854() { return this; } + /** + * int32 oneof_1855 = 1855; + * @return Whether the oneof1855 field is set. + */ + public boolean hasOneof1855() { + return hugeOneofCase_ == 1855; + } /** * int32 oneof_1855 = 1855; * @return The oneof1855. @@ -285068,6 +321064,13 @@ public Builder clearOneof1855() { return this; } + /** + * int32 oneof_1856 = 1856; + * @return Whether the oneof1856 field is set. + */ + public boolean hasOneof1856() { + return hugeOneofCase_ == 1856; + } /** * int32 oneof_1856 = 1856; * @return The oneof1856. @@ -285102,6 +321105,13 @@ public Builder clearOneof1856() { return this; } + /** + * int32 oneof_1857 = 1857; + * @return Whether the oneof1857 field is set. + */ + public boolean hasOneof1857() { + return hugeOneofCase_ == 1857; + } /** * int32 oneof_1857 = 1857; * @return The oneof1857. @@ -285136,6 +321146,13 @@ public Builder clearOneof1857() { return this; } + /** + * int32 oneof_1858 = 1858; + * @return Whether the oneof1858 field is set. + */ + public boolean hasOneof1858() { + return hugeOneofCase_ == 1858; + } /** * int32 oneof_1858 = 1858; * @return The oneof1858. @@ -285170,6 +321187,13 @@ public Builder clearOneof1858() { return this; } + /** + * int32 oneof_1859 = 1859; + * @return Whether the oneof1859 field is set. + */ + public boolean hasOneof1859() { + return hugeOneofCase_ == 1859; + } /** * int32 oneof_1859 = 1859; * @return The oneof1859. @@ -285204,6 +321228,13 @@ public Builder clearOneof1859() { return this; } + /** + * int32 oneof_1860 = 1860; + * @return Whether the oneof1860 field is set. + */ + public boolean hasOneof1860() { + return hugeOneofCase_ == 1860; + } /** * int32 oneof_1860 = 1860; * @return The oneof1860. @@ -285238,6 +321269,13 @@ public Builder clearOneof1860() { return this; } + /** + * int32 oneof_1861 = 1861; + * @return Whether the oneof1861 field is set. + */ + public boolean hasOneof1861() { + return hugeOneofCase_ == 1861; + } /** * int32 oneof_1861 = 1861; * @return The oneof1861. @@ -285272,6 +321310,13 @@ public Builder clearOneof1861() { return this; } + /** + * int32 oneof_1862 = 1862; + * @return Whether the oneof1862 field is set. + */ + public boolean hasOneof1862() { + return hugeOneofCase_ == 1862; + } /** * int32 oneof_1862 = 1862; * @return The oneof1862. @@ -285306,6 +321351,13 @@ public Builder clearOneof1862() { return this; } + /** + * int32 oneof_1863 = 1863; + * @return Whether the oneof1863 field is set. + */ + public boolean hasOneof1863() { + return hugeOneofCase_ == 1863; + } /** * int32 oneof_1863 = 1863; * @return The oneof1863. @@ -285340,6 +321392,13 @@ public Builder clearOneof1863() { return this; } + /** + * int32 oneof_1864 = 1864; + * @return Whether the oneof1864 field is set. + */ + public boolean hasOneof1864() { + return hugeOneofCase_ == 1864; + } /** * int32 oneof_1864 = 1864; * @return The oneof1864. @@ -285374,6 +321433,13 @@ public Builder clearOneof1864() { return this; } + /** + * int32 oneof_1865 = 1865; + * @return Whether the oneof1865 field is set. + */ + public boolean hasOneof1865() { + return hugeOneofCase_ == 1865; + } /** * int32 oneof_1865 = 1865; * @return The oneof1865. @@ -285408,6 +321474,13 @@ public Builder clearOneof1865() { return this; } + /** + * int32 oneof_1866 = 1866; + * @return Whether the oneof1866 field is set. + */ + public boolean hasOneof1866() { + return hugeOneofCase_ == 1866; + } /** * int32 oneof_1866 = 1866; * @return The oneof1866. @@ -285442,6 +321515,13 @@ public Builder clearOneof1866() { return this; } + /** + * int32 oneof_1867 = 1867; + * @return Whether the oneof1867 field is set. + */ + public boolean hasOneof1867() { + return hugeOneofCase_ == 1867; + } /** * int32 oneof_1867 = 1867; * @return The oneof1867. @@ -285476,6 +321556,13 @@ public Builder clearOneof1867() { return this; } + /** + * int32 oneof_1868 = 1868; + * @return Whether the oneof1868 field is set. + */ + public boolean hasOneof1868() { + return hugeOneofCase_ == 1868; + } /** * int32 oneof_1868 = 1868; * @return The oneof1868. @@ -285510,6 +321597,13 @@ public Builder clearOneof1868() { return this; } + /** + * int32 oneof_1869 = 1869; + * @return Whether the oneof1869 field is set. + */ + public boolean hasOneof1869() { + return hugeOneofCase_ == 1869; + } /** * int32 oneof_1869 = 1869; * @return The oneof1869. @@ -285544,6 +321638,13 @@ public Builder clearOneof1869() { return this; } + /** + * int32 oneof_1870 = 1870; + * @return Whether the oneof1870 field is set. + */ + public boolean hasOneof1870() { + return hugeOneofCase_ == 1870; + } /** * int32 oneof_1870 = 1870; * @return The oneof1870. @@ -285578,6 +321679,13 @@ public Builder clearOneof1870() { return this; } + /** + * int32 oneof_1871 = 1871; + * @return Whether the oneof1871 field is set. + */ + public boolean hasOneof1871() { + return hugeOneofCase_ == 1871; + } /** * int32 oneof_1871 = 1871; * @return The oneof1871. @@ -285612,6 +321720,13 @@ public Builder clearOneof1871() { return this; } + /** + * int32 oneof_1872 = 1872; + * @return Whether the oneof1872 field is set. + */ + public boolean hasOneof1872() { + return hugeOneofCase_ == 1872; + } /** * int32 oneof_1872 = 1872; * @return The oneof1872. @@ -285646,6 +321761,13 @@ public Builder clearOneof1872() { return this; } + /** + * int32 oneof_1873 = 1873; + * @return Whether the oneof1873 field is set. + */ + public boolean hasOneof1873() { + return hugeOneofCase_ == 1873; + } /** * int32 oneof_1873 = 1873; * @return The oneof1873. @@ -285680,6 +321802,13 @@ public Builder clearOneof1873() { return this; } + /** + * int32 oneof_1874 = 1874; + * @return Whether the oneof1874 field is set. + */ + public boolean hasOneof1874() { + return hugeOneofCase_ == 1874; + } /** * int32 oneof_1874 = 1874; * @return The oneof1874. @@ -285714,6 +321843,13 @@ public Builder clearOneof1874() { return this; } + /** + * int32 oneof_1875 = 1875; + * @return Whether the oneof1875 field is set. + */ + public boolean hasOneof1875() { + return hugeOneofCase_ == 1875; + } /** * int32 oneof_1875 = 1875; * @return The oneof1875. @@ -285748,6 +321884,13 @@ public Builder clearOneof1875() { return this; } + /** + * int32 oneof_1876 = 1876; + * @return Whether the oneof1876 field is set. + */ + public boolean hasOneof1876() { + return hugeOneofCase_ == 1876; + } /** * int32 oneof_1876 = 1876; * @return The oneof1876. @@ -285782,6 +321925,13 @@ public Builder clearOneof1876() { return this; } + /** + * int32 oneof_1877 = 1877; + * @return Whether the oneof1877 field is set. + */ + public boolean hasOneof1877() { + return hugeOneofCase_ == 1877; + } /** * int32 oneof_1877 = 1877; * @return The oneof1877. @@ -285816,6 +321966,13 @@ public Builder clearOneof1877() { return this; } + /** + * int32 oneof_1878 = 1878; + * @return Whether the oneof1878 field is set. + */ + public boolean hasOneof1878() { + return hugeOneofCase_ == 1878; + } /** * int32 oneof_1878 = 1878; * @return The oneof1878. @@ -285850,6 +322007,13 @@ public Builder clearOneof1878() { return this; } + /** + * int32 oneof_1879 = 1879; + * @return Whether the oneof1879 field is set. + */ + public boolean hasOneof1879() { + return hugeOneofCase_ == 1879; + } /** * int32 oneof_1879 = 1879; * @return The oneof1879. @@ -285884,6 +322048,13 @@ public Builder clearOneof1879() { return this; } + /** + * int32 oneof_1880 = 1880; + * @return Whether the oneof1880 field is set. + */ + public boolean hasOneof1880() { + return hugeOneofCase_ == 1880; + } /** * int32 oneof_1880 = 1880; * @return The oneof1880. @@ -285918,6 +322089,13 @@ public Builder clearOneof1880() { return this; } + /** + * int32 oneof_1881 = 1881; + * @return Whether the oneof1881 field is set. + */ + public boolean hasOneof1881() { + return hugeOneofCase_ == 1881; + } /** * int32 oneof_1881 = 1881; * @return The oneof1881. @@ -285952,6 +322130,13 @@ public Builder clearOneof1881() { return this; } + /** + * int32 oneof_1882 = 1882; + * @return Whether the oneof1882 field is set. + */ + public boolean hasOneof1882() { + return hugeOneofCase_ == 1882; + } /** * int32 oneof_1882 = 1882; * @return The oneof1882. @@ -285986,6 +322171,13 @@ public Builder clearOneof1882() { return this; } + /** + * int32 oneof_1883 = 1883; + * @return Whether the oneof1883 field is set. + */ + public boolean hasOneof1883() { + return hugeOneofCase_ == 1883; + } /** * int32 oneof_1883 = 1883; * @return The oneof1883. @@ -286020,6 +322212,13 @@ public Builder clearOneof1883() { return this; } + /** + * int32 oneof_1884 = 1884; + * @return Whether the oneof1884 field is set. + */ + public boolean hasOneof1884() { + return hugeOneofCase_ == 1884; + } /** * int32 oneof_1884 = 1884; * @return The oneof1884. @@ -286054,6 +322253,13 @@ public Builder clearOneof1884() { return this; } + /** + * int32 oneof_1885 = 1885; + * @return Whether the oneof1885 field is set. + */ + public boolean hasOneof1885() { + return hugeOneofCase_ == 1885; + } /** * int32 oneof_1885 = 1885; * @return The oneof1885. @@ -286088,6 +322294,13 @@ public Builder clearOneof1885() { return this; } + /** + * int32 oneof_1886 = 1886; + * @return Whether the oneof1886 field is set. + */ + public boolean hasOneof1886() { + return hugeOneofCase_ == 1886; + } /** * int32 oneof_1886 = 1886; * @return The oneof1886. @@ -286122,6 +322335,13 @@ public Builder clearOneof1886() { return this; } + /** + * int32 oneof_1887 = 1887; + * @return Whether the oneof1887 field is set. + */ + public boolean hasOneof1887() { + return hugeOneofCase_ == 1887; + } /** * int32 oneof_1887 = 1887; * @return The oneof1887. @@ -286156,6 +322376,13 @@ public Builder clearOneof1887() { return this; } + /** + * int32 oneof_1888 = 1888; + * @return Whether the oneof1888 field is set. + */ + public boolean hasOneof1888() { + return hugeOneofCase_ == 1888; + } /** * int32 oneof_1888 = 1888; * @return The oneof1888. @@ -286190,6 +322417,13 @@ public Builder clearOneof1888() { return this; } + /** + * int32 oneof_1889 = 1889; + * @return Whether the oneof1889 field is set. + */ + public boolean hasOneof1889() { + return hugeOneofCase_ == 1889; + } /** * int32 oneof_1889 = 1889; * @return The oneof1889. @@ -286224,6 +322458,13 @@ public Builder clearOneof1889() { return this; } + /** + * int32 oneof_1890 = 1890; + * @return Whether the oneof1890 field is set. + */ + public boolean hasOneof1890() { + return hugeOneofCase_ == 1890; + } /** * int32 oneof_1890 = 1890; * @return The oneof1890. @@ -286258,6 +322499,13 @@ public Builder clearOneof1890() { return this; } + /** + * int32 oneof_1891 = 1891; + * @return Whether the oneof1891 field is set. + */ + public boolean hasOneof1891() { + return hugeOneofCase_ == 1891; + } /** * int32 oneof_1891 = 1891; * @return The oneof1891. @@ -286292,6 +322540,13 @@ public Builder clearOneof1891() { return this; } + /** + * int32 oneof_1892 = 1892; + * @return Whether the oneof1892 field is set. + */ + public boolean hasOneof1892() { + return hugeOneofCase_ == 1892; + } /** * int32 oneof_1892 = 1892; * @return The oneof1892. @@ -286326,6 +322581,13 @@ public Builder clearOneof1892() { return this; } + /** + * int32 oneof_1893 = 1893; + * @return Whether the oneof1893 field is set. + */ + public boolean hasOneof1893() { + return hugeOneofCase_ == 1893; + } /** * int32 oneof_1893 = 1893; * @return The oneof1893. @@ -286360,6 +322622,13 @@ public Builder clearOneof1893() { return this; } + /** + * int32 oneof_1894 = 1894; + * @return Whether the oneof1894 field is set. + */ + public boolean hasOneof1894() { + return hugeOneofCase_ == 1894; + } /** * int32 oneof_1894 = 1894; * @return The oneof1894. @@ -286394,6 +322663,13 @@ public Builder clearOneof1894() { return this; } + /** + * int32 oneof_1895 = 1895; + * @return Whether the oneof1895 field is set. + */ + public boolean hasOneof1895() { + return hugeOneofCase_ == 1895; + } /** * int32 oneof_1895 = 1895; * @return The oneof1895. @@ -286428,6 +322704,13 @@ public Builder clearOneof1895() { return this; } + /** + * int32 oneof_1896 = 1896; + * @return Whether the oneof1896 field is set. + */ + public boolean hasOneof1896() { + return hugeOneofCase_ == 1896; + } /** * int32 oneof_1896 = 1896; * @return The oneof1896. @@ -286462,6 +322745,13 @@ public Builder clearOneof1896() { return this; } + /** + * int32 oneof_1897 = 1897; + * @return Whether the oneof1897 field is set. + */ + public boolean hasOneof1897() { + return hugeOneofCase_ == 1897; + } /** * int32 oneof_1897 = 1897; * @return The oneof1897. @@ -286496,6 +322786,13 @@ public Builder clearOneof1897() { return this; } + /** + * int32 oneof_1898 = 1898; + * @return Whether the oneof1898 field is set. + */ + public boolean hasOneof1898() { + return hugeOneofCase_ == 1898; + } /** * int32 oneof_1898 = 1898; * @return The oneof1898. @@ -286530,6 +322827,13 @@ public Builder clearOneof1898() { return this; } + /** + * int32 oneof_1899 = 1899; + * @return Whether the oneof1899 field is set. + */ + public boolean hasOneof1899() { + return hugeOneofCase_ == 1899; + } /** * int32 oneof_1899 = 1899; * @return The oneof1899. @@ -286564,6 +322868,13 @@ public Builder clearOneof1899() { return this; } + /** + * int32 oneof_1900 = 1900; + * @return Whether the oneof1900 field is set. + */ + public boolean hasOneof1900() { + return hugeOneofCase_ == 1900; + } /** * int32 oneof_1900 = 1900; * @return The oneof1900. @@ -286598,6 +322909,13 @@ public Builder clearOneof1900() { return this; } + /** + * int32 oneof_1901 = 1901; + * @return Whether the oneof1901 field is set. + */ + public boolean hasOneof1901() { + return hugeOneofCase_ == 1901; + } /** * int32 oneof_1901 = 1901; * @return The oneof1901. @@ -286632,6 +322950,13 @@ public Builder clearOneof1901() { return this; } + /** + * int32 oneof_1902 = 1902; + * @return Whether the oneof1902 field is set. + */ + public boolean hasOneof1902() { + return hugeOneofCase_ == 1902; + } /** * int32 oneof_1902 = 1902; * @return The oneof1902. @@ -286666,6 +322991,13 @@ public Builder clearOneof1902() { return this; } + /** + * int32 oneof_1903 = 1903; + * @return Whether the oneof1903 field is set. + */ + public boolean hasOneof1903() { + return hugeOneofCase_ == 1903; + } /** * int32 oneof_1903 = 1903; * @return The oneof1903. @@ -286700,6 +323032,13 @@ public Builder clearOneof1903() { return this; } + /** + * int32 oneof_1904 = 1904; + * @return Whether the oneof1904 field is set. + */ + public boolean hasOneof1904() { + return hugeOneofCase_ == 1904; + } /** * int32 oneof_1904 = 1904; * @return The oneof1904. @@ -286734,6 +323073,13 @@ public Builder clearOneof1904() { return this; } + /** + * int32 oneof_1905 = 1905; + * @return Whether the oneof1905 field is set. + */ + public boolean hasOneof1905() { + return hugeOneofCase_ == 1905; + } /** * int32 oneof_1905 = 1905; * @return The oneof1905. @@ -286768,6 +323114,13 @@ public Builder clearOneof1905() { return this; } + /** + * int32 oneof_1906 = 1906; + * @return Whether the oneof1906 field is set. + */ + public boolean hasOneof1906() { + return hugeOneofCase_ == 1906; + } /** * int32 oneof_1906 = 1906; * @return The oneof1906. @@ -286802,6 +323155,13 @@ public Builder clearOneof1906() { return this; } + /** + * int32 oneof_1907 = 1907; + * @return Whether the oneof1907 field is set. + */ + public boolean hasOneof1907() { + return hugeOneofCase_ == 1907; + } /** * int32 oneof_1907 = 1907; * @return The oneof1907. @@ -286836,6 +323196,13 @@ public Builder clearOneof1907() { return this; } + /** + * int32 oneof_1908 = 1908; + * @return Whether the oneof1908 field is set. + */ + public boolean hasOneof1908() { + return hugeOneofCase_ == 1908; + } /** * int32 oneof_1908 = 1908; * @return The oneof1908. @@ -286870,6 +323237,13 @@ public Builder clearOneof1908() { return this; } + /** + * int32 oneof_1909 = 1909; + * @return Whether the oneof1909 field is set. + */ + public boolean hasOneof1909() { + return hugeOneofCase_ == 1909; + } /** * int32 oneof_1909 = 1909; * @return The oneof1909. @@ -286904,6 +323278,13 @@ public Builder clearOneof1909() { return this; } + /** + * int32 oneof_1910 = 1910; + * @return Whether the oneof1910 field is set. + */ + public boolean hasOneof1910() { + return hugeOneofCase_ == 1910; + } /** * int32 oneof_1910 = 1910; * @return The oneof1910. @@ -286938,6 +323319,13 @@ public Builder clearOneof1910() { return this; } + /** + * int32 oneof_1911 = 1911; + * @return Whether the oneof1911 field is set. + */ + public boolean hasOneof1911() { + return hugeOneofCase_ == 1911; + } /** * int32 oneof_1911 = 1911; * @return The oneof1911. @@ -286972,6 +323360,13 @@ public Builder clearOneof1911() { return this; } + /** + * int32 oneof_1912 = 1912; + * @return Whether the oneof1912 field is set. + */ + public boolean hasOneof1912() { + return hugeOneofCase_ == 1912; + } /** * int32 oneof_1912 = 1912; * @return The oneof1912. @@ -287006,6 +323401,13 @@ public Builder clearOneof1912() { return this; } + /** + * int32 oneof_1913 = 1913; + * @return Whether the oneof1913 field is set. + */ + public boolean hasOneof1913() { + return hugeOneofCase_ == 1913; + } /** * int32 oneof_1913 = 1913; * @return The oneof1913. @@ -287040,6 +323442,13 @@ public Builder clearOneof1913() { return this; } + /** + * int32 oneof_1914 = 1914; + * @return Whether the oneof1914 field is set. + */ + public boolean hasOneof1914() { + return hugeOneofCase_ == 1914; + } /** * int32 oneof_1914 = 1914; * @return The oneof1914. @@ -287074,6 +323483,13 @@ public Builder clearOneof1914() { return this; } + /** + * int32 oneof_1915 = 1915; + * @return Whether the oneof1915 field is set. + */ + public boolean hasOneof1915() { + return hugeOneofCase_ == 1915; + } /** * int32 oneof_1915 = 1915; * @return The oneof1915. @@ -287108,6 +323524,13 @@ public Builder clearOneof1915() { return this; } + /** + * int32 oneof_1916 = 1916; + * @return Whether the oneof1916 field is set. + */ + public boolean hasOneof1916() { + return hugeOneofCase_ == 1916; + } /** * int32 oneof_1916 = 1916; * @return The oneof1916. @@ -287142,6 +323565,13 @@ public Builder clearOneof1916() { return this; } + /** + * int32 oneof_1917 = 1917; + * @return Whether the oneof1917 field is set. + */ + public boolean hasOneof1917() { + return hugeOneofCase_ == 1917; + } /** * int32 oneof_1917 = 1917; * @return The oneof1917. @@ -287176,6 +323606,13 @@ public Builder clearOneof1917() { return this; } + /** + * int32 oneof_1918 = 1918; + * @return Whether the oneof1918 field is set. + */ + public boolean hasOneof1918() { + return hugeOneofCase_ == 1918; + } /** * int32 oneof_1918 = 1918; * @return The oneof1918. @@ -287210,6 +323647,13 @@ public Builder clearOneof1918() { return this; } + /** + * int32 oneof_1919 = 1919; + * @return Whether the oneof1919 field is set. + */ + public boolean hasOneof1919() { + return hugeOneofCase_ == 1919; + } /** * int32 oneof_1919 = 1919; * @return The oneof1919. @@ -287244,6 +323688,13 @@ public Builder clearOneof1919() { return this; } + /** + * int32 oneof_1920 = 1920; + * @return Whether the oneof1920 field is set. + */ + public boolean hasOneof1920() { + return hugeOneofCase_ == 1920; + } /** * int32 oneof_1920 = 1920; * @return The oneof1920. @@ -287278,6 +323729,13 @@ public Builder clearOneof1920() { return this; } + /** + * int32 oneof_1921 = 1921; + * @return Whether the oneof1921 field is set. + */ + public boolean hasOneof1921() { + return hugeOneofCase_ == 1921; + } /** * int32 oneof_1921 = 1921; * @return The oneof1921. @@ -287312,6 +323770,13 @@ public Builder clearOneof1921() { return this; } + /** + * int32 oneof_1922 = 1922; + * @return Whether the oneof1922 field is set. + */ + public boolean hasOneof1922() { + return hugeOneofCase_ == 1922; + } /** * int32 oneof_1922 = 1922; * @return The oneof1922. @@ -287346,6 +323811,13 @@ public Builder clearOneof1922() { return this; } + /** + * int32 oneof_1923 = 1923; + * @return Whether the oneof1923 field is set. + */ + public boolean hasOneof1923() { + return hugeOneofCase_ == 1923; + } /** * int32 oneof_1923 = 1923; * @return The oneof1923. @@ -287380,6 +323852,13 @@ public Builder clearOneof1923() { return this; } + /** + * int32 oneof_1924 = 1924; + * @return Whether the oneof1924 field is set. + */ + public boolean hasOneof1924() { + return hugeOneofCase_ == 1924; + } /** * int32 oneof_1924 = 1924; * @return The oneof1924. @@ -287414,6 +323893,13 @@ public Builder clearOneof1924() { return this; } + /** + * int32 oneof_1925 = 1925; + * @return Whether the oneof1925 field is set. + */ + public boolean hasOneof1925() { + return hugeOneofCase_ == 1925; + } /** * int32 oneof_1925 = 1925; * @return The oneof1925. @@ -287448,6 +323934,13 @@ public Builder clearOneof1925() { return this; } + /** + * int32 oneof_1926 = 1926; + * @return Whether the oneof1926 field is set. + */ + public boolean hasOneof1926() { + return hugeOneofCase_ == 1926; + } /** * int32 oneof_1926 = 1926; * @return The oneof1926. @@ -287482,6 +323975,13 @@ public Builder clearOneof1926() { return this; } + /** + * int32 oneof_1927 = 1927; + * @return Whether the oneof1927 field is set. + */ + public boolean hasOneof1927() { + return hugeOneofCase_ == 1927; + } /** * int32 oneof_1927 = 1927; * @return The oneof1927. @@ -287516,6 +324016,13 @@ public Builder clearOneof1927() { return this; } + /** + * int32 oneof_1928 = 1928; + * @return Whether the oneof1928 field is set. + */ + public boolean hasOneof1928() { + return hugeOneofCase_ == 1928; + } /** * int32 oneof_1928 = 1928; * @return The oneof1928. @@ -287550,6 +324057,13 @@ public Builder clearOneof1928() { return this; } + /** + * int32 oneof_1929 = 1929; + * @return Whether the oneof1929 field is set. + */ + public boolean hasOneof1929() { + return hugeOneofCase_ == 1929; + } /** * int32 oneof_1929 = 1929; * @return The oneof1929. @@ -287584,6 +324098,13 @@ public Builder clearOneof1929() { return this; } + /** + * int32 oneof_1930 = 1930; + * @return Whether the oneof1930 field is set. + */ + public boolean hasOneof1930() { + return hugeOneofCase_ == 1930; + } /** * int32 oneof_1930 = 1930; * @return The oneof1930. @@ -287618,6 +324139,13 @@ public Builder clearOneof1930() { return this; } + /** + * int32 oneof_1931 = 1931; + * @return Whether the oneof1931 field is set. + */ + public boolean hasOneof1931() { + return hugeOneofCase_ == 1931; + } /** * int32 oneof_1931 = 1931; * @return The oneof1931. @@ -287652,6 +324180,13 @@ public Builder clearOneof1931() { return this; } + /** + * int32 oneof_1932 = 1932; + * @return Whether the oneof1932 field is set. + */ + public boolean hasOneof1932() { + return hugeOneofCase_ == 1932; + } /** * int32 oneof_1932 = 1932; * @return The oneof1932. @@ -287686,6 +324221,13 @@ public Builder clearOneof1932() { return this; } + /** + * int32 oneof_1933 = 1933; + * @return Whether the oneof1933 field is set. + */ + public boolean hasOneof1933() { + return hugeOneofCase_ == 1933; + } /** * int32 oneof_1933 = 1933; * @return The oneof1933. @@ -287720,6 +324262,13 @@ public Builder clearOneof1933() { return this; } + /** + * int32 oneof_1934 = 1934; + * @return Whether the oneof1934 field is set. + */ + public boolean hasOneof1934() { + return hugeOneofCase_ == 1934; + } /** * int32 oneof_1934 = 1934; * @return The oneof1934. @@ -287754,6 +324303,13 @@ public Builder clearOneof1934() { return this; } + /** + * int32 oneof_1935 = 1935; + * @return Whether the oneof1935 field is set. + */ + public boolean hasOneof1935() { + return hugeOneofCase_ == 1935; + } /** * int32 oneof_1935 = 1935; * @return The oneof1935. @@ -287788,6 +324344,13 @@ public Builder clearOneof1935() { return this; } + /** + * int32 oneof_1936 = 1936; + * @return Whether the oneof1936 field is set. + */ + public boolean hasOneof1936() { + return hugeOneofCase_ == 1936; + } /** * int32 oneof_1936 = 1936; * @return The oneof1936. @@ -287822,6 +324385,13 @@ public Builder clearOneof1936() { return this; } + /** + * int32 oneof_1937 = 1937; + * @return Whether the oneof1937 field is set. + */ + public boolean hasOneof1937() { + return hugeOneofCase_ == 1937; + } /** * int32 oneof_1937 = 1937; * @return The oneof1937. @@ -287856,6 +324426,13 @@ public Builder clearOneof1937() { return this; } + /** + * int32 oneof_1938 = 1938; + * @return Whether the oneof1938 field is set. + */ + public boolean hasOneof1938() { + return hugeOneofCase_ == 1938; + } /** * int32 oneof_1938 = 1938; * @return The oneof1938. @@ -287890,6 +324467,13 @@ public Builder clearOneof1938() { return this; } + /** + * int32 oneof_1939 = 1939; + * @return Whether the oneof1939 field is set. + */ + public boolean hasOneof1939() { + return hugeOneofCase_ == 1939; + } /** * int32 oneof_1939 = 1939; * @return The oneof1939. @@ -287924,6 +324508,13 @@ public Builder clearOneof1939() { return this; } + /** + * int32 oneof_1940 = 1940; + * @return Whether the oneof1940 field is set. + */ + public boolean hasOneof1940() { + return hugeOneofCase_ == 1940; + } /** * int32 oneof_1940 = 1940; * @return The oneof1940. @@ -287958,6 +324549,13 @@ public Builder clearOneof1940() { return this; } + /** + * int32 oneof_1941 = 1941; + * @return Whether the oneof1941 field is set. + */ + public boolean hasOneof1941() { + return hugeOneofCase_ == 1941; + } /** * int32 oneof_1941 = 1941; * @return The oneof1941. @@ -287992,6 +324590,13 @@ public Builder clearOneof1941() { return this; } + /** + * int32 oneof_1942 = 1942; + * @return Whether the oneof1942 field is set. + */ + public boolean hasOneof1942() { + return hugeOneofCase_ == 1942; + } /** * int32 oneof_1942 = 1942; * @return The oneof1942. @@ -288026,6 +324631,13 @@ public Builder clearOneof1942() { return this; } + /** + * int32 oneof_1943 = 1943; + * @return Whether the oneof1943 field is set. + */ + public boolean hasOneof1943() { + return hugeOneofCase_ == 1943; + } /** * int32 oneof_1943 = 1943; * @return The oneof1943. @@ -288060,6 +324672,13 @@ public Builder clearOneof1943() { return this; } + /** + * int32 oneof_1944 = 1944; + * @return Whether the oneof1944 field is set. + */ + public boolean hasOneof1944() { + return hugeOneofCase_ == 1944; + } /** * int32 oneof_1944 = 1944; * @return The oneof1944. @@ -288094,6 +324713,13 @@ public Builder clearOneof1944() { return this; } + /** + * int32 oneof_1945 = 1945; + * @return Whether the oneof1945 field is set. + */ + public boolean hasOneof1945() { + return hugeOneofCase_ == 1945; + } /** * int32 oneof_1945 = 1945; * @return The oneof1945. @@ -288128,6 +324754,13 @@ public Builder clearOneof1945() { return this; } + /** + * int32 oneof_1946 = 1946; + * @return Whether the oneof1946 field is set. + */ + public boolean hasOneof1946() { + return hugeOneofCase_ == 1946; + } /** * int32 oneof_1946 = 1946; * @return The oneof1946. @@ -288162,6 +324795,13 @@ public Builder clearOneof1946() { return this; } + /** + * int32 oneof_1947 = 1947; + * @return Whether the oneof1947 field is set. + */ + public boolean hasOneof1947() { + return hugeOneofCase_ == 1947; + } /** * int32 oneof_1947 = 1947; * @return The oneof1947. @@ -288196,6 +324836,13 @@ public Builder clearOneof1947() { return this; } + /** + * int32 oneof_1948 = 1948; + * @return Whether the oneof1948 field is set. + */ + public boolean hasOneof1948() { + return hugeOneofCase_ == 1948; + } /** * int32 oneof_1948 = 1948; * @return The oneof1948. @@ -288230,6 +324877,13 @@ public Builder clearOneof1948() { return this; } + /** + * int32 oneof_1949 = 1949; + * @return Whether the oneof1949 field is set. + */ + public boolean hasOneof1949() { + return hugeOneofCase_ == 1949; + } /** * int32 oneof_1949 = 1949; * @return The oneof1949. @@ -288264,6 +324918,13 @@ public Builder clearOneof1949() { return this; } + /** + * int32 oneof_1950 = 1950; + * @return Whether the oneof1950 field is set. + */ + public boolean hasOneof1950() { + return hugeOneofCase_ == 1950; + } /** * int32 oneof_1950 = 1950; * @return The oneof1950. @@ -288298,6 +324959,13 @@ public Builder clearOneof1950() { return this; } + /** + * int32 oneof_1951 = 1951; + * @return Whether the oneof1951 field is set. + */ + public boolean hasOneof1951() { + return hugeOneofCase_ == 1951; + } /** * int32 oneof_1951 = 1951; * @return The oneof1951. @@ -288332,6 +325000,13 @@ public Builder clearOneof1951() { return this; } + /** + * int32 oneof_1952 = 1952; + * @return Whether the oneof1952 field is set. + */ + public boolean hasOneof1952() { + return hugeOneofCase_ == 1952; + } /** * int32 oneof_1952 = 1952; * @return The oneof1952. @@ -288366,6 +325041,13 @@ public Builder clearOneof1952() { return this; } + /** + * int32 oneof_1953 = 1953; + * @return Whether the oneof1953 field is set. + */ + public boolean hasOneof1953() { + return hugeOneofCase_ == 1953; + } /** * int32 oneof_1953 = 1953; * @return The oneof1953. @@ -288400,6 +325082,13 @@ public Builder clearOneof1953() { return this; } + /** + * int32 oneof_1954 = 1954; + * @return Whether the oneof1954 field is set. + */ + public boolean hasOneof1954() { + return hugeOneofCase_ == 1954; + } /** * int32 oneof_1954 = 1954; * @return The oneof1954. @@ -288434,6 +325123,13 @@ public Builder clearOneof1954() { return this; } + /** + * int32 oneof_1955 = 1955; + * @return Whether the oneof1955 field is set. + */ + public boolean hasOneof1955() { + return hugeOneofCase_ == 1955; + } /** * int32 oneof_1955 = 1955; * @return The oneof1955. @@ -288468,6 +325164,13 @@ public Builder clearOneof1955() { return this; } + /** + * int32 oneof_1956 = 1956; + * @return Whether the oneof1956 field is set. + */ + public boolean hasOneof1956() { + return hugeOneofCase_ == 1956; + } /** * int32 oneof_1956 = 1956; * @return The oneof1956. @@ -288502,6 +325205,13 @@ public Builder clearOneof1956() { return this; } + /** + * int32 oneof_1957 = 1957; + * @return Whether the oneof1957 field is set. + */ + public boolean hasOneof1957() { + return hugeOneofCase_ == 1957; + } /** * int32 oneof_1957 = 1957; * @return The oneof1957. @@ -288536,6 +325246,13 @@ public Builder clearOneof1957() { return this; } + /** + * int32 oneof_1958 = 1958; + * @return Whether the oneof1958 field is set. + */ + public boolean hasOneof1958() { + return hugeOneofCase_ == 1958; + } /** * int32 oneof_1958 = 1958; * @return The oneof1958. @@ -288570,6 +325287,13 @@ public Builder clearOneof1958() { return this; } + /** + * int32 oneof_1959 = 1959; + * @return Whether the oneof1959 field is set. + */ + public boolean hasOneof1959() { + return hugeOneofCase_ == 1959; + } /** * int32 oneof_1959 = 1959; * @return The oneof1959. @@ -288604,6 +325328,13 @@ public Builder clearOneof1959() { return this; } + /** + * int32 oneof_1960 = 1960; + * @return Whether the oneof1960 field is set. + */ + public boolean hasOneof1960() { + return hugeOneofCase_ == 1960; + } /** * int32 oneof_1960 = 1960; * @return The oneof1960. @@ -288638,6 +325369,13 @@ public Builder clearOneof1960() { return this; } + /** + * int32 oneof_1961 = 1961; + * @return Whether the oneof1961 field is set. + */ + public boolean hasOneof1961() { + return hugeOneofCase_ == 1961; + } /** * int32 oneof_1961 = 1961; * @return The oneof1961. @@ -288672,6 +325410,13 @@ public Builder clearOneof1961() { return this; } + /** + * int32 oneof_1962 = 1962; + * @return Whether the oneof1962 field is set. + */ + public boolean hasOneof1962() { + return hugeOneofCase_ == 1962; + } /** * int32 oneof_1962 = 1962; * @return The oneof1962. @@ -288706,6 +325451,13 @@ public Builder clearOneof1962() { return this; } + /** + * int32 oneof_1963 = 1963; + * @return Whether the oneof1963 field is set. + */ + public boolean hasOneof1963() { + return hugeOneofCase_ == 1963; + } /** * int32 oneof_1963 = 1963; * @return The oneof1963. @@ -288740,6 +325492,13 @@ public Builder clearOneof1963() { return this; } + /** + * int32 oneof_1964 = 1964; + * @return Whether the oneof1964 field is set. + */ + public boolean hasOneof1964() { + return hugeOneofCase_ == 1964; + } /** * int32 oneof_1964 = 1964; * @return The oneof1964. @@ -288774,6 +325533,13 @@ public Builder clearOneof1964() { return this; } + /** + * int32 oneof_1965 = 1965; + * @return Whether the oneof1965 field is set. + */ + public boolean hasOneof1965() { + return hugeOneofCase_ == 1965; + } /** * int32 oneof_1965 = 1965; * @return The oneof1965. @@ -288808,6 +325574,13 @@ public Builder clearOneof1965() { return this; } + /** + * int32 oneof_1966 = 1966; + * @return Whether the oneof1966 field is set. + */ + public boolean hasOneof1966() { + return hugeOneofCase_ == 1966; + } /** * int32 oneof_1966 = 1966; * @return The oneof1966. @@ -288842,6 +325615,13 @@ public Builder clearOneof1966() { return this; } + /** + * int32 oneof_1967 = 1967; + * @return Whether the oneof1967 field is set. + */ + public boolean hasOneof1967() { + return hugeOneofCase_ == 1967; + } /** * int32 oneof_1967 = 1967; * @return The oneof1967. @@ -288876,6 +325656,13 @@ public Builder clearOneof1967() { return this; } + /** + * int32 oneof_1968 = 1968; + * @return Whether the oneof1968 field is set. + */ + public boolean hasOneof1968() { + return hugeOneofCase_ == 1968; + } /** * int32 oneof_1968 = 1968; * @return The oneof1968. @@ -288910,6 +325697,13 @@ public Builder clearOneof1968() { return this; } + /** + * int32 oneof_1969 = 1969; + * @return Whether the oneof1969 field is set. + */ + public boolean hasOneof1969() { + return hugeOneofCase_ == 1969; + } /** * int32 oneof_1969 = 1969; * @return The oneof1969. @@ -288944,6 +325738,13 @@ public Builder clearOneof1969() { return this; } + /** + * int32 oneof_1970 = 1970; + * @return Whether the oneof1970 field is set. + */ + public boolean hasOneof1970() { + return hugeOneofCase_ == 1970; + } /** * int32 oneof_1970 = 1970; * @return The oneof1970. @@ -288978,6 +325779,13 @@ public Builder clearOneof1970() { return this; } + /** + * int32 oneof_1971 = 1971; + * @return Whether the oneof1971 field is set. + */ + public boolean hasOneof1971() { + return hugeOneofCase_ == 1971; + } /** * int32 oneof_1971 = 1971; * @return The oneof1971. @@ -289012,6 +325820,13 @@ public Builder clearOneof1971() { return this; } + /** + * int32 oneof_1972 = 1972; + * @return Whether the oneof1972 field is set. + */ + public boolean hasOneof1972() { + return hugeOneofCase_ == 1972; + } /** * int32 oneof_1972 = 1972; * @return The oneof1972. @@ -289046,6 +325861,13 @@ public Builder clearOneof1972() { return this; } + /** + * int32 oneof_1973 = 1973; + * @return Whether the oneof1973 field is set. + */ + public boolean hasOneof1973() { + return hugeOneofCase_ == 1973; + } /** * int32 oneof_1973 = 1973; * @return The oneof1973. @@ -289080,6 +325902,13 @@ public Builder clearOneof1973() { return this; } + /** + * int32 oneof_1974 = 1974; + * @return Whether the oneof1974 field is set. + */ + public boolean hasOneof1974() { + return hugeOneofCase_ == 1974; + } /** * int32 oneof_1974 = 1974; * @return The oneof1974. @@ -289114,6 +325943,13 @@ public Builder clearOneof1974() { return this; } + /** + * int32 oneof_1975 = 1975; + * @return Whether the oneof1975 field is set. + */ + public boolean hasOneof1975() { + return hugeOneofCase_ == 1975; + } /** * int32 oneof_1975 = 1975; * @return The oneof1975. @@ -289148,6 +325984,13 @@ public Builder clearOneof1975() { return this; } + /** + * int32 oneof_1976 = 1976; + * @return Whether the oneof1976 field is set. + */ + public boolean hasOneof1976() { + return hugeOneofCase_ == 1976; + } /** * int32 oneof_1976 = 1976; * @return The oneof1976. @@ -289182,6 +326025,13 @@ public Builder clearOneof1976() { return this; } + /** + * int32 oneof_1977 = 1977; + * @return Whether the oneof1977 field is set. + */ + public boolean hasOneof1977() { + return hugeOneofCase_ == 1977; + } /** * int32 oneof_1977 = 1977; * @return The oneof1977. @@ -289216,6 +326066,13 @@ public Builder clearOneof1977() { return this; } + /** + * int32 oneof_1978 = 1978; + * @return Whether the oneof1978 field is set. + */ + public boolean hasOneof1978() { + return hugeOneofCase_ == 1978; + } /** * int32 oneof_1978 = 1978; * @return The oneof1978. @@ -289250,6 +326107,13 @@ public Builder clearOneof1978() { return this; } + /** + * int32 oneof_1979 = 1979; + * @return Whether the oneof1979 field is set. + */ + public boolean hasOneof1979() { + return hugeOneofCase_ == 1979; + } /** * int32 oneof_1979 = 1979; * @return The oneof1979. @@ -289284,6 +326148,13 @@ public Builder clearOneof1979() { return this; } + /** + * int32 oneof_1980 = 1980; + * @return Whether the oneof1980 field is set. + */ + public boolean hasOneof1980() { + return hugeOneofCase_ == 1980; + } /** * int32 oneof_1980 = 1980; * @return The oneof1980. @@ -289318,6 +326189,13 @@ public Builder clearOneof1980() { return this; } + /** + * int32 oneof_1981 = 1981; + * @return Whether the oneof1981 field is set. + */ + public boolean hasOneof1981() { + return hugeOneofCase_ == 1981; + } /** * int32 oneof_1981 = 1981; * @return The oneof1981. @@ -289352,6 +326230,13 @@ public Builder clearOneof1981() { return this; } + /** + * int32 oneof_1982 = 1982; + * @return Whether the oneof1982 field is set. + */ + public boolean hasOneof1982() { + return hugeOneofCase_ == 1982; + } /** * int32 oneof_1982 = 1982; * @return The oneof1982. @@ -289386,6 +326271,13 @@ public Builder clearOneof1982() { return this; } + /** + * int32 oneof_1983 = 1983; + * @return Whether the oneof1983 field is set. + */ + public boolean hasOneof1983() { + return hugeOneofCase_ == 1983; + } /** * int32 oneof_1983 = 1983; * @return The oneof1983. @@ -289420,6 +326312,13 @@ public Builder clearOneof1983() { return this; } + /** + * int32 oneof_1984 = 1984; + * @return Whether the oneof1984 field is set. + */ + public boolean hasOneof1984() { + return hugeOneofCase_ == 1984; + } /** * int32 oneof_1984 = 1984; * @return The oneof1984. @@ -289454,6 +326353,13 @@ public Builder clearOneof1984() { return this; } + /** + * int32 oneof_1985 = 1985; + * @return Whether the oneof1985 field is set. + */ + public boolean hasOneof1985() { + return hugeOneofCase_ == 1985; + } /** * int32 oneof_1985 = 1985; * @return The oneof1985. @@ -289488,6 +326394,13 @@ public Builder clearOneof1985() { return this; } + /** + * int32 oneof_1986 = 1986; + * @return Whether the oneof1986 field is set. + */ + public boolean hasOneof1986() { + return hugeOneofCase_ == 1986; + } /** * int32 oneof_1986 = 1986; * @return The oneof1986. @@ -289522,6 +326435,13 @@ public Builder clearOneof1986() { return this; } + /** + * int32 oneof_1987 = 1987; + * @return Whether the oneof1987 field is set. + */ + public boolean hasOneof1987() { + return hugeOneofCase_ == 1987; + } /** * int32 oneof_1987 = 1987; * @return The oneof1987. @@ -289556,6 +326476,13 @@ public Builder clearOneof1987() { return this; } + /** + * int32 oneof_1988 = 1988; + * @return Whether the oneof1988 field is set. + */ + public boolean hasOneof1988() { + return hugeOneofCase_ == 1988; + } /** * int32 oneof_1988 = 1988; * @return The oneof1988. @@ -289590,6 +326517,13 @@ public Builder clearOneof1988() { return this; } + /** + * int32 oneof_1989 = 1989; + * @return Whether the oneof1989 field is set. + */ + public boolean hasOneof1989() { + return hugeOneofCase_ == 1989; + } /** * int32 oneof_1989 = 1989; * @return The oneof1989. @@ -289624,6 +326558,13 @@ public Builder clearOneof1989() { return this; } + /** + * int32 oneof_1990 = 1990; + * @return Whether the oneof1990 field is set. + */ + public boolean hasOneof1990() { + return hugeOneofCase_ == 1990; + } /** * int32 oneof_1990 = 1990; * @return The oneof1990. @@ -289658,6 +326599,13 @@ public Builder clearOneof1990() { return this; } + /** + * int32 oneof_1991 = 1991; + * @return Whether the oneof1991 field is set. + */ + public boolean hasOneof1991() { + return hugeOneofCase_ == 1991; + } /** * int32 oneof_1991 = 1991; * @return The oneof1991. @@ -289692,6 +326640,13 @@ public Builder clearOneof1991() { return this; } + /** + * int32 oneof_1992 = 1992; + * @return Whether the oneof1992 field is set. + */ + public boolean hasOneof1992() { + return hugeOneofCase_ == 1992; + } /** * int32 oneof_1992 = 1992; * @return The oneof1992. @@ -289726,6 +326681,13 @@ public Builder clearOneof1992() { return this; } + /** + * int32 oneof_1993 = 1993; + * @return Whether the oneof1993 field is set. + */ + public boolean hasOneof1993() { + return hugeOneofCase_ == 1993; + } /** * int32 oneof_1993 = 1993; * @return The oneof1993. @@ -289760,6 +326722,13 @@ public Builder clearOneof1993() { return this; } + /** + * int32 oneof_1994 = 1994; + * @return Whether the oneof1994 field is set. + */ + public boolean hasOneof1994() { + return hugeOneofCase_ == 1994; + } /** * int32 oneof_1994 = 1994; * @return The oneof1994. @@ -289794,6 +326763,13 @@ public Builder clearOneof1994() { return this; } + /** + * int32 oneof_1995 = 1995; + * @return Whether the oneof1995 field is set. + */ + public boolean hasOneof1995() { + return hugeOneofCase_ == 1995; + } /** * int32 oneof_1995 = 1995; * @return The oneof1995. @@ -289828,6 +326804,13 @@ public Builder clearOneof1995() { return this; } + /** + * int32 oneof_1996 = 1996; + * @return Whether the oneof1996 field is set. + */ + public boolean hasOneof1996() { + return hugeOneofCase_ == 1996; + } /** * int32 oneof_1996 = 1996; * @return The oneof1996. @@ -289862,6 +326845,13 @@ public Builder clearOneof1996() { return this; } + /** + * int32 oneof_1997 = 1997; + * @return Whether the oneof1997 field is set. + */ + public boolean hasOneof1997() { + return hugeOneofCase_ == 1997; + } /** * int32 oneof_1997 = 1997; * @return The oneof1997. @@ -289896,6 +326886,13 @@ public Builder clearOneof1997() { return this; } + /** + * int32 oneof_1998 = 1998; + * @return Whether the oneof1998 field is set. + */ + public boolean hasOneof1998() { + return hugeOneofCase_ == 1998; + } /** * int32 oneof_1998 = 1998; * @return The oneof1998. @@ -289930,6 +326927,13 @@ public Builder clearOneof1998() { return this; } + /** + * int32 oneof_1999 = 1999; + * @return Whether the oneof1999 field is set. + */ + public boolean hasOneof1999() { + return hugeOneofCase_ == 1999; + } /** * int32 oneof_1999 = 1999; * @return The oneof1999. @@ -289964,6 +326968,13 @@ public Builder clearOneof1999() { return this; } + /** + * int32 oneof_2000 = 2000; + * @return Whether the oneof2000 field is set. + */ + public boolean hasOneof2000() { + return hugeOneofCase_ == 2000; + } /** * int32 oneof_2000 = 2000; * @return The oneof2000. @@ -289998,6 +327009,13 @@ public Builder clearOneof2000() { return this; } + /** + * int32 oneof_2001 = 2001; + * @return Whether the oneof2001 field is set. + */ + public boolean hasOneof2001() { + return hugeOneofCase_ == 2001; + } /** * int32 oneof_2001 = 2001; * @return The oneof2001. @@ -290032,6 +327050,13 @@ public Builder clearOneof2001() { return this; } + /** + * int32 oneof_2002 = 2002; + * @return Whether the oneof2002 field is set. + */ + public boolean hasOneof2002() { + return hugeOneofCase_ == 2002; + } /** * int32 oneof_2002 = 2002; * @return The oneof2002. @@ -290066,6 +327091,13 @@ public Builder clearOneof2002() { return this; } + /** + * int32 oneof_2003 = 2003; + * @return Whether the oneof2003 field is set. + */ + public boolean hasOneof2003() { + return hugeOneofCase_ == 2003; + } /** * int32 oneof_2003 = 2003; * @return The oneof2003. @@ -290100,6 +327132,13 @@ public Builder clearOneof2003() { return this; } + /** + * int32 oneof_2004 = 2004; + * @return Whether the oneof2004 field is set. + */ + public boolean hasOneof2004() { + return hugeOneofCase_ == 2004; + } /** * int32 oneof_2004 = 2004; * @return The oneof2004. @@ -290134,6 +327173,13 @@ public Builder clearOneof2004() { return this; } + /** + * int32 oneof_2005 = 2005; + * @return Whether the oneof2005 field is set. + */ + public boolean hasOneof2005() { + return hugeOneofCase_ == 2005; + } /** * int32 oneof_2005 = 2005; * @return The oneof2005. @@ -290168,6 +327214,13 @@ public Builder clearOneof2005() { return this; } + /** + * int32 oneof_2006 = 2006; + * @return Whether the oneof2006 field is set. + */ + public boolean hasOneof2006() { + return hugeOneofCase_ == 2006; + } /** * int32 oneof_2006 = 2006; * @return The oneof2006. @@ -290202,6 +327255,13 @@ public Builder clearOneof2006() { return this; } + /** + * int32 oneof_2007 = 2007; + * @return Whether the oneof2007 field is set. + */ + public boolean hasOneof2007() { + return hugeOneofCase_ == 2007; + } /** * int32 oneof_2007 = 2007; * @return The oneof2007. @@ -290236,6 +327296,13 @@ public Builder clearOneof2007() { return this; } + /** + * int32 oneof_2008 = 2008; + * @return Whether the oneof2008 field is set. + */ + public boolean hasOneof2008() { + return hugeOneofCase_ == 2008; + } /** * int32 oneof_2008 = 2008; * @return The oneof2008. @@ -290270,6 +327337,13 @@ public Builder clearOneof2008() { return this; } + /** + * int32 oneof_2009 = 2009; + * @return Whether the oneof2009 field is set. + */ + public boolean hasOneof2009() { + return hugeOneofCase_ == 2009; + } /** * int32 oneof_2009 = 2009; * @return The oneof2009. @@ -290304,6 +327378,13 @@ public Builder clearOneof2009() { return this; } + /** + * int32 oneof_2010 = 2010; + * @return Whether the oneof2010 field is set. + */ + public boolean hasOneof2010() { + return hugeOneofCase_ == 2010; + } /** * int32 oneof_2010 = 2010; * @return The oneof2010. @@ -290338,6 +327419,13 @@ public Builder clearOneof2010() { return this; } + /** + * int32 oneof_2011 = 2011; + * @return Whether the oneof2011 field is set. + */ + public boolean hasOneof2011() { + return hugeOneofCase_ == 2011; + } /** * int32 oneof_2011 = 2011; * @return The oneof2011. @@ -290372,6 +327460,13 @@ public Builder clearOneof2011() { return this; } + /** + * int32 oneof_2012 = 2012; + * @return Whether the oneof2012 field is set. + */ + public boolean hasOneof2012() { + return hugeOneofCase_ == 2012; + } /** * int32 oneof_2012 = 2012; * @return The oneof2012. @@ -290406,6 +327501,13 @@ public Builder clearOneof2012() { return this; } + /** + * int32 oneof_2013 = 2013; + * @return Whether the oneof2013 field is set. + */ + public boolean hasOneof2013() { + return hugeOneofCase_ == 2013; + } /** * int32 oneof_2013 = 2013; * @return The oneof2013. @@ -290440,6 +327542,13 @@ public Builder clearOneof2013() { return this; } + /** + * int32 oneof_2014 = 2014; + * @return Whether the oneof2014 field is set. + */ + public boolean hasOneof2014() { + return hugeOneofCase_ == 2014; + } /** * int32 oneof_2014 = 2014; * @return The oneof2014. @@ -290474,6 +327583,13 @@ public Builder clearOneof2014() { return this; } + /** + * int32 oneof_2015 = 2015; + * @return Whether the oneof2015 field is set. + */ + public boolean hasOneof2015() { + return hugeOneofCase_ == 2015; + } /** * int32 oneof_2015 = 2015; * @return The oneof2015. @@ -290508,6 +327624,13 @@ public Builder clearOneof2015() { return this; } + /** + * int32 oneof_2016 = 2016; + * @return Whether the oneof2016 field is set. + */ + public boolean hasOneof2016() { + return hugeOneofCase_ == 2016; + } /** * int32 oneof_2016 = 2016; * @return The oneof2016. @@ -290542,6 +327665,13 @@ public Builder clearOneof2016() { return this; } + /** + * int32 oneof_2017 = 2017; + * @return Whether the oneof2017 field is set. + */ + public boolean hasOneof2017() { + return hugeOneofCase_ == 2017; + } /** * int32 oneof_2017 = 2017; * @return The oneof2017. @@ -290576,6 +327706,13 @@ public Builder clearOneof2017() { return this; } + /** + * int32 oneof_2018 = 2018; + * @return Whether the oneof2018 field is set. + */ + public boolean hasOneof2018() { + return hugeOneofCase_ == 2018; + } /** * int32 oneof_2018 = 2018; * @return The oneof2018. @@ -290610,6 +327747,13 @@ public Builder clearOneof2018() { return this; } + /** + * int32 oneof_2019 = 2019; + * @return Whether the oneof2019 field is set. + */ + public boolean hasOneof2019() { + return hugeOneofCase_ == 2019; + } /** * int32 oneof_2019 = 2019; * @return The oneof2019. @@ -290644,6 +327788,13 @@ public Builder clearOneof2019() { return this; } + /** + * int32 oneof_2020 = 2020; + * @return Whether the oneof2020 field is set. + */ + public boolean hasOneof2020() { + return hugeOneofCase_ == 2020; + } /** * int32 oneof_2020 = 2020; * @return The oneof2020. @@ -290678,6 +327829,13 @@ public Builder clearOneof2020() { return this; } + /** + * int32 oneof_2021 = 2021; + * @return Whether the oneof2021 field is set. + */ + public boolean hasOneof2021() { + return hugeOneofCase_ == 2021; + } /** * int32 oneof_2021 = 2021; * @return The oneof2021. @@ -290712,6 +327870,13 @@ public Builder clearOneof2021() { return this; } + /** + * int32 oneof_2022 = 2022; + * @return Whether the oneof2022 field is set. + */ + public boolean hasOneof2022() { + return hugeOneofCase_ == 2022; + } /** * int32 oneof_2022 = 2022; * @return The oneof2022. @@ -290746,6 +327911,13 @@ public Builder clearOneof2022() { return this; } + /** + * int32 oneof_2023 = 2023; + * @return Whether the oneof2023 field is set. + */ + public boolean hasOneof2023() { + return hugeOneofCase_ == 2023; + } /** * int32 oneof_2023 = 2023; * @return The oneof2023. @@ -290780,6 +327952,13 @@ public Builder clearOneof2023() { return this; } + /** + * int32 oneof_2024 = 2024; + * @return Whether the oneof2024 field is set. + */ + public boolean hasOneof2024() { + return hugeOneofCase_ == 2024; + } /** * int32 oneof_2024 = 2024; * @return The oneof2024. @@ -290814,6 +327993,13 @@ public Builder clearOneof2024() { return this; } + /** + * int32 oneof_2025 = 2025; + * @return Whether the oneof2025 field is set. + */ + public boolean hasOneof2025() { + return hugeOneofCase_ == 2025; + } /** * int32 oneof_2025 = 2025; * @return The oneof2025. @@ -290848,6 +328034,13 @@ public Builder clearOneof2025() { return this; } + /** + * int32 oneof_2026 = 2026; + * @return Whether the oneof2026 field is set. + */ + public boolean hasOneof2026() { + return hugeOneofCase_ == 2026; + } /** * int32 oneof_2026 = 2026; * @return The oneof2026. @@ -290882,6 +328075,13 @@ public Builder clearOneof2026() { return this; } + /** + * int32 oneof_2027 = 2027; + * @return Whether the oneof2027 field is set. + */ + public boolean hasOneof2027() { + return hugeOneofCase_ == 2027; + } /** * int32 oneof_2027 = 2027; * @return The oneof2027. @@ -290916,6 +328116,13 @@ public Builder clearOneof2027() { return this; } + /** + * int32 oneof_2028 = 2028; + * @return Whether the oneof2028 field is set. + */ + public boolean hasOneof2028() { + return hugeOneofCase_ == 2028; + } /** * int32 oneof_2028 = 2028; * @return The oneof2028. @@ -290950,6 +328157,13 @@ public Builder clearOneof2028() { return this; } + /** + * int32 oneof_2029 = 2029; + * @return Whether the oneof2029 field is set. + */ + public boolean hasOneof2029() { + return hugeOneofCase_ == 2029; + } /** * int32 oneof_2029 = 2029; * @return The oneof2029. @@ -290984,6 +328198,13 @@ public Builder clearOneof2029() { return this; } + /** + * int32 oneof_2030 = 2030; + * @return Whether the oneof2030 field is set. + */ + public boolean hasOneof2030() { + return hugeOneofCase_ == 2030; + } /** * int32 oneof_2030 = 2030; * @return The oneof2030. @@ -291018,6 +328239,13 @@ public Builder clearOneof2030() { return this; } + /** + * int32 oneof_2031 = 2031; + * @return Whether the oneof2031 field is set. + */ + public boolean hasOneof2031() { + return hugeOneofCase_ == 2031; + } /** * int32 oneof_2031 = 2031; * @return The oneof2031. @@ -291052,6 +328280,13 @@ public Builder clearOneof2031() { return this; } + /** + * int32 oneof_2032 = 2032; + * @return Whether the oneof2032 field is set. + */ + public boolean hasOneof2032() { + return hugeOneofCase_ == 2032; + } /** * int32 oneof_2032 = 2032; * @return The oneof2032. @@ -291086,6 +328321,13 @@ public Builder clearOneof2032() { return this; } + /** + * int32 oneof_2033 = 2033; + * @return Whether the oneof2033 field is set. + */ + public boolean hasOneof2033() { + return hugeOneofCase_ == 2033; + } /** * int32 oneof_2033 = 2033; * @return The oneof2033. @@ -291120,6 +328362,13 @@ public Builder clearOneof2033() { return this; } + /** + * int32 oneof_2034 = 2034; + * @return Whether the oneof2034 field is set. + */ + public boolean hasOneof2034() { + return hugeOneofCase_ == 2034; + } /** * int32 oneof_2034 = 2034; * @return The oneof2034. @@ -291154,6 +328403,13 @@ public Builder clearOneof2034() { return this; } + /** + * int32 oneof_2035 = 2035; + * @return Whether the oneof2035 field is set. + */ + public boolean hasOneof2035() { + return hugeOneofCase_ == 2035; + } /** * int32 oneof_2035 = 2035; * @return The oneof2035. @@ -291188,6 +328444,13 @@ public Builder clearOneof2035() { return this; } + /** + * int32 oneof_2036 = 2036; + * @return Whether the oneof2036 field is set. + */ + public boolean hasOneof2036() { + return hugeOneofCase_ == 2036; + } /** * int32 oneof_2036 = 2036; * @return The oneof2036. @@ -291222,6 +328485,13 @@ public Builder clearOneof2036() { return this; } + /** + * int32 oneof_2037 = 2037; + * @return Whether the oneof2037 field is set. + */ + public boolean hasOneof2037() { + return hugeOneofCase_ == 2037; + } /** * int32 oneof_2037 = 2037; * @return The oneof2037. @@ -291256,6 +328526,13 @@ public Builder clearOneof2037() { return this; } + /** + * int32 oneof_2038 = 2038; + * @return Whether the oneof2038 field is set. + */ + public boolean hasOneof2038() { + return hugeOneofCase_ == 2038; + } /** * int32 oneof_2038 = 2038; * @return The oneof2038. @@ -291290,6 +328567,13 @@ public Builder clearOneof2038() { return this; } + /** + * int32 oneof_2039 = 2039; + * @return Whether the oneof2039 field is set. + */ + public boolean hasOneof2039() { + return hugeOneofCase_ == 2039; + } /** * int32 oneof_2039 = 2039; * @return The oneof2039. @@ -291324,6 +328608,13 @@ public Builder clearOneof2039() { return this; } + /** + * int32 oneof_2040 = 2040; + * @return Whether the oneof2040 field is set. + */ + public boolean hasOneof2040() { + return hugeOneofCase_ == 2040; + } /** * int32 oneof_2040 = 2040; * @return The oneof2040. @@ -291358,6 +328649,13 @@ public Builder clearOneof2040() { return this; } + /** + * int32 oneof_2041 = 2041; + * @return Whether the oneof2041 field is set. + */ + public boolean hasOneof2041() { + return hugeOneofCase_ == 2041; + } /** * int32 oneof_2041 = 2041; * @return The oneof2041. @@ -291392,6 +328690,13 @@ public Builder clearOneof2041() { return this; } + /** + * int32 oneof_2042 = 2042; + * @return Whether the oneof2042 field is set. + */ + public boolean hasOneof2042() { + return hugeOneofCase_ == 2042; + } /** * int32 oneof_2042 = 2042; * @return The oneof2042. @@ -291426,6 +328731,13 @@ public Builder clearOneof2042() { return this; } + /** + * int32 oneof_2043 = 2043; + * @return Whether the oneof2043 field is set. + */ + public boolean hasOneof2043() { + return hugeOneofCase_ == 2043; + } /** * int32 oneof_2043 = 2043; * @return The oneof2043. @@ -291460,6 +328772,13 @@ public Builder clearOneof2043() { return this; } + /** + * int32 oneof_2044 = 2044; + * @return Whether the oneof2044 field is set. + */ + public boolean hasOneof2044() { + return hugeOneofCase_ == 2044; + } /** * int32 oneof_2044 = 2044; * @return The oneof2044. @@ -291494,6 +328813,13 @@ public Builder clearOneof2044() { return this; } + /** + * int32 oneof_2045 = 2045; + * @return Whether the oneof2045 field is set. + */ + public boolean hasOneof2045() { + return hugeOneofCase_ == 2045; + } /** * int32 oneof_2045 = 2045; * @return The oneof2045. @@ -291528,6 +328854,13 @@ public Builder clearOneof2045() { return this; } + /** + * int32 oneof_2046 = 2046; + * @return Whether the oneof2046 field is set. + */ + public boolean hasOneof2046() { + return hugeOneofCase_ == 2046; + } /** * int32 oneof_2046 = 2046; * @return The oneof2046. @@ -291562,6 +328895,13 @@ public Builder clearOneof2046() { return this; } + /** + * int32 oneof_2047 = 2047; + * @return Whether the oneof2047 field is set. + */ + public boolean hasOneof2047() { + return hugeOneofCase_ == 2047; + } /** * int32 oneof_2047 = 2047; * @return The oneof2047. @@ -291596,6 +328936,13 @@ public Builder clearOneof2047() { return this; } + /** + * int32 oneof_2048 = 2048; + * @return Whether the oneof2048 field is set. + */ + public boolean hasOneof2048() { + return hugeOneofCase_ == 2048; + } /** * int32 oneof_2048 = 2048; * @return The oneof2048. @@ -291630,6 +328977,13 @@ public Builder clearOneof2048() { return this; } + /** + * int32 oneof_2049 = 2049; + * @return Whether the oneof2049 field is set. + */ + public boolean hasOneof2049() { + return hugeOneofCase_ == 2049; + } /** * int32 oneof_2049 = 2049; * @return The oneof2049. @@ -291664,6 +329018,13 @@ public Builder clearOneof2049() { return this; } + /** + * int32 oneof_2050 = 2050; + * @return Whether the oneof2050 field is set. + */ + public boolean hasOneof2050() { + return hugeOneofCase_ == 2050; + } /** * int32 oneof_2050 = 2050; * @return The oneof2050. @@ -291698,6 +329059,13 @@ public Builder clearOneof2050() { return this; } + /** + * int32 oneof_2051 = 2051; + * @return Whether the oneof2051 field is set. + */ + public boolean hasOneof2051() { + return hugeOneofCase_ == 2051; + } /** * int32 oneof_2051 = 2051; * @return The oneof2051. @@ -291732,6 +329100,13 @@ public Builder clearOneof2051() { return this; } + /** + * int32 oneof_2052 = 2052; + * @return Whether the oneof2052 field is set. + */ + public boolean hasOneof2052() { + return hugeOneofCase_ == 2052; + } /** * int32 oneof_2052 = 2052; * @return The oneof2052. @@ -291766,6 +329141,13 @@ public Builder clearOneof2052() { return this; } + /** + * int32 oneof_2053 = 2053; + * @return Whether the oneof2053 field is set. + */ + public boolean hasOneof2053() { + return hugeOneofCase_ == 2053; + } /** * int32 oneof_2053 = 2053; * @return The oneof2053. @@ -291800,6 +329182,13 @@ public Builder clearOneof2053() { return this; } + /** + * int32 oneof_2054 = 2054; + * @return Whether the oneof2054 field is set. + */ + public boolean hasOneof2054() { + return hugeOneofCase_ == 2054; + } /** * int32 oneof_2054 = 2054; * @return The oneof2054. @@ -291834,6 +329223,13 @@ public Builder clearOneof2054() { return this; } + /** + * int32 oneof_2055 = 2055; + * @return Whether the oneof2055 field is set. + */ + public boolean hasOneof2055() { + return hugeOneofCase_ == 2055; + } /** * int32 oneof_2055 = 2055; * @return The oneof2055. @@ -291868,6 +329264,13 @@ public Builder clearOneof2055() { return this; } + /** + * int32 oneof_2056 = 2056; + * @return Whether the oneof2056 field is set. + */ + public boolean hasOneof2056() { + return hugeOneofCase_ == 2056; + } /** * int32 oneof_2056 = 2056; * @return The oneof2056. @@ -291902,6 +329305,13 @@ public Builder clearOneof2056() { return this; } + /** + * int32 oneof_2057 = 2057; + * @return Whether the oneof2057 field is set. + */ + public boolean hasOneof2057() { + return hugeOneofCase_ == 2057; + } /** * int32 oneof_2057 = 2057; * @return The oneof2057. @@ -291936,6 +329346,13 @@ public Builder clearOneof2057() { return this; } + /** + * int32 oneof_2058 = 2058; + * @return Whether the oneof2058 field is set. + */ + public boolean hasOneof2058() { + return hugeOneofCase_ == 2058; + } /** * int32 oneof_2058 = 2058; * @return The oneof2058. @@ -291970,6 +329387,13 @@ public Builder clearOneof2058() { return this; } + /** + * int32 oneof_2059 = 2059; + * @return Whether the oneof2059 field is set. + */ + public boolean hasOneof2059() { + return hugeOneofCase_ == 2059; + } /** * int32 oneof_2059 = 2059; * @return The oneof2059. @@ -292004,6 +329428,13 @@ public Builder clearOneof2059() { return this; } + /** + * int32 oneof_2060 = 2060; + * @return Whether the oneof2060 field is set. + */ + public boolean hasOneof2060() { + return hugeOneofCase_ == 2060; + } /** * int32 oneof_2060 = 2060; * @return The oneof2060. @@ -292038,6 +329469,13 @@ public Builder clearOneof2060() { return this; } + /** + * int32 oneof_2061 = 2061; + * @return Whether the oneof2061 field is set. + */ + public boolean hasOneof2061() { + return hugeOneofCase_ == 2061; + } /** * int32 oneof_2061 = 2061; * @return The oneof2061. @@ -292072,6 +329510,13 @@ public Builder clearOneof2061() { return this; } + /** + * int32 oneof_2062 = 2062; + * @return Whether the oneof2062 field is set. + */ + public boolean hasOneof2062() { + return hugeOneofCase_ == 2062; + } /** * int32 oneof_2062 = 2062; * @return The oneof2062. @@ -292106,6 +329551,13 @@ public Builder clearOneof2062() { return this; } + /** + * int32 oneof_2063 = 2063; + * @return Whether the oneof2063 field is set. + */ + public boolean hasOneof2063() { + return hugeOneofCase_ == 2063; + } /** * int32 oneof_2063 = 2063; * @return The oneof2063. @@ -292140,6 +329592,13 @@ public Builder clearOneof2063() { return this; } + /** + * int32 oneof_2064 = 2064; + * @return Whether the oneof2064 field is set. + */ + public boolean hasOneof2064() { + return hugeOneofCase_ == 2064; + } /** * int32 oneof_2064 = 2064; * @return The oneof2064. @@ -292174,6 +329633,13 @@ public Builder clearOneof2064() { return this; } + /** + * int32 oneof_2065 = 2065; + * @return Whether the oneof2065 field is set. + */ + public boolean hasOneof2065() { + return hugeOneofCase_ == 2065; + } /** * int32 oneof_2065 = 2065; * @return The oneof2065. @@ -292208,6 +329674,13 @@ public Builder clearOneof2065() { return this; } + /** + * int32 oneof_2066 = 2066; + * @return Whether the oneof2066 field is set. + */ + public boolean hasOneof2066() { + return hugeOneofCase_ == 2066; + } /** * int32 oneof_2066 = 2066; * @return The oneof2066. @@ -292242,6 +329715,13 @@ public Builder clearOneof2066() { return this; } + /** + * int32 oneof_2067 = 2067; + * @return Whether the oneof2067 field is set. + */ + public boolean hasOneof2067() { + return hugeOneofCase_ == 2067; + } /** * int32 oneof_2067 = 2067; * @return The oneof2067. @@ -292276,6 +329756,13 @@ public Builder clearOneof2067() { return this; } + /** + * int32 oneof_2068 = 2068; + * @return Whether the oneof2068 field is set. + */ + public boolean hasOneof2068() { + return hugeOneofCase_ == 2068; + } /** * int32 oneof_2068 = 2068; * @return The oneof2068. @@ -292310,6 +329797,13 @@ public Builder clearOneof2068() { return this; } + /** + * int32 oneof_2069 = 2069; + * @return Whether the oneof2069 field is set. + */ + public boolean hasOneof2069() { + return hugeOneofCase_ == 2069; + } /** * int32 oneof_2069 = 2069; * @return The oneof2069. @@ -292344,6 +329838,13 @@ public Builder clearOneof2069() { return this; } + /** + * int32 oneof_2070 = 2070; + * @return Whether the oneof2070 field is set. + */ + public boolean hasOneof2070() { + return hugeOneofCase_ == 2070; + } /** * int32 oneof_2070 = 2070; * @return The oneof2070. @@ -292378,6 +329879,13 @@ public Builder clearOneof2070() { return this; } + /** + * int32 oneof_2071 = 2071; + * @return Whether the oneof2071 field is set. + */ + public boolean hasOneof2071() { + return hugeOneofCase_ == 2071; + } /** * int32 oneof_2071 = 2071; * @return The oneof2071. @@ -292412,6 +329920,13 @@ public Builder clearOneof2071() { return this; } + /** + * int32 oneof_2072 = 2072; + * @return Whether the oneof2072 field is set. + */ + public boolean hasOneof2072() { + return hugeOneofCase_ == 2072; + } /** * int32 oneof_2072 = 2072; * @return The oneof2072. @@ -292446,6 +329961,13 @@ public Builder clearOneof2072() { return this; } + /** + * int32 oneof_2073 = 2073; + * @return Whether the oneof2073 field is set. + */ + public boolean hasOneof2073() { + return hugeOneofCase_ == 2073; + } /** * int32 oneof_2073 = 2073; * @return The oneof2073. @@ -292480,6 +330002,13 @@ public Builder clearOneof2073() { return this; } + /** + * int32 oneof_2074 = 2074; + * @return Whether the oneof2074 field is set. + */ + public boolean hasOneof2074() { + return hugeOneofCase_ == 2074; + } /** * int32 oneof_2074 = 2074; * @return The oneof2074. @@ -292514,6 +330043,13 @@ public Builder clearOneof2074() { return this; } + /** + * int32 oneof_2075 = 2075; + * @return Whether the oneof2075 field is set. + */ + public boolean hasOneof2075() { + return hugeOneofCase_ == 2075; + } /** * int32 oneof_2075 = 2075; * @return The oneof2075. @@ -292548,6 +330084,13 @@ public Builder clearOneof2075() { return this; } + /** + * int32 oneof_2076 = 2076; + * @return Whether the oneof2076 field is set. + */ + public boolean hasOneof2076() { + return hugeOneofCase_ == 2076; + } /** * int32 oneof_2076 = 2076; * @return The oneof2076. @@ -292582,6 +330125,13 @@ public Builder clearOneof2076() { return this; } + /** + * int32 oneof_2077 = 2077; + * @return Whether the oneof2077 field is set. + */ + public boolean hasOneof2077() { + return hugeOneofCase_ == 2077; + } /** * int32 oneof_2077 = 2077; * @return The oneof2077. @@ -292616,6 +330166,13 @@ public Builder clearOneof2077() { return this; } + /** + * int32 oneof_2078 = 2078; + * @return Whether the oneof2078 field is set. + */ + public boolean hasOneof2078() { + return hugeOneofCase_ == 2078; + } /** * int32 oneof_2078 = 2078; * @return The oneof2078. @@ -292650,6 +330207,13 @@ public Builder clearOneof2078() { return this; } + /** + * int32 oneof_2079 = 2079; + * @return Whether the oneof2079 field is set. + */ + public boolean hasOneof2079() { + return hugeOneofCase_ == 2079; + } /** * int32 oneof_2079 = 2079; * @return The oneof2079. @@ -292684,6 +330248,13 @@ public Builder clearOneof2079() { return this; } + /** + * int32 oneof_2080 = 2080; + * @return Whether the oneof2080 field is set. + */ + public boolean hasOneof2080() { + return hugeOneofCase_ == 2080; + } /** * int32 oneof_2080 = 2080; * @return The oneof2080. @@ -292718,6 +330289,13 @@ public Builder clearOneof2080() { return this; } + /** + * int32 oneof_2081 = 2081; + * @return Whether the oneof2081 field is set. + */ + public boolean hasOneof2081() { + return hugeOneofCase_ == 2081; + } /** * int32 oneof_2081 = 2081; * @return The oneof2081. @@ -292752,6 +330330,13 @@ public Builder clearOneof2081() { return this; } + /** + * int32 oneof_2082 = 2082; + * @return Whether the oneof2082 field is set. + */ + public boolean hasOneof2082() { + return hugeOneofCase_ == 2082; + } /** * int32 oneof_2082 = 2082; * @return The oneof2082. @@ -292786,6 +330371,13 @@ public Builder clearOneof2082() { return this; } + /** + * int32 oneof_2083 = 2083; + * @return Whether the oneof2083 field is set. + */ + public boolean hasOneof2083() { + return hugeOneofCase_ == 2083; + } /** * int32 oneof_2083 = 2083; * @return The oneof2083. @@ -292820,6 +330412,13 @@ public Builder clearOneof2083() { return this; } + /** + * int32 oneof_2084 = 2084; + * @return Whether the oneof2084 field is set. + */ + public boolean hasOneof2084() { + return hugeOneofCase_ == 2084; + } /** * int32 oneof_2084 = 2084; * @return The oneof2084. @@ -292854,6 +330453,13 @@ public Builder clearOneof2084() { return this; } + /** + * int32 oneof_2085 = 2085; + * @return Whether the oneof2085 field is set. + */ + public boolean hasOneof2085() { + return hugeOneofCase_ == 2085; + } /** * int32 oneof_2085 = 2085; * @return The oneof2085. @@ -292888,6 +330494,13 @@ public Builder clearOneof2085() { return this; } + /** + * int32 oneof_2086 = 2086; + * @return Whether the oneof2086 field is set. + */ + public boolean hasOneof2086() { + return hugeOneofCase_ == 2086; + } /** * int32 oneof_2086 = 2086; * @return The oneof2086. @@ -292922,6 +330535,13 @@ public Builder clearOneof2086() { return this; } + /** + * int32 oneof_2087 = 2087; + * @return Whether the oneof2087 field is set. + */ + public boolean hasOneof2087() { + return hugeOneofCase_ == 2087; + } /** * int32 oneof_2087 = 2087; * @return The oneof2087. @@ -292956,6 +330576,13 @@ public Builder clearOneof2087() { return this; } + /** + * int32 oneof_2088 = 2088; + * @return Whether the oneof2088 field is set. + */ + public boolean hasOneof2088() { + return hugeOneofCase_ == 2088; + } /** * int32 oneof_2088 = 2088; * @return The oneof2088. @@ -292990,6 +330617,13 @@ public Builder clearOneof2088() { return this; } + /** + * int32 oneof_2089 = 2089; + * @return Whether the oneof2089 field is set. + */ + public boolean hasOneof2089() { + return hugeOneofCase_ == 2089; + } /** * int32 oneof_2089 = 2089; * @return The oneof2089. @@ -293024,6 +330658,13 @@ public Builder clearOneof2089() { return this; } + /** + * int32 oneof_2090 = 2090; + * @return Whether the oneof2090 field is set. + */ + public boolean hasOneof2090() { + return hugeOneofCase_ == 2090; + } /** * int32 oneof_2090 = 2090; * @return The oneof2090. @@ -293058,6 +330699,13 @@ public Builder clearOneof2090() { return this; } + /** + * int32 oneof_2091 = 2091; + * @return Whether the oneof2091 field is set. + */ + public boolean hasOneof2091() { + return hugeOneofCase_ == 2091; + } /** * int32 oneof_2091 = 2091; * @return The oneof2091. @@ -293092,6 +330740,13 @@ public Builder clearOneof2091() { return this; } + /** + * int32 oneof_2092 = 2092; + * @return Whether the oneof2092 field is set. + */ + public boolean hasOneof2092() { + return hugeOneofCase_ == 2092; + } /** * int32 oneof_2092 = 2092; * @return The oneof2092. @@ -293126,6 +330781,13 @@ public Builder clearOneof2092() { return this; } + /** + * int32 oneof_2093 = 2093; + * @return Whether the oneof2093 field is set. + */ + public boolean hasOneof2093() { + return hugeOneofCase_ == 2093; + } /** * int32 oneof_2093 = 2093; * @return The oneof2093. @@ -293160,6 +330822,13 @@ public Builder clearOneof2093() { return this; } + /** + * int32 oneof_2094 = 2094; + * @return Whether the oneof2094 field is set. + */ + public boolean hasOneof2094() { + return hugeOneofCase_ == 2094; + } /** * int32 oneof_2094 = 2094; * @return The oneof2094. @@ -293194,6 +330863,13 @@ public Builder clearOneof2094() { return this; } + /** + * int32 oneof_2095 = 2095; + * @return Whether the oneof2095 field is set. + */ + public boolean hasOneof2095() { + return hugeOneofCase_ == 2095; + } /** * int32 oneof_2095 = 2095; * @return The oneof2095. @@ -293228,6 +330904,13 @@ public Builder clearOneof2095() { return this; } + /** + * int32 oneof_2096 = 2096; + * @return Whether the oneof2096 field is set. + */ + public boolean hasOneof2096() { + return hugeOneofCase_ == 2096; + } /** * int32 oneof_2096 = 2096; * @return The oneof2096. @@ -293262,6 +330945,13 @@ public Builder clearOneof2096() { return this; } + /** + * int32 oneof_2097 = 2097; + * @return Whether the oneof2097 field is set. + */ + public boolean hasOneof2097() { + return hugeOneofCase_ == 2097; + } /** * int32 oneof_2097 = 2097; * @return The oneof2097. @@ -293296,6 +330986,13 @@ public Builder clearOneof2097() { return this; } + /** + * int32 oneof_2098 = 2098; + * @return Whether the oneof2098 field is set. + */ + public boolean hasOneof2098() { + return hugeOneofCase_ == 2098; + } /** * int32 oneof_2098 = 2098; * @return The oneof2098. @@ -293330,6 +331027,13 @@ public Builder clearOneof2098() { return this; } + /** + * int32 oneof_2099 = 2099; + * @return Whether the oneof2099 field is set. + */ + public boolean hasOneof2099() { + return hugeOneofCase_ == 2099; + } /** * int32 oneof_2099 = 2099; * @return The oneof2099. @@ -293364,6 +331068,13 @@ public Builder clearOneof2099() { return this; } + /** + * int32 oneof_2100 = 2100; + * @return Whether the oneof2100 field is set. + */ + public boolean hasOneof2100() { + return hugeOneofCase_ == 2100; + } /** * int32 oneof_2100 = 2100; * @return The oneof2100. @@ -293398,6 +331109,13 @@ public Builder clearOneof2100() { return this; } + /** + * int32 oneof_2101 = 2101; + * @return Whether the oneof2101 field is set. + */ + public boolean hasOneof2101() { + return hugeOneofCase_ == 2101; + } /** * int32 oneof_2101 = 2101; * @return The oneof2101. @@ -293432,6 +331150,13 @@ public Builder clearOneof2101() { return this; } + /** + * int32 oneof_2102 = 2102; + * @return Whether the oneof2102 field is set. + */ + public boolean hasOneof2102() { + return hugeOneofCase_ == 2102; + } /** * int32 oneof_2102 = 2102; * @return The oneof2102. @@ -293466,6 +331191,13 @@ public Builder clearOneof2102() { return this; } + /** + * int32 oneof_2103 = 2103; + * @return Whether the oneof2103 field is set. + */ + public boolean hasOneof2103() { + return hugeOneofCase_ == 2103; + } /** * int32 oneof_2103 = 2103; * @return The oneof2103. @@ -293500,6 +331232,13 @@ public Builder clearOneof2103() { return this; } + /** + * int32 oneof_2104 = 2104; + * @return Whether the oneof2104 field is set. + */ + public boolean hasOneof2104() { + return hugeOneofCase_ == 2104; + } /** * int32 oneof_2104 = 2104; * @return The oneof2104. @@ -293534,6 +331273,13 @@ public Builder clearOneof2104() { return this; } + /** + * int32 oneof_2105 = 2105; + * @return Whether the oneof2105 field is set. + */ + public boolean hasOneof2105() { + return hugeOneofCase_ == 2105; + } /** * int32 oneof_2105 = 2105; * @return The oneof2105. @@ -293568,6 +331314,13 @@ public Builder clearOneof2105() { return this; } + /** + * int32 oneof_2106 = 2106; + * @return Whether the oneof2106 field is set. + */ + public boolean hasOneof2106() { + return hugeOneofCase_ == 2106; + } /** * int32 oneof_2106 = 2106; * @return The oneof2106. @@ -293602,6 +331355,13 @@ public Builder clearOneof2106() { return this; } + /** + * int32 oneof_2107 = 2107; + * @return Whether the oneof2107 field is set. + */ + public boolean hasOneof2107() { + return hugeOneofCase_ == 2107; + } /** * int32 oneof_2107 = 2107; * @return The oneof2107. @@ -293636,6 +331396,13 @@ public Builder clearOneof2107() { return this; } + /** + * int32 oneof_2108 = 2108; + * @return Whether the oneof2108 field is set. + */ + public boolean hasOneof2108() { + return hugeOneofCase_ == 2108; + } /** * int32 oneof_2108 = 2108; * @return The oneof2108. @@ -293670,6 +331437,13 @@ public Builder clearOneof2108() { return this; } + /** + * int32 oneof_2109 = 2109; + * @return Whether the oneof2109 field is set. + */ + public boolean hasOneof2109() { + return hugeOneofCase_ == 2109; + } /** * int32 oneof_2109 = 2109; * @return The oneof2109. @@ -293704,6 +331478,13 @@ public Builder clearOneof2109() { return this; } + /** + * int32 oneof_2110 = 2110; + * @return Whether the oneof2110 field is set. + */ + public boolean hasOneof2110() { + return hugeOneofCase_ == 2110; + } /** * int32 oneof_2110 = 2110; * @return The oneof2110. @@ -293738,6 +331519,13 @@ public Builder clearOneof2110() { return this; } + /** + * int32 oneof_2111 = 2111; + * @return Whether the oneof2111 field is set. + */ + public boolean hasOneof2111() { + return hugeOneofCase_ == 2111; + } /** * int32 oneof_2111 = 2111; * @return The oneof2111. @@ -293772,6 +331560,13 @@ public Builder clearOneof2111() { return this; } + /** + * int32 oneof_2112 = 2112; + * @return Whether the oneof2112 field is set. + */ + public boolean hasOneof2112() { + return hugeOneofCase_ == 2112; + } /** * int32 oneof_2112 = 2112; * @return The oneof2112. @@ -293806,6 +331601,13 @@ public Builder clearOneof2112() { return this; } + /** + * int32 oneof_2113 = 2113; + * @return Whether the oneof2113 field is set. + */ + public boolean hasOneof2113() { + return hugeOneofCase_ == 2113; + } /** * int32 oneof_2113 = 2113; * @return The oneof2113. @@ -293840,6 +331642,13 @@ public Builder clearOneof2113() { return this; } + /** + * int32 oneof_2114 = 2114; + * @return Whether the oneof2114 field is set. + */ + public boolean hasOneof2114() { + return hugeOneofCase_ == 2114; + } /** * int32 oneof_2114 = 2114; * @return The oneof2114. @@ -293874,6 +331683,13 @@ public Builder clearOneof2114() { return this; } + /** + * int32 oneof_2115 = 2115; + * @return Whether the oneof2115 field is set. + */ + public boolean hasOneof2115() { + return hugeOneofCase_ == 2115; + } /** * int32 oneof_2115 = 2115; * @return The oneof2115. @@ -293908,6 +331724,13 @@ public Builder clearOneof2115() { return this; } + /** + * int32 oneof_2116 = 2116; + * @return Whether the oneof2116 field is set. + */ + public boolean hasOneof2116() { + return hugeOneofCase_ == 2116; + } /** * int32 oneof_2116 = 2116; * @return The oneof2116. @@ -293942,6 +331765,13 @@ public Builder clearOneof2116() { return this; } + /** + * int32 oneof_2117 = 2117; + * @return Whether the oneof2117 field is set. + */ + public boolean hasOneof2117() { + return hugeOneofCase_ == 2117; + } /** * int32 oneof_2117 = 2117; * @return The oneof2117. @@ -293976,6 +331806,13 @@ public Builder clearOneof2117() { return this; } + /** + * int32 oneof_2118 = 2118; + * @return Whether the oneof2118 field is set. + */ + public boolean hasOneof2118() { + return hugeOneofCase_ == 2118; + } /** * int32 oneof_2118 = 2118; * @return The oneof2118. @@ -294010,6 +331847,13 @@ public Builder clearOneof2118() { return this; } + /** + * int32 oneof_2119 = 2119; + * @return Whether the oneof2119 field is set. + */ + public boolean hasOneof2119() { + return hugeOneofCase_ == 2119; + } /** * int32 oneof_2119 = 2119; * @return The oneof2119. @@ -294044,6 +331888,13 @@ public Builder clearOneof2119() { return this; } + /** + * int32 oneof_2120 = 2120; + * @return Whether the oneof2120 field is set. + */ + public boolean hasOneof2120() { + return hugeOneofCase_ == 2120; + } /** * int32 oneof_2120 = 2120; * @return The oneof2120. @@ -294078,6 +331929,13 @@ public Builder clearOneof2120() { return this; } + /** + * int32 oneof_2121 = 2121; + * @return Whether the oneof2121 field is set. + */ + public boolean hasOneof2121() { + return hugeOneofCase_ == 2121; + } /** * int32 oneof_2121 = 2121; * @return The oneof2121. @@ -294112,6 +331970,13 @@ public Builder clearOneof2121() { return this; } + /** + * int32 oneof_2122 = 2122; + * @return Whether the oneof2122 field is set. + */ + public boolean hasOneof2122() { + return hugeOneofCase_ == 2122; + } /** * int32 oneof_2122 = 2122; * @return The oneof2122. @@ -294146,6 +332011,13 @@ public Builder clearOneof2122() { return this; } + /** + * int32 oneof_2123 = 2123; + * @return Whether the oneof2123 field is set. + */ + public boolean hasOneof2123() { + return hugeOneofCase_ == 2123; + } /** * int32 oneof_2123 = 2123; * @return The oneof2123. @@ -294180,6 +332052,13 @@ public Builder clearOneof2123() { return this; } + /** + * int32 oneof_2124 = 2124; + * @return Whether the oneof2124 field is set. + */ + public boolean hasOneof2124() { + return hugeOneofCase_ == 2124; + } /** * int32 oneof_2124 = 2124; * @return The oneof2124. @@ -294214,6 +332093,13 @@ public Builder clearOneof2124() { return this; } + /** + * int32 oneof_2125 = 2125; + * @return Whether the oneof2125 field is set. + */ + public boolean hasOneof2125() { + return hugeOneofCase_ == 2125; + } /** * int32 oneof_2125 = 2125; * @return The oneof2125. @@ -294248,6 +332134,13 @@ public Builder clearOneof2125() { return this; } + /** + * int32 oneof_2126 = 2126; + * @return Whether the oneof2126 field is set. + */ + public boolean hasOneof2126() { + return hugeOneofCase_ == 2126; + } /** * int32 oneof_2126 = 2126; * @return The oneof2126. @@ -294282,6 +332175,13 @@ public Builder clearOneof2126() { return this; } + /** + * int32 oneof_2127 = 2127; + * @return Whether the oneof2127 field is set. + */ + public boolean hasOneof2127() { + return hugeOneofCase_ == 2127; + } /** * int32 oneof_2127 = 2127; * @return The oneof2127. @@ -294316,6 +332216,13 @@ public Builder clearOneof2127() { return this; } + /** + * int32 oneof_2128 = 2128; + * @return Whether the oneof2128 field is set. + */ + public boolean hasOneof2128() { + return hugeOneofCase_ == 2128; + } /** * int32 oneof_2128 = 2128; * @return The oneof2128. @@ -294350,6 +332257,13 @@ public Builder clearOneof2128() { return this; } + /** + * int32 oneof_2129 = 2129; + * @return Whether the oneof2129 field is set. + */ + public boolean hasOneof2129() { + return hugeOneofCase_ == 2129; + } /** * int32 oneof_2129 = 2129; * @return The oneof2129. @@ -294384,6 +332298,13 @@ public Builder clearOneof2129() { return this; } + /** + * int32 oneof_2130 = 2130; + * @return Whether the oneof2130 field is set. + */ + public boolean hasOneof2130() { + return hugeOneofCase_ == 2130; + } /** * int32 oneof_2130 = 2130; * @return The oneof2130. @@ -294418,6 +332339,13 @@ public Builder clearOneof2130() { return this; } + /** + * int32 oneof_2131 = 2131; + * @return Whether the oneof2131 field is set. + */ + public boolean hasOneof2131() { + return hugeOneofCase_ == 2131; + } /** * int32 oneof_2131 = 2131; * @return The oneof2131. @@ -294452,6 +332380,13 @@ public Builder clearOneof2131() { return this; } + /** + * int32 oneof_2132 = 2132; + * @return Whether the oneof2132 field is set. + */ + public boolean hasOneof2132() { + return hugeOneofCase_ == 2132; + } /** * int32 oneof_2132 = 2132; * @return The oneof2132. @@ -294486,6 +332421,13 @@ public Builder clearOneof2132() { return this; } + /** + * int32 oneof_2133 = 2133; + * @return Whether the oneof2133 field is set. + */ + public boolean hasOneof2133() { + return hugeOneofCase_ == 2133; + } /** * int32 oneof_2133 = 2133; * @return The oneof2133. @@ -294520,6 +332462,13 @@ public Builder clearOneof2133() { return this; } + /** + * int32 oneof_2134 = 2134; + * @return Whether the oneof2134 field is set. + */ + public boolean hasOneof2134() { + return hugeOneofCase_ == 2134; + } /** * int32 oneof_2134 = 2134; * @return The oneof2134. @@ -294554,6 +332503,13 @@ public Builder clearOneof2134() { return this; } + /** + * int32 oneof_2135 = 2135; + * @return Whether the oneof2135 field is set. + */ + public boolean hasOneof2135() { + return hugeOneofCase_ == 2135; + } /** * int32 oneof_2135 = 2135; * @return The oneof2135. @@ -294588,6 +332544,13 @@ public Builder clearOneof2135() { return this; } + /** + * int32 oneof_2136 = 2136; + * @return Whether the oneof2136 field is set. + */ + public boolean hasOneof2136() { + return hugeOneofCase_ == 2136; + } /** * int32 oneof_2136 = 2136; * @return The oneof2136. @@ -294622,6 +332585,13 @@ public Builder clearOneof2136() { return this; } + /** + * int32 oneof_2137 = 2137; + * @return Whether the oneof2137 field is set. + */ + public boolean hasOneof2137() { + return hugeOneofCase_ == 2137; + } /** * int32 oneof_2137 = 2137; * @return The oneof2137. @@ -294656,6 +332626,13 @@ public Builder clearOneof2137() { return this; } + /** + * int32 oneof_2138 = 2138; + * @return Whether the oneof2138 field is set. + */ + public boolean hasOneof2138() { + return hugeOneofCase_ == 2138; + } /** * int32 oneof_2138 = 2138; * @return The oneof2138. @@ -294690,6 +332667,13 @@ public Builder clearOneof2138() { return this; } + /** + * int32 oneof_2139 = 2139; + * @return Whether the oneof2139 field is set. + */ + public boolean hasOneof2139() { + return hugeOneofCase_ == 2139; + } /** * int32 oneof_2139 = 2139; * @return The oneof2139. @@ -294724,6 +332708,13 @@ public Builder clearOneof2139() { return this; } + /** + * int32 oneof_2140 = 2140; + * @return Whether the oneof2140 field is set. + */ + public boolean hasOneof2140() { + return hugeOneofCase_ == 2140; + } /** * int32 oneof_2140 = 2140; * @return The oneof2140. @@ -294758,6 +332749,13 @@ public Builder clearOneof2140() { return this; } + /** + * int32 oneof_2141 = 2141; + * @return Whether the oneof2141 field is set. + */ + public boolean hasOneof2141() { + return hugeOneofCase_ == 2141; + } /** * int32 oneof_2141 = 2141; * @return The oneof2141. @@ -294792,6 +332790,13 @@ public Builder clearOneof2141() { return this; } + /** + * int32 oneof_2142 = 2142; + * @return Whether the oneof2142 field is set. + */ + public boolean hasOneof2142() { + return hugeOneofCase_ == 2142; + } /** * int32 oneof_2142 = 2142; * @return The oneof2142. @@ -294826,6 +332831,13 @@ public Builder clearOneof2142() { return this; } + /** + * int32 oneof_2143 = 2143; + * @return Whether the oneof2143 field is set. + */ + public boolean hasOneof2143() { + return hugeOneofCase_ == 2143; + } /** * int32 oneof_2143 = 2143; * @return The oneof2143. @@ -294860,6 +332872,13 @@ public Builder clearOneof2143() { return this; } + /** + * int32 oneof_2144 = 2144; + * @return Whether the oneof2144 field is set. + */ + public boolean hasOneof2144() { + return hugeOneofCase_ == 2144; + } /** * int32 oneof_2144 = 2144; * @return The oneof2144. @@ -294894,6 +332913,13 @@ public Builder clearOneof2144() { return this; } + /** + * int32 oneof_2145 = 2145; + * @return Whether the oneof2145 field is set. + */ + public boolean hasOneof2145() { + return hugeOneofCase_ == 2145; + } /** * int32 oneof_2145 = 2145; * @return The oneof2145. @@ -294928,6 +332954,13 @@ public Builder clearOneof2145() { return this; } + /** + * int32 oneof_2146 = 2146; + * @return Whether the oneof2146 field is set. + */ + public boolean hasOneof2146() { + return hugeOneofCase_ == 2146; + } /** * int32 oneof_2146 = 2146; * @return The oneof2146. @@ -294962,6 +332995,13 @@ public Builder clearOneof2146() { return this; } + /** + * int32 oneof_2147 = 2147; + * @return Whether the oneof2147 field is set. + */ + public boolean hasOneof2147() { + return hugeOneofCase_ == 2147; + } /** * int32 oneof_2147 = 2147; * @return The oneof2147. @@ -294996,6 +333036,13 @@ public Builder clearOneof2147() { return this; } + /** + * int32 oneof_2148 = 2148; + * @return Whether the oneof2148 field is set. + */ + public boolean hasOneof2148() { + return hugeOneofCase_ == 2148; + } /** * int32 oneof_2148 = 2148; * @return The oneof2148. @@ -295030,6 +333077,13 @@ public Builder clearOneof2148() { return this; } + /** + * int32 oneof_2149 = 2149; + * @return Whether the oneof2149 field is set. + */ + public boolean hasOneof2149() { + return hugeOneofCase_ == 2149; + } /** * int32 oneof_2149 = 2149; * @return The oneof2149. @@ -295064,6 +333118,13 @@ public Builder clearOneof2149() { return this; } + /** + * int32 oneof_2150 = 2150; + * @return Whether the oneof2150 field is set. + */ + public boolean hasOneof2150() { + return hugeOneofCase_ == 2150; + } /** * int32 oneof_2150 = 2150; * @return The oneof2150. @@ -295098,6 +333159,13 @@ public Builder clearOneof2150() { return this; } + /** + * int32 oneof_2151 = 2151; + * @return Whether the oneof2151 field is set. + */ + public boolean hasOneof2151() { + return hugeOneofCase_ == 2151; + } /** * int32 oneof_2151 = 2151; * @return The oneof2151. @@ -295132,6 +333200,13 @@ public Builder clearOneof2151() { return this; } + /** + * int32 oneof_2152 = 2152; + * @return Whether the oneof2152 field is set. + */ + public boolean hasOneof2152() { + return hugeOneofCase_ == 2152; + } /** * int32 oneof_2152 = 2152; * @return The oneof2152. @@ -295166,6 +333241,13 @@ public Builder clearOneof2152() { return this; } + /** + * int32 oneof_2153 = 2153; + * @return Whether the oneof2153 field is set. + */ + public boolean hasOneof2153() { + return hugeOneofCase_ == 2153; + } /** * int32 oneof_2153 = 2153; * @return The oneof2153. @@ -295200,6 +333282,13 @@ public Builder clearOneof2153() { return this; } + /** + * int32 oneof_2154 = 2154; + * @return Whether the oneof2154 field is set. + */ + public boolean hasOneof2154() { + return hugeOneofCase_ == 2154; + } /** * int32 oneof_2154 = 2154; * @return The oneof2154. @@ -295234,6 +333323,13 @@ public Builder clearOneof2154() { return this; } + /** + * int32 oneof_2155 = 2155; + * @return Whether the oneof2155 field is set. + */ + public boolean hasOneof2155() { + return hugeOneofCase_ == 2155; + } /** * int32 oneof_2155 = 2155; * @return The oneof2155. @@ -295268,6 +333364,13 @@ public Builder clearOneof2155() { return this; } + /** + * int32 oneof_2156 = 2156; + * @return Whether the oneof2156 field is set. + */ + public boolean hasOneof2156() { + return hugeOneofCase_ == 2156; + } /** * int32 oneof_2156 = 2156; * @return The oneof2156. @@ -295302,6 +333405,13 @@ public Builder clearOneof2156() { return this; } + /** + * int32 oneof_2157 = 2157; + * @return Whether the oneof2157 field is set. + */ + public boolean hasOneof2157() { + return hugeOneofCase_ == 2157; + } /** * int32 oneof_2157 = 2157; * @return The oneof2157. @@ -295336,6 +333446,13 @@ public Builder clearOneof2157() { return this; } + /** + * int32 oneof_2158 = 2158; + * @return Whether the oneof2158 field is set. + */ + public boolean hasOneof2158() { + return hugeOneofCase_ == 2158; + } /** * int32 oneof_2158 = 2158; * @return The oneof2158. @@ -295370,6 +333487,13 @@ public Builder clearOneof2158() { return this; } + /** + * int32 oneof_2159 = 2159; + * @return Whether the oneof2159 field is set. + */ + public boolean hasOneof2159() { + return hugeOneofCase_ == 2159; + } /** * int32 oneof_2159 = 2159; * @return The oneof2159. @@ -295404,6 +333528,13 @@ public Builder clearOneof2159() { return this; } + /** + * int32 oneof_2160 = 2160; + * @return Whether the oneof2160 field is set. + */ + public boolean hasOneof2160() { + return hugeOneofCase_ == 2160; + } /** * int32 oneof_2160 = 2160; * @return The oneof2160. @@ -295438,6 +333569,13 @@ public Builder clearOneof2160() { return this; } + /** + * int32 oneof_2161 = 2161; + * @return Whether the oneof2161 field is set. + */ + public boolean hasOneof2161() { + return hugeOneofCase_ == 2161; + } /** * int32 oneof_2161 = 2161; * @return The oneof2161. @@ -295472,6 +333610,13 @@ public Builder clearOneof2161() { return this; } + /** + * int32 oneof_2162 = 2162; + * @return Whether the oneof2162 field is set. + */ + public boolean hasOneof2162() { + return hugeOneofCase_ == 2162; + } /** * int32 oneof_2162 = 2162; * @return The oneof2162. @@ -295506,6 +333651,13 @@ public Builder clearOneof2162() { return this; } + /** + * int32 oneof_2163 = 2163; + * @return Whether the oneof2163 field is set. + */ + public boolean hasOneof2163() { + return hugeOneofCase_ == 2163; + } /** * int32 oneof_2163 = 2163; * @return The oneof2163. @@ -295540,6 +333692,13 @@ public Builder clearOneof2163() { return this; } + /** + * int32 oneof_2164 = 2164; + * @return Whether the oneof2164 field is set. + */ + public boolean hasOneof2164() { + return hugeOneofCase_ == 2164; + } /** * int32 oneof_2164 = 2164; * @return The oneof2164. @@ -295574,6 +333733,13 @@ public Builder clearOneof2164() { return this; } + /** + * int32 oneof_2165 = 2165; + * @return Whether the oneof2165 field is set. + */ + public boolean hasOneof2165() { + return hugeOneofCase_ == 2165; + } /** * int32 oneof_2165 = 2165; * @return The oneof2165. @@ -295608,6 +333774,13 @@ public Builder clearOneof2165() { return this; } + /** + * int32 oneof_2166 = 2166; + * @return Whether the oneof2166 field is set. + */ + public boolean hasOneof2166() { + return hugeOneofCase_ == 2166; + } /** * int32 oneof_2166 = 2166; * @return The oneof2166. @@ -295642,6 +333815,13 @@ public Builder clearOneof2166() { return this; } + /** + * int32 oneof_2167 = 2167; + * @return Whether the oneof2167 field is set. + */ + public boolean hasOneof2167() { + return hugeOneofCase_ == 2167; + } /** * int32 oneof_2167 = 2167; * @return The oneof2167. @@ -295676,6 +333856,13 @@ public Builder clearOneof2167() { return this; } + /** + * int32 oneof_2168 = 2168; + * @return Whether the oneof2168 field is set. + */ + public boolean hasOneof2168() { + return hugeOneofCase_ == 2168; + } /** * int32 oneof_2168 = 2168; * @return The oneof2168. @@ -295710,6 +333897,13 @@ public Builder clearOneof2168() { return this; } + /** + * int32 oneof_2169 = 2169; + * @return Whether the oneof2169 field is set. + */ + public boolean hasOneof2169() { + return hugeOneofCase_ == 2169; + } /** * int32 oneof_2169 = 2169; * @return The oneof2169. @@ -295744,6 +333938,13 @@ public Builder clearOneof2169() { return this; } + /** + * int32 oneof_2170 = 2170; + * @return Whether the oneof2170 field is set. + */ + public boolean hasOneof2170() { + return hugeOneofCase_ == 2170; + } /** * int32 oneof_2170 = 2170; * @return The oneof2170. @@ -295778,6 +333979,13 @@ public Builder clearOneof2170() { return this; } + /** + * int32 oneof_2171 = 2171; + * @return Whether the oneof2171 field is set. + */ + public boolean hasOneof2171() { + return hugeOneofCase_ == 2171; + } /** * int32 oneof_2171 = 2171; * @return The oneof2171. @@ -295812,6 +334020,13 @@ public Builder clearOneof2171() { return this; } + /** + * int32 oneof_2172 = 2172; + * @return Whether the oneof2172 field is set. + */ + public boolean hasOneof2172() { + return hugeOneofCase_ == 2172; + } /** * int32 oneof_2172 = 2172; * @return The oneof2172. @@ -295846,6 +334061,13 @@ public Builder clearOneof2172() { return this; } + /** + * int32 oneof_2173 = 2173; + * @return Whether the oneof2173 field is set. + */ + public boolean hasOneof2173() { + return hugeOneofCase_ == 2173; + } /** * int32 oneof_2173 = 2173; * @return The oneof2173. @@ -295880,6 +334102,13 @@ public Builder clearOneof2173() { return this; } + /** + * int32 oneof_2174 = 2174; + * @return Whether the oneof2174 field is set. + */ + public boolean hasOneof2174() { + return hugeOneofCase_ == 2174; + } /** * int32 oneof_2174 = 2174; * @return The oneof2174. @@ -295914,6 +334143,13 @@ public Builder clearOneof2174() { return this; } + /** + * int32 oneof_2175 = 2175; + * @return Whether the oneof2175 field is set. + */ + public boolean hasOneof2175() { + return hugeOneofCase_ == 2175; + } /** * int32 oneof_2175 = 2175; * @return The oneof2175. @@ -295948,6 +334184,13 @@ public Builder clearOneof2175() { return this; } + /** + * int32 oneof_2176 = 2176; + * @return Whether the oneof2176 field is set. + */ + public boolean hasOneof2176() { + return hugeOneofCase_ == 2176; + } /** * int32 oneof_2176 = 2176; * @return The oneof2176. @@ -295982,6 +334225,13 @@ public Builder clearOneof2176() { return this; } + /** + * int32 oneof_2177 = 2177; + * @return Whether the oneof2177 field is set. + */ + public boolean hasOneof2177() { + return hugeOneofCase_ == 2177; + } /** * int32 oneof_2177 = 2177; * @return The oneof2177. @@ -296016,6 +334266,13 @@ public Builder clearOneof2177() { return this; } + /** + * int32 oneof_2178 = 2178; + * @return Whether the oneof2178 field is set. + */ + public boolean hasOneof2178() { + return hugeOneofCase_ == 2178; + } /** * int32 oneof_2178 = 2178; * @return The oneof2178. @@ -296050,6 +334307,13 @@ public Builder clearOneof2178() { return this; } + /** + * int32 oneof_2179 = 2179; + * @return Whether the oneof2179 field is set. + */ + public boolean hasOneof2179() { + return hugeOneofCase_ == 2179; + } /** * int32 oneof_2179 = 2179; * @return The oneof2179. @@ -296084,6 +334348,13 @@ public Builder clearOneof2179() { return this; } + /** + * int32 oneof_2180 = 2180; + * @return Whether the oneof2180 field is set. + */ + public boolean hasOneof2180() { + return hugeOneofCase_ == 2180; + } /** * int32 oneof_2180 = 2180; * @return The oneof2180. @@ -296118,6 +334389,13 @@ public Builder clearOneof2180() { return this; } + /** + * int32 oneof_2181 = 2181; + * @return Whether the oneof2181 field is set. + */ + public boolean hasOneof2181() { + return hugeOneofCase_ == 2181; + } /** * int32 oneof_2181 = 2181; * @return The oneof2181. @@ -296152,6 +334430,13 @@ public Builder clearOneof2181() { return this; } + /** + * int32 oneof_2182 = 2182; + * @return Whether the oneof2182 field is set. + */ + public boolean hasOneof2182() { + return hugeOneofCase_ == 2182; + } /** * int32 oneof_2182 = 2182; * @return The oneof2182. @@ -296186,6 +334471,13 @@ public Builder clearOneof2182() { return this; } + /** + * int32 oneof_2183 = 2183; + * @return Whether the oneof2183 field is set. + */ + public boolean hasOneof2183() { + return hugeOneofCase_ == 2183; + } /** * int32 oneof_2183 = 2183; * @return The oneof2183. @@ -296220,6 +334512,13 @@ public Builder clearOneof2183() { return this; } + /** + * int32 oneof_2184 = 2184; + * @return Whether the oneof2184 field is set. + */ + public boolean hasOneof2184() { + return hugeOneofCase_ == 2184; + } /** * int32 oneof_2184 = 2184; * @return The oneof2184. @@ -296254,6 +334553,13 @@ public Builder clearOneof2184() { return this; } + /** + * int32 oneof_2185 = 2185; + * @return Whether the oneof2185 field is set. + */ + public boolean hasOneof2185() { + return hugeOneofCase_ == 2185; + } /** * int32 oneof_2185 = 2185; * @return The oneof2185. @@ -296288,6 +334594,13 @@ public Builder clearOneof2185() { return this; } + /** + * int32 oneof_2186 = 2186; + * @return Whether the oneof2186 field is set. + */ + public boolean hasOneof2186() { + return hugeOneofCase_ == 2186; + } /** * int32 oneof_2186 = 2186; * @return The oneof2186. @@ -296322,6 +334635,13 @@ public Builder clearOneof2186() { return this; } + /** + * int32 oneof_2187 = 2187; + * @return Whether the oneof2187 field is set. + */ + public boolean hasOneof2187() { + return hugeOneofCase_ == 2187; + } /** * int32 oneof_2187 = 2187; * @return The oneof2187. @@ -296356,6 +334676,13 @@ public Builder clearOneof2187() { return this; } + /** + * int32 oneof_2188 = 2188; + * @return Whether the oneof2188 field is set. + */ + public boolean hasOneof2188() { + return hugeOneofCase_ == 2188; + } /** * int32 oneof_2188 = 2188; * @return The oneof2188. @@ -296390,6 +334717,13 @@ public Builder clearOneof2188() { return this; } + /** + * int32 oneof_2189 = 2189; + * @return Whether the oneof2189 field is set. + */ + public boolean hasOneof2189() { + return hugeOneofCase_ == 2189; + } /** * int32 oneof_2189 = 2189; * @return The oneof2189. @@ -296424,6 +334758,13 @@ public Builder clearOneof2189() { return this; } + /** + * int32 oneof_2190 = 2190; + * @return Whether the oneof2190 field is set. + */ + public boolean hasOneof2190() { + return hugeOneofCase_ == 2190; + } /** * int32 oneof_2190 = 2190; * @return The oneof2190. @@ -296458,6 +334799,13 @@ public Builder clearOneof2190() { return this; } + /** + * int32 oneof_2191 = 2191; + * @return Whether the oneof2191 field is set. + */ + public boolean hasOneof2191() { + return hugeOneofCase_ == 2191; + } /** * int32 oneof_2191 = 2191; * @return The oneof2191. @@ -296492,6 +334840,13 @@ public Builder clearOneof2191() { return this; } + /** + * int32 oneof_2192 = 2192; + * @return Whether the oneof2192 field is set. + */ + public boolean hasOneof2192() { + return hugeOneofCase_ == 2192; + } /** * int32 oneof_2192 = 2192; * @return The oneof2192. @@ -296526,6 +334881,13 @@ public Builder clearOneof2192() { return this; } + /** + * int32 oneof_2193 = 2193; + * @return Whether the oneof2193 field is set. + */ + public boolean hasOneof2193() { + return hugeOneofCase_ == 2193; + } /** * int32 oneof_2193 = 2193; * @return The oneof2193. @@ -296560,6 +334922,13 @@ public Builder clearOneof2193() { return this; } + /** + * int32 oneof_2194 = 2194; + * @return Whether the oneof2194 field is set. + */ + public boolean hasOneof2194() { + return hugeOneofCase_ == 2194; + } /** * int32 oneof_2194 = 2194; * @return The oneof2194. @@ -296594,6 +334963,13 @@ public Builder clearOneof2194() { return this; } + /** + * int32 oneof_2195 = 2195; + * @return Whether the oneof2195 field is set. + */ + public boolean hasOneof2195() { + return hugeOneofCase_ == 2195; + } /** * int32 oneof_2195 = 2195; * @return The oneof2195. @@ -296628,6 +335004,13 @@ public Builder clearOneof2195() { return this; } + /** + * int32 oneof_2196 = 2196; + * @return Whether the oneof2196 field is set. + */ + public boolean hasOneof2196() { + return hugeOneofCase_ == 2196; + } /** * int32 oneof_2196 = 2196; * @return The oneof2196. @@ -296662,6 +335045,13 @@ public Builder clearOneof2196() { return this; } + /** + * int32 oneof_2197 = 2197; + * @return Whether the oneof2197 field is set. + */ + public boolean hasOneof2197() { + return hugeOneofCase_ == 2197; + } /** * int32 oneof_2197 = 2197; * @return The oneof2197. @@ -296696,6 +335086,13 @@ public Builder clearOneof2197() { return this; } + /** + * int32 oneof_2198 = 2198; + * @return Whether the oneof2198 field is set. + */ + public boolean hasOneof2198() { + return hugeOneofCase_ == 2198; + } /** * int32 oneof_2198 = 2198; * @return The oneof2198. @@ -296730,6 +335127,13 @@ public Builder clearOneof2198() { return this; } + /** + * int32 oneof_2199 = 2199; + * @return Whether the oneof2199 field is set. + */ + public boolean hasOneof2199() { + return hugeOneofCase_ == 2199; + } /** * int32 oneof_2199 = 2199; * @return The oneof2199. @@ -296764,6 +335168,13 @@ public Builder clearOneof2199() { return this; } + /** + * int32 oneof_2200 = 2200; + * @return Whether the oneof2200 field is set. + */ + public boolean hasOneof2200() { + return hugeOneofCase_ == 2200; + } /** * int32 oneof_2200 = 2200; * @return The oneof2200. @@ -296798,6 +335209,13 @@ public Builder clearOneof2200() { return this; } + /** + * int32 oneof_2201 = 2201; + * @return Whether the oneof2201 field is set. + */ + public boolean hasOneof2201() { + return hugeOneofCase_ == 2201; + } /** * int32 oneof_2201 = 2201; * @return The oneof2201. @@ -296832,6 +335250,13 @@ public Builder clearOneof2201() { return this; } + /** + * int32 oneof_2202 = 2202; + * @return Whether the oneof2202 field is set. + */ + public boolean hasOneof2202() { + return hugeOneofCase_ == 2202; + } /** * int32 oneof_2202 = 2202; * @return The oneof2202. @@ -296866,6 +335291,13 @@ public Builder clearOneof2202() { return this; } + /** + * int32 oneof_2203 = 2203; + * @return Whether the oneof2203 field is set. + */ + public boolean hasOneof2203() { + return hugeOneofCase_ == 2203; + } /** * int32 oneof_2203 = 2203; * @return The oneof2203. @@ -296900,6 +335332,13 @@ public Builder clearOneof2203() { return this; } + /** + * int32 oneof_2204 = 2204; + * @return Whether the oneof2204 field is set. + */ + public boolean hasOneof2204() { + return hugeOneofCase_ == 2204; + } /** * int32 oneof_2204 = 2204; * @return The oneof2204. @@ -296934,6 +335373,13 @@ public Builder clearOneof2204() { return this; } + /** + * int32 oneof_2205 = 2205; + * @return Whether the oneof2205 field is set. + */ + public boolean hasOneof2205() { + return hugeOneofCase_ == 2205; + } /** * int32 oneof_2205 = 2205; * @return The oneof2205. @@ -296968,6 +335414,13 @@ public Builder clearOneof2205() { return this; } + /** + * int32 oneof_2206 = 2206; + * @return Whether the oneof2206 field is set. + */ + public boolean hasOneof2206() { + return hugeOneofCase_ == 2206; + } /** * int32 oneof_2206 = 2206; * @return The oneof2206. @@ -297002,6 +335455,13 @@ public Builder clearOneof2206() { return this; } + /** + * int32 oneof_2207 = 2207; + * @return Whether the oneof2207 field is set. + */ + public boolean hasOneof2207() { + return hugeOneofCase_ == 2207; + } /** * int32 oneof_2207 = 2207; * @return The oneof2207. @@ -297036,6 +335496,13 @@ public Builder clearOneof2207() { return this; } + /** + * int32 oneof_2208 = 2208; + * @return Whether the oneof2208 field is set. + */ + public boolean hasOneof2208() { + return hugeOneofCase_ == 2208; + } /** * int32 oneof_2208 = 2208; * @return The oneof2208. @@ -297070,6 +335537,13 @@ public Builder clearOneof2208() { return this; } + /** + * int32 oneof_2209 = 2209; + * @return Whether the oneof2209 field is set. + */ + public boolean hasOneof2209() { + return hugeOneofCase_ == 2209; + } /** * int32 oneof_2209 = 2209; * @return The oneof2209. @@ -297104,6 +335578,13 @@ public Builder clearOneof2209() { return this; } + /** + * int32 oneof_2210 = 2210; + * @return Whether the oneof2210 field is set. + */ + public boolean hasOneof2210() { + return hugeOneofCase_ == 2210; + } /** * int32 oneof_2210 = 2210; * @return The oneof2210. @@ -297138,6 +335619,13 @@ public Builder clearOneof2210() { return this; } + /** + * int32 oneof_2211 = 2211; + * @return Whether the oneof2211 field is set. + */ + public boolean hasOneof2211() { + return hugeOneofCase_ == 2211; + } /** * int32 oneof_2211 = 2211; * @return The oneof2211. @@ -297172,6 +335660,13 @@ public Builder clearOneof2211() { return this; } + /** + * int32 oneof_2212 = 2212; + * @return Whether the oneof2212 field is set. + */ + public boolean hasOneof2212() { + return hugeOneofCase_ == 2212; + } /** * int32 oneof_2212 = 2212; * @return The oneof2212. @@ -297206,6 +335701,13 @@ public Builder clearOneof2212() { return this; } + /** + * int32 oneof_2213 = 2213; + * @return Whether the oneof2213 field is set. + */ + public boolean hasOneof2213() { + return hugeOneofCase_ == 2213; + } /** * int32 oneof_2213 = 2213; * @return The oneof2213. @@ -297240,6 +335742,13 @@ public Builder clearOneof2213() { return this; } + /** + * int32 oneof_2214 = 2214; + * @return Whether the oneof2214 field is set. + */ + public boolean hasOneof2214() { + return hugeOneofCase_ == 2214; + } /** * int32 oneof_2214 = 2214; * @return The oneof2214. @@ -297274,6 +335783,13 @@ public Builder clearOneof2214() { return this; } + /** + * int32 oneof_2215 = 2215; + * @return Whether the oneof2215 field is set. + */ + public boolean hasOneof2215() { + return hugeOneofCase_ == 2215; + } /** * int32 oneof_2215 = 2215; * @return The oneof2215. @@ -297308,6 +335824,13 @@ public Builder clearOneof2215() { return this; } + /** + * int32 oneof_2216 = 2216; + * @return Whether the oneof2216 field is set. + */ + public boolean hasOneof2216() { + return hugeOneofCase_ == 2216; + } /** * int32 oneof_2216 = 2216; * @return The oneof2216. @@ -297342,6 +335865,13 @@ public Builder clearOneof2216() { return this; } + /** + * int32 oneof_2217 = 2217; + * @return Whether the oneof2217 field is set. + */ + public boolean hasOneof2217() { + return hugeOneofCase_ == 2217; + } /** * int32 oneof_2217 = 2217; * @return The oneof2217. @@ -297376,6 +335906,13 @@ public Builder clearOneof2217() { return this; } + /** + * int32 oneof_2218 = 2218; + * @return Whether the oneof2218 field is set. + */ + public boolean hasOneof2218() { + return hugeOneofCase_ == 2218; + } /** * int32 oneof_2218 = 2218; * @return The oneof2218. @@ -297410,6 +335947,13 @@ public Builder clearOneof2218() { return this; } + /** + * int32 oneof_2219 = 2219; + * @return Whether the oneof2219 field is set. + */ + public boolean hasOneof2219() { + return hugeOneofCase_ == 2219; + } /** * int32 oneof_2219 = 2219; * @return The oneof2219. @@ -297444,6 +335988,13 @@ public Builder clearOneof2219() { return this; } + /** + * int32 oneof_2220 = 2220; + * @return Whether the oneof2220 field is set. + */ + public boolean hasOneof2220() { + return hugeOneofCase_ == 2220; + } /** * int32 oneof_2220 = 2220; * @return The oneof2220. @@ -297478,6 +336029,13 @@ public Builder clearOneof2220() { return this; } + /** + * int32 oneof_2221 = 2221; + * @return Whether the oneof2221 field is set. + */ + public boolean hasOneof2221() { + return hugeOneofCase_ == 2221; + } /** * int32 oneof_2221 = 2221; * @return The oneof2221. @@ -297512,6 +336070,13 @@ public Builder clearOneof2221() { return this; } + /** + * int32 oneof_2222 = 2222; + * @return Whether the oneof2222 field is set. + */ + public boolean hasOneof2222() { + return hugeOneofCase_ == 2222; + } /** * int32 oneof_2222 = 2222; * @return The oneof2222. @@ -297546,6 +336111,13 @@ public Builder clearOneof2222() { return this; } + /** + * int32 oneof_2223 = 2223; + * @return Whether the oneof2223 field is set. + */ + public boolean hasOneof2223() { + return hugeOneofCase_ == 2223; + } /** * int32 oneof_2223 = 2223; * @return The oneof2223. @@ -297580,6 +336152,13 @@ public Builder clearOneof2223() { return this; } + /** + * int32 oneof_2224 = 2224; + * @return Whether the oneof2224 field is set. + */ + public boolean hasOneof2224() { + return hugeOneofCase_ == 2224; + } /** * int32 oneof_2224 = 2224; * @return The oneof2224. @@ -297614,6 +336193,13 @@ public Builder clearOneof2224() { return this; } + /** + * int32 oneof_2225 = 2225; + * @return Whether the oneof2225 field is set. + */ + public boolean hasOneof2225() { + return hugeOneofCase_ == 2225; + } /** * int32 oneof_2225 = 2225; * @return The oneof2225. @@ -297648,6 +336234,13 @@ public Builder clearOneof2225() { return this; } + /** + * int32 oneof_2226 = 2226; + * @return Whether the oneof2226 field is set. + */ + public boolean hasOneof2226() { + return hugeOneofCase_ == 2226; + } /** * int32 oneof_2226 = 2226; * @return The oneof2226. @@ -297682,6 +336275,13 @@ public Builder clearOneof2226() { return this; } + /** + * int32 oneof_2227 = 2227; + * @return Whether the oneof2227 field is set. + */ + public boolean hasOneof2227() { + return hugeOneofCase_ == 2227; + } /** * int32 oneof_2227 = 2227; * @return The oneof2227. @@ -297716,6 +336316,13 @@ public Builder clearOneof2227() { return this; } + /** + * int32 oneof_2228 = 2228; + * @return Whether the oneof2228 field is set. + */ + public boolean hasOneof2228() { + return hugeOneofCase_ == 2228; + } /** * int32 oneof_2228 = 2228; * @return The oneof2228. @@ -297750,6 +336357,13 @@ public Builder clearOneof2228() { return this; } + /** + * int32 oneof_2229 = 2229; + * @return Whether the oneof2229 field is set. + */ + public boolean hasOneof2229() { + return hugeOneofCase_ == 2229; + } /** * int32 oneof_2229 = 2229; * @return The oneof2229. @@ -297784,6 +336398,13 @@ public Builder clearOneof2229() { return this; } + /** + * int32 oneof_2230 = 2230; + * @return Whether the oneof2230 field is set. + */ + public boolean hasOneof2230() { + return hugeOneofCase_ == 2230; + } /** * int32 oneof_2230 = 2230; * @return The oneof2230. @@ -297818,6 +336439,13 @@ public Builder clearOneof2230() { return this; } + /** + * int32 oneof_2231 = 2231; + * @return Whether the oneof2231 field is set. + */ + public boolean hasOneof2231() { + return hugeOneofCase_ == 2231; + } /** * int32 oneof_2231 = 2231; * @return The oneof2231. @@ -297852,6 +336480,13 @@ public Builder clearOneof2231() { return this; } + /** + * int32 oneof_2232 = 2232; + * @return Whether the oneof2232 field is set. + */ + public boolean hasOneof2232() { + return hugeOneofCase_ == 2232; + } /** * int32 oneof_2232 = 2232; * @return The oneof2232. @@ -297886,6 +336521,13 @@ public Builder clearOneof2232() { return this; } + /** + * int32 oneof_2233 = 2233; + * @return Whether the oneof2233 field is set. + */ + public boolean hasOneof2233() { + return hugeOneofCase_ == 2233; + } /** * int32 oneof_2233 = 2233; * @return The oneof2233. @@ -297920,6 +336562,13 @@ public Builder clearOneof2233() { return this; } + /** + * int32 oneof_2234 = 2234; + * @return Whether the oneof2234 field is set. + */ + public boolean hasOneof2234() { + return hugeOneofCase_ == 2234; + } /** * int32 oneof_2234 = 2234; * @return The oneof2234. @@ -297954,6 +336603,13 @@ public Builder clearOneof2234() { return this; } + /** + * int32 oneof_2235 = 2235; + * @return Whether the oneof2235 field is set. + */ + public boolean hasOneof2235() { + return hugeOneofCase_ == 2235; + } /** * int32 oneof_2235 = 2235; * @return The oneof2235. @@ -297988,6 +336644,13 @@ public Builder clearOneof2235() { return this; } + /** + * int32 oneof_2236 = 2236; + * @return Whether the oneof2236 field is set. + */ + public boolean hasOneof2236() { + return hugeOneofCase_ == 2236; + } /** * int32 oneof_2236 = 2236; * @return The oneof2236. @@ -298022,6 +336685,13 @@ public Builder clearOneof2236() { return this; } + /** + * int32 oneof_2237 = 2237; + * @return Whether the oneof2237 field is set. + */ + public boolean hasOneof2237() { + return hugeOneofCase_ == 2237; + } /** * int32 oneof_2237 = 2237; * @return The oneof2237. @@ -298056,6 +336726,13 @@ public Builder clearOneof2237() { return this; } + /** + * int32 oneof_2238 = 2238; + * @return Whether the oneof2238 field is set. + */ + public boolean hasOneof2238() { + return hugeOneofCase_ == 2238; + } /** * int32 oneof_2238 = 2238; * @return The oneof2238. @@ -298090,6 +336767,13 @@ public Builder clearOneof2238() { return this; } + /** + * int32 oneof_2239 = 2239; + * @return Whether the oneof2239 field is set. + */ + public boolean hasOneof2239() { + return hugeOneofCase_ == 2239; + } /** * int32 oneof_2239 = 2239; * @return The oneof2239. @@ -298124,6 +336808,13 @@ public Builder clearOneof2239() { return this; } + /** + * int32 oneof_2240 = 2240; + * @return Whether the oneof2240 field is set. + */ + public boolean hasOneof2240() { + return hugeOneofCase_ == 2240; + } /** * int32 oneof_2240 = 2240; * @return The oneof2240. @@ -298158,6 +336849,13 @@ public Builder clearOneof2240() { return this; } + /** + * int32 oneof_2241 = 2241; + * @return Whether the oneof2241 field is set. + */ + public boolean hasOneof2241() { + return hugeOneofCase_ == 2241; + } /** * int32 oneof_2241 = 2241; * @return The oneof2241. @@ -298192,6 +336890,13 @@ public Builder clearOneof2241() { return this; } + /** + * int32 oneof_2242 = 2242; + * @return Whether the oneof2242 field is set. + */ + public boolean hasOneof2242() { + return hugeOneofCase_ == 2242; + } /** * int32 oneof_2242 = 2242; * @return The oneof2242. @@ -298226,6 +336931,13 @@ public Builder clearOneof2242() { return this; } + /** + * int32 oneof_2243 = 2243; + * @return Whether the oneof2243 field is set. + */ + public boolean hasOneof2243() { + return hugeOneofCase_ == 2243; + } /** * int32 oneof_2243 = 2243; * @return The oneof2243. @@ -298260,6 +336972,13 @@ public Builder clearOneof2243() { return this; } + /** + * int32 oneof_2244 = 2244; + * @return Whether the oneof2244 field is set. + */ + public boolean hasOneof2244() { + return hugeOneofCase_ == 2244; + } /** * int32 oneof_2244 = 2244; * @return The oneof2244. @@ -298294,6 +337013,13 @@ public Builder clearOneof2244() { return this; } + /** + * int32 oneof_2245 = 2245; + * @return Whether the oneof2245 field is set. + */ + public boolean hasOneof2245() { + return hugeOneofCase_ == 2245; + } /** * int32 oneof_2245 = 2245; * @return The oneof2245. @@ -298328,6 +337054,13 @@ public Builder clearOneof2245() { return this; } + /** + * int32 oneof_2246 = 2246; + * @return Whether the oneof2246 field is set. + */ + public boolean hasOneof2246() { + return hugeOneofCase_ == 2246; + } /** * int32 oneof_2246 = 2246; * @return The oneof2246. @@ -298362,6 +337095,13 @@ public Builder clearOneof2246() { return this; } + /** + * int32 oneof_2247 = 2247; + * @return Whether the oneof2247 field is set. + */ + public boolean hasOneof2247() { + return hugeOneofCase_ == 2247; + } /** * int32 oneof_2247 = 2247; * @return The oneof2247. @@ -298396,6 +337136,13 @@ public Builder clearOneof2247() { return this; } + /** + * int32 oneof_2248 = 2248; + * @return Whether the oneof2248 field is set. + */ + public boolean hasOneof2248() { + return hugeOneofCase_ == 2248; + } /** * int32 oneof_2248 = 2248; * @return The oneof2248. @@ -298430,6 +337177,13 @@ public Builder clearOneof2248() { return this; } + /** + * int32 oneof_2249 = 2249; + * @return Whether the oneof2249 field is set. + */ + public boolean hasOneof2249() { + return hugeOneofCase_ == 2249; + } /** * int32 oneof_2249 = 2249; * @return The oneof2249. @@ -298464,6 +337218,13 @@ public Builder clearOneof2249() { return this; } + /** + * int32 oneof_2250 = 2250; + * @return Whether the oneof2250 field is set. + */ + public boolean hasOneof2250() { + return hugeOneofCase_ == 2250; + } /** * int32 oneof_2250 = 2250; * @return The oneof2250. @@ -298498,6 +337259,13 @@ public Builder clearOneof2250() { return this; } + /** + * int32 oneof_2251 = 2251; + * @return Whether the oneof2251 field is set. + */ + public boolean hasOneof2251() { + return hugeOneofCase_ == 2251; + } /** * int32 oneof_2251 = 2251; * @return The oneof2251. @@ -298532,6 +337300,13 @@ public Builder clearOneof2251() { return this; } + /** + * int32 oneof_2252 = 2252; + * @return Whether the oneof2252 field is set. + */ + public boolean hasOneof2252() { + return hugeOneofCase_ == 2252; + } /** * int32 oneof_2252 = 2252; * @return The oneof2252. @@ -298566,6 +337341,13 @@ public Builder clearOneof2252() { return this; } + /** + * int32 oneof_2253 = 2253; + * @return Whether the oneof2253 field is set. + */ + public boolean hasOneof2253() { + return hugeOneofCase_ == 2253; + } /** * int32 oneof_2253 = 2253; * @return The oneof2253. @@ -298600,6 +337382,13 @@ public Builder clearOneof2253() { return this; } + /** + * int32 oneof_2254 = 2254; + * @return Whether the oneof2254 field is set. + */ + public boolean hasOneof2254() { + return hugeOneofCase_ == 2254; + } /** * int32 oneof_2254 = 2254; * @return The oneof2254. @@ -298634,6 +337423,13 @@ public Builder clearOneof2254() { return this; } + /** + * int32 oneof_2255 = 2255; + * @return Whether the oneof2255 field is set. + */ + public boolean hasOneof2255() { + return hugeOneofCase_ == 2255; + } /** * int32 oneof_2255 = 2255; * @return The oneof2255. @@ -298668,6 +337464,13 @@ public Builder clearOneof2255() { return this; } + /** + * int32 oneof_2256 = 2256; + * @return Whether the oneof2256 field is set. + */ + public boolean hasOneof2256() { + return hugeOneofCase_ == 2256; + } /** * int32 oneof_2256 = 2256; * @return The oneof2256. @@ -298702,6 +337505,13 @@ public Builder clearOneof2256() { return this; } + /** + * int32 oneof_2257 = 2257; + * @return Whether the oneof2257 field is set. + */ + public boolean hasOneof2257() { + return hugeOneofCase_ == 2257; + } /** * int32 oneof_2257 = 2257; * @return The oneof2257. @@ -298736,6 +337546,13 @@ public Builder clearOneof2257() { return this; } + /** + * int32 oneof_2258 = 2258; + * @return Whether the oneof2258 field is set. + */ + public boolean hasOneof2258() { + return hugeOneofCase_ == 2258; + } /** * int32 oneof_2258 = 2258; * @return The oneof2258. @@ -298770,6 +337587,13 @@ public Builder clearOneof2258() { return this; } + /** + * int32 oneof_2259 = 2259; + * @return Whether the oneof2259 field is set. + */ + public boolean hasOneof2259() { + return hugeOneofCase_ == 2259; + } /** * int32 oneof_2259 = 2259; * @return The oneof2259. @@ -298804,6 +337628,13 @@ public Builder clearOneof2259() { return this; } + /** + * int32 oneof_2260 = 2260; + * @return Whether the oneof2260 field is set. + */ + public boolean hasOneof2260() { + return hugeOneofCase_ == 2260; + } /** * int32 oneof_2260 = 2260; * @return The oneof2260. @@ -298838,6 +337669,13 @@ public Builder clearOneof2260() { return this; } + /** + * int32 oneof_2261 = 2261; + * @return Whether the oneof2261 field is set. + */ + public boolean hasOneof2261() { + return hugeOneofCase_ == 2261; + } /** * int32 oneof_2261 = 2261; * @return The oneof2261. @@ -298872,6 +337710,13 @@ public Builder clearOneof2261() { return this; } + /** + * int32 oneof_2262 = 2262; + * @return Whether the oneof2262 field is set. + */ + public boolean hasOneof2262() { + return hugeOneofCase_ == 2262; + } /** * int32 oneof_2262 = 2262; * @return The oneof2262. @@ -298906,6 +337751,13 @@ public Builder clearOneof2262() { return this; } + /** + * int32 oneof_2263 = 2263; + * @return Whether the oneof2263 field is set. + */ + public boolean hasOneof2263() { + return hugeOneofCase_ == 2263; + } /** * int32 oneof_2263 = 2263; * @return The oneof2263. @@ -298940,6 +337792,13 @@ public Builder clearOneof2263() { return this; } + /** + * int32 oneof_2264 = 2264; + * @return Whether the oneof2264 field is set. + */ + public boolean hasOneof2264() { + return hugeOneofCase_ == 2264; + } /** * int32 oneof_2264 = 2264; * @return The oneof2264. @@ -298974,6 +337833,13 @@ public Builder clearOneof2264() { return this; } + /** + * int32 oneof_2265 = 2265; + * @return Whether the oneof2265 field is set. + */ + public boolean hasOneof2265() { + return hugeOneofCase_ == 2265; + } /** * int32 oneof_2265 = 2265; * @return The oneof2265. @@ -299008,6 +337874,13 @@ public Builder clearOneof2265() { return this; } + /** + * int32 oneof_2266 = 2266; + * @return Whether the oneof2266 field is set. + */ + public boolean hasOneof2266() { + return hugeOneofCase_ == 2266; + } /** * int32 oneof_2266 = 2266; * @return The oneof2266. @@ -299042,6 +337915,13 @@ public Builder clearOneof2266() { return this; } + /** + * int32 oneof_2267 = 2267; + * @return Whether the oneof2267 field is set. + */ + public boolean hasOneof2267() { + return hugeOneofCase_ == 2267; + } /** * int32 oneof_2267 = 2267; * @return The oneof2267. @@ -299076,6 +337956,13 @@ public Builder clearOneof2267() { return this; } + /** + * int32 oneof_2268 = 2268; + * @return Whether the oneof2268 field is set. + */ + public boolean hasOneof2268() { + return hugeOneofCase_ == 2268; + } /** * int32 oneof_2268 = 2268; * @return The oneof2268. @@ -299110,6 +337997,13 @@ public Builder clearOneof2268() { return this; } + /** + * int32 oneof_2269 = 2269; + * @return Whether the oneof2269 field is set. + */ + public boolean hasOneof2269() { + return hugeOneofCase_ == 2269; + } /** * int32 oneof_2269 = 2269; * @return The oneof2269. @@ -299144,6 +338038,13 @@ public Builder clearOneof2269() { return this; } + /** + * int32 oneof_2270 = 2270; + * @return Whether the oneof2270 field is set. + */ + public boolean hasOneof2270() { + return hugeOneofCase_ == 2270; + } /** * int32 oneof_2270 = 2270; * @return The oneof2270. @@ -299178,6 +338079,13 @@ public Builder clearOneof2270() { return this; } + /** + * int32 oneof_2271 = 2271; + * @return Whether the oneof2271 field is set. + */ + public boolean hasOneof2271() { + return hugeOneofCase_ == 2271; + } /** * int32 oneof_2271 = 2271; * @return The oneof2271. @@ -299212,6 +338120,13 @@ public Builder clearOneof2271() { return this; } + /** + * int32 oneof_2272 = 2272; + * @return Whether the oneof2272 field is set. + */ + public boolean hasOneof2272() { + return hugeOneofCase_ == 2272; + } /** * int32 oneof_2272 = 2272; * @return The oneof2272. @@ -299246,6 +338161,13 @@ public Builder clearOneof2272() { return this; } + /** + * int32 oneof_2273 = 2273; + * @return Whether the oneof2273 field is set. + */ + public boolean hasOneof2273() { + return hugeOneofCase_ == 2273; + } /** * int32 oneof_2273 = 2273; * @return The oneof2273. @@ -299280,6 +338202,13 @@ public Builder clearOneof2273() { return this; } + /** + * int32 oneof_2274 = 2274; + * @return Whether the oneof2274 field is set. + */ + public boolean hasOneof2274() { + return hugeOneofCase_ == 2274; + } /** * int32 oneof_2274 = 2274; * @return The oneof2274. @@ -299314,6 +338243,13 @@ public Builder clearOneof2274() { return this; } + /** + * int32 oneof_2275 = 2275; + * @return Whether the oneof2275 field is set. + */ + public boolean hasOneof2275() { + return hugeOneofCase_ == 2275; + } /** * int32 oneof_2275 = 2275; * @return The oneof2275. @@ -299348,6 +338284,13 @@ public Builder clearOneof2275() { return this; } + /** + * int32 oneof_2276 = 2276; + * @return Whether the oneof2276 field is set. + */ + public boolean hasOneof2276() { + return hugeOneofCase_ == 2276; + } /** * int32 oneof_2276 = 2276; * @return The oneof2276. @@ -299382,6 +338325,13 @@ public Builder clearOneof2276() { return this; } + /** + * int32 oneof_2277 = 2277; + * @return Whether the oneof2277 field is set. + */ + public boolean hasOneof2277() { + return hugeOneofCase_ == 2277; + } /** * int32 oneof_2277 = 2277; * @return The oneof2277. @@ -299416,6 +338366,13 @@ public Builder clearOneof2277() { return this; } + /** + * int32 oneof_2278 = 2278; + * @return Whether the oneof2278 field is set. + */ + public boolean hasOneof2278() { + return hugeOneofCase_ == 2278; + } /** * int32 oneof_2278 = 2278; * @return The oneof2278. @@ -299450,6 +338407,13 @@ public Builder clearOneof2278() { return this; } + /** + * int32 oneof_2279 = 2279; + * @return Whether the oneof2279 field is set. + */ + public boolean hasOneof2279() { + return hugeOneofCase_ == 2279; + } /** * int32 oneof_2279 = 2279; * @return The oneof2279. @@ -299484,6 +338448,13 @@ public Builder clearOneof2279() { return this; } + /** + * int32 oneof_2280 = 2280; + * @return Whether the oneof2280 field is set. + */ + public boolean hasOneof2280() { + return hugeOneofCase_ == 2280; + } /** * int32 oneof_2280 = 2280; * @return The oneof2280. @@ -299518,6 +338489,13 @@ public Builder clearOneof2280() { return this; } + /** + * int32 oneof_2281 = 2281; + * @return Whether the oneof2281 field is set. + */ + public boolean hasOneof2281() { + return hugeOneofCase_ == 2281; + } /** * int32 oneof_2281 = 2281; * @return The oneof2281. @@ -299552,6 +338530,13 @@ public Builder clearOneof2281() { return this; } + /** + * int32 oneof_2282 = 2282; + * @return Whether the oneof2282 field is set. + */ + public boolean hasOneof2282() { + return hugeOneofCase_ == 2282; + } /** * int32 oneof_2282 = 2282; * @return The oneof2282. @@ -299586,6 +338571,13 @@ public Builder clearOneof2282() { return this; } + /** + * int32 oneof_2283 = 2283; + * @return Whether the oneof2283 field is set. + */ + public boolean hasOneof2283() { + return hugeOneofCase_ == 2283; + } /** * int32 oneof_2283 = 2283; * @return The oneof2283. @@ -299620,6 +338612,13 @@ public Builder clearOneof2283() { return this; } + /** + * int32 oneof_2284 = 2284; + * @return Whether the oneof2284 field is set. + */ + public boolean hasOneof2284() { + return hugeOneofCase_ == 2284; + } /** * int32 oneof_2284 = 2284; * @return The oneof2284. @@ -299654,6 +338653,13 @@ public Builder clearOneof2284() { return this; } + /** + * int32 oneof_2285 = 2285; + * @return Whether the oneof2285 field is set. + */ + public boolean hasOneof2285() { + return hugeOneofCase_ == 2285; + } /** * int32 oneof_2285 = 2285; * @return The oneof2285. @@ -299688,6 +338694,13 @@ public Builder clearOneof2285() { return this; } + /** + * int32 oneof_2286 = 2286; + * @return Whether the oneof2286 field is set. + */ + public boolean hasOneof2286() { + return hugeOneofCase_ == 2286; + } /** * int32 oneof_2286 = 2286; * @return The oneof2286. @@ -299722,6 +338735,13 @@ public Builder clearOneof2286() { return this; } + /** + * int32 oneof_2287 = 2287; + * @return Whether the oneof2287 field is set. + */ + public boolean hasOneof2287() { + return hugeOneofCase_ == 2287; + } /** * int32 oneof_2287 = 2287; * @return The oneof2287. @@ -299756,6 +338776,13 @@ public Builder clearOneof2287() { return this; } + /** + * int32 oneof_2288 = 2288; + * @return Whether the oneof2288 field is set. + */ + public boolean hasOneof2288() { + return hugeOneofCase_ == 2288; + } /** * int32 oneof_2288 = 2288; * @return The oneof2288. @@ -299790,6 +338817,13 @@ public Builder clearOneof2288() { return this; } + /** + * int32 oneof_2289 = 2289; + * @return Whether the oneof2289 field is set. + */ + public boolean hasOneof2289() { + return hugeOneofCase_ == 2289; + } /** * int32 oneof_2289 = 2289; * @return The oneof2289. @@ -299824,6 +338858,13 @@ public Builder clearOneof2289() { return this; } + /** + * int32 oneof_2290 = 2290; + * @return Whether the oneof2290 field is set. + */ + public boolean hasOneof2290() { + return hugeOneofCase_ == 2290; + } /** * int32 oneof_2290 = 2290; * @return The oneof2290. @@ -299858,6 +338899,13 @@ public Builder clearOneof2290() { return this; } + /** + * int32 oneof_2291 = 2291; + * @return Whether the oneof2291 field is set. + */ + public boolean hasOneof2291() { + return hugeOneofCase_ == 2291; + } /** * int32 oneof_2291 = 2291; * @return The oneof2291. @@ -299892,6 +338940,13 @@ public Builder clearOneof2291() { return this; } + /** + * int32 oneof_2292 = 2292; + * @return Whether the oneof2292 field is set. + */ + public boolean hasOneof2292() { + return hugeOneofCase_ == 2292; + } /** * int32 oneof_2292 = 2292; * @return The oneof2292. @@ -299926,6 +338981,13 @@ public Builder clearOneof2292() { return this; } + /** + * int32 oneof_2293 = 2293; + * @return Whether the oneof2293 field is set. + */ + public boolean hasOneof2293() { + return hugeOneofCase_ == 2293; + } /** * int32 oneof_2293 = 2293; * @return The oneof2293. @@ -299960,6 +339022,13 @@ public Builder clearOneof2293() { return this; } + /** + * int32 oneof_2294 = 2294; + * @return Whether the oneof2294 field is set. + */ + public boolean hasOneof2294() { + return hugeOneofCase_ == 2294; + } /** * int32 oneof_2294 = 2294; * @return The oneof2294. @@ -299994,6 +339063,13 @@ public Builder clearOneof2294() { return this; } + /** + * int32 oneof_2295 = 2295; + * @return Whether the oneof2295 field is set. + */ + public boolean hasOneof2295() { + return hugeOneofCase_ == 2295; + } /** * int32 oneof_2295 = 2295; * @return The oneof2295. @@ -300028,6 +339104,13 @@ public Builder clearOneof2295() { return this; } + /** + * int32 oneof_2296 = 2296; + * @return Whether the oneof2296 field is set. + */ + public boolean hasOneof2296() { + return hugeOneofCase_ == 2296; + } /** * int32 oneof_2296 = 2296; * @return The oneof2296. @@ -300062,6 +339145,13 @@ public Builder clearOneof2296() { return this; } + /** + * int32 oneof_2297 = 2297; + * @return Whether the oneof2297 field is set. + */ + public boolean hasOneof2297() { + return hugeOneofCase_ == 2297; + } /** * int32 oneof_2297 = 2297; * @return The oneof2297. @@ -300096,6 +339186,13 @@ public Builder clearOneof2297() { return this; } + /** + * int32 oneof_2298 = 2298; + * @return Whether the oneof2298 field is set. + */ + public boolean hasOneof2298() { + return hugeOneofCase_ == 2298; + } /** * int32 oneof_2298 = 2298; * @return The oneof2298. @@ -300130,6 +339227,13 @@ public Builder clearOneof2298() { return this; } + /** + * int32 oneof_2299 = 2299; + * @return Whether the oneof2299 field is set. + */ + public boolean hasOneof2299() { + return hugeOneofCase_ == 2299; + } /** * int32 oneof_2299 = 2299; * @return The oneof2299. @@ -300164,6 +339268,13 @@ public Builder clearOneof2299() { return this; } + /** + * int32 oneof_2300 = 2300; + * @return Whether the oneof2300 field is set. + */ + public boolean hasOneof2300() { + return hugeOneofCase_ == 2300; + } /** * int32 oneof_2300 = 2300; * @return The oneof2300. @@ -300198,6 +339309,13 @@ public Builder clearOneof2300() { return this; } + /** + * int32 oneof_2301 = 2301; + * @return Whether the oneof2301 field is set. + */ + public boolean hasOneof2301() { + return hugeOneofCase_ == 2301; + } /** * int32 oneof_2301 = 2301; * @return The oneof2301. @@ -300232,6 +339350,13 @@ public Builder clearOneof2301() { return this; } + /** + * int32 oneof_2302 = 2302; + * @return Whether the oneof2302 field is set. + */ + public boolean hasOneof2302() { + return hugeOneofCase_ == 2302; + } /** * int32 oneof_2302 = 2302; * @return The oneof2302. @@ -300266,6 +339391,13 @@ public Builder clearOneof2302() { return this; } + /** + * int32 oneof_2303 = 2303; + * @return Whether the oneof2303 field is set. + */ + public boolean hasOneof2303() { + return hugeOneofCase_ == 2303; + } /** * int32 oneof_2303 = 2303; * @return The oneof2303. @@ -300300,6 +339432,13 @@ public Builder clearOneof2303() { return this; } + /** + * int32 oneof_2304 = 2304; + * @return Whether the oneof2304 field is set. + */ + public boolean hasOneof2304() { + return hugeOneofCase_ == 2304; + } /** * int32 oneof_2304 = 2304; * @return The oneof2304. @@ -300334,6 +339473,13 @@ public Builder clearOneof2304() { return this; } + /** + * int32 oneof_2305 = 2305; + * @return Whether the oneof2305 field is set. + */ + public boolean hasOneof2305() { + return hugeOneofCase_ == 2305; + } /** * int32 oneof_2305 = 2305; * @return The oneof2305. @@ -300368,6 +339514,13 @@ public Builder clearOneof2305() { return this; } + /** + * int32 oneof_2306 = 2306; + * @return Whether the oneof2306 field is set. + */ + public boolean hasOneof2306() { + return hugeOneofCase_ == 2306; + } /** * int32 oneof_2306 = 2306; * @return The oneof2306. @@ -300402,6 +339555,13 @@ public Builder clearOneof2306() { return this; } + /** + * int32 oneof_2307 = 2307; + * @return Whether the oneof2307 field is set. + */ + public boolean hasOneof2307() { + return hugeOneofCase_ == 2307; + } /** * int32 oneof_2307 = 2307; * @return The oneof2307. @@ -300436,6 +339596,13 @@ public Builder clearOneof2307() { return this; } + /** + * int32 oneof_2308 = 2308; + * @return Whether the oneof2308 field is set. + */ + public boolean hasOneof2308() { + return hugeOneofCase_ == 2308; + } /** * int32 oneof_2308 = 2308; * @return The oneof2308. @@ -300470,6 +339637,13 @@ public Builder clearOneof2308() { return this; } + /** + * int32 oneof_2309 = 2309; + * @return Whether the oneof2309 field is set. + */ + public boolean hasOneof2309() { + return hugeOneofCase_ == 2309; + } /** * int32 oneof_2309 = 2309; * @return The oneof2309. @@ -300504,6 +339678,13 @@ public Builder clearOneof2309() { return this; } + /** + * int32 oneof_2310 = 2310; + * @return Whether the oneof2310 field is set. + */ + public boolean hasOneof2310() { + return hugeOneofCase_ == 2310; + } /** * int32 oneof_2310 = 2310; * @return The oneof2310. @@ -300538,6 +339719,13 @@ public Builder clearOneof2310() { return this; } + /** + * int32 oneof_2311 = 2311; + * @return Whether the oneof2311 field is set. + */ + public boolean hasOneof2311() { + return hugeOneofCase_ == 2311; + } /** * int32 oneof_2311 = 2311; * @return The oneof2311. @@ -300572,6 +339760,13 @@ public Builder clearOneof2311() { return this; } + /** + * int32 oneof_2312 = 2312; + * @return Whether the oneof2312 field is set. + */ + public boolean hasOneof2312() { + return hugeOneofCase_ == 2312; + } /** * int32 oneof_2312 = 2312; * @return The oneof2312. @@ -300606,6 +339801,13 @@ public Builder clearOneof2312() { return this; } + /** + * int32 oneof_2313 = 2313; + * @return Whether the oneof2313 field is set. + */ + public boolean hasOneof2313() { + return hugeOneofCase_ == 2313; + } /** * int32 oneof_2313 = 2313; * @return The oneof2313. @@ -300640,6 +339842,13 @@ public Builder clearOneof2313() { return this; } + /** + * int32 oneof_2314 = 2314; + * @return Whether the oneof2314 field is set. + */ + public boolean hasOneof2314() { + return hugeOneofCase_ == 2314; + } /** * int32 oneof_2314 = 2314; * @return The oneof2314. @@ -300674,6 +339883,13 @@ public Builder clearOneof2314() { return this; } + /** + * int32 oneof_2315 = 2315; + * @return Whether the oneof2315 field is set. + */ + public boolean hasOneof2315() { + return hugeOneofCase_ == 2315; + } /** * int32 oneof_2315 = 2315; * @return The oneof2315. @@ -300708,6 +339924,13 @@ public Builder clearOneof2315() { return this; } + /** + * int32 oneof_2316 = 2316; + * @return Whether the oneof2316 field is set. + */ + public boolean hasOneof2316() { + return hugeOneofCase_ == 2316; + } /** * int32 oneof_2316 = 2316; * @return The oneof2316. @@ -300742,6 +339965,13 @@ public Builder clearOneof2316() { return this; } + /** + * int32 oneof_2317 = 2317; + * @return Whether the oneof2317 field is set. + */ + public boolean hasOneof2317() { + return hugeOneofCase_ == 2317; + } /** * int32 oneof_2317 = 2317; * @return The oneof2317. @@ -300776,6 +340006,13 @@ public Builder clearOneof2317() { return this; } + /** + * int32 oneof_2318 = 2318; + * @return Whether the oneof2318 field is set. + */ + public boolean hasOneof2318() { + return hugeOneofCase_ == 2318; + } /** * int32 oneof_2318 = 2318; * @return The oneof2318. @@ -300810,6 +340047,13 @@ public Builder clearOneof2318() { return this; } + /** + * int32 oneof_2319 = 2319; + * @return Whether the oneof2319 field is set. + */ + public boolean hasOneof2319() { + return hugeOneofCase_ == 2319; + } /** * int32 oneof_2319 = 2319; * @return The oneof2319. @@ -300844,6 +340088,13 @@ public Builder clearOneof2319() { return this; } + /** + * int32 oneof_2320 = 2320; + * @return Whether the oneof2320 field is set. + */ + public boolean hasOneof2320() { + return hugeOneofCase_ == 2320; + } /** * int32 oneof_2320 = 2320; * @return The oneof2320. @@ -300878,6 +340129,13 @@ public Builder clearOneof2320() { return this; } + /** + * int32 oneof_2321 = 2321; + * @return Whether the oneof2321 field is set. + */ + public boolean hasOneof2321() { + return hugeOneofCase_ == 2321; + } /** * int32 oneof_2321 = 2321; * @return The oneof2321. @@ -300912,6 +340170,13 @@ public Builder clearOneof2321() { return this; } + /** + * int32 oneof_2322 = 2322; + * @return Whether the oneof2322 field is set. + */ + public boolean hasOneof2322() { + return hugeOneofCase_ == 2322; + } /** * int32 oneof_2322 = 2322; * @return The oneof2322. @@ -300946,6 +340211,13 @@ public Builder clearOneof2322() { return this; } + /** + * int32 oneof_2323 = 2323; + * @return Whether the oneof2323 field is set. + */ + public boolean hasOneof2323() { + return hugeOneofCase_ == 2323; + } /** * int32 oneof_2323 = 2323; * @return The oneof2323. @@ -300980,6 +340252,13 @@ public Builder clearOneof2323() { return this; } + /** + * int32 oneof_2324 = 2324; + * @return Whether the oneof2324 field is set. + */ + public boolean hasOneof2324() { + return hugeOneofCase_ == 2324; + } /** * int32 oneof_2324 = 2324; * @return The oneof2324. @@ -301014,6 +340293,13 @@ public Builder clearOneof2324() { return this; } + /** + * int32 oneof_2325 = 2325; + * @return Whether the oneof2325 field is set. + */ + public boolean hasOneof2325() { + return hugeOneofCase_ == 2325; + } /** * int32 oneof_2325 = 2325; * @return The oneof2325. @@ -301048,6 +340334,13 @@ public Builder clearOneof2325() { return this; } + /** + * int32 oneof_2326 = 2326; + * @return Whether the oneof2326 field is set. + */ + public boolean hasOneof2326() { + return hugeOneofCase_ == 2326; + } /** * int32 oneof_2326 = 2326; * @return The oneof2326. @@ -301082,6 +340375,13 @@ public Builder clearOneof2326() { return this; } + /** + * int32 oneof_2327 = 2327; + * @return Whether the oneof2327 field is set. + */ + public boolean hasOneof2327() { + return hugeOneofCase_ == 2327; + } /** * int32 oneof_2327 = 2327; * @return The oneof2327. @@ -301116,6 +340416,13 @@ public Builder clearOneof2327() { return this; } + /** + * int32 oneof_2328 = 2328; + * @return Whether the oneof2328 field is set. + */ + public boolean hasOneof2328() { + return hugeOneofCase_ == 2328; + } /** * int32 oneof_2328 = 2328; * @return The oneof2328. @@ -301150,6 +340457,13 @@ public Builder clearOneof2328() { return this; } + /** + * int32 oneof_2329 = 2329; + * @return Whether the oneof2329 field is set. + */ + public boolean hasOneof2329() { + return hugeOneofCase_ == 2329; + } /** * int32 oneof_2329 = 2329; * @return The oneof2329. @@ -301184,6 +340498,13 @@ public Builder clearOneof2329() { return this; } + /** + * int32 oneof_2330 = 2330; + * @return Whether the oneof2330 field is set. + */ + public boolean hasOneof2330() { + return hugeOneofCase_ == 2330; + } /** * int32 oneof_2330 = 2330; * @return The oneof2330. @@ -301218,6 +340539,13 @@ public Builder clearOneof2330() { return this; } + /** + * int32 oneof_2331 = 2331; + * @return Whether the oneof2331 field is set. + */ + public boolean hasOneof2331() { + return hugeOneofCase_ == 2331; + } /** * int32 oneof_2331 = 2331; * @return The oneof2331. @@ -301252,6 +340580,13 @@ public Builder clearOneof2331() { return this; } + /** + * int32 oneof_2332 = 2332; + * @return Whether the oneof2332 field is set. + */ + public boolean hasOneof2332() { + return hugeOneofCase_ == 2332; + } /** * int32 oneof_2332 = 2332; * @return The oneof2332. @@ -301286,6 +340621,13 @@ public Builder clearOneof2332() { return this; } + /** + * int32 oneof_2333 = 2333; + * @return Whether the oneof2333 field is set. + */ + public boolean hasOneof2333() { + return hugeOneofCase_ == 2333; + } /** * int32 oneof_2333 = 2333; * @return The oneof2333. @@ -301320,6 +340662,13 @@ public Builder clearOneof2333() { return this; } + /** + * int32 oneof_2334 = 2334; + * @return Whether the oneof2334 field is set. + */ + public boolean hasOneof2334() { + return hugeOneofCase_ == 2334; + } /** * int32 oneof_2334 = 2334; * @return The oneof2334. @@ -301354,6 +340703,13 @@ public Builder clearOneof2334() { return this; } + /** + * int32 oneof_2335 = 2335; + * @return Whether the oneof2335 field is set. + */ + public boolean hasOneof2335() { + return hugeOneofCase_ == 2335; + } /** * int32 oneof_2335 = 2335; * @return The oneof2335. @@ -301388,6 +340744,13 @@ public Builder clearOneof2335() { return this; } + /** + * int32 oneof_2336 = 2336; + * @return Whether the oneof2336 field is set. + */ + public boolean hasOneof2336() { + return hugeOneofCase_ == 2336; + } /** * int32 oneof_2336 = 2336; * @return The oneof2336. @@ -301422,6 +340785,13 @@ public Builder clearOneof2336() { return this; } + /** + * int32 oneof_2337 = 2337; + * @return Whether the oneof2337 field is set. + */ + public boolean hasOneof2337() { + return hugeOneofCase_ == 2337; + } /** * int32 oneof_2337 = 2337; * @return The oneof2337. @@ -301456,6 +340826,13 @@ public Builder clearOneof2337() { return this; } + /** + * int32 oneof_2338 = 2338; + * @return Whether the oneof2338 field is set. + */ + public boolean hasOneof2338() { + return hugeOneofCase_ == 2338; + } /** * int32 oneof_2338 = 2338; * @return The oneof2338. @@ -301490,6 +340867,13 @@ public Builder clearOneof2338() { return this; } + /** + * int32 oneof_2339 = 2339; + * @return Whether the oneof2339 field is set. + */ + public boolean hasOneof2339() { + return hugeOneofCase_ == 2339; + } /** * int32 oneof_2339 = 2339; * @return The oneof2339. @@ -301524,6 +340908,13 @@ public Builder clearOneof2339() { return this; } + /** + * int32 oneof_2340 = 2340; + * @return Whether the oneof2340 field is set. + */ + public boolean hasOneof2340() { + return hugeOneofCase_ == 2340; + } /** * int32 oneof_2340 = 2340; * @return The oneof2340. @@ -301558,6 +340949,13 @@ public Builder clearOneof2340() { return this; } + /** + * int32 oneof_2341 = 2341; + * @return Whether the oneof2341 field is set. + */ + public boolean hasOneof2341() { + return hugeOneofCase_ == 2341; + } /** * int32 oneof_2341 = 2341; * @return The oneof2341. @@ -301592,6 +340990,13 @@ public Builder clearOneof2341() { return this; } + /** + * int32 oneof_2342 = 2342; + * @return Whether the oneof2342 field is set. + */ + public boolean hasOneof2342() { + return hugeOneofCase_ == 2342; + } /** * int32 oneof_2342 = 2342; * @return The oneof2342. @@ -301626,6 +341031,13 @@ public Builder clearOneof2342() { return this; } + /** + * int32 oneof_2343 = 2343; + * @return Whether the oneof2343 field is set. + */ + public boolean hasOneof2343() { + return hugeOneofCase_ == 2343; + } /** * int32 oneof_2343 = 2343; * @return The oneof2343. @@ -301660,6 +341072,13 @@ public Builder clearOneof2343() { return this; } + /** + * int32 oneof_2344 = 2344; + * @return Whether the oneof2344 field is set. + */ + public boolean hasOneof2344() { + return hugeOneofCase_ == 2344; + } /** * int32 oneof_2344 = 2344; * @return The oneof2344. @@ -301694,6 +341113,13 @@ public Builder clearOneof2344() { return this; } + /** + * int32 oneof_2345 = 2345; + * @return Whether the oneof2345 field is set. + */ + public boolean hasOneof2345() { + return hugeOneofCase_ == 2345; + } /** * int32 oneof_2345 = 2345; * @return The oneof2345. @@ -301728,6 +341154,13 @@ public Builder clearOneof2345() { return this; } + /** + * int32 oneof_2346 = 2346; + * @return Whether the oneof2346 field is set. + */ + public boolean hasOneof2346() { + return hugeOneofCase_ == 2346; + } /** * int32 oneof_2346 = 2346; * @return The oneof2346. @@ -301762,6 +341195,13 @@ public Builder clearOneof2346() { return this; } + /** + * int32 oneof_2347 = 2347; + * @return Whether the oneof2347 field is set. + */ + public boolean hasOneof2347() { + return hugeOneofCase_ == 2347; + } /** * int32 oneof_2347 = 2347; * @return The oneof2347. @@ -301796,6 +341236,13 @@ public Builder clearOneof2347() { return this; } + /** + * int32 oneof_2348 = 2348; + * @return Whether the oneof2348 field is set. + */ + public boolean hasOneof2348() { + return hugeOneofCase_ == 2348; + } /** * int32 oneof_2348 = 2348; * @return The oneof2348. @@ -301830,6 +341277,13 @@ public Builder clearOneof2348() { return this; } + /** + * int32 oneof_2349 = 2349; + * @return Whether the oneof2349 field is set. + */ + public boolean hasOneof2349() { + return hugeOneofCase_ == 2349; + } /** * int32 oneof_2349 = 2349; * @return The oneof2349. @@ -301864,6 +341318,13 @@ public Builder clearOneof2349() { return this; } + /** + * int32 oneof_2350 = 2350; + * @return Whether the oneof2350 field is set. + */ + public boolean hasOneof2350() { + return hugeOneofCase_ == 2350; + } /** * int32 oneof_2350 = 2350; * @return The oneof2350. @@ -301898,6 +341359,13 @@ public Builder clearOneof2350() { return this; } + /** + * int32 oneof_2351 = 2351; + * @return Whether the oneof2351 field is set. + */ + public boolean hasOneof2351() { + return hugeOneofCase_ == 2351; + } /** * int32 oneof_2351 = 2351; * @return The oneof2351. @@ -301932,6 +341400,13 @@ public Builder clearOneof2351() { return this; } + /** + * int32 oneof_2352 = 2352; + * @return Whether the oneof2352 field is set. + */ + public boolean hasOneof2352() { + return hugeOneofCase_ == 2352; + } /** * int32 oneof_2352 = 2352; * @return The oneof2352. @@ -301966,6 +341441,13 @@ public Builder clearOneof2352() { return this; } + /** + * int32 oneof_2353 = 2353; + * @return Whether the oneof2353 field is set. + */ + public boolean hasOneof2353() { + return hugeOneofCase_ == 2353; + } /** * int32 oneof_2353 = 2353; * @return The oneof2353. @@ -302000,6 +341482,13 @@ public Builder clearOneof2353() { return this; } + /** + * int32 oneof_2354 = 2354; + * @return Whether the oneof2354 field is set. + */ + public boolean hasOneof2354() { + return hugeOneofCase_ == 2354; + } /** * int32 oneof_2354 = 2354; * @return The oneof2354. @@ -302034,6 +341523,13 @@ public Builder clearOneof2354() { return this; } + /** + * int32 oneof_2355 = 2355; + * @return Whether the oneof2355 field is set. + */ + public boolean hasOneof2355() { + return hugeOneofCase_ == 2355; + } /** * int32 oneof_2355 = 2355; * @return The oneof2355. @@ -302068,6 +341564,13 @@ public Builder clearOneof2355() { return this; } + /** + * int32 oneof_2356 = 2356; + * @return Whether the oneof2356 field is set. + */ + public boolean hasOneof2356() { + return hugeOneofCase_ == 2356; + } /** * int32 oneof_2356 = 2356; * @return The oneof2356. @@ -302102,6 +341605,13 @@ public Builder clearOneof2356() { return this; } + /** + * int32 oneof_2357 = 2357; + * @return Whether the oneof2357 field is set. + */ + public boolean hasOneof2357() { + return hugeOneofCase_ == 2357; + } /** * int32 oneof_2357 = 2357; * @return The oneof2357. @@ -302136,6 +341646,13 @@ public Builder clearOneof2357() { return this; } + /** + * int32 oneof_2358 = 2358; + * @return Whether the oneof2358 field is set. + */ + public boolean hasOneof2358() { + return hugeOneofCase_ == 2358; + } /** * int32 oneof_2358 = 2358; * @return The oneof2358. @@ -302170,6 +341687,13 @@ public Builder clearOneof2358() { return this; } + /** + * int32 oneof_2359 = 2359; + * @return Whether the oneof2359 field is set. + */ + public boolean hasOneof2359() { + return hugeOneofCase_ == 2359; + } /** * int32 oneof_2359 = 2359; * @return The oneof2359. @@ -302204,6 +341728,13 @@ public Builder clearOneof2359() { return this; } + /** + * int32 oneof_2360 = 2360; + * @return Whether the oneof2360 field is set. + */ + public boolean hasOneof2360() { + return hugeOneofCase_ == 2360; + } /** * int32 oneof_2360 = 2360; * @return The oneof2360. @@ -302238,6 +341769,13 @@ public Builder clearOneof2360() { return this; } + /** + * int32 oneof_2361 = 2361; + * @return Whether the oneof2361 field is set. + */ + public boolean hasOneof2361() { + return hugeOneofCase_ == 2361; + } /** * int32 oneof_2361 = 2361; * @return The oneof2361. @@ -302272,6 +341810,13 @@ public Builder clearOneof2361() { return this; } + /** + * int32 oneof_2362 = 2362; + * @return Whether the oneof2362 field is set. + */ + public boolean hasOneof2362() { + return hugeOneofCase_ == 2362; + } /** * int32 oneof_2362 = 2362; * @return The oneof2362. @@ -302306,6 +341851,13 @@ public Builder clearOneof2362() { return this; } + /** + * int32 oneof_2363 = 2363; + * @return Whether the oneof2363 field is set. + */ + public boolean hasOneof2363() { + return hugeOneofCase_ == 2363; + } /** * int32 oneof_2363 = 2363; * @return The oneof2363. @@ -302340,6 +341892,13 @@ public Builder clearOneof2363() { return this; } + /** + * int32 oneof_2364 = 2364; + * @return Whether the oneof2364 field is set. + */ + public boolean hasOneof2364() { + return hugeOneofCase_ == 2364; + } /** * int32 oneof_2364 = 2364; * @return The oneof2364. @@ -302374,6 +341933,13 @@ public Builder clearOneof2364() { return this; } + /** + * int32 oneof_2365 = 2365; + * @return Whether the oneof2365 field is set. + */ + public boolean hasOneof2365() { + return hugeOneofCase_ == 2365; + } /** * int32 oneof_2365 = 2365; * @return The oneof2365. @@ -302408,6 +341974,13 @@ public Builder clearOneof2365() { return this; } + /** + * int32 oneof_2366 = 2366; + * @return Whether the oneof2366 field is set. + */ + public boolean hasOneof2366() { + return hugeOneofCase_ == 2366; + } /** * int32 oneof_2366 = 2366; * @return The oneof2366. @@ -302442,6 +342015,13 @@ public Builder clearOneof2366() { return this; } + /** + * int32 oneof_2367 = 2367; + * @return Whether the oneof2367 field is set. + */ + public boolean hasOneof2367() { + return hugeOneofCase_ == 2367; + } /** * int32 oneof_2367 = 2367; * @return The oneof2367. @@ -302476,6 +342056,13 @@ public Builder clearOneof2367() { return this; } + /** + * int32 oneof_2368 = 2368; + * @return Whether the oneof2368 field is set. + */ + public boolean hasOneof2368() { + return hugeOneofCase_ == 2368; + } /** * int32 oneof_2368 = 2368; * @return The oneof2368. @@ -302510,6 +342097,13 @@ public Builder clearOneof2368() { return this; } + /** + * int32 oneof_2369 = 2369; + * @return Whether the oneof2369 field is set. + */ + public boolean hasOneof2369() { + return hugeOneofCase_ == 2369; + } /** * int32 oneof_2369 = 2369; * @return The oneof2369. @@ -302544,6 +342138,13 @@ public Builder clearOneof2369() { return this; } + /** + * int32 oneof_2370 = 2370; + * @return Whether the oneof2370 field is set. + */ + public boolean hasOneof2370() { + return hugeOneofCase_ == 2370; + } /** * int32 oneof_2370 = 2370; * @return The oneof2370. @@ -302578,6 +342179,13 @@ public Builder clearOneof2370() { return this; } + /** + * int32 oneof_2371 = 2371; + * @return Whether the oneof2371 field is set. + */ + public boolean hasOneof2371() { + return hugeOneofCase_ == 2371; + } /** * int32 oneof_2371 = 2371; * @return The oneof2371. @@ -302612,6 +342220,13 @@ public Builder clearOneof2371() { return this; } + /** + * int32 oneof_2372 = 2372; + * @return Whether the oneof2372 field is set. + */ + public boolean hasOneof2372() { + return hugeOneofCase_ == 2372; + } /** * int32 oneof_2372 = 2372; * @return The oneof2372. @@ -302646,6 +342261,13 @@ public Builder clearOneof2372() { return this; } + /** + * int32 oneof_2373 = 2373; + * @return Whether the oneof2373 field is set. + */ + public boolean hasOneof2373() { + return hugeOneofCase_ == 2373; + } /** * int32 oneof_2373 = 2373; * @return The oneof2373. @@ -302680,6 +342302,13 @@ public Builder clearOneof2373() { return this; } + /** + * int32 oneof_2374 = 2374; + * @return Whether the oneof2374 field is set. + */ + public boolean hasOneof2374() { + return hugeOneofCase_ == 2374; + } /** * int32 oneof_2374 = 2374; * @return The oneof2374. @@ -302714,6 +342343,13 @@ public Builder clearOneof2374() { return this; } + /** + * int32 oneof_2375 = 2375; + * @return Whether the oneof2375 field is set. + */ + public boolean hasOneof2375() { + return hugeOneofCase_ == 2375; + } /** * int32 oneof_2375 = 2375; * @return The oneof2375. @@ -302748,6 +342384,13 @@ public Builder clearOneof2375() { return this; } + /** + * int32 oneof_2376 = 2376; + * @return Whether the oneof2376 field is set. + */ + public boolean hasOneof2376() { + return hugeOneofCase_ == 2376; + } /** * int32 oneof_2376 = 2376; * @return The oneof2376. @@ -302782,6 +342425,13 @@ public Builder clearOneof2376() { return this; } + /** + * int32 oneof_2377 = 2377; + * @return Whether the oneof2377 field is set. + */ + public boolean hasOneof2377() { + return hugeOneofCase_ == 2377; + } /** * int32 oneof_2377 = 2377; * @return The oneof2377. @@ -302816,6 +342466,13 @@ public Builder clearOneof2377() { return this; } + /** + * int32 oneof_2378 = 2378; + * @return Whether the oneof2378 field is set. + */ + public boolean hasOneof2378() { + return hugeOneofCase_ == 2378; + } /** * int32 oneof_2378 = 2378; * @return The oneof2378. @@ -302850,6 +342507,13 @@ public Builder clearOneof2378() { return this; } + /** + * int32 oneof_2379 = 2379; + * @return Whether the oneof2379 field is set. + */ + public boolean hasOneof2379() { + return hugeOneofCase_ == 2379; + } /** * int32 oneof_2379 = 2379; * @return The oneof2379. @@ -302884,6 +342548,13 @@ public Builder clearOneof2379() { return this; } + /** + * int32 oneof_2380 = 2380; + * @return Whether the oneof2380 field is set. + */ + public boolean hasOneof2380() { + return hugeOneofCase_ == 2380; + } /** * int32 oneof_2380 = 2380; * @return The oneof2380. @@ -302918,6 +342589,13 @@ public Builder clearOneof2380() { return this; } + /** + * int32 oneof_2381 = 2381; + * @return Whether the oneof2381 field is set. + */ + public boolean hasOneof2381() { + return hugeOneofCase_ == 2381; + } /** * int32 oneof_2381 = 2381; * @return The oneof2381. @@ -302952,6 +342630,13 @@ public Builder clearOneof2381() { return this; } + /** + * int32 oneof_2382 = 2382; + * @return Whether the oneof2382 field is set. + */ + public boolean hasOneof2382() { + return hugeOneofCase_ == 2382; + } /** * int32 oneof_2382 = 2382; * @return The oneof2382. @@ -302986,6 +342671,13 @@ public Builder clearOneof2382() { return this; } + /** + * int32 oneof_2383 = 2383; + * @return Whether the oneof2383 field is set. + */ + public boolean hasOneof2383() { + return hugeOneofCase_ == 2383; + } /** * int32 oneof_2383 = 2383; * @return The oneof2383. @@ -303020,6 +342712,13 @@ public Builder clearOneof2383() { return this; } + /** + * int32 oneof_2384 = 2384; + * @return Whether the oneof2384 field is set. + */ + public boolean hasOneof2384() { + return hugeOneofCase_ == 2384; + } /** * int32 oneof_2384 = 2384; * @return The oneof2384. @@ -303054,6 +342753,13 @@ public Builder clearOneof2384() { return this; } + /** + * int32 oneof_2385 = 2385; + * @return Whether the oneof2385 field is set. + */ + public boolean hasOneof2385() { + return hugeOneofCase_ == 2385; + } /** * int32 oneof_2385 = 2385; * @return The oneof2385. @@ -303088,6 +342794,13 @@ public Builder clearOneof2385() { return this; } + /** + * int32 oneof_2386 = 2386; + * @return Whether the oneof2386 field is set. + */ + public boolean hasOneof2386() { + return hugeOneofCase_ == 2386; + } /** * int32 oneof_2386 = 2386; * @return The oneof2386. @@ -303122,6 +342835,13 @@ public Builder clearOneof2386() { return this; } + /** + * int32 oneof_2387 = 2387; + * @return Whether the oneof2387 field is set. + */ + public boolean hasOneof2387() { + return hugeOneofCase_ == 2387; + } /** * int32 oneof_2387 = 2387; * @return The oneof2387. @@ -303156,6 +342876,13 @@ public Builder clearOneof2387() { return this; } + /** + * int32 oneof_2388 = 2388; + * @return Whether the oneof2388 field is set. + */ + public boolean hasOneof2388() { + return hugeOneofCase_ == 2388; + } /** * int32 oneof_2388 = 2388; * @return The oneof2388. @@ -303190,6 +342917,13 @@ public Builder clearOneof2388() { return this; } + /** + * int32 oneof_2389 = 2389; + * @return Whether the oneof2389 field is set. + */ + public boolean hasOneof2389() { + return hugeOneofCase_ == 2389; + } /** * int32 oneof_2389 = 2389; * @return The oneof2389. @@ -303224,6 +342958,13 @@ public Builder clearOneof2389() { return this; } + /** + * int32 oneof_2390 = 2390; + * @return Whether the oneof2390 field is set. + */ + public boolean hasOneof2390() { + return hugeOneofCase_ == 2390; + } /** * int32 oneof_2390 = 2390; * @return The oneof2390. @@ -303258,6 +342999,13 @@ public Builder clearOneof2390() { return this; } + /** + * int32 oneof_2391 = 2391; + * @return Whether the oneof2391 field is set. + */ + public boolean hasOneof2391() { + return hugeOneofCase_ == 2391; + } /** * int32 oneof_2391 = 2391; * @return The oneof2391. @@ -303292,6 +343040,13 @@ public Builder clearOneof2391() { return this; } + /** + * int32 oneof_2392 = 2392; + * @return Whether the oneof2392 field is set. + */ + public boolean hasOneof2392() { + return hugeOneofCase_ == 2392; + } /** * int32 oneof_2392 = 2392; * @return The oneof2392. @@ -303326,6 +343081,13 @@ public Builder clearOneof2392() { return this; } + /** + * int32 oneof_2393 = 2393; + * @return Whether the oneof2393 field is set. + */ + public boolean hasOneof2393() { + return hugeOneofCase_ == 2393; + } /** * int32 oneof_2393 = 2393; * @return The oneof2393. @@ -303360,6 +343122,13 @@ public Builder clearOneof2393() { return this; } + /** + * int32 oneof_2394 = 2394; + * @return Whether the oneof2394 field is set. + */ + public boolean hasOneof2394() { + return hugeOneofCase_ == 2394; + } /** * int32 oneof_2394 = 2394; * @return The oneof2394. @@ -303394,6 +343163,13 @@ public Builder clearOneof2394() { return this; } + /** + * int32 oneof_2395 = 2395; + * @return Whether the oneof2395 field is set. + */ + public boolean hasOneof2395() { + return hugeOneofCase_ == 2395; + } /** * int32 oneof_2395 = 2395; * @return The oneof2395. @@ -303428,6 +343204,13 @@ public Builder clearOneof2395() { return this; } + /** + * int32 oneof_2396 = 2396; + * @return Whether the oneof2396 field is set. + */ + public boolean hasOneof2396() { + return hugeOneofCase_ == 2396; + } /** * int32 oneof_2396 = 2396; * @return The oneof2396. @@ -303462,6 +343245,13 @@ public Builder clearOneof2396() { return this; } + /** + * int32 oneof_2397 = 2397; + * @return Whether the oneof2397 field is set. + */ + public boolean hasOneof2397() { + return hugeOneofCase_ == 2397; + } /** * int32 oneof_2397 = 2397; * @return The oneof2397. @@ -303496,6 +343286,13 @@ public Builder clearOneof2397() { return this; } + /** + * int32 oneof_2398 = 2398; + * @return Whether the oneof2398 field is set. + */ + public boolean hasOneof2398() { + return hugeOneofCase_ == 2398; + } /** * int32 oneof_2398 = 2398; * @return The oneof2398. @@ -303530,6 +343327,13 @@ public Builder clearOneof2398() { return this; } + /** + * int32 oneof_2399 = 2399; + * @return Whether the oneof2399 field is set. + */ + public boolean hasOneof2399() { + return hugeOneofCase_ == 2399; + } /** * int32 oneof_2399 = 2399; * @return The oneof2399. @@ -303564,6 +343368,13 @@ public Builder clearOneof2399() { return this; } + /** + * int32 oneof_2400 = 2400; + * @return Whether the oneof2400 field is set. + */ + public boolean hasOneof2400() { + return hugeOneofCase_ == 2400; + } /** * int32 oneof_2400 = 2400; * @return The oneof2400. @@ -303598,6 +343409,13 @@ public Builder clearOneof2400() { return this; } + /** + * int32 oneof_2401 = 2401; + * @return Whether the oneof2401 field is set. + */ + public boolean hasOneof2401() { + return hugeOneofCase_ == 2401; + } /** * int32 oneof_2401 = 2401; * @return The oneof2401. @@ -303632,6 +343450,13 @@ public Builder clearOneof2401() { return this; } + /** + * int32 oneof_2402 = 2402; + * @return Whether the oneof2402 field is set. + */ + public boolean hasOneof2402() { + return hugeOneofCase_ == 2402; + } /** * int32 oneof_2402 = 2402; * @return The oneof2402. @@ -303666,6 +343491,13 @@ public Builder clearOneof2402() { return this; } + /** + * int32 oneof_2403 = 2403; + * @return Whether the oneof2403 field is set. + */ + public boolean hasOneof2403() { + return hugeOneofCase_ == 2403; + } /** * int32 oneof_2403 = 2403; * @return The oneof2403. @@ -303700,6 +343532,13 @@ public Builder clearOneof2403() { return this; } + /** + * int32 oneof_2404 = 2404; + * @return Whether the oneof2404 field is set. + */ + public boolean hasOneof2404() { + return hugeOneofCase_ == 2404; + } /** * int32 oneof_2404 = 2404; * @return The oneof2404. @@ -303734,6 +343573,13 @@ public Builder clearOneof2404() { return this; } + /** + * int32 oneof_2405 = 2405; + * @return Whether the oneof2405 field is set. + */ + public boolean hasOneof2405() { + return hugeOneofCase_ == 2405; + } /** * int32 oneof_2405 = 2405; * @return The oneof2405. @@ -303768,6 +343614,13 @@ public Builder clearOneof2405() { return this; } + /** + * int32 oneof_2406 = 2406; + * @return Whether the oneof2406 field is set. + */ + public boolean hasOneof2406() { + return hugeOneofCase_ == 2406; + } /** * int32 oneof_2406 = 2406; * @return The oneof2406. @@ -303802,6 +343655,13 @@ public Builder clearOneof2406() { return this; } + /** + * int32 oneof_2407 = 2407; + * @return Whether the oneof2407 field is set. + */ + public boolean hasOneof2407() { + return hugeOneofCase_ == 2407; + } /** * int32 oneof_2407 = 2407; * @return The oneof2407. @@ -303836,6 +343696,13 @@ public Builder clearOneof2407() { return this; } + /** + * int32 oneof_2408 = 2408; + * @return Whether the oneof2408 field is set. + */ + public boolean hasOneof2408() { + return hugeOneofCase_ == 2408; + } /** * int32 oneof_2408 = 2408; * @return The oneof2408. @@ -303870,6 +343737,13 @@ public Builder clearOneof2408() { return this; } + /** + * int32 oneof_2409 = 2409; + * @return Whether the oneof2409 field is set. + */ + public boolean hasOneof2409() { + return hugeOneofCase_ == 2409; + } /** * int32 oneof_2409 = 2409; * @return The oneof2409. @@ -303904,6 +343778,13 @@ public Builder clearOneof2409() { return this; } + /** + * int32 oneof_2410 = 2410; + * @return Whether the oneof2410 field is set. + */ + public boolean hasOneof2410() { + return hugeOneofCase_ == 2410; + } /** * int32 oneof_2410 = 2410; * @return The oneof2410. @@ -303938,6 +343819,13 @@ public Builder clearOneof2410() { return this; } + /** + * int32 oneof_2411 = 2411; + * @return Whether the oneof2411 field is set. + */ + public boolean hasOneof2411() { + return hugeOneofCase_ == 2411; + } /** * int32 oneof_2411 = 2411; * @return The oneof2411. @@ -303972,6 +343860,13 @@ public Builder clearOneof2411() { return this; } + /** + * int32 oneof_2412 = 2412; + * @return Whether the oneof2412 field is set. + */ + public boolean hasOneof2412() { + return hugeOneofCase_ == 2412; + } /** * int32 oneof_2412 = 2412; * @return The oneof2412. @@ -304006,6 +343901,13 @@ public Builder clearOneof2412() { return this; } + /** + * int32 oneof_2413 = 2413; + * @return Whether the oneof2413 field is set. + */ + public boolean hasOneof2413() { + return hugeOneofCase_ == 2413; + } /** * int32 oneof_2413 = 2413; * @return The oneof2413. @@ -304040,6 +343942,13 @@ public Builder clearOneof2413() { return this; } + /** + * int32 oneof_2414 = 2414; + * @return Whether the oneof2414 field is set. + */ + public boolean hasOneof2414() { + return hugeOneofCase_ == 2414; + } /** * int32 oneof_2414 = 2414; * @return The oneof2414. @@ -304074,6 +343983,13 @@ public Builder clearOneof2414() { return this; } + /** + * int32 oneof_2415 = 2415; + * @return Whether the oneof2415 field is set. + */ + public boolean hasOneof2415() { + return hugeOneofCase_ == 2415; + } /** * int32 oneof_2415 = 2415; * @return The oneof2415. @@ -304108,6 +344024,13 @@ public Builder clearOneof2415() { return this; } + /** + * int32 oneof_2416 = 2416; + * @return Whether the oneof2416 field is set. + */ + public boolean hasOneof2416() { + return hugeOneofCase_ == 2416; + } /** * int32 oneof_2416 = 2416; * @return The oneof2416. @@ -304142,6 +344065,13 @@ public Builder clearOneof2416() { return this; } + /** + * int32 oneof_2417 = 2417; + * @return Whether the oneof2417 field is set. + */ + public boolean hasOneof2417() { + return hugeOneofCase_ == 2417; + } /** * int32 oneof_2417 = 2417; * @return The oneof2417. @@ -304176,6 +344106,13 @@ public Builder clearOneof2417() { return this; } + /** + * int32 oneof_2418 = 2418; + * @return Whether the oneof2418 field is set. + */ + public boolean hasOneof2418() { + return hugeOneofCase_ == 2418; + } /** * int32 oneof_2418 = 2418; * @return The oneof2418. @@ -304210,6 +344147,13 @@ public Builder clearOneof2418() { return this; } + /** + * int32 oneof_2419 = 2419; + * @return Whether the oneof2419 field is set. + */ + public boolean hasOneof2419() { + return hugeOneofCase_ == 2419; + } /** * int32 oneof_2419 = 2419; * @return The oneof2419. @@ -304244,6 +344188,13 @@ public Builder clearOneof2419() { return this; } + /** + * int32 oneof_2420 = 2420; + * @return Whether the oneof2420 field is set. + */ + public boolean hasOneof2420() { + return hugeOneofCase_ == 2420; + } /** * int32 oneof_2420 = 2420; * @return The oneof2420. @@ -304278,6 +344229,13 @@ public Builder clearOneof2420() { return this; } + /** + * int32 oneof_2421 = 2421; + * @return Whether the oneof2421 field is set. + */ + public boolean hasOneof2421() { + return hugeOneofCase_ == 2421; + } /** * int32 oneof_2421 = 2421; * @return The oneof2421. @@ -304312,6 +344270,13 @@ public Builder clearOneof2421() { return this; } + /** + * int32 oneof_2422 = 2422; + * @return Whether the oneof2422 field is set. + */ + public boolean hasOneof2422() { + return hugeOneofCase_ == 2422; + } /** * int32 oneof_2422 = 2422; * @return The oneof2422. @@ -304346,6 +344311,13 @@ public Builder clearOneof2422() { return this; } + /** + * int32 oneof_2423 = 2423; + * @return Whether the oneof2423 field is set. + */ + public boolean hasOneof2423() { + return hugeOneofCase_ == 2423; + } /** * int32 oneof_2423 = 2423; * @return The oneof2423. @@ -304380,6 +344352,13 @@ public Builder clearOneof2423() { return this; } + /** + * int32 oneof_2424 = 2424; + * @return Whether the oneof2424 field is set. + */ + public boolean hasOneof2424() { + return hugeOneofCase_ == 2424; + } /** * int32 oneof_2424 = 2424; * @return The oneof2424. @@ -304414,6 +344393,13 @@ public Builder clearOneof2424() { return this; } + /** + * int32 oneof_2425 = 2425; + * @return Whether the oneof2425 field is set. + */ + public boolean hasOneof2425() { + return hugeOneofCase_ == 2425; + } /** * int32 oneof_2425 = 2425; * @return The oneof2425. @@ -304448,6 +344434,13 @@ public Builder clearOneof2425() { return this; } + /** + * int32 oneof_2426 = 2426; + * @return Whether the oneof2426 field is set. + */ + public boolean hasOneof2426() { + return hugeOneofCase_ == 2426; + } /** * int32 oneof_2426 = 2426; * @return The oneof2426. @@ -304482,6 +344475,13 @@ public Builder clearOneof2426() { return this; } + /** + * int32 oneof_2427 = 2427; + * @return Whether the oneof2427 field is set. + */ + public boolean hasOneof2427() { + return hugeOneofCase_ == 2427; + } /** * int32 oneof_2427 = 2427; * @return The oneof2427. @@ -304516,6 +344516,13 @@ public Builder clearOneof2427() { return this; } + /** + * int32 oneof_2428 = 2428; + * @return Whether the oneof2428 field is set. + */ + public boolean hasOneof2428() { + return hugeOneofCase_ == 2428; + } /** * int32 oneof_2428 = 2428; * @return The oneof2428. @@ -304550,6 +344557,13 @@ public Builder clearOneof2428() { return this; } + /** + * int32 oneof_2429 = 2429; + * @return Whether the oneof2429 field is set. + */ + public boolean hasOneof2429() { + return hugeOneofCase_ == 2429; + } /** * int32 oneof_2429 = 2429; * @return The oneof2429. @@ -304584,6 +344598,13 @@ public Builder clearOneof2429() { return this; } + /** + * int32 oneof_2430 = 2430; + * @return Whether the oneof2430 field is set. + */ + public boolean hasOneof2430() { + return hugeOneofCase_ == 2430; + } /** * int32 oneof_2430 = 2430; * @return The oneof2430. @@ -304618,6 +344639,13 @@ public Builder clearOneof2430() { return this; } + /** + * int32 oneof_2431 = 2431; + * @return Whether the oneof2431 field is set. + */ + public boolean hasOneof2431() { + return hugeOneofCase_ == 2431; + } /** * int32 oneof_2431 = 2431; * @return The oneof2431. @@ -304652,6 +344680,13 @@ public Builder clearOneof2431() { return this; } + /** + * int32 oneof_2432 = 2432; + * @return Whether the oneof2432 field is set. + */ + public boolean hasOneof2432() { + return hugeOneofCase_ == 2432; + } /** * int32 oneof_2432 = 2432; * @return The oneof2432. @@ -304686,6 +344721,13 @@ public Builder clearOneof2432() { return this; } + /** + * int32 oneof_2433 = 2433; + * @return Whether the oneof2433 field is set. + */ + public boolean hasOneof2433() { + return hugeOneofCase_ == 2433; + } /** * int32 oneof_2433 = 2433; * @return The oneof2433. @@ -304720,6 +344762,13 @@ public Builder clearOneof2433() { return this; } + /** + * int32 oneof_2434 = 2434; + * @return Whether the oneof2434 field is set. + */ + public boolean hasOneof2434() { + return hugeOneofCase_ == 2434; + } /** * int32 oneof_2434 = 2434; * @return The oneof2434. @@ -304754,6 +344803,13 @@ public Builder clearOneof2434() { return this; } + /** + * int32 oneof_2435 = 2435; + * @return Whether the oneof2435 field is set. + */ + public boolean hasOneof2435() { + return hugeOneofCase_ == 2435; + } /** * int32 oneof_2435 = 2435; * @return The oneof2435. @@ -304788,6 +344844,13 @@ public Builder clearOneof2435() { return this; } + /** + * int32 oneof_2436 = 2436; + * @return Whether the oneof2436 field is set. + */ + public boolean hasOneof2436() { + return hugeOneofCase_ == 2436; + } /** * int32 oneof_2436 = 2436; * @return The oneof2436. @@ -304822,6 +344885,13 @@ public Builder clearOneof2436() { return this; } + /** + * int32 oneof_2437 = 2437; + * @return Whether the oneof2437 field is set. + */ + public boolean hasOneof2437() { + return hugeOneofCase_ == 2437; + } /** * int32 oneof_2437 = 2437; * @return The oneof2437. @@ -304856,6 +344926,13 @@ public Builder clearOneof2437() { return this; } + /** + * int32 oneof_2438 = 2438; + * @return Whether the oneof2438 field is set. + */ + public boolean hasOneof2438() { + return hugeOneofCase_ == 2438; + } /** * int32 oneof_2438 = 2438; * @return The oneof2438. @@ -304890,6 +344967,13 @@ public Builder clearOneof2438() { return this; } + /** + * int32 oneof_2439 = 2439; + * @return Whether the oneof2439 field is set. + */ + public boolean hasOneof2439() { + return hugeOneofCase_ == 2439; + } /** * int32 oneof_2439 = 2439; * @return The oneof2439. @@ -304924,6 +345008,13 @@ public Builder clearOneof2439() { return this; } + /** + * int32 oneof_2440 = 2440; + * @return Whether the oneof2440 field is set. + */ + public boolean hasOneof2440() { + return hugeOneofCase_ == 2440; + } /** * int32 oneof_2440 = 2440; * @return The oneof2440. @@ -304958,6 +345049,13 @@ public Builder clearOneof2440() { return this; } + /** + * int32 oneof_2441 = 2441; + * @return Whether the oneof2441 field is set. + */ + public boolean hasOneof2441() { + return hugeOneofCase_ == 2441; + } /** * int32 oneof_2441 = 2441; * @return The oneof2441. @@ -304992,6 +345090,13 @@ public Builder clearOneof2441() { return this; } + /** + * int32 oneof_2442 = 2442; + * @return Whether the oneof2442 field is set. + */ + public boolean hasOneof2442() { + return hugeOneofCase_ == 2442; + } /** * int32 oneof_2442 = 2442; * @return The oneof2442. @@ -305026,6 +345131,13 @@ public Builder clearOneof2442() { return this; } + /** + * int32 oneof_2443 = 2443; + * @return Whether the oneof2443 field is set. + */ + public boolean hasOneof2443() { + return hugeOneofCase_ == 2443; + } /** * int32 oneof_2443 = 2443; * @return The oneof2443. @@ -305060,6 +345172,13 @@ public Builder clearOneof2443() { return this; } + /** + * int32 oneof_2444 = 2444; + * @return Whether the oneof2444 field is set. + */ + public boolean hasOneof2444() { + return hugeOneofCase_ == 2444; + } /** * int32 oneof_2444 = 2444; * @return The oneof2444. @@ -305094,6 +345213,13 @@ public Builder clearOneof2444() { return this; } + /** + * int32 oneof_2445 = 2445; + * @return Whether the oneof2445 field is set. + */ + public boolean hasOneof2445() { + return hugeOneofCase_ == 2445; + } /** * int32 oneof_2445 = 2445; * @return The oneof2445. @@ -305128,6 +345254,13 @@ public Builder clearOneof2445() { return this; } + /** + * int32 oneof_2446 = 2446; + * @return Whether the oneof2446 field is set. + */ + public boolean hasOneof2446() { + return hugeOneofCase_ == 2446; + } /** * int32 oneof_2446 = 2446; * @return The oneof2446. @@ -305162,6 +345295,13 @@ public Builder clearOneof2446() { return this; } + /** + * int32 oneof_2447 = 2447; + * @return Whether the oneof2447 field is set. + */ + public boolean hasOneof2447() { + return hugeOneofCase_ == 2447; + } /** * int32 oneof_2447 = 2447; * @return The oneof2447. @@ -305196,6 +345336,13 @@ public Builder clearOneof2447() { return this; } + /** + * int32 oneof_2448 = 2448; + * @return Whether the oneof2448 field is set. + */ + public boolean hasOneof2448() { + return hugeOneofCase_ == 2448; + } /** * int32 oneof_2448 = 2448; * @return The oneof2448. @@ -305230,6 +345377,13 @@ public Builder clearOneof2448() { return this; } + /** + * int32 oneof_2449 = 2449; + * @return Whether the oneof2449 field is set. + */ + public boolean hasOneof2449() { + return hugeOneofCase_ == 2449; + } /** * int32 oneof_2449 = 2449; * @return The oneof2449. @@ -305264,6 +345418,13 @@ public Builder clearOneof2449() { return this; } + /** + * int32 oneof_2450 = 2450; + * @return Whether the oneof2450 field is set. + */ + public boolean hasOneof2450() { + return hugeOneofCase_ == 2450; + } /** * int32 oneof_2450 = 2450; * @return The oneof2450. @@ -305298,6 +345459,13 @@ public Builder clearOneof2450() { return this; } + /** + * int32 oneof_2451 = 2451; + * @return Whether the oneof2451 field is set. + */ + public boolean hasOneof2451() { + return hugeOneofCase_ == 2451; + } /** * int32 oneof_2451 = 2451; * @return The oneof2451. @@ -305332,6 +345500,13 @@ public Builder clearOneof2451() { return this; } + /** + * int32 oneof_2452 = 2452; + * @return Whether the oneof2452 field is set. + */ + public boolean hasOneof2452() { + return hugeOneofCase_ == 2452; + } /** * int32 oneof_2452 = 2452; * @return The oneof2452. @@ -305366,6 +345541,13 @@ public Builder clearOneof2452() { return this; } + /** + * int32 oneof_2453 = 2453; + * @return Whether the oneof2453 field is set. + */ + public boolean hasOneof2453() { + return hugeOneofCase_ == 2453; + } /** * int32 oneof_2453 = 2453; * @return The oneof2453. @@ -305400,6 +345582,13 @@ public Builder clearOneof2453() { return this; } + /** + * int32 oneof_2454 = 2454; + * @return Whether the oneof2454 field is set. + */ + public boolean hasOneof2454() { + return hugeOneofCase_ == 2454; + } /** * int32 oneof_2454 = 2454; * @return The oneof2454. @@ -305434,6 +345623,13 @@ public Builder clearOneof2454() { return this; } + /** + * int32 oneof_2455 = 2455; + * @return Whether the oneof2455 field is set. + */ + public boolean hasOneof2455() { + return hugeOneofCase_ == 2455; + } /** * int32 oneof_2455 = 2455; * @return The oneof2455. @@ -305468,6 +345664,13 @@ public Builder clearOneof2455() { return this; } + /** + * int32 oneof_2456 = 2456; + * @return Whether the oneof2456 field is set. + */ + public boolean hasOneof2456() { + return hugeOneofCase_ == 2456; + } /** * int32 oneof_2456 = 2456; * @return The oneof2456. @@ -305502,6 +345705,13 @@ public Builder clearOneof2456() { return this; } + /** + * int32 oneof_2457 = 2457; + * @return Whether the oneof2457 field is set. + */ + public boolean hasOneof2457() { + return hugeOneofCase_ == 2457; + } /** * int32 oneof_2457 = 2457; * @return The oneof2457. @@ -305536,6 +345746,13 @@ public Builder clearOneof2457() { return this; } + /** + * int32 oneof_2458 = 2458; + * @return Whether the oneof2458 field is set. + */ + public boolean hasOneof2458() { + return hugeOneofCase_ == 2458; + } /** * int32 oneof_2458 = 2458; * @return The oneof2458. @@ -305570,6 +345787,13 @@ public Builder clearOneof2458() { return this; } + /** + * int32 oneof_2459 = 2459; + * @return Whether the oneof2459 field is set. + */ + public boolean hasOneof2459() { + return hugeOneofCase_ == 2459; + } /** * int32 oneof_2459 = 2459; * @return The oneof2459. @@ -305604,6 +345828,13 @@ public Builder clearOneof2459() { return this; } + /** + * int32 oneof_2460 = 2460; + * @return Whether the oneof2460 field is set. + */ + public boolean hasOneof2460() { + return hugeOneofCase_ == 2460; + } /** * int32 oneof_2460 = 2460; * @return The oneof2460. @@ -305638,6 +345869,13 @@ public Builder clearOneof2460() { return this; } + /** + * int32 oneof_2461 = 2461; + * @return Whether the oneof2461 field is set. + */ + public boolean hasOneof2461() { + return hugeOneofCase_ == 2461; + } /** * int32 oneof_2461 = 2461; * @return The oneof2461. @@ -305672,6 +345910,13 @@ public Builder clearOneof2461() { return this; } + /** + * int32 oneof_2462 = 2462; + * @return Whether the oneof2462 field is set. + */ + public boolean hasOneof2462() { + return hugeOneofCase_ == 2462; + } /** * int32 oneof_2462 = 2462; * @return The oneof2462. @@ -305706,6 +345951,13 @@ public Builder clearOneof2462() { return this; } + /** + * int32 oneof_2463 = 2463; + * @return Whether the oneof2463 field is set. + */ + public boolean hasOneof2463() { + return hugeOneofCase_ == 2463; + } /** * int32 oneof_2463 = 2463; * @return The oneof2463. @@ -305740,6 +345992,13 @@ public Builder clearOneof2463() { return this; } + /** + * int32 oneof_2464 = 2464; + * @return Whether the oneof2464 field is set. + */ + public boolean hasOneof2464() { + return hugeOneofCase_ == 2464; + } /** * int32 oneof_2464 = 2464; * @return The oneof2464. @@ -305774,6 +346033,13 @@ public Builder clearOneof2464() { return this; } + /** + * int32 oneof_2465 = 2465; + * @return Whether the oneof2465 field is set. + */ + public boolean hasOneof2465() { + return hugeOneofCase_ == 2465; + } /** * int32 oneof_2465 = 2465; * @return The oneof2465. @@ -305808,6 +346074,13 @@ public Builder clearOneof2465() { return this; } + /** + * int32 oneof_2466 = 2466; + * @return Whether the oneof2466 field is set. + */ + public boolean hasOneof2466() { + return hugeOneofCase_ == 2466; + } /** * int32 oneof_2466 = 2466; * @return The oneof2466. @@ -305842,6 +346115,13 @@ public Builder clearOneof2466() { return this; } + /** + * int32 oneof_2467 = 2467; + * @return Whether the oneof2467 field is set. + */ + public boolean hasOneof2467() { + return hugeOneofCase_ == 2467; + } /** * int32 oneof_2467 = 2467; * @return The oneof2467. @@ -305876,6 +346156,13 @@ public Builder clearOneof2467() { return this; } + /** + * int32 oneof_2468 = 2468; + * @return Whether the oneof2468 field is set. + */ + public boolean hasOneof2468() { + return hugeOneofCase_ == 2468; + } /** * int32 oneof_2468 = 2468; * @return The oneof2468. @@ -305910,6 +346197,13 @@ public Builder clearOneof2468() { return this; } + /** + * int32 oneof_2469 = 2469; + * @return Whether the oneof2469 field is set. + */ + public boolean hasOneof2469() { + return hugeOneofCase_ == 2469; + } /** * int32 oneof_2469 = 2469; * @return The oneof2469. @@ -305944,6 +346238,13 @@ public Builder clearOneof2469() { return this; } + /** + * int32 oneof_2470 = 2470; + * @return Whether the oneof2470 field is set. + */ + public boolean hasOneof2470() { + return hugeOneofCase_ == 2470; + } /** * int32 oneof_2470 = 2470; * @return The oneof2470. @@ -305978,6 +346279,13 @@ public Builder clearOneof2470() { return this; } + /** + * int32 oneof_2471 = 2471; + * @return Whether the oneof2471 field is set. + */ + public boolean hasOneof2471() { + return hugeOneofCase_ == 2471; + } /** * int32 oneof_2471 = 2471; * @return The oneof2471. @@ -306012,6 +346320,13 @@ public Builder clearOneof2471() { return this; } + /** + * int32 oneof_2472 = 2472; + * @return Whether the oneof2472 field is set. + */ + public boolean hasOneof2472() { + return hugeOneofCase_ == 2472; + } /** * int32 oneof_2472 = 2472; * @return The oneof2472. @@ -306046,6 +346361,13 @@ public Builder clearOneof2472() { return this; } + /** + * int32 oneof_2473 = 2473; + * @return Whether the oneof2473 field is set. + */ + public boolean hasOneof2473() { + return hugeOneofCase_ == 2473; + } /** * int32 oneof_2473 = 2473; * @return The oneof2473. @@ -306080,6 +346402,13 @@ public Builder clearOneof2473() { return this; } + /** + * int32 oneof_2474 = 2474; + * @return Whether the oneof2474 field is set. + */ + public boolean hasOneof2474() { + return hugeOneofCase_ == 2474; + } /** * int32 oneof_2474 = 2474; * @return The oneof2474. @@ -306114,6 +346443,13 @@ public Builder clearOneof2474() { return this; } + /** + * int32 oneof_2475 = 2475; + * @return Whether the oneof2475 field is set. + */ + public boolean hasOneof2475() { + return hugeOneofCase_ == 2475; + } /** * int32 oneof_2475 = 2475; * @return The oneof2475. @@ -306148,6 +346484,13 @@ public Builder clearOneof2475() { return this; } + /** + * int32 oneof_2476 = 2476; + * @return Whether the oneof2476 field is set. + */ + public boolean hasOneof2476() { + return hugeOneofCase_ == 2476; + } /** * int32 oneof_2476 = 2476; * @return The oneof2476. @@ -306182,6 +346525,13 @@ public Builder clearOneof2476() { return this; } + /** + * int32 oneof_2477 = 2477; + * @return Whether the oneof2477 field is set. + */ + public boolean hasOneof2477() { + return hugeOneofCase_ == 2477; + } /** * int32 oneof_2477 = 2477; * @return The oneof2477. @@ -306216,6 +346566,13 @@ public Builder clearOneof2477() { return this; } + /** + * int32 oneof_2478 = 2478; + * @return Whether the oneof2478 field is set. + */ + public boolean hasOneof2478() { + return hugeOneofCase_ == 2478; + } /** * int32 oneof_2478 = 2478; * @return The oneof2478. @@ -306250,6 +346607,13 @@ public Builder clearOneof2478() { return this; } + /** + * int32 oneof_2479 = 2479; + * @return Whether the oneof2479 field is set. + */ + public boolean hasOneof2479() { + return hugeOneofCase_ == 2479; + } /** * int32 oneof_2479 = 2479; * @return The oneof2479. @@ -306284,6 +346648,13 @@ public Builder clearOneof2479() { return this; } + /** + * int32 oneof_2480 = 2480; + * @return Whether the oneof2480 field is set. + */ + public boolean hasOneof2480() { + return hugeOneofCase_ == 2480; + } /** * int32 oneof_2480 = 2480; * @return The oneof2480. @@ -306318,6 +346689,13 @@ public Builder clearOneof2480() { return this; } + /** + * int32 oneof_2481 = 2481; + * @return Whether the oneof2481 field is set. + */ + public boolean hasOneof2481() { + return hugeOneofCase_ == 2481; + } /** * int32 oneof_2481 = 2481; * @return The oneof2481. @@ -306352,6 +346730,13 @@ public Builder clearOneof2481() { return this; } + /** + * int32 oneof_2482 = 2482; + * @return Whether the oneof2482 field is set. + */ + public boolean hasOneof2482() { + return hugeOneofCase_ == 2482; + } /** * int32 oneof_2482 = 2482; * @return The oneof2482. @@ -306386,6 +346771,13 @@ public Builder clearOneof2482() { return this; } + /** + * int32 oneof_2483 = 2483; + * @return Whether the oneof2483 field is set. + */ + public boolean hasOneof2483() { + return hugeOneofCase_ == 2483; + } /** * int32 oneof_2483 = 2483; * @return The oneof2483. @@ -306420,6 +346812,13 @@ public Builder clearOneof2483() { return this; } + /** + * int32 oneof_2484 = 2484; + * @return Whether the oneof2484 field is set. + */ + public boolean hasOneof2484() { + return hugeOneofCase_ == 2484; + } /** * int32 oneof_2484 = 2484; * @return The oneof2484. @@ -306454,6 +346853,13 @@ public Builder clearOneof2484() { return this; } + /** + * int32 oneof_2485 = 2485; + * @return Whether the oneof2485 field is set. + */ + public boolean hasOneof2485() { + return hugeOneofCase_ == 2485; + } /** * int32 oneof_2485 = 2485; * @return The oneof2485. @@ -306488,6 +346894,13 @@ public Builder clearOneof2485() { return this; } + /** + * int32 oneof_2486 = 2486; + * @return Whether the oneof2486 field is set. + */ + public boolean hasOneof2486() { + return hugeOneofCase_ == 2486; + } /** * int32 oneof_2486 = 2486; * @return The oneof2486. @@ -306522,6 +346935,13 @@ public Builder clearOneof2486() { return this; } + /** + * int32 oneof_2487 = 2487; + * @return Whether the oneof2487 field is set. + */ + public boolean hasOneof2487() { + return hugeOneofCase_ == 2487; + } /** * int32 oneof_2487 = 2487; * @return The oneof2487. @@ -306556,6 +346976,13 @@ public Builder clearOneof2487() { return this; } + /** + * int32 oneof_2488 = 2488; + * @return Whether the oneof2488 field is set. + */ + public boolean hasOneof2488() { + return hugeOneofCase_ == 2488; + } /** * int32 oneof_2488 = 2488; * @return The oneof2488. @@ -306590,6 +347017,13 @@ public Builder clearOneof2488() { return this; } + /** + * int32 oneof_2489 = 2489; + * @return Whether the oneof2489 field is set. + */ + public boolean hasOneof2489() { + return hugeOneofCase_ == 2489; + } /** * int32 oneof_2489 = 2489; * @return The oneof2489. @@ -306624,6 +347058,13 @@ public Builder clearOneof2489() { return this; } + /** + * int32 oneof_2490 = 2490; + * @return Whether the oneof2490 field is set. + */ + public boolean hasOneof2490() { + return hugeOneofCase_ == 2490; + } /** * int32 oneof_2490 = 2490; * @return The oneof2490. @@ -306658,6 +347099,13 @@ public Builder clearOneof2490() { return this; } + /** + * int32 oneof_2491 = 2491; + * @return Whether the oneof2491 field is set. + */ + public boolean hasOneof2491() { + return hugeOneofCase_ == 2491; + } /** * int32 oneof_2491 = 2491; * @return The oneof2491. @@ -306692,6 +347140,13 @@ public Builder clearOneof2491() { return this; } + /** + * int32 oneof_2492 = 2492; + * @return Whether the oneof2492 field is set. + */ + public boolean hasOneof2492() { + return hugeOneofCase_ == 2492; + } /** * int32 oneof_2492 = 2492; * @return The oneof2492. @@ -306726,6 +347181,13 @@ public Builder clearOneof2492() { return this; } + /** + * int32 oneof_2493 = 2493; + * @return Whether the oneof2493 field is set. + */ + public boolean hasOneof2493() { + return hugeOneofCase_ == 2493; + } /** * int32 oneof_2493 = 2493; * @return The oneof2493. @@ -306760,6 +347222,13 @@ public Builder clearOneof2493() { return this; } + /** + * int32 oneof_2494 = 2494; + * @return Whether the oneof2494 field is set. + */ + public boolean hasOneof2494() { + return hugeOneofCase_ == 2494; + } /** * int32 oneof_2494 = 2494; * @return The oneof2494. @@ -306794,6 +347263,13 @@ public Builder clearOneof2494() { return this; } + /** + * int32 oneof_2495 = 2495; + * @return Whether the oneof2495 field is set. + */ + public boolean hasOneof2495() { + return hugeOneofCase_ == 2495; + } /** * int32 oneof_2495 = 2495; * @return The oneof2495. @@ -306828,6 +347304,13 @@ public Builder clearOneof2495() { return this; } + /** + * int32 oneof_2496 = 2496; + * @return Whether the oneof2496 field is set. + */ + public boolean hasOneof2496() { + return hugeOneofCase_ == 2496; + } /** * int32 oneof_2496 = 2496; * @return The oneof2496. @@ -306862,6 +347345,13 @@ public Builder clearOneof2496() { return this; } + /** + * int32 oneof_2497 = 2497; + * @return Whether the oneof2497 field is set. + */ + public boolean hasOneof2497() { + return hugeOneofCase_ == 2497; + } /** * int32 oneof_2497 = 2497; * @return The oneof2497. @@ -306896,6 +347386,13 @@ public Builder clearOneof2497() { return this; } + /** + * int32 oneof_2498 = 2498; + * @return Whether the oneof2498 field is set. + */ + public boolean hasOneof2498() { + return hugeOneofCase_ == 2498; + } /** * int32 oneof_2498 = 2498; * @return The oneof2498. @@ -306930,6 +347427,13 @@ public Builder clearOneof2498() { return this; } + /** + * int32 oneof_2499 = 2499; + * @return Whether the oneof2499 field is set. + */ + public boolean hasOneof2499() { + return hugeOneofCase_ == 2499; + } /** * int32 oneof_2499 = 2499; * @return The oneof2499. @@ -306964,6 +347468,13 @@ public Builder clearOneof2499() { return this; } + /** + * int32 oneof_2500 = 2500; + * @return Whether the oneof2500 field is set. + */ + public boolean hasOneof2500() { + return hugeOneofCase_ == 2500; + } /** * int32 oneof_2500 = 2500; * @return The oneof2500. @@ -306998,6 +347509,13 @@ public Builder clearOneof2500() { return this; } + /** + * int32 oneof_2501 = 2501; + * @return Whether the oneof2501 field is set. + */ + public boolean hasOneof2501() { + return hugeOneofCase_ == 2501; + } /** * int32 oneof_2501 = 2501; * @return The oneof2501. @@ -307032,6 +347550,13 @@ public Builder clearOneof2501() { return this; } + /** + * int32 oneof_2502 = 2502; + * @return Whether the oneof2502 field is set. + */ + public boolean hasOneof2502() { + return hugeOneofCase_ == 2502; + } /** * int32 oneof_2502 = 2502; * @return The oneof2502. @@ -307066,6 +347591,13 @@ public Builder clearOneof2502() { return this; } + /** + * int32 oneof_2503 = 2503; + * @return Whether the oneof2503 field is set. + */ + public boolean hasOneof2503() { + return hugeOneofCase_ == 2503; + } /** * int32 oneof_2503 = 2503; * @return The oneof2503. @@ -307100,6 +347632,13 @@ public Builder clearOneof2503() { return this; } + /** + * int32 oneof_2504 = 2504; + * @return Whether the oneof2504 field is set. + */ + public boolean hasOneof2504() { + return hugeOneofCase_ == 2504; + } /** * int32 oneof_2504 = 2504; * @return The oneof2504. @@ -307134,6 +347673,13 @@ public Builder clearOneof2504() { return this; } + /** + * int32 oneof_2505 = 2505; + * @return Whether the oneof2505 field is set. + */ + public boolean hasOneof2505() { + return hugeOneofCase_ == 2505; + } /** * int32 oneof_2505 = 2505; * @return The oneof2505. @@ -307168,6 +347714,13 @@ public Builder clearOneof2505() { return this; } + /** + * int32 oneof_2506 = 2506; + * @return Whether the oneof2506 field is set. + */ + public boolean hasOneof2506() { + return hugeOneofCase_ == 2506; + } /** * int32 oneof_2506 = 2506; * @return The oneof2506. @@ -307202,6 +347755,13 @@ public Builder clearOneof2506() { return this; } + /** + * int32 oneof_2507 = 2507; + * @return Whether the oneof2507 field is set. + */ + public boolean hasOneof2507() { + return hugeOneofCase_ == 2507; + } /** * int32 oneof_2507 = 2507; * @return The oneof2507. @@ -307236,6 +347796,13 @@ public Builder clearOneof2507() { return this; } + /** + * int32 oneof_2508 = 2508; + * @return Whether the oneof2508 field is set. + */ + public boolean hasOneof2508() { + return hugeOneofCase_ == 2508; + } /** * int32 oneof_2508 = 2508; * @return The oneof2508. @@ -307270,6 +347837,13 @@ public Builder clearOneof2508() { return this; } + /** + * int32 oneof_2509 = 2509; + * @return Whether the oneof2509 field is set. + */ + public boolean hasOneof2509() { + return hugeOneofCase_ == 2509; + } /** * int32 oneof_2509 = 2509; * @return The oneof2509. @@ -307304,6 +347878,13 @@ public Builder clearOneof2509() { return this; } + /** + * int32 oneof_2510 = 2510; + * @return Whether the oneof2510 field is set. + */ + public boolean hasOneof2510() { + return hugeOneofCase_ == 2510; + } /** * int32 oneof_2510 = 2510; * @return The oneof2510. @@ -307338,6 +347919,13 @@ public Builder clearOneof2510() { return this; } + /** + * int32 oneof_2511 = 2511; + * @return Whether the oneof2511 field is set. + */ + public boolean hasOneof2511() { + return hugeOneofCase_ == 2511; + } /** * int32 oneof_2511 = 2511; * @return The oneof2511. @@ -307372,6 +347960,13 @@ public Builder clearOneof2511() { return this; } + /** + * int32 oneof_2512 = 2512; + * @return Whether the oneof2512 field is set. + */ + public boolean hasOneof2512() { + return hugeOneofCase_ == 2512; + } /** * int32 oneof_2512 = 2512; * @return The oneof2512. @@ -307406,6 +348001,13 @@ public Builder clearOneof2512() { return this; } + /** + * int32 oneof_2513 = 2513; + * @return Whether the oneof2513 field is set. + */ + public boolean hasOneof2513() { + return hugeOneofCase_ == 2513; + } /** * int32 oneof_2513 = 2513; * @return The oneof2513. @@ -307440,6 +348042,13 @@ public Builder clearOneof2513() { return this; } + /** + * int32 oneof_2514 = 2514; + * @return Whether the oneof2514 field is set. + */ + public boolean hasOneof2514() { + return hugeOneofCase_ == 2514; + } /** * int32 oneof_2514 = 2514; * @return The oneof2514. @@ -307474,6 +348083,13 @@ public Builder clearOneof2514() { return this; } + /** + * int32 oneof_2515 = 2515; + * @return Whether the oneof2515 field is set. + */ + public boolean hasOneof2515() { + return hugeOneofCase_ == 2515; + } /** * int32 oneof_2515 = 2515; * @return The oneof2515. @@ -307508,6 +348124,13 @@ public Builder clearOneof2515() { return this; } + /** + * int32 oneof_2516 = 2516; + * @return Whether the oneof2516 field is set. + */ + public boolean hasOneof2516() { + return hugeOneofCase_ == 2516; + } /** * int32 oneof_2516 = 2516; * @return The oneof2516. @@ -307542,6 +348165,13 @@ public Builder clearOneof2516() { return this; } + /** + * int32 oneof_2517 = 2517; + * @return Whether the oneof2517 field is set. + */ + public boolean hasOneof2517() { + return hugeOneofCase_ == 2517; + } /** * int32 oneof_2517 = 2517; * @return The oneof2517. @@ -307576,6 +348206,13 @@ public Builder clearOneof2517() { return this; } + /** + * int32 oneof_2518 = 2518; + * @return Whether the oneof2518 field is set. + */ + public boolean hasOneof2518() { + return hugeOneofCase_ == 2518; + } /** * int32 oneof_2518 = 2518; * @return The oneof2518. @@ -307610,6 +348247,13 @@ public Builder clearOneof2518() { return this; } + /** + * int32 oneof_2519 = 2519; + * @return Whether the oneof2519 field is set. + */ + public boolean hasOneof2519() { + return hugeOneofCase_ == 2519; + } /** * int32 oneof_2519 = 2519; * @return The oneof2519. @@ -307644,6 +348288,13 @@ public Builder clearOneof2519() { return this; } + /** + * int32 oneof_2520 = 2520; + * @return Whether the oneof2520 field is set. + */ + public boolean hasOneof2520() { + return hugeOneofCase_ == 2520; + } /** * int32 oneof_2520 = 2520; * @return The oneof2520. @@ -307678,6 +348329,13 @@ public Builder clearOneof2520() { return this; } + /** + * int32 oneof_2521 = 2521; + * @return Whether the oneof2521 field is set. + */ + public boolean hasOneof2521() { + return hugeOneofCase_ == 2521; + } /** * int32 oneof_2521 = 2521; * @return The oneof2521. @@ -307712,6 +348370,13 @@ public Builder clearOneof2521() { return this; } + /** + * int32 oneof_2522 = 2522; + * @return Whether the oneof2522 field is set. + */ + public boolean hasOneof2522() { + return hugeOneofCase_ == 2522; + } /** * int32 oneof_2522 = 2522; * @return The oneof2522. @@ -307746,6 +348411,13 @@ public Builder clearOneof2522() { return this; } + /** + * int32 oneof_2523 = 2523; + * @return Whether the oneof2523 field is set. + */ + public boolean hasOneof2523() { + return hugeOneofCase_ == 2523; + } /** * int32 oneof_2523 = 2523; * @return The oneof2523. @@ -307780,6 +348452,13 @@ public Builder clearOneof2523() { return this; } + /** + * int32 oneof_2524 = 2524; + * @return Whether the oneof2524 field is set. + */ + public boolean hasOneof2524() { + return hugeOneofCase_ == 2524; + } /** * int32 oneof_2524 = 2524; * @return The oneof2524. @@ -307814,6 +348493,13 @@ public Builder clearOneof2524() { return this; } + /** + * int32 oneof_2525 = 2525; + * @return Whether the oneof2525 field is set. + */ + public boolean hasOneof2525() { + return hugeOneofCase_ == 2525; + } /** * int32 oneof_2525 = 2525; * @return The oneof2525. @@ -307848,6 +348534,13 @@ public Builder clearOneof2525() { return this; } + /** + * int32 oneof_2526 = 2526; + * @return Whether the oneof2526 field is set. + */ + public boolean hasOneof2526() { + return hugeOneofCase_ == 2526; + } /** * int32 oneof_2526 = 2526; * @return The oneof2526. @@ -307882,6 +348575,13 @@ public Builder clearOneof2526() { return this; } + /** + * int32 oneof_2527 = 2527; + * @return Whether the oneof2527 field is set. + */ + public boolean hasOneof2527() { + return hugeOneofCase_ == 2527; + } /** * int32 oneof_2527 = 2527; * @return The oneof2527. @@ -307916,6 +348616,13 @@ public Builder clearOneof2527() { return this; } + /** + * int32 oneof_2528 = 2528; + * @return Whether the oneof2528 field is set. + */ + public boolean hasOneof2528() { + return hugeOneofCase_ == 2528; + } /** * int32 oneof_2528 = 2528; * @return The oneof2528. @@ -307950,6 +348657,13 @@ public Builder clearOneof2528() { return this; } + /** + * int32 oneof_2529 = 2529; + * @return Whether the oneof2529 field is set. + */ + public boolean hasOneof2529() { + return hugeOneofCase_ == 2529; + } /** * int32 oneof_2529 = 2529; * @return The oneof2529. @@ -307984,6 +348698,13 @@ public Builder clearOneof2529() { return this; } + /** + * int32 oneof_2530 = 2530; + * @return Whether the oneof2530 field is set. + */ + public boolean hasOneof2530() { + return hugeOneofCase_ == 2530; + } /** * int32 oneof_2530 = 2530; * @return The oneof2530. @@ -308018,6 +348739,13 @@ public Builder clearOneof2530() { return this; } + /** + * int32 oneof_2531 = 2531; + * @return Whether the oneof2531 field is set. + */ + public boolean hasOneof2531() { + return hugeOneofCase_ == 2531; + } /** * int32 oneof_2531 = 2531; * @return The oneof2531. @@ -308052,6 +348780,13 @@ public Builder clearOneof2531() { return this; } + /** + * int32 oneof_2532 = 2532; + * @return Whether the oneof2532 field is set. + */ + public boolean hasOneof2532() { + return hugeOneofCase_ == 2532; + } /** * int32 oneof_2532 = 2532; * @return The oneof2532. @@ -308086,6 +348821,13 @@ public Builder clearOneof2532() { return this; } + /** + * int32 oneof_2533 = 2533; + * @return Whether the oneof2533 field is set. + */ + public boolean hasOneof2533() { + return hugeOneofCase_ == 2533; + } /** * int32 oneof_2533 = 2533; * @return The oneof2533. @@ -308120,6 +348862,13 @@ public Builder clearOneof2533() { return this; } + /** + * int32 oneof_2534 = 2534; + * @return Whether the oneof2534 field is set. + */ + public boolean hasOneof2534() { + return hugeOneofCase_ == 2534; + } /** * int32 oneof_2534 = 2534; * @return The oneof2534. @@ -308154,6 +348903,13 @@ public Builder clearOneof2534() { return this; } + /** + * int32 oneof_2535 = 2535; + * @return Whether the oneof2535 field is set. + */ + public boolean hasOneof2535() { + return hugeOneofCase_ == 2535; + } /** * int32 oneof_2535 = 2535; * @return The oneof2535. @@ -308188,6 +348944,13 @@ public Builder clearOneof2535() { return this; } + /** + * int32 oneof_2536 = 2536; + * @return Whether the oneof2536 field is set. + */ + public boolean hasOneof2536() { + return hugeOneofCase_ == 2536; + } /** * int32 oneof_2536 = 2536; * @return The oneof2536. @@ -308222,6 +348985,13 @@ public Builder clearOneof2536() { return this; } + /** + * int32 oneof_2537 = 2537; + * @return Whether the oneof2537 field is set. + */ + public boolean hasOneof2537() { + return hugeOneofCase_ == 2537; + } /** * int32 oneof_2537 = 2537; * @return The oneof2537. @@ -308256,6 +349026,13 @@ public Builder clearOneof2537() { return this; } + /** + * int32 oneof_2538 = 2538; + * @return Whether the oneof2538 field is set. + */ + public boolean hasOneof2538() { + return hugeOneofCase_ == 2538; + } /** * int32 oneof_2538 = 2538; * @return The oneof2538. @@ -308290,6 +349067,13 @@ public Builder clearOneof2538() { return this; } + /** + * int32 oneof_2539 = 2539; + * @return Whether the oneof2539 field is set. + */ + public boolean hasOneof2539() { + return hugeOneofCase_ == 2539; + } /** * int32 oneof_2539 = 2539; * @return The oneof2539. @@ -308324,6 +349108,13 @@ public Builder clearOneof2539() { return this; } + /** + * int32 oneof_2540 = 2540; + * @return Whether the oneof2540 field is set. + */ + public boolean hasOneof2540() { + return hugeOneofCase_ == 2540; + } /** * int32 oneof_2540 = 2540; * @return The oneof2540. @@ -308358,6 +349149,13 @@ public Builder clearOneof2540() { return this; } + /** + * int32 oneof_2541 = 2541; + * @return Whether the oneof2541 field is set. + */ + public boolean hasOneof2541() { + return hugeOneofCase_ == 2541; + } /** * int32 oneof_2541 = 2541; * @return The oneof2541. @@ -308392,6 +349190,13 @@ public Builder clearOneof2541() { return this; } + /** + * int32 oneof_2542 = 2542; + * @return Whether the oneof2542 field is set. + */ + public boolean hasOneof2542() { + return hugeOneofCase_ == 2542; + } /** * int32 oneof_2542 = 2542; * @return The oneof2542. @@ -308426,6 +349231,13 @@ public Builder clearOneof2542() { return this; } + /** + * int32 oneof_2543 = 2543; + * @return Whether the oneof2543 field is set. + */ + public boolean hasOneof2543() { + return hugeOneofCase_ == 2543; + } /** * int32 oneof_2543 = 2543; * @return The oneof2543. @@ -308460,6 +349272,13 @@ public Builder clearOneof2543() { return this; } + /** + * int32 oneof_2544 = 2544; + * @return Whether the oneof2544 field is set. + */ + public boolean hasOneof2544() { + return hugeOneofCase_ == 2544; + } /** * int32 oneof_2544 = 2544; * @return The oneof2544. @@ -308494,6 +349313,13 @@ public Builder clearOneof2544() { return this; } + /** + * int32 oneof_2545 = 2545; + * @return Whether the oneof2545 field is set. + */ + public boolean hasOneof2545() { + return hugeOneofCase_ == 2545; + } /** * int32 oneof_2545 = 2545; * @return The oneof2545. @@ -308528,6 +349354,13 @@ public Builder clearOneof2545() { return this; } + /** + * int32 oneof_2546 = 2546; + * @return Whether the oneof2546 field is set. + */ + public boolean hasOneof2546() { + return hugeOneofCase_ == 2546; + } /** * int32 oneof_2546 = 2546; * @return The oneof2546. @@ -308562,6 +349395,13 @@ public Builder clearOneof2546() { return this; } + /** + * int32 oneof_2547 = 2547; + * @return Whether the oneof2547 field is set. + */ + public boolean hasOneof2547() { + return hugeOneofCase_ == 2547; + } /** * int32 oneof_2547 = 2547; * @return The oneof2547. @@ -308596,6 +349436,13 @@ public Builder clearOneof2547() { return this; } + /** + * int32 oneof_2548 = 2548; + * @return Whether the oneof2548 field is set. + */ + public boolean hasOneof2548() { + return hugeOneofCase_ == 2548; + } /** * int32 oneof_2548 = 2548; * @return The oneof2548. @@ -308630,6 +349477,13 @@ public Builder clearOneof2548() { return this; } + /** + * int32 oneof_2549 = 2549; + * @return Whether the oneof2549 field is set. + */ + public boolean hasOneof2549() { + return hugeOneofCase_ == 2549; + } /** * int32 oneof_2549 = 2549; * @return The oneof2549. @@ -308664,6 +349518,13 @@ public Builder clearOneof2549() { return this; } + /** + * int32 oneof_2550 = 2550; + * @return Whether the oneof2550 field is set. + */ + public boolean hasOneof2550() { + return hugeOneofCase_ == 2550; + } /** * int32 oneof_2550 = 2550; * @return The oneof2550. @@ -308698,6 +349559,13 @@ public Builder clearOneof2550() { return this; } + /** + * int32 oneof_2551 = 2551; + * @return Whether the oneof2551 field is set. + */ + public boolean hasOneof2551() { + return hugeOneofCase_ == 2551; + } /** * int32 oneof_2551 = 2551; * @return The oneof2551. @@ -308732,6 +349600,13 @@ public Builder clearOneof2551() { return this; } + /** + * int32 oneof_2552 = 2552; + * @return Whether the oneof2552 field is set. + */ + public boolean hasOneof2552() { + return hugeOneofCase_ == 2552; + } /** * int32 oneof_2552 = 2552; * @return The oneof2552. @@ -308766,6 +349641,13 @@ public Builder clearOneof2552() { return this; } + /** + * int32 oneof_2553 = 2553; + * @return Whether the oneof2553 field is set. + */ + public boolean hasOneof2553() { + return hugeOneofCase_ == 2553; + } /** * int32 oneof_2553 = 2553; * @return The oneof2553. @@ -308800,6 +349682,13 @@ public Builder clearOneof2553() { return this; } + /** + * int32 oneof_2554 = 2554; + * @return Whether the oneof2554 field is set. + */ + public boolean hasOneof2554() { + return hugeOneofCase_ == 2554; + } /** * int32 oneof_2554 = 2554; * @return The oneof2554. @@ -308834,6 +349723,13 @@ public Builder clearOneof2554() { return this; } + /** + * int32 oneof_2555 = 2555; + * @return Whether the oneof2555 field is set. + */ + public boolean hasOneof2555() { + return hugeOneofCase_ == 2555; + } /** * int32 oneof_2555 = 2555; * @return The oneof2555. @@ -308868,6 +349764,13 @@ public Builder clearOneof2555() { return this; } + /** + * int32 oneof_2556 = 2556; + * @return Whether the oneof2556 field is set. + */ + public boolean hasOneof2556() { + return hugeOneofCase_ == 2556; + } /** * int32 oneof_2556 = 2556; * @return The oneof2556. @@ -308902,6 +349805,13 @@ public Builder clearOneof2556() { return this; } + /** + * int32 oneof_2557 = 2557; + * @return Whether the oneof2557 field is set. + */ + public boolean hasOneof2557() { + return hugeOneofCase_ == 2557; + } /** * int32 oneof_2557 = 2557; * @return The oneof2557. @@ -308936,6 +349846,13 @@ public Builder clearOneof2557() { return this; } + /** + * int32 oneof_2558 = 2558; + * @return Whether the oneof2558 field is set. + */ + public boolean hasOneof2558() { + return hugeOneofCase_ == 2558; + } /** * int32 oneof_2558 = 2558; * @return The oneof2558. @@ -308970,6 +349887,13 @@ public Builder clearOneof2558() { return this; } + /** + * int32 oneof_2559 = 2559; + * @return Whether the oneof2559 field is set. + */ + public boolean hasOneof2559() { + return hugeOneofCase_ == 2559; + } /** * int32 oneof_2559 = 2559; * @return The oneof2559. @@ -309004,6 +349928,13 @@ public Builder clearOneof2559() { return this; } + /** + * int32 oneof_2560 = 2560; + * @return Whether the oneof2560 field is set. + */ + public boolean hasOneof2560() { + return hugeOneofCase_ == 2560; + } /** * int32 oneof_2560 = 2560; * @return The oneof2560. @@ -309038,6 +349969,13 @@ public Builder clearOneof2560() { return this; } + /** + * int32 oneof_2561 = 2561; + * @return Whether the oneof2561 field is set. + */ + public boolean hasOneof2561() { + return hugeOneofCase_ == 2561; + } /** * int32 oneof_2561 = 2561; * @return The oneof2561. @@ -309072,6 +350010,13 @@ public Builder clearOneof2561() { return this; } + /** + * int32 oneof_2562 = 2562; + * @return Whether the oneof2562 field is set. + */ + public boolean hasOneof2562() { + return hugeOneofCase_ == 2562; + } /** * int32 oneof_2562 = 2562; * @return The oneof2562. @@ -309106,6 +350051,13 @@ public Builder clearOneof2562() { return this; } + /** + * int32 oneof_2563 = 2563; + * @return Whether the oneof2563 field is set. + */ + public boolean hasOneof2563() { + return hugeOneofCase_ == 2563; + } /** * int32 oneof_2563 = 2563; * @return The oneof2563. @@ -309140,6 +350092,13 @@ public Builder clearOneof2563() { return this; } + /** + * int32 oneof_2564 = 2564; + * @return Whether the oneof2564 field is set. + */ + public boolean hasOneof2564() { + return hugeOneofCase_ == 2564; + } /** * int32 oneof_2564 = 2564; * @return The oneof2564. @@ -309174,6 +350133,13 @@ public Builder clearOneof2564() { return this; } + /** + * int32 oneof_2565 = 2565; + * @return Whether the oneof2565 field is set. + */ + public boolean hasOneof2565() { + return hugeOneofCase_ == 2565; + } /** * int32 oneof_2565 = 2565; * @return The oneof2565. @@ -309208,6 +350174,13 @@ public Builder clearOneof2565() { return this; } + /** + * int32 oneof_2566 = 2566; + * @return Whether the oneof2566 field is set. + */ + public boolean hasOneof2566() { + return hugeOneofCase_ == 2566; + } /** * int32 oneof_2566 = 2566; * @return The oneof2566. @@ -309242,6 +350215,13 @@ public Builder clearOneof2566() { return this; } + /** + * int32 oneof_2567 = 2567; + * @return Whether the oneof2567 field is set. + */ + public boolean hasOneof2567() { + return hugeOneofCase_ == 2567; + } /** * int32 oneof_2567 = 2567; * @return The oneof2567. @@ -309276,6 +350256,13 @@ public Builder clearOneof2567() { return this; } + /** + * int32 oneof_2568 = 2568; + * @return Whether the oneof2568 field is set. + */ + public boolean hasOneof2568() { + return hugeOneofCase_ == 2568; + } /** * int32 oneof_2568 = 2568; * @return The oneof2568. @@ -309310,6 +350297,13 @@ public Builder clearOneof2568() { return this; } + /** + * int32 oneof_2569 = 2569; + * @return Whether the oneof2569 field is set. + */ + public boolean hasOneof2569() { + return hugeOneofCase_ == 2569; + } /** * int32 oneof_2569 = 2569; * @return The oneof2569. @@ -309344,6 +350338,13 @@ public Builder clearOneof2569() { return this; } + /** + * int32 oneof_2570 = 2570; + * @return Whether the oneof2570 field is set. + */ + public boolean hasOneof2570() { + return hugeOneofCase_ == 2570; + } /** * int32 oneof_2570 = 2570; * @return The oneof2570. @@ -309378,6 +350379,13 @@ public Builder clearOneof2570() { return this; } + /** + * int32 oneof_2571 = 2571; + * @return Whether the oneof2571 field is set. + */ + public boolean hasOneof2571() { + return hugeOneofCase_ == 2571; + } /** * int32 oneof_2571 = 2571; * @return The oneof2571. @@ -309412,6 +350420,13 @@ public Builder clearOneof2571() { return this; } + /** + * int32 oneof_2572 = 2572; + * @return Whether the oneof2572 field is set. + */ + public boolean hasOneof2572() { + return hugeOneofCase_ == 2572; + } /** * int32 oneof_2572 = 2572; * @return The oneof2572. @@ -309446,6 +350461,13 @@ public Builder clearOneof2572() { return this; } + /** + * int32 oneof_2573 = 2573; + * @return Whether the oneof2573 field is set. + */ + public boolean hasOneof2573() { + return hugeOneofCase_ == 2573; + } /** * int32 oneof_2573 = 2573; * @return The oneof2573. @@ -309480,6 +350502,13 @@ public Builder clearOneof2573() { return this; } + /** + * int32 oneof_2574 = 2574; + * @return Whether the oneof2574 field is set. + */ + public boolean hasOneof2574() { + return hugeOneofCase_ == 2574; + } /** * int32 oneof_2574 = 2574; * @return The oneof2574. @@ -309514,6 +350543,13 @@ public Builder clearOneof2574() { return this; } + /** + * int32 oneof_2575 = 2575; + * @return Whether the oneof2575 field is set. + */ + public boolean hasOneof2575() { + return hugeOneofCase_ == 2575; + } /** * int32 oneof_2575 = 2575; * @return The oneof2575. @@ -309548,6 +350584,13 @@ public Builder clearOneof2575() { return this; } + /** + * int32 oneof_2576 = 2576; + * @return Whether the oneof2576 field is set. + */ + public boolean hasOneof2576() { + return hugeOneofCase_ == 2576; + } /** * int32 oneof_2576 = 2576; * @return The oneof2576. @@ -309582,6 +350625,13 @@ public Builder clearOneof2576() { return this; } + /** + * int32 oneof_2577 = 2577; + * @return Whether the oneof2577 field is set. + */ + public boolean hasOneof2577() { + return hugeOneofCase_ == 2577; + } /** * int32 oneof_2577 = 2577; * @return The oneof2577. @@ -309616,6 +350666,13 @@ public Builder clearOneof2577() { return this; } + /** + * int32 oneof_2578 = 2578; + * @return Whether the oneof2578 field is set. + */ + public boolean hasOneof2578() { + return hugeOneofCase_ == 2578; + } /** * int32 oneof_2578 = 2578; * @return The oneof2578. @@ -309650,6 +350707,13 @@ public Builder clearOneof2578() { return this; } + /** + * int32 oneof_2579 = 2579; + * @return Whether the oneof2579 field is set. + */ + public boolean hasOneof2579() { + return hugeOneofCase_ == 2579; + } /** * int32 oneof_2579 = 2579; * @return The oneof2579. @@ -309684,6 +350748,13 @@ public Builder clearOneof2579() { return this; } + /** + * int32 oneof_2580 = 2580; + * @return Whether the oneof2580 field is set. + */ + public boolean hasOneof2580() { + return hugeOneofCase_ == 2580; + } /** * int32 oneof_2580 = 2580; * @return The oneof2580. @@ -309718,6 +350789,13 @@ public Builder clearOneof2580() { return this; } + /** + * int32 oneof_2581 = 2581; + * @return Whether the oneof2581 field is set. + */ + public boolean hasOneof2581() { + return hugeOneofCase_ == 2581; + } /** * int32 oneof_2581 = 2581; * @return The oneof2581. @@ -309752,6 +350830,13 @@ public Builder clearOneof2581() { return this; } + /** + * int32 oneof_2582 = 2582; + * @return Whether the oneof2582 field is set. + */ + public boolean hasOneof2582() { + return hugeOneofCase_ == 2582; + } /** * int32 oneof_2582 = 2582; * @return The oneof2582. @@ -309786,6 +350871,13 @@ public Builder clearOneof2582() { return this; } + /** + * int32 oneof_2583 = 2583; + * @return Whether the oneof2583 field is set. + */ + public boolean hasOneof2583() { + return hugeOneofCase_ == 2583; + } /** * int32 oneof_2583 = 2583; * @return The oneof2583. @@ -309820,6 +350912,13 @@ public Builder clearOneof2583() { return this; } + /** + * int32 oneof_2584 = 2584; + * @return Whether the oneof2584 field is set. + */ + public boolean hasOneof2584() { + return hugeOneofCase_ == 2584; + } /** * int32 oneof_2584 = 2584; * @return The oneof2584. @@ -309854,6 +350953,13 @@ public Builder clearOneof2584() { return this; } + /** + * int32 oneof_2585 = 2585; + * @return Whether the oneof2585 field is set. + */ + public boolean hasOneof2585() { + return hugeOneofCase_ == 2585; + } /** * int32 oneof_2585 = 2585; * @return The oneof2585. @@ -309888,6 +350994,13 @@ public Builder clearOneof2585() { return this; } + /** + * int32 oneof_2586 = 2586; + * @return Whether the oneof2586 field is set. + */ + public boolean hasOneof2586() { + return hugeOneofCase_ == 2586; + } /** * int32 oneof_2586 = 2586; * @return The oneof2586. @@ -309922,6 +351035,13 @@ public Builder clearOneof2586() { return this; } + /** + * int32 oneof_2587 = 2587; + * @return Whether the oneof2587 field is set. + */ + public boolean hasOneof2587() { + return hugeOneofCase_ == 2587; + } /** * int32 oneof_2587 = 2587; * @return The oneof2587. @@ -309956,6 +351076,13 @@ public Builder clearOneof2587() { return this; } + /** + * int32 oneof_2588 = 2588; + * @return Whether the oneof2588 field is set. + */ + public boolean hasOneof2588() { + return hugeOneofCase_ == 2588; + } /** * int32 oneof_2588 = 2588; * @return The oneof2588. @@ -309990,6 +351117,13 @@ public Builder clearOneof2588() { return this; } + /** + * int32 oneof_2589 = 2589; + * @return Whether the oneof2589 field is set. + */ + public boolean hasOneof2589() { + return hugeOneofCase_ == 2589; + } /** * int32 oneof_2589 = 2589; * @return The oneof2589. @@ -310024,6 +351158,13 @@ public Builder clearOneof2589() { return this; } + /** + * int32 oneof_2590 = 2590; + * @return Whether the oneof2590 field is set. + */ + public boolean hasOneof2590() { + return hugeOneofCase_ == 2590; + } /** * int32 oneof_2590 = 2590; * @return The oneof2590. @@ -310058,6 +351199,13 @@ public Builder clearOneof2590() { return this; } + /** + * int32 oneof_2591 = 2591; + * @return Whether the oneof2591 field is set. + */ + public boolean hasOneof2591() { + return hugeOneofCase_ == 2591; + } /** * int32 oneof_2591 = 2591; * @return The oneof2591. @@ -310092,6 +351240,13 @@ public Builder clearOneof2591() { return this; } + /** + * int32 oneof_2592 = 2592; + * @return Whether the oneof2592 field is set. + */ + public boolean hasOneof2592() { + return hugeOneofCase_ == 2592; + } /** * int32 oneof_2592 = 2592; * @return The oneof2592. @@ -310126,6 +351281,13 @@ public Builder clearOneof2592() { return this; } + /** + * int32 oneof_2593 = 2593; + * @return Whether the oneof2593 field is set. + */ + public boolean hasOneof2593() { + return hugeOneofCase_ == 2593; + } /** * int32 oneof_2593 = 2593; * @return The oneof2593. @@ -310160,6 +351322,13 @@ public Builder clearOneof2593() { return this; } + /** + * int32 oneof_2594 = 2594; + * @return Whether the oneof2594 field is set. + */ + public boolean hasOneof2594() { + return hugeOneofCase_ == 2594; + } /** * int32 oneof_2594 = 2594; * @return The oneof2594. @@ -310194,6 +351363,13 @@ public Builder clearOneof2594() { return this; } + /** + * int32 oneof_2595 = 2595; + * @return Whether the oneof2595 field is set. + */ + public boolean hasOneof2595() { + return hugeOneofCase_ == 2595; + } /** * int32 oneof_2595 = 2595; * @return The oneof2595. @@ -310228,6 +351404,13 @@ public Builder clearOneof2595() { return this; } + /** + * int32 oneof_2596 = 2596; + * @return Whether the oneof2596 field is set. + */ + public boolean hasOneof2596() { + return hugeOneofCase_ == 2596; + } /** * int32 oneof_2596 = 2596; * @return The oneof2596. @@ -310262,6 +351445,13 @@ public Builder clearOneof2596() { return this; } + /** + * int32 oneof_2597 = 2597; + * @return Whether the oneof2597 field is set. + */ + public boolean hasOneof2597() { + return hugeOneofCase_ == 2597; + } /** * int32 oneof_2597 = 2597; * @return The oneof2597. @@ -310296,6 +351486,13 @@ public Builder clearOneof2597() { return this; } + /** + * int32 oneof_2598 = 2598; + * @return Whether the oneof2598 field is set. + */ + public boolean hasOneof2598() { + return hugeOneofCase_ == 2598; + } /** * int32 oneof_2598 = 2598; * @return The oneof2598. @@ -310330,6 +351527,13 @@ public Builder clearOneof2598() { return this; } + /** + * int32 oneof_2599 = 2599; + * @return Whether the oneof2599 field is set. + */ + public boolean hasOneof2599() { + return hugeOneofCase_ == 2599; + } /** * int32 oneof_2599 = 2599; * @return The oneof2599. @@ -310364,6 +351568,13 @@ public Builder clearOneof2599() { return this; } + /** + * int32 oneof_2600 = 2600; + * @return Whether the oneof2600 field is set. + */ + public boolean hasOneof2600() { + return hugeOneofCase_ == 2600; + } /** * int32 oneof_2600 = 2600; * @return The oneof2600. @@ -310398,6 +351609,13 @@ public Builder clearOneof2600() { return this; } + /** + * int32 oneof_2601 = 2601; + * @return Whether the oneof2601 field is set. + */ + public boolean hasOneof2601() { + return hugeOneofCase_ == 2601; + } /** * int32 oneof_2601 = 2601; * @return The oneof2601. @@ -310432,6 +351650,13 @@ public Builder clearOneof2601() { return this; } + /** + * int32 oneof_2602 = 2602; + * @return Whether the oneof2602 field is set. + */ + public boolean hasOneof2602() { + return hugeOneofCase_ == 2602; + } /** * int32 oneof_2602 = 2602; * @return The oneof2602. @@ -310466,6 +351691,13 @@ public Builder clearOneof2602() { return this; } + /** + * int32 oneof_2603 = 2603; + * @return Whether the oneof2603 field is set. + */ + public boolean hasOneof2603() { + return hugeOneofCase_ == 2603; + } /** * int32 oneof_2603 = 2603; * @return The oneof2603. @@ -310500,6 +351732,13 @@ public Builder clearOneof2603() { return this; } + /** + * int32 oneof_2604 = 2604; + * @return Whether the oneof2604 field is set. + */ + public boolean hasOneof2604() { + return hugeOneofCase_ == 2604; + } /** * int32 oneof_2604 = 2604; * @return The oneof2604. @@ -310534,6 +351773,13 @@ public Builder clearOneof2604() { return this; } + /** + * int32 oneof_2605 = 2605; + * @return Whether the oneof2605 field is set. + */ + public boolean hasOneof2605() { + return hugeOneofCase_ == 2605; + } /** * int32 oneof_2605 = 2605; * @return The oneof2605. @@ -310568,6 +351814,13 @@ public Builder clearOneof2605() { return this; } + /** + * int32 oneof_2606 = 2606; + * @return Whether the oneof2606 field is set. + */ + public boolean hasOneof2606() { + return hugeOneofCase_ == 2606; + } /** * int32 oneof_2606 = 2606; * @return The oneof2606. @@ -310602,6 +351855,13 @@ public Builder clearOneof2606() { return this; } + /** + * int32 oneof_2607 = 2607; + * @return Whether the oneof2607 field is set. + */ + public boolean hasOneof2607() { + return hugeOneofCase_ == 2607; + } /** * int32 oneof_2607 = 2607; * @return The oneof2607. @@ -310636,6 +351896,13 @@ public Builder clearOneof2607() { return this; } + /** + * int32 oneof_2608 = 2608; + * @return Whether the oneof2608 field is set. + */ + public boolean hasOneof2608() { + return hugeOneofCase_ == 2608; + } /** * int32 oneof_2608 = 2608; * @return The oneof2608. @@ -310670,6 +351937,13 @@ public Builder clearOneof2608() { return this; } + /** + * int32 oneof_2609 = 2609; + * @return Whether the oneof2609 field is set. + */ + public boolean hasOneof2609() { + return hugeOneofCase_ == 2609; + } /** * int32 oneof_2609 = 2609; * @return The oneof2609. @@ -310704,6 +351978,13 @@ public Builder clearOneof2609() { return this; } + /** + * int32 oneof_2610 = 2610; + * @return Whether the oneof2610 field is set. + */ + public boolean hasOneof2610() { + return hugeOneofCase_ == 2610; + } /** * int32 oneof_2610 = 2610; * @return The oneof2610. @@ -310738,6 +352019,13 @@ public Builder clearOneof2610() { return this; } + /** + * int32 oneof_2611 = 2611; + * @return Whether the oneof2611 field is set. + */ + public boolean hasOneof2611() { + return hugeOneofCase_ == 2611; + } /** * int32 oneof_2611 = 2611; * @return The oneof2611. @@ -310772,6 +352060,13 @@ public Builder clearOneof2611() { return this; } + /** + * int32 oneof_2612 = 2612; + * @return Whether the oneof2612 field is set. + */ + public boolean hasOneof2612() { + return hugeOneofCase_ == 2612; + } /** * int32 oneof_2612 = 2612; * @return The oneof2612. @@ -310806,6 +352101,13 @@ public Builder clearOneof2612() { return this; } + /** + * int32 oneof_2613 = 2613; + * @return Whether the oneof2613 field is set. + */ + public boolean hasOneof2613() { + return hugeOneofCase_ == 2613; + } /** * int32 oneof_2613 = 2613; * @return The oneof2613. @@ -310840,6 +352142,13 @@ public Builder clearOneof2613() { return this; } + /** + * int32 oneof_2614 = 2614; + * @return Whether the oneof2614 field is set. + */ + public boolean hasOneof2614() { + return hugeOneofCase_ == 2614; + } /** * int32 oneof_2614 = 2614; * @return The oneof2614. @@ -310874,6 +352183,13 @@ public Builder clearOneof2614() { return this; } + /** + * int32 oneof_2615 = 2615; + * @return Whether the oneof2615 field is set. + */ + public boolean hasOneof2615() { + return hugeOneofCase_ == 2615; + } /** * int32 oneof_2615 = 2615; * @return The oneof2615. @@ -310908,6 +352224,13 @@ public Builder clearOneof2615() { return this; } + /** + * int32 oneof_2616 = 2616; + * @return Whether the oneof2616 field is set. + */ + public boolean hasOneof2616() { + return hugeOneofCase_ == 2616; + } /** * int32 oneof_2616 = 2616; * @return The oneof2616. @@ -310942,6 +352265,13 @@ public Builder clearOneof2616() { return this; } + /** + * int32 oneof_2617 = 2617; + * @return Whether the oneof2617 field is set. + */ + public boolean hasOneof2617() { + return hugeOneofCase_ == 2617; + } /** * int32 oneof_2617 = 2617; * @return The oneof2617. @@ -310976,6 +352306,13 @@ public Builder clearOneof2617() { return this; } + /** + * int32 oneof_2618 = 2618; + * @return Whether the oneof2618 field is set. + */ + public boolean hasOneof2618() { + return hugeOneofCase_ == 2618; + } /** * int32 oneof_2618 = 2618; * @return The oneof2618. @@ -311010,6 +352347,13 @@ public Builder clearOneof2618() { return this; } + /** + * int32 oneof_2619 = 2619; + * @return Whether the oneof2619 field is set. + */ + public boolean hasOneof2619() { + return hugeOneofCase_ == 2619; + } /** * int32 oneof_2619 = 2619; * @return The oneof2619. @@ -311044,6 +352388,13 @@ public Builder clearOneof2619() { return this; } + /** + * int32 oneof_2620 = 2620; + * @return Whether the oneof2620 field is set. + */ + public boolean hasOneof2620() { + return hugeOneofCase_ == 2620; + } /** * int32 oneof_2620 = 2620; * @return The oneof2620. @@ -311078,6 +352429,13 @@ public Builder clearOneof2620() { return this; } + /** + * int32 oneof_2621 = 2621; + * @return Whether the oneof2621 field is set. + */ + public boolean hasOneof2621() { + return hugeOneofCase_ == 2621; + } /** * int32 oneof_2621 = 2621; * @return The oneof2621. @@ -311112,6 +352470,13 @@ public Builder clearOneof2621() { return this; } + /** + * int32 oneof_2622 = 2622; + * @return Whether the oneof2622 field is set. + */ + public boolean hasOneof2622() { + return hugeOneofCase_ == 2622; + } /** * int32 oneof_2622 = 2622; * @return The oneof2622. @@ -311146,6 +352511,13 @@ public Builder clearOneof2622() { return this; } + /** + * int32 oneof_2623 = 2623; + * @return Whether the oneof2623 field is set. + */ + public boolean hasOneof2623() { + return hugeOneofCase_ == 2623; + } /** * int32 oneof_2623 = 2623; * @return The oneof2623. @@ -311180,6 +352552,13 @@ public Builder clearOneof2623() { return this; } + /** + * int32 oneof_2624 = 2624; + * @return Whether the oneof2624 field is set. + */ + public boolean hasOneof2624() { + return hugeOneofCase_ == 2624; + } /** * int32 oneof_2624 = 2624; * @return The oneof2624. @@ -311214,6 +352593,13 @@ public Builder clearOneof2624() { return this; } + /** + * int32 oneof_2625 = 2625; + * @return Whether the oneof2625 field is set. + */ + public boolean hasOneof2625() { + return hugeOneofCase_ == 2625; + } /** * int32 oneof_2625 = 2625; * @return The oneof2625. @@ -311248,6 +352634,13 @@ public Builder clearOneof2625() { return this; } + /** + * int32 oneof_2626 = 2626; + * @return Whether the oneof2626 field is set. + */ + public boolean hasOneof2626() { + return hugeOneofCase_ == 2626; + } /** * int32 oneof_2626 = 2626; * @return The oneof2626. @@ -311282,6 +352675,13 @@ public Builder clearOneof2626() { return this; } + /** + * int32 oneof_2627 = 2627; + * @return Whether the oneof2627 field is set. + */ + public boolean hasOneof2627() { + return hugeOneofCase_ == 2627; + } /** * int32 oneof_2627 = 2627; * @return The oneof2627. @@ -311316,6 +352716,13 @@ public Builder clearOneof2627() { return this; } + /** + * int32 oneof_2628 = 2628; + * @return Whether the oneof2628 field is set. + */ + public boolean hasOneof2628() { + return hugeOneofCase_ == 2628; + } /** * int32 oneof_2628 = 2628; * @return The oneof2628. @@ -311350,6 +352757,13 @@ public Builder clearOneof2628() { return this; } + /** + * int32 oneof_2629 = 2629; + * @return Whether the oneof2629 field is set. + */ + public boolean hasOneof2629() { + return hugeOneofCase_ == 2629; + } /** * int32 oneof_2629 = 2629; * @return The oneof2629. @@ -311384,6 +352798,13 @@ public Builder clearOneof2629() { return this; } + /** + * int32 oneof_2630 = 2630; + * @return Whether the oneof2630 field is set. + */ + public boolean hasOneof2630() { + return hugeOneofCase_ == 2630; + } /** * int32 oneof_2630 = 2630; * @return The oneof2630. @@ -311418,6 +352839,13 @@ public Builder clearOneof2630() { return this; } + /** + * int32 oneof_2631 = 2631; + * @return Whether the oneof2631 field is set. + */ + public boolean hasOneof2631() { + return hugeOneofCase_ == 2631; + } /** * int32 oneof_2631 = 2631; * @return The oneof2631. @@ -311452,6 +352880,13 @@ public Builder clearOneof2631() { return this; } + /** + * int32 oneof_2632 = 2632; + * @return Whether the oneof2632 field is set. + */ + public boolean hasOneof2632() { + return hugeOneofCase_ == 2632; + } /** * int32 oneof_2632 = 2632; * @return The oneof2632. @@ -311486,6 +352921,13 @@ public Builder clearOneof2632() { return this; } + /** + * int32 oneof_2633 = 2633; + * @return Whether the oneof2633 field is set. + */ + public boolean hasOneof2633() { + return hugeOneofCase_ == 2633; + } /** * int32 oneof_2633 = 2633; * @return The oneof2633. @@ -311520,6 +352962,13 @@ public Builder clearOneof2633() { return this; } + /** + * int32 oneof_2634 = 2634; + * @return Whether the oneof2634 field is set. + */ + public boolean hasOneof2634() { + return hugeOneofCase_ == 2634; + } /** * int32 oneof_2634 = 2634; * @return The oneof2634. @@ -311554,6 +353003,13 @@ public Builder clearOneof2634() { return this; } + /** + * int32 oneof_2635 = 2635; + * @return Whether the oneof2635 field is set. + */ + public boolean hasOneof2635() { + return hugeOneofCase_ == 2635; + } /** * int32 oneof_2635 = 2635; * @return The oneof2635. @@ -311588,6 +353044,13 @@ public Builder clearOneof2635() { return this; } + /** + * int32 oneof_2636 = 2636; + * @return Whether the oneof2636 field is set. + */ + public boolean hasOneof2636() { + return hugeOneofCase_ == 2636; + } /** * int32 oneof_2636 = 2636; * @return The oneof2636. @@ -311622,6 +353085,13 @@ public Builder clearOneof2636() { return this; } + /** + * int32 oneof_2637 = 2637; + * @return Whether the oneof2637 field is set. + */ + public boolean hasOneof2637() { + return hugeOneofCase_ == 2637; + } /** * int32 oneof_2637 = 2637; * @return The oneof2637. @@ -311656,6 +353126,13 @@ public Builder clearOneof2637() { return this; } + /** + * int32 oneof_2638 = 2638; + * @return Whether the oneof2638 field is set. + */ + public boolean hasOneof2638() { + return hugeOneofCase_ == 2638; + } /** * int32 oneof_2638 = 2638; * @return The oneof2638. @@ -311690,6 +353167,13 @@ public Builder clearOneof2638() { return this; } + /** + * int32 oneof_2639 = 2639; + * @return Whether the oneof2639 field is set. + */ + public boolean hasOneof2639() { + return hugeOneofCase_ == 2639; + } /** * int32 oneof_2639 = 2639; * @return The oneof2639. @@ -311724,6 +353208,13 @@ public Builder clearOneof2639() { return this; } + /** + * int32 oneof_2640 = 2640; + * @return Whether the oneof2640 field is set. + */ + public boolean hasOneof2640() { + return hugeOneofCase_ == 2640; + } /** * int32 oneof_2640 = 2640; * @return The oneof2640. @@ -311758,6 +353249,13 @@ public Builder clearOneof2640() { return this; } + /** + * int32 oneof_2641 = 2641; + * @return Whether the oneof2641 field is set. + */ + public boolean hasOneof2641() { + return hugeOneofCase_ == 2641; + } /** * int32 oneof_2641 = 2641; * @return The oneof2641. @@ -311792,6 +353290,13 @@ public Builder clearOneof2641() { return this; } + /** + * int32 oneof_2642 = 2642; + * @return Whether the oneof2642 field is set. + */ + public boolean hasOneof2642() { + return hugeOneofCase_ == 2642; + } /** * int32 oneof_2642 = 2642; * @return The oneof2642. @@ -311826,6 +353331,13 @@ public Builder clearOneof2642() { return this; } + /** + * int32 oneof_2643 = 2643; + * @return Whether the oneof2643 field is set. + */ + public boolean hasOneof2643() { + return hugeOneofCase_ == 2643; + } /** * int32 oneof_2643 = 2643; * @return The oneof2643. @@ -311860,6 +353372,13 @@ public Builder clearOneof2643() { return this; } + /** + * int32 oneof_2644 = 2644; + * @return Whether the oneof2644 field is set. + */ + public boolean hasOneof2644() { + return hugeOneofCase_ == 2644; + } /** * int32 oneof_2644 = 2644; * @return The oneof2644. @@ -311894,6 +353413,13 @@ public Builder clearOneof2644() { return this; } + /** + * int32 oneof_2645 = 2645; + * @return Whether the oneof2645 field is set. + */ + public boolean hasOneof2645() { + return hugeOneofCase_ == 2645; + } /** * int32 oneof_2645 = 2645; * @return The oneof2645. @@ -311928,6 +353454,13 @@ public Builder clearOneof2645() { return this; } + /** + * int32 oneof_2646 = 2646; + * @return Whether the oneof2646 field is set. + */ + public boolean hasOneof2646() { + return hugeOneofCase_ == 2646; + } /** * int32 oneof_2646 = 2646; * @return The oneof2646. @@ -311962,6 +353495,13 @@ public Builder clearOneof2646() { return this; } + /** + * int32 oneof_2647 = 2647; + * @return Whether the oneof2647 field is set. + */ + public boolean hasOneof2647() { + return hugeOneofCase_ == 2647; + } /** * int32 oneof_2647 = 2647; * @return The oneof2647. @@ -311996,6 +353536,13 @@ public Builder clearOneof2647() { return this; } + /** + * int32 oneof_2648 = 2648; + * @return Whether the oneof2648 field is set. + */ + public boolean hasOneof2648() { + return hugeOneofCase_ == 2648; + } /** * int32 oneof_2648 = 2648; * @return The oneof2648. @@ -312030,6 +353577,13 @@ public Builder clearOneof2648() { return this; } + /** + * int32 oneof_2649 = 2649; + * @return Whether the oneof2649 field is set. + */ + public boolean hasOneof2649() { + return hugeOneofCase_ == 2649; + } /** * int32 oneof_2649 = 2649; * @return The oneof2649. @@ -312064,6 +353618,13 @@ public Builder clearOneof2649() { return this; } + /** + * int32 oneof_2650 = 2650; + * @return Whether the oneof2650 field is set. + */ + public boolean hasOneof2650() { + return hugeOneofCase_ == 2650; + } /** * int32 oneof_2650 = 2650; * @return The oneof2650. @@ -312098,6 +353659,13 @@ public Builder clearOneof2650() { return this; } + /** + * int32 oneof_2651 = 2651; + * @return Whether the oneof2651 field is set. + */ + public boolean hasOneof2651() { + return hugeOneofCase_ == 2651; + } /** * int32 oneof_2651 = 2651; * @return The oneof2651. @@ -312132,6 +353700,13 @@ public Builder clearOneof2651() { return this; } + /** + * int32 oneof_2652 = 2652; + * @return Whether the oneof2652 field is set. + */ + public boolean hasOneof2652() { + return hugeOneofCase_ == 2652; + } /** * int32 oneof_2652 = 2652; * @return The oneof2652. @@ -312166,6 +353741,13 @@ public Builder clearOneof2652() { return this; } + /** + * int32 oneof_2653 = 2653; + * @return Whether the oneof2653 field is set. + */ + public boolean hasOneof2653() { + return hugeOneofCase_ == 2653; + } /** * int32 oneof_2653 = 2653; * @return The oneof2653. @@ -312200,6 +353782,13 @@ public Builder clearOneof2653() { return this; } + /** + * int32 oneof_2654 = 2654; + * @return Whether the oneof2654 field is set. + */ + public boolean hasOneof2654() { + return hugeOneofCase_ == 2654; + } /** * int32 oneof_2654 = 2654; * @return The oneof2654. @@ -312234,6 +353823,13 @@ public Builder clearOneof2654() { return this; } + /** + * int32 oneof_2655 = 2655; + * @return Whether the oneof2655 field is set. + */ + public boolean hasOneof2655() { + return hugeOneofCase_ == 2655; + } /** * int32 oneof_2655 = 2655; * @return The oneof2655. @@ -312268,6 +353864,13 @@ public Builder clearOneof2655() { return this; } + /** + * int32 oneof_2656 = 2656; + * @return Whether the oneof2656 field is set. + */ + public boolean hasOneof2656() { + return hugeOneofCase_ == 2656; + } /** * int32 oneof_2656 = 2656; * @return The oneof2656. @@ -312302,6 +353905,13 @@ public Builder clearOneof2656() { return this; } + /** + * int32 oneof_2657 = 2657; + * @return Whether the oneof2657 field is set. + */ + public boolean hasOneof2657() { + return hugeOneofCase_ == 2657; + } /** * int32 oneof_2657 = 2657; * @return The oneof2657. @@ -312336,6 +353946,13 @@ public Builder clearOneof2657() { return this; } + /** + * int32 oneof_2658 = 2658; + * @return Whether the oneof2658 field is set. + */ + public boolean hasOneof2658() { + return hugeOneofCase_ == 2658; + } /** * int32 oneof_2658 = 2658; * @return The oneof2658. @@ -312370,6 +353987,13 @@ public Builder clearOneof2658() { return this; } + /** + * int32 oneof_2659 = 2659; + * @return Whether the oneof2659 field is set. + */ + public boolean hasOneof2659() { + return hugeOneofCase_ == 2659; + } /** * int32 oneof_2659 = 2659; * @return The oneof2659. @@ -312404,6 +354028,13 @@ public Builder clearOneof2659() { return this; } + /** + * int32 oneof_2660 = 2660; + * @return Whether the oneof2660 field is set. + */ + public boolean hasOneof2660() { + return hugeOneofCase_ == 2660; + } /** * int32 oneof_2660 = 2660; * @return The oneof2660. @@ -312438,6 +354069,13 @@ public Builder clearOneof2660() { return this; } + /** + * int32 oneof_2661 = 2661; + * @return Whether the oneof2661 field is set. + */ + public boolean hasOneof2661() { + return hugeOneofCase_ == 2661; + } /** * int32 oneof_2661 = 2661; * @return The oneof2661. @@ -312472,6 +354110,13 @@ public Builder clearOneof2661() { return this; } + /** + * int32 oneof_2662 = 2662; + * @return Whether the oneof2662 field is set. + */ + public boolean hasOneof2662() { + return hugeOneofCase_ == 2662; + } /** * int32 oneof_2662 = 2662; * @return The oneof2662. @@ -312506,6 +354151,13 @@ public Builder clearOneof2662() { return this; } + /** + * int32 oneof_2663 = 2663; + * @return Whether the oneof2663 field is set. + */ + public boolean hasOneof2663() { + return hugeOneofCase_ == 2663; + } /** * int32 oneof_2663 = 2663; * @return The oneof2663. @@ -312540,6 +354192,13 @@ public Builder clearOneof2663() { return this; } + /** + * int32 oneof_2664 = 2664; + * @return Whether the oneof2664 field is set. + */ + public boolean hasOneof2664() { + return hugeOneofCase_ == 2664; + } /** * int32 oneof_2664 = 2664; * @return The oneof2664. @@ -312574,6 +354233,13 @@ public Builder clearOneof2664() { return this; } + /** + * int32 oneof_2665 = 2665; + * @return Whether the oneof2665 field is set. + */ + public boolean hasOneof2665() { + return hugeOneofCase_ == 2665; + } /** * int32 oneof_2665 = 2665; * @return The oneof2665. @@ -312608,6 +354274,13 @@ public Builder clearOneof2665() { return this; } + /** + * int32 oneof_2666 = 2666; + * @return Whether the oneof2666 field is set. + */ + public boolean hasOneof2666() { + return hugeOneofCase_ == 2666; + } /** * int32 oneof_2666 = 2666; * @return The oneof2666. @@ -312642,6 +354315,13 @@ public Builder clearOneof2666() { return this; } + /** + * int32 oneof_2667 = 2667; + * @return Whether the oneof2667 field is set. + */ + public boolean hasOneof2667() { + return hugeOneofCase_ == 2667; + } /** * int32 oneof_2667 = 2667; * @return The oneof2667. @@ -312676,6 +354356,13 @@ public Builder clearOneof2667() { return this; } + /** + * int32 oneof_2668 = 2668; + * @return Whether the oneof2668 field is set. + */ + public boolean hasOneof2668() { + return hugeOneofCase_ == 2668; + } /** * int32 oneof_2668 = 2668; * @return The oneof2668. @@ -312710,6 +354397,13 @@ public Builder clearOneof2668() { return this; } + /** + * int32 oneof_2669 = 2669; + * @return Whether the oneof2669 field is set. + */ + public boolean hasOneof2669() { + return hugeOneofCase_ == 2669; + } /** * int32 oneof_2669 = 2669; * @return The oneof2669. @@ -312744,6 +354438,13 @@ public Builder clearOneof2669() { return this; } + /** + * int32 oneof_2670 = 2670; + * @return Whether the oneof2670 field is set. + */ + public boolean hasOneof2670() { + return hugeOneofCase_ == 2670; + } /** * int32 oneof_2670 = 2670; * @return The oneof2670. @@ -312778,6 +354479,13 @@ public Builder clearOneof2670() { return this; } + /** + * int32 oneof_2671 = 2671; + * @return Whether the oneof2671 field is set. + */ + public boolean hasOneof2671() { + return hugeOneofCase_ == 2671; + } /** * int32 oneof_2671 = 2671; * @return The oneof2671. @@ -312812,6 +354520,13 @@ public Builder clearOneof2671() { return this; } + /** + * int32 oneof_2672 = 2672; + * @return Whether the oneof2672 field is set. + */ + public boolean hasOneof2672() { + return hugeOneofCase_ == 2672; + } /** * int32 oneof_2672 = 2672; * @return The oneof2672. @@ -312846,6 +354561,13 @@ public Builder clearOneof2672() { return this; } + /** + * int32 oneof_2673 = 2673; + * @return Whether the oneof2673 field is set. + */ + public boolean hasOneof2673() { + return hugeOneofCase_ == 2673; + } /** * int32 oneof_2673 = 2673; * @return The oneof2673. @@ -312880,6 +354602,13 @@ public Builder clearOneof2673() { return this; } + /** + * int32 oneof_2674 = 2674; + * @return Whether the oneof2674 field is set. + */ + public boolean hasOneof2674() { + return hugeOneofCase_ == 2674; + } /** * int32 oneof_2674 = 2674; * @return The oneof2674. @@ -312914,6 +354643,13 @@ public Builder clearOneof2674() { return this; } + /** + * int32 oneof_2675 = 2675; + * @return Whether the oneof2675 field is set. + */ + public boolean hasOneof2675() { + return hugeOneofCase_ == 2675; + } /** * int32 oneof_2675 = 2675; * @return The oneof2675. @@ -312948,6 +354684,13 @@ public Builder clearOneof2675() { return this; } + /** + * int32 oneof_2676 = 2676; + * @return Whether the oneof2676 field is set. + */ + public boolean hasOneof2676() { + return hugeOneofCase_ == 2676; + } /** * int32 oneof_2676 = 2676; * @return The oneof2676. @@ -312982,6 +354725,13 @@ public Builder clearOneof2676() { return this; } + /** + * int32 oneof_2677 = 2677; + * @return Whether the oneof2677 field is set. + */ + public boolean hasOneof2677() { + return hugeOneofCase_ == 2677; + } /** * int32 oneof_2677 = 2677; * @return The oneof2677. @@ -313016,6 +354766,13 @@ public Builder clearOneof2677() { return this; } + /** + * int32 oneof_2678 = 2678; + * @return Whether the oneof2678 field is set. + */ + public boolean hasOneof2678() { + return hugeOneofCase_ == 2678; + } /** * int32 oneof_2678 = 2678; * @return The oneof2678. @@ -313050,6 +354807,13 @@ public Builder clearOneof2678() { return this; } + /** + * int32 oneof_2679 = 2679; + * @return Whether the oneof2679 field is set. + */ + public boolean hasOneof2679() { + return hugeOneofCase_ == 2679; + } /** * int32 oneof_2679 = 2679; * @return The oneof2679. @@ -313084,6 +354848,13 @@ public Builder clearOneof2679() { return this; } + /** + * int32 oneof_2680 = 2680; + * @return Whether the oneof2680 field is set. + */ + public boolean hasOneof2680() { + return hugeOneofCase_ == 2680; + } /** * int32 oneof_2680 = 2680; * @return The oneof2680. @@ -313118,6 +354889,13 @@ public Builder clearOneof2680() { return this; } + /** + * int32 oneof_2681 = 2681; + * @return Whether the oneof2681 field is set. + */ + public boolean hasOneof2681() { + return hugeOneofCase_ == 2681; + } /** * int32 oneof_2681 = 2681; * @return The oneof2681. @@ -313152,6 +354930,13 @@ public Builder clearOneof2681() { return this; } + /** + * int32 oneof_2682 = 2682; + * @return Whether the oneof2682 field is set. + */ + public boolean hasOneof2682() { + return hugeOneofCase_ == 2682; + } /** * int32 oneof_2682 = 2682; * @return The oneof2682. @@ -313186,6 +354971,13 @@ public Builder clearOneof2682() { return this; } + /** + * int32 oneof_2683 = 2683; + * @return Whether the oneof2683 field is set. + */ + public boolean hasOneof2683() { + return hugeOneofCase_ == 2683; + } /** * int32 oneof_2683 = 2683; * @return The oneof2683. @@ -313220,6 +355012,13 @@ public Builder clearOneof2683() { return this; } + /** + * int32 oneof_2684 = 2684; + * @return Whether the oneof2684 field is set. + */ + public boolean hasOneof2684() { + return hugeOneofCase_ == 2684; + } /** * int32 oneof_2684 = 2684; * @return The oneof2684. @@ -313254,6 +355053,13 @@ public Builder clearOneof2684() { return this; } + /** + * int32 oneof_2685 = 2685; + * @return Whether the oneof2685 field is set. + */ + public boolean hasOneof2685() { + return hugeOneofCase_ == 2685; + } /** * int32 oneof_2685 = 2685; * @return The oneof2685. @@ -313288,6 +355094,13 @@ public Builder clearOneof2685() { return this; } + /** + * int32 oneof_2686 = 2686; + * @return Whether the oneof2686 field is set. + */ + public boolean hasOneof2686() { + return hugeOneofCase_ == 2686; + } /** * int32 oneof_2686 = 2686; * @return The oneof2686. @@ -313322,6 +355135,13 @@ public Builder clearOneof2686() { return this; } + /** + * int32 oneof_2687 = 2687; + * @return Whether the oneof2687 field is set. + */ + public boolean hasOneof2687() { + return hugeOneofCase_ == 2687; + } /** * int32 oneof_2687 = 2687; * @return The oneof2687. @@ -313356,6 +355176,13 @@ public Builder clearOneof2687() { return this; } + /** + * int32 oneof_2688 = 2688; + * @return Whether the oneof2688 field is set. + */ + public boolean hasOneof2688() { + return hugeOneofCase_ == 2688; + } /** * int32 oneof_2688 = 2688; * @return The oneof2688. @@ -313390,6 +355217,13 @@ public Builder clearOneof2688() { return this; } + /** + * int32 oneof_2689 = 2689; + * @return Whether the oneof2689 field is set. + */ + public boolean hasOneof2689() { + return hugeOneofCase_ == 2689; + } /** * int32 oneof_2689 = 2689; * @return The oneof2689. @@ -313424,6 +355258,13 @@ public Builder clearOneof2689() { return this; } + /** + * int32 oneof_2690 = 2690; + * @return Whether the oneof2690 field is set. + */ + public boolean hasOneof2690() { + return hugeOneofCase_ == 2690; + } /** * int32 oneof_2690 = 2690; * @return The oneof2690. @@ -313458,6 +355299,13 @@ public Builder clearOneof2690() { return this; } + /** + * int32 oneof_2691 = 2691; + * @return Whether the oneof2691 field is set. + */ + public boolean hasOneof2691() { + return hugeOneofCase_ == 2691; + } /** * int32 oneof_2691 = 2691; * @return The oneof2691. @@ -313492,6 +355340,13 @@ public Builder clearOneof2691() { return this; } + /** + * int32 oneof_2692 = 2692; + * @return Whether the oneof2692 field is set. + */ + public boolean hasOneof2692() { + return hugeOneofCase_ == 2692; + } /** * int32 oneof_2692 = 2692; * @return The oneof2692. @@ -313526,6 +355381,13 @@ public Builder clearOneof2692() { return this; } + /** + * int32 oneof_2693 = 2693; + * @return Whether the oneof2693 field is set. + */ + public boolean hasOneof2693() { + return hugeOneofCase_ == 2693; + } /** * int32 oneof_2693 = 2693; * @return The oneof2693. @@ -313560,6 +355422,13 @@ public Builder clearOneof2693() { return this; } + /** + * int32 oneof_2694 = 2694; + * @return Whether the oneof2694 field is set. + */ + public boolean hasOneof2694() { + return hugeOneofCase_ == 2694; + } /** * int32 oneof_2694 = 2694; * @return The oneof2694. @@ -313594,6 +355463,13 @@ public Builder clearOneof2694() { return this; } + /** + * int32 oneof_2695 = 2695; + * @return Whether the oneof2695 field is set. + */ + public boolean hasOneof2695() { + return hugeOneofCase_ == 2695; + } /** * int32 oneof_2695 = 2695; * @return The oneof2695. @@ -313628,6 +355504,13 @@ public Builder clearOneof2695() { return this; } + /** + * int32 oneof_2696 = 2696; + * @return Whether the oneof2696 field is set. + */ + public boolean hasOneof2696() { + return hugeOneofCase_ == 2696; + } /** * int32 oneof_2696 = 2696; * @return The oneof2696. @@ -313662,6 +355545,13 @@ public Builder clearOneof2696() { return this; } + /** + * int32 oneof_2697 = 2697; + * @return Whether the oneof2697 field is set. + */ + public boolean hasOneof2697() { + return hugeOneofCase_ == 2697; + } /** * int32 oneof_2697 = 2697; * @return The oneof2697. @@ -313696,6 +355586,13 @@ public Builder clearOneof2697() { return this; } + /** + * int32 oneof_2698 = 2698; + * @return Whether the oneof2698 field is set. + */ + public boolean hasOneof2698() { + return hugeOneofCase_ == 2698; + } /** * int32 oneof_2698 = 2698; * @return The oneof2698. @@ -313730,6 +355627,13 @@ public Builder clearOneof2698() { return this; } + /** + * int32 oneof_2699 = 2699; + * @return Whether the oneof2699 field is set. + */ + public boolean hasOneof2699() { + return hugeOneofCase_ == 2699; + } /** * int32 oneof_2699 = 2699; * @return The oneof2699. @@ -313764,6 +355668,13 @@ public Builder clearOneof2699() { return this; } + /** + * int32 oneof_2700 = 2700; + * @return Whether the oneof2700 field is set. + */ + public boolean hasOneof2700() { + return hugeOneofCase_ == 2700; + } /** * int32 oneof_2700 = 2700; * @return The oneof2700. @@ -313798,6 +355709,13 @@ public Builder clearOneof2700() { return this; } + /** + * int32 oneof_2701 = 2701; + * @return Whether the oneof2701 field is set. + */ + public boolean hasOneof2701() { + return hugeOneofCase_ == 2701; + } /** * int32 oneof_2701 = 2701; * @return The oneof2701. @@ -313832,6 +355750,13 @@ public Builder clearOneof2701() { return this; } + /** + * int32 oneof_2702 = 2702; + * @return Whether the oneof2702 field is set. + */ + public boolean hasOneof2702() { + return hugeOneofCase_ == 2702; + } /** * int32 oneof_2702 = 2702; * @return The oneof2702. @@ -313866,6 +355791,13 @@ public Builder clearOneof2702() { return this; } + /** + * int32 oneof_2703 = 2703; + * @return Whether the oneof2703 field is set. + */ + public boolean hasOneof2703() { + return hugeOneofCase_ == 2703; + } /** * int32 oneof_2703 = 2703; * @return The oneof2703. @@ -313900,6 +355832,13 @@ public Builder clearOneof2703() { return this; } + /** + * int32 oneof_2704 = 2704; + * @return Whether the oneof2704 field is set. + */ + public boolean hasOneof2704() { + return hugeOneofCase_ == 2704; + } /** * int32 oneof_2704 = 2704; * @return The oneof2704. @@ -313934,6 +355873,13 @@ public Builder clearOneof2704() { return this; } + /** + * int32 oneof_2705 = 2705; + * @return Whether the oneof2705 field is set. + */ + public boolean hasOneof2705() { + return hugeOneofCase_ == 2705; + } /** * int32 oneof_2705 = 2705; * @return The oneof2705. @@ -313968,6 +355914,13 @@ public Builder clearOneof2705() { return this; } + /** + * int32 oneof_2706 = 2706; + * @return Whether the oneof2706 field is set. + */ + public boolean hasOneof2706() { + return hugeOneofCase_ == 2706; + } /** * int32 oneof_2706 = 2706; * @return The oneof2706. @@ -314002,6 +355955,13 @@ public Builder clearOneof2706() { return this; } + /** + * int32 oneof_2707 = 2707; + * @return Whether the oneof2707 field is set. + */ + public boolean hasOneof2707() { + return hugeOneofCase_ == 2707; + } /** * int32 oneof_2707 = 2707; * @return The oneof2707. @@ -314036,6 +355996,13 @@ public Builder clearOneof2707() { return this; } + /** + * int32 oneof_2708 = 2708; + * @return Whether the oneof2708 field is set. + */ + public boolean hasOneof2708() { + return hugeOneofCase_ == 2708; + } /** * int32 oneof_2708 = 2708; * @return The oneof2708. @@ -314070,6 +356037,13 @@ public Builder clearOneof2708() { return this; } + /** + * int32 oneof_2709 = 2709; + * @return Whether the oneof2709 field is set. + */ + public boolean hasOneof2709() { + return hugeOneofCase_ == 2709; + } /** * int32 oneof_2709 = 2709; * @return The oneof2709. @@ -314104,6 +356078,13 @@ public Builder clearOneof2709() { return this; } + /** + * int32 oneof_2710 = 2710; + * @return Whether the oneof2710 field is set. + */ + public boolean hasOneof2710() { + return hugeOneofCase_ == 2710; + } /** * int32 oneof_2710 = 2710; * @return The oneof2710. @@ -314138,6 +356119,13 @@ public Builder clearOneof2710() { return this; } + /** + * int32 oneof_2711 = 2711; + * @return Whether the oneof2711 field is set. + */ + public boolean hasOneof2711() { + return hugeOneofCase_ == 2711; + } /** * int32 oneof_2711 = 2711; * @return The oneof2711. @@ -314172,6 +356160,13 @@ public Builder clearOneof2711() { return this; } + /** + * int32 oneof_2712 = 2712; + * @return Whether the oneof2712 field is set. + */ + public boolean hasOneof2712() { + return hugeOneofCase_ == 2712; + } /** * int32 oneof_2712 = 2712; * @return The oneof2712. @@ -314206,6 +356201,13 @@ public Builder clearOneof2712() { return this; } + /** + * int32 oneof_2713 = 2713; + * @return Whether the oneof2713 field is set. + */ + public boolean hasOneof2713() { + return hugeOneofCase_ == 2713; + } /** * int32 oneof_2713 = 2713; * @return The oneof2713. @@ -314240,6 +356242,13 @@ public Builder clearOneof2713() { return this; } + /** + * int32 oneof_2714 = 2714; + * @return Whether the oneof2714 field is set. + */ + public boolean hasOneof2714() { + return hugeOneofCase_ == 2714; + } /** * int32 oneof_2714 = 2714; * @return The oneof2714. @@ -314274,6 +356283,13 @@ public Builder clearOneof2714() { return this; } + /** + * int32 oneof_2715 = 2715; + * @return Whether the oneof2715 field is set. + */ + public boolean hasOneof2715() { + return hugeOneofCase_ == 2715; + } /** * int32 oneof_2715 = 2715; * @return The oneof2715. @@ -314308,6 +356324,13 @@ public Builder clearOneof2715() { return this; } + /** + * int32 oneof_2716 = 2716; + * @return Whether the oneof2716 field is set. + */ + public boolean hasOneof2716() { + return hugeOneofCase_ == 2716; + } /** * int32 oneof_2716 = 2716; * @return The oneof2716. @@ -314342,6 +356365,13 @@ public Builder clearOneof2716() { return this; } + /** + * int32 oneof_2717 = 2717; + * @return Whether the oneof2717 field is set. + */ + public boolean hasOneof2717() { + return hugeOneofCase_ == 2717; + } /** * int32 oneof_2717 = 2717; * @return The oneof2717. @@ -314376,6 +356406,13 @@ public Builder clearOneof2717() { return this; } + /** + * int32 oneof_2718 = 2718; + * @return Whether the oneof2718 field is set. + */ + public boolean hasOneof2718() { + return hugeOneofCase_ == 2718; + } /** * int32 oneof_2718 = 2718; * @return The oneof2718. @@ -314410,6 +356447,13 @@ public Builder clearOneof2718() { return this; } + /** + * int32 oneof_2719 = 2719; + * @return Whether the oneof2719 field is set. + */ + public boolean hasOneof2719() { + return hugeOneofCase_ == 2719; + } /** * int32 oneof_2719 = 2719; * @return The oneof2719. @@ -314444,6 +356488,13 @@ public Builder clearOneof2719() { return this; } + /** + * int32 oneof_2720 = 2720; + * @return Whether the oneof2720 field is set. + */ + public boolean hasOneof2720() { + return hugeOneofCase_ == 2720; + } /** * int32 oneof_2720 = 2720; * @return The oneof2720. @@ -314478,6 +356529,13 @@ public Builder clearOneof2720() { return this; } + /** + * int32 oneof_2721 = 2721; + * @return Whether the oneof2721 field is set. + */ + public boolean hasOneof2721() { + return hugeOneofCase_ == 2721; + } /** * int32 oneof_2721 = 2721; * @return The oneof2721. @@ -314512,6 +356570,13 @@ public Builder clearOneof2721() { return this; } + /** + * int32 oneof_2722 = 2722; + * @return Whether the oneof2722 field is set. + */ + public boolean hasOneof2722() { + return hugeOneofCase_ == 2722; + } /** * int32 oneof_2722 = 2722; * @return The oneof2722. @@ -314546,6 +356611,13 @@ public Builder clearOneof2722() { return this; } + /** + * int32 oneof_2723 = 2723; + * @return Whether the oneof2723 field is set. + */ + public boolean hasOneof2723() { + return hugeOneofCase_ == 2723; + } /** * int32 oneof_2723 = 2723; * @return The oneof2723. @@ -314580,6 +356652,13 @@ public Builder clearOneof2723() { return this; } + /** + * int32 oneof_2724 = 2724; + * @return Whether the oneof2724 field is set. + */ + public boolean hasOneof2724() { + return hugeOneofCase_ == 2724; + } /** * int32 oneof_2724 = 2724; * @return The oneof2724. @@ -314614,6 +356693,13 @@ public Builder clearOneof2724() { return this; } + /** + * int32 oneof_2725 = 2725; + * @return Whether the oneof2725 field is set. + */ + public boolean hasOneof2725() { + return hugeOneofCase_ == 2725; + } /** * int32 oneof_2725 = 2725; * @return The oneof2725. @@ -314648,6 +356734,13 @@ public Builder clearOneof2725() { return this; } + /** + * int32 oneof_2726 = 2726; + * @return Whether the oneof2726 field is set. + */ + public boolean hasOneof2726() { + return hugeOneofCase_ == 2726; + } /** * int32 oneof_2726 = 2726; * @return The oneof2726. @@ -314682,6 +356775,13 @@ public Builder clearOneof2726() { return this; } + /** + * int32 oneof_2727 = 2727; + * @return Whether the oneof2727 field is set. + */ + public boolean hasOneof2727() { + return hugeOneofCase_ == 2727; + } /** * int32 oneof_2727 = 2727; * @return The oneof2727. @@ -314716,6 +356816,13 @@ public Builder clearOneof2727() { return this; } + /** + * int32 oneof_2728 = 2728; + * @return Whether the oneof2728 field is set. + */ + public boolean hasOneof2728() { + return hugeOneofCase_ == 2728; + } /** * int32 oneof_2728 = 2728; * @return The oneof2728. @@ -314750,6 +356857,13 @@ public Builder clearOneof2728() { return this; } + /** + * int32 oneof_2729 = 2729; + * @return Whether the oneof2729 field is set. + */ + public boolean hasOneof2729() { + return hugeOneofCase_ == 2729; + } /** * int32 oneof_2729 = 2729; * @return The oneof2729. @@ -314784,6 +356898,13 @@ public Builder clearOneof2729() { return this; } + /** + * int32 oneof_2730 = 2730; + * @return Whether the oneof2730 field is set. + */ + public boolean hasOneof2730() { + return hugeOneofCase_ == 2730; + } /** * int32 oneof_2730 = 2730; * @return The oneof2730. @@ -314818,6 +356939,13 @@ public Builder clearOneof2730() { return this; } + /** + * int32 oneof_2731 = 2731; + * @return Whether the oneof2731 field is set. + */ + public boolean hasOneof2731() { + return hugeOneofCase_ == 2731; + } /** * int32 oneof_2731 = 2731; * @return The oneof2731. @@ -314852,6 +356980,13 @@ public Builder clearOneof2731() { return this; } + /** + * int32 oneof_2732 = 2732; + * @return Whether the oneof2732 field is set. + */ + public boolean hasOneof2732() { + return hugeOneofCase_ == 2732; + } /** * int32 oneof_2732 = 2732; * @return The oneof2732. @@ -314886,6 +357021,13 @@ public Builder clearOneof2732() { return this; } + /** + * int32 oneof_2733 = 2733; + * @return Whether the oneof2733 field is set. + */ + public boolean hasOneof2733() { + return hugeOneofCase_ == 2733; + } /** * int32 oneof_2733 = 2733; * @return The oneof2733. @@ -314920,6 +357062,13 @@ public Builder clearOneof2733() { return this; } + /** + * int32 oneof_2734 = 2734; + * @return Whether the oneof2734 field is set. + */ + public boolean hasOneof2734() { + return hugeOneofCase_ == 2734; + } /** * int32 oneof_2734 = 2734; * @return The oneof2734. @@ -314954,6 +357103,13 @@ public Builder clearOneof2734() { return this; } + /** + * int32 oneof_2735 = 2735; + * @return Whether the oneof2735 field is set. + */ + public boolean hasOneof2735() { + return hugeOneofCase_ == 2735; + } /** * int32 oneof_2735 = 2735; * @return The oneof2735. @@ -314988,6 +357144,13 @@ public Builder clearOneof2735() { return this; } + /** + * int32 oneof_2736 = 2736; + * @return Whether the oneof2736 field is set. + */ + public boolean hasOneof2736() { + return hugeOneofCase_ == 2736; + } /** * int32 oneof_2736 = 2736; * @return The oneof2736. @@ -315022,6 +357185,13 @@ public Builder clearOneof2736() { return this; } + /** + * int32 oneof_2737 = 2737; + * @return Whether the oneof2737 field is set. + */ + public boolean hasOneof2737() { + return hugeOneofCase_ == 2737; + } /** * int32 oneof_2737 = 2737; * @return The oneof2737. @@ -315056,6 +357226,13 @@ public Builder clearOneof2737() { return this; } + /** + * int32 oneof_2738 = 2738; + * @return Whether the oneof2738 field is set. + */ + public boolean hasOneof2738() { + return hugeOneofCase_ == 2738; + } /** * int32 oneof_2738 = 2738; * @return The oneof2738. @@ -315090,6 +357267,13 @@ public Builder clearOneof2738() { return this; } + /** + * int32 oneof_2739 = 2739; + * @return Whether the oneof2739 field is set. + */ + public boolean hasOneof2739() { + return hugeOneofCase_ == 2739; + } /** * int32 oneof_2739 = 2739; * @return The oneof2739. @@ -315124,6 +357308,13 @@ public Builder clearOneof2739() { return this; } + /** + * int32 oneof_2740 = 2740; + * @return Whether the oneof2740 field is set. + */ + public boolean hasOneof2740() { + return hugeOneofCase_ == 2740; + } /** * int32 oneof_2740 = 2740; * @return The oneof2740. @@ -315158,6 +357349,13 @@ public Builder clearOneof2740() { return this; } + /** + * int32 oneof_2741 = 2741; + * @return Whether the oneof2741 field is set. + */ + public boolean hasOneof2741() { + return hugeOneofCase_ == 2741; + } /** * int32 oneof_2741 = 2741; * @return The oneof2741. @@ -315192,6 +357390,13 @@ public Builder clearOneof2741() { return this; } + /** + * int32 oneof_2742 = 2742; + * @return Whether the oneof2742 field is set. + */ + public boolean hasOneof2742() { + return hugeOneofCase_ == 2742; + } /** * int32 oneof_2742 = 2742; * @return The oneof2742. @@ -315226,6 +357431,13 @@ public Builder clearOneof2742() { return this; } + /** + * int32 oneof_2743 = 2743; + * @return Whether the oneof2743 field is set. + */ + public boolean hasOneof2743() { + return hugeOneofCase_ == 2743; + } /** * int32 oneof_2743 = 2743; * @return The oneof2743. @@ -315260,6 +357472,13 @@ public Builder clearOneof2743() { return this; } + /** + * int32 oneof_2744 = 2744; + * @return Whether the oneof2744 field is set. + */ + public boolean hasOneof2744() { + return hugeOneofCase_ == 2744; + } /** * int32 oneof_2744 = 2744; * @return The oneof2744. @@ -315294,6 +357513,13 @@ public Builder clearOneof2744() { return this; } + /** + * int32 oneof_2745 = 2745; + * @return Whether the oneof2745 field is set. + */ + public boolean hasOneof2745() { + return hugeOneofCase_ == 2745; + } /** * int32 oneof_2745 = 2745; * @return The oneof2745. @@ -315328,6 +357554,13 @@ public Builder clearOneof2745() { return this; } + /** + * int32 oneof_2746 = 2746; + * @return Whether the oneof2746 field is set. + */ + public boolean hasOneof2746() { + return hugeOneofCase_ == 2746; + } /** * int32 oneof_2746 = 2746; * @return The oneof2746. @@ -315362,6 +357595,13 @@ public Builder clearOneof2746() { return this; } + /** + * int32 oneof_2747 = 2747; + * @return Whether the oneof2747 field is set. + */ + public boolean hasOneof2747() { + return hugeOneofCase_ == 2747; + } /** * int32 oneof_2747 = 2747; * @return The oneof2747. @@ -315396,6 +357636,13 @@ public Builder clearOneof2747() { return this; } + /** + * int32 oneof_2748 = 2748; + * @return Whether the oneof2748 field is set. + */ + public boolean hasOneof2748() { + return hugeOneofCase_ == 2748; + } /** * int32 oneof_2748 = 2748; * @return The oneof2748. @@ -315430,6 +357677,13 @@ public Builder clearOneof2748() { return this; } + /** + * int32 oneof_2749 = 2749; + * @return Whether the oneof2749 field is set. + */ + public boolean hasOneof2749() { + return hugeOneofCase_ == 2749; + } /** * int32 oneof_2749 = 2749; * @return The oneof2749. @@ -315464,6 +357718,13 @@ public Builder clearOneof2749() { return this; } + /** + * int32 oneof_2750 = 2750; + * @return Whether the oneof2750 field is set. + */ + public boolean hasOneof2750() { + return hugeOneofCase_ == 2750; + } /** * int32 oneof_2750 = 2750; * @return The oneof2750. @@ -315498,6 +357759,13 @@ public Builder clearOneof2750() { return this; } + /** + * int32 oneof_2751 = 2751; + * @return Whether the oneof2751 field is set. + */ + public boolean hasOneof2751() { + return hugeOneofCase_ == 2751; + } /** * int32 oneof_2751 = 2751; * @return The oneof2751. @@ -315532,6 +357800,13 @@ public Builder clearOneof2751() { return this; } + /** + * int32 oneof_2752 = 2752; + * @return Whether the oneof2752 field is set. + */ + public boolean hasOneof2752() { + return hugeOneofCase_ == 2752; + } /** * int32 oneof_2752 = 2752; * @return The oneof2752. @@ -315566,6 +357841,13 @@ public Builder clearOneof2752() { return this; } + /** + * int32 oneof_2753 = 2753; + * @return Whether the oneof2753 field is set. + */ + public boolean hasOneof2753() { + return hugeOneofCase_ == 2753; + } /** * int32 oneof_2753 = 2753; * @return The oneof2753. @@ -315600,6 +357882,13 @@ public Builder clearOneof2753() { return this; } + /** + * int32 oneof_2754 = 2754; + * @return Whether the oneof2754 field is set. + */ + public boolean hasOneof2754() { + return hugeOneofCase_ == 2754; + } /** * int32 oneof_2754 = 2754; * @return The oneof2754. @@ -315634,6 +357923,13 @@ public Builder clearOneof2754() { return this; } + /** + * int32 oneof_2755 = 2755; + * @return Whether the oneof2755 field is set. + */ + public boolean hasOneof2755() { + return hugeOneofCase_ == 2755; + } /** * int32 oneof_2755 = 2755; * @return The oneof2755. @@ -315668,6 +357964,13 @@ public Builder clearOneof2755() { return this; } + /** + * int32 oneof_2756 = 2756; + * @return Whether the oneof2756 field is set. + */ + public boolean hasOneof2756() { + return hugeOneofCase_ == 2756; + } /** * int32 oneof_2756 = 2756; * @return The oneof2756. @@ -315702,6 +358005,13 @@ public Builder clearOneof2756() { return this; } + /** + * int32 oneof_2757 = 2757; + * @return Whether the oneof2757 field is set. + */ + public boolean hasOneof2757() { + return hugeOneofCase_ == 2757; + } /** * int32 oneof_2757 = 2757; * @return The oneof2757. @@ -315736,6 +358046,13 @@ public Builder clearOneof2757() { return this; } + /** + * int32 oneof_2758 = 2758; + * @return Whether the oneof2758 field is set. + */ + public boolean hasOneof2758() { + return hugeOneofCase_ == 2758; + } /** * int32 oneof_2758 = 2758; * @return The oneof2758. @@ -315770,6 +358087,13 @@ public Builder clearOneof2758() { return this; } + /** + * int32 oneof_2759 = 2759; + * @return Whether the oneof2759 field is set. + */ + public boolean hasOneof2759() { + return hugeOneofCase_ == 2759; + } /** * int32 oneof_2759 = 2759; * @return The oneof2759. @@ -315804,6 +358128,13 @@ public Builder clearOneof2759() { return this; } + /** + * int32 oneof_2760 = 2760; + * @return Whether the oneof2760 field is set. + */ + public boolean hasOneof2760() { + return hugeOneofCase_ == 2760; + } /** * int32 oneof_2760 = 2760; * @return The oneof2760. @@ -315838,6 +358169,13 @@ public Builder clearOneof2760() { return this; } + /** + * int32 oneof_2761 = 2761; + * @return Whether the oneof2761 field is set. + */ + public boolean hasOneof2761() { + return hugeOneofCase_ == 2761; + } /** * int32 oneof_2761 = 2761; * @return The oneof2761. @@ -315872,6 +358210,13 @@ public Builder clearOneof2761() { return this; } + /** + * int32 oneof_2762 = 2762; + * @return Whether the oneof2762 field is set. + */ + public boolean hasOneof2762() { + return hugeOneofCase_ == 2762; + } /** * int32 oneof_2762 = 2762; * @return The oneof2762. @@ -315906,6 +358251,13 @@ public Builder clearOneof2762() { return this; } + /** + * int32 oneof_2763 = 2763; + * @return Whether the oneof2763 field is set. + */ + public boolean hasOneof2763() { + return hugeOneofCase_ == 2763; + } /** * int32 oneof_2763 = 2763; * @return The oneof2763. @@ -315940,6 +358292,13 @@ public Builder clearOneof2763() { return this; } + /** + * int32 oneof_2764 = 2764; + * @return Whether the oneof2764 field is set. + */ + public boolean hasOneof2764() { + return hugeOneofCase_ == 2764; + } /** * int32 oneof_2764 = 2764; * @return The oneof2764. @@ -315974,6 +358333,13 @@ public Builder clearOneof2764() { return this; } + /** + * int32 oneof_2765 = 2765; + * @return Whether the oneof2765 field is set. + */ + public boolean hasOneof2765() { + return hugeOneofCase_ == 2765; + } /** * int32 oneof_2765 = 2765; * @return The oneof2765. @@ -316008,6 +358374,13 @@ public Builder clearOneof2765() { return this; } + /** + * int32 oneof_2766 = 2766; + * @return Whether the oneof2766 field is set. + */ + public boolean hasOneof2766() { + return hugeOneofCase_ == 2766; + } /** * int32 oneof_2766 = 2766; * @return The oneof2766. @@ -316042,6 +358415,13 @@ public Builder clearOneof2766() { return this; } + /** + * int32 oneof_2767 = 2767; + * @return Whether the oneof2767 field is set. + */ + public boolean hasOneof2767() { + return hugeOneofCase_ == 2767; + } /** * int32 oneof_2767 = 2767; * @return The oneof2767. @@ -316076,6 +358456,13 @@ public Builder clearOneof2767() { return this; } + /** + * int32 oneof_2768 = 2768; + * @return Whether the oneof2768 field is set. + */ + public boolean hasOneof2768() { + return hugeOneofCase_ == 2768; + } /** * int32 oneof_2768 = 2768; * @return The oneof2768. @@ -316110,6 +358497,13 @@ public Builder clearOneof2768() { return this; } + /** + * int32 oneof_2769 = 2769; + * @return Whether the oneof2769 field is set. + */ + public boolean hasOneof2769() { + return hugeOneofCase_ == 2769; + } /** * int32 oneof_2769 = 2769; * @return The oneof2769. @@ -316144,6 +358538,13 @@ public Builder clearOneof2769() { return this; } + /** + * int32 oneof_2770 = 2770; + * @return Whether the oneof2770 field is set. + */ + public boolean hasOneof2770() { + return hugeOneofCase_ == 2770; + } /** * int32 oneof_2770 = 2770; * @return The oneof2770. @@ -316178,6 +358579,13 @@ public Builder clearOneof2770() { return this; } + /** + * int32 oneof_2771 = 2771; + * @return Whether the oneof2771 field is set. + */ + public boolean hasOneof2771() { + return hugeOneofCase_ == 2771; + } /** * int32 oneof_2771 = 2771; * @return The oneof2771. @@ -316212,6 +358620,13 @@ public Builder clearOneof2771() { return this; } + /** + * int32 oneof_2772 = 2772; + * @return Whether the oneof2772 field is set. + */ + public boolean hasOneof2772() { + return hugeOneofCase_ == 2772; + } /** * int32 oneof_2772 = 2772; * @return The oneof2772. @@ -316246,6 +358661,13 @@ public Builder clearOneof2772() { return this; } + /** + * int32 oneof_2773 = 2773; + * @return Whether the oneof2773 field is set. + */ + public boolean hasOneof2773() { + return hugeOneofCase_ == 2773; + } /** * int32 oneof_2773 = 2773; * @return The oneof2773. @@ -316280,6 +358702,13 @@ public Builder clearOneof2773() { return this; } + /** + * int32 oneof_2774 = 2774; + * @return Whether the oneof2774 field is set. + */ + public boolean hasOneof2774() { + return hugeOneofCase_ == 2774; + } /** * int32 oneof_2774 = 2774; * @return The oneof2774. @@ -316314,6 +358743,13 @@ public Builder clearOneof2774() { return this; } + /** + * int32 oneof_2775 = 2775; + * @return Whether the oneof2775 field is set. + */ + public boolean hasOneof2775() { + return hugeOneofCase_ == 2775; + } /** * int32 oneof_2775 = 2775; * @return The oneof2775. @@ -316348,6 +358784,13 @@ public Builder clearOneof2775() { return this; } + /** + * int32 oneof_2776 = 2776; + * @return Whether the oneof2776 field is set. + */ + public boolean hasOneof2776() { + return hugeOneofCase_ == 2776; + } /** * int32 oneof_2776 = 2776; * @return The oneof2776. @@ -316382,6 +358825,13 @@ public Builder clearOneof2776() { return this; } + /** + * int32 oneof_2777 = 2777; + * @return Whether the oneof2777 field is set. + */ + public boolean hasOneof2777() { + return hugeOneofCase_ == 2777; + } /** * int32 oneof_2777 = 2777; * @return The oneof2777. @@ -316416,6 +358866,13 @@ public Builder clearOneof2777() { return this; } + /** + * int32 oneof_2778 = 2778; + * @return Whether the oneof2778 field is set. + */ + public boolean hasOneof2778() { + return hugeOneofCase_ == 2778; + } /** * int32 oneof_2778 = 2778; * @return The oneof2778. @@ -316450,6 +358907,13 @@ public Builder clearOneof2778() { return this; } + /** + * int32 oneof_2779 = 2779; + * @return Whether the oneof2779 field is set. + */ + public boolean hasOneof2779() { + return hugeOneofCase_ == 2779; + } /** * int32 oneof_2779 = 2779; * @return The oneof2779. @@ -316484,6 +358948,13 @@ public Builder clearOneof2779() { return this; } + /** + * int32 oneof_2780 = 2780; + * @return Whether the oneof2780 field is set. + */ + public boolean hasOneof2780() { + return hugeOneofCase_ == 2780; + } /** * int32 oneof_2780 = 2780; * @return The oneof2780. @@ -316518,6 +358989,13 @@ public Builder clearOneof2780() { return this; } + /** + * int32 oneof_2781 = 2781; + * @return Whether the oneof2781 field is set. + */ + public boolean hasOneof2781() { + return hugeOneofCase_ == 2781; + } /** * int32 oneof_2781 = 2781; * @return The oneof2781. @@ -316552,6 +359030,13 @@ public Builder clearOneof2781() { return this; } + /** + * int32 oneof_2782 = 2782; + * @return Whether the oneof2782 field is set. + */ + public boolean hasOneof2782() { + return hugeOneofCase_ == 2782; + } /** * int32 oneof_2782 = 2782; * @return The oneof2782. @@ -316586,6 +359071,13 @@ public Builder clearOneof2782() { return this; } + /** + * int32 oneof_2783 = 2783; + * @return Whether the oneof2783 field is set. + */ + public boolean hasOneof2783() { + return hugeOneofCase_ == 2783; + } /** * int32 oneof_2783 = 2783; * @return The oneof2783. @@ -316620,6 +359112,13 @@ public Builder clearOneof2783() { return this; } + /** + * int32 oneof_2784 = 2784; + * @return Whether the oneof2784 field is set. + */ + public boolean hasOneof2784() { + return hugeOneofCase_ == 2784; + } /** * int32 oneof_2784 = 2784; * @return The oneof2784. @@ -316654,6 +359153,13 @@ public Builder clearOneof2784() { return this; } + /** + * int32 oneof_2785 = 2785; + * @return Whether the oneof2785 field is set. + */ + public boolean hasOneof2785() { + return hugeOneofCase_ == 2785; + } /** * int32 oneof_2785 = 2785; * @return The oneof2785. @@ -316688,6 +359194,13 @@ public Builder clearOneof2785() { return this; } + /** + * int32 oneof_2786 = 2786; + * @return Whether the oneof2786 field is set. + */ + public boolean hasOneof2786() { + return hugeOneofCase_ == 2786; + } /** * int32 oneof_2786 = 2786; * @return The oneof2786. @@ -316722,6 +359235,13 @@ public Builder clearOneof2786() { return this; } + /** + * int32 oneof_2787 = 2787; + * @return Whether the oneof2787 field is set. + */ + public boolean hasOneof2787() { + return hugeOneofCase_ == 2787; + } /** * int32 oneof_2787 = 2787; * @return The oneof2787. @@ -316756,6 +359276,13 @@ public Builder clearOneof2787() { return this; } + /** + * int32 oneof_2788 = 2788; + * @return Whether the oneof2788 field is set. + */ + public boolean hasOneof2788() { + return hugeOneofCase_ == 2788; + } /** * int32 oneof_2788 = 2788; * @return The oneof2788. @@ -316790,6 +359317,13 @@ public Builder clearOneof2788() { return this; } + /** + * int32 oneof_2789 = 2789; + * @return Whether the oneof2789 field is set. + */ + public boolean hasOneof2789() { + return hugeOneofCase_ == 2789; + } /** * int32 oneof_2789 = 2789; * @return The oneof2789. @@ -316824,6 +359358,13 @@ public Builder clearOneof2789() { return this; } + /** + * int32 oneof_2790 = 2790; + * @return Whether the oneof2790 field is set. + */ + public boolean hasOneof2790() { + return hugeOneofCase_ == 2790; + } /** * int32 oneof_2790 = 2790; * @return The oneof2790. @@ -316858,6 +359399,13 @@ public Builder clearOneof2790() { return this; } + /** + * int32 oneof_2791 = 2791; + * @return Whether the oneof2791 field is set. + */ + public boolean hasOneof2791() { + return hugeOneofCase_ == 2791; + } /** * int32 oneof_2791 = 2791; * @return The oneof2791. @@ -316892,6 +359440,13 @@ public Builder clearOneof2791() { return this; } + /** + * int32 oneof_2792 = 2792; + * @return Whether the oneof2792 field is set. + */ + public boolean hasOneof2792() { + return hugeOneofCase_ == 2792; + } /** * int32 oneof_2792 = 2792; * @return The oneof2792. @@ -316926,6 +359481,13 @@ public Builder clearOneof2792() { return this; } + /** + * int32 oneof_2793 = 2793; + * @return Whether the oneof2793 field is set. + */ + public boolean hasOneof2793() { + return hugeOneofCase_ == 2793; + } /** * int32 oneof_2793 = 2793; * @return The oneof2793. @@ -316960,6 +359522,13 @@ public Builder clearOneof2793() { return this; } + /** + * int32 oneof_2794 = 2794; + * @return Whether the oneof2794 field is set. + */ + public boolean hasOneof2794() { + return hugeOneofCase_ == 2794; + } /** * int32 oneof_2794 = 2794; * @return The oneof2794. @@ -316994,6 +359563,13 @@ public Builder clearOneof2794() { return this; } + /** + * int32 oneof_2795 = 2795; + * @return Whether the oneof2795 field is set. + */ + public boolean hasOneof2795() { + return hugeOneofCase_ == 2795; + } /** * int32 oneof_2795 = 2795; * @return The oneof2795. @@ -317028,6 +359604,13 @@ public Builder clearOneof2795() { return this; } + /** + * int32 oneof_2796 = 2796; + * @return Whether the oneof2796 field is set. + */ + public boolean hasOneof2796() { + return hugeOneofCase_ == 2796; + } /** * int32 oneof_2796 = 2796; * @return The oneof2796. @@ -317062,6 +359645,13 @@ public Builder clearOneof2796() { return this; } + /** + * int32 oneof_2797 = 2797; + * @return Whether the oneof2797 field is set. + */ + public boolean hasOneof2797() { + return hugeOneofCase_ == 2797; + } /** * int32 oneof_2797 = 2797; * @return The oneof2797. @@ -317096,6 +359686,13 @@ public Builder clearOneof2797() { return this; } + /** + * int32 oneof_2798 = 2798; + * @return Whether the oneof2798 field is set. + */ + public boolean hasOneof2798() { + return hugeOneofCase_ == 2798; + } /** * int32 oneof_2798 = 2798; * @return The oneof2798. @@ -317130,6 +359727,13 @@ public Builder clearOneof2798() { return this; } + /** + * int32 oneof_2799 = 2799; + * @return Whether the oneof2799 field is set. + */ + public boolean hasOneof2799() { + return hugeOneofCase_ == 2799; + } /** * int32 oneof_2799 = 2799; * @return The oneof2799. @@ -317164,6 +359768,13 @@ public Builder clearOneof2799() { return this; } + /** + * int32 oneof_2800 = 2800; + * @return Whether the oneof2800 field is set. + */ + public boolean hasOneof2800() { + return hugeOneofCase_ == 2800; + } /** * int32 oneof_2800 = 2800; * @return The oneof2800. @@ -317198,6 +359809,13 @@ public Builder clearOneof2800() { return this; } + /** + * int32 oneof_2801 = 2801; + * @return Whether the oneof2801 field is set. + */ + public boolean hasOneof2801() { + return hugeOneofCase_ == 2801; + } /** * int32 oneof_2801 = 2801; * @return The oneof2801. @@ -317232,6 +359850,13 @@ public Builder clearOneof2801() { return this; } + /** + * int32 oneof_2802 = 2802; + * @return Whether the oneof2802 field is set. + */ + public boolean hasOneof2802() { + return hugeOneofCase_ == 2802; + } /** * int32 oneof_2802 = 2802; * @return The oneof2802. @@ -317266,6 +359891,13 @@ public Builder clearOneof2802() { return this; } + /** + * int32 oneof_2803 = 2803; + * @return Whether the oneof2803 field is set. + */ + public boolean hasOneof2803() { + return hugeOneofCase_ == 2803; + } /** * int32 oneof_2803 = 2803; * @return The oneof2803. @@ -317300,6 +359932,13 @@ public Builder clearOneof2803() { return this; } + /** + * int32 oneof_2804 = 2804; + * @return Whether the oneof2804 field is set. + */ + public boolean hasOneof2804() { + return hugeOneofCase_ == 2804; + } /** * int32 oneof_2804 = 2804; * @return The oneof2804. @@ -317334,6 +359973,13 @@ public Builder clearOneof2804() { return this; } + /** + * int32 oneof_2805 = 2805; + * @return Whether the oneof2805 field is set. + */ + public boolean hasOneof2805() { + return hugeOneofCase_ == 2805; + } /** * int32 oneof_2805 = 2805; * @return The oneof2805. @@ -317368,6 +360014,13 @@ public Builder clearOneof2805() { return this; } + /** + * int32 oneof_2806 = 2806; + * @return Whether the oneof2806 field is set. + */ + public boolean hasOneof2806() { + return hugeOneofCase_ == 2806; + } /** * int32 oneof_2806 = 2806; * @return The oneof2806. @@ -317402,6 +360055,13 @@ public Builder clearOneof2806() { return this; } + /** + * int32 oneof_2807 = 2807; + * @return Whether the oneof2807 field is set. + */ + public boolean hasOneof2807() { + return hugeOneofCase_ == 2807; + } /** * int32 oneof_2807 = 2807; * @return The oneof2807. @@ -317436,6 +360096,13 @@ public Builder clearOneof2807() { return this; } + /** + * int32 oneof_2808 = 2808; + * @return Whether the oneof2808 field is set. + */ + public boolean hasOneof2808() { + return hugeOneofCase_ == 2808; + } /** * int32 oneof_2808 = 2808; * @return The oneof2808. @@ -317470,6 +360137,13 @@ public Builder clearOneof2808() { return this; } + /** + * int32 oneof_2809 = 2809; + * @return Whether the oneof2809 field is set. + */ + public boolean hasOneof2809() { + return hugeOneofCase_ == 2809; + } /** * int32 oneof_2809 = 2809; * @return The oneof2809. @@ -317504,6 +360178,13 @@ public Builder clearOneof2809() { return this; } + /** + * int32 oneof_2810 = 2810; + * @return Whether the oneof2810 field is set. + */ + public boolean hasOneof2810() { + return hugeOneofCase_ == 2810; + } /** * int32 oneof_2810 = 2810; * @return The oneof2810. @@ -317538,6 +360219,13 @@ public Builder clearOneof2810() { return this; } + /** + * int32 oneof_2811 = 2811; + * @return Whether the oneof2811 field is set. + */ + public boolean hasOneof2811() { + return hugeOneofCase_ == 2811; + } /** * int32 oneof_2811 = 2811; * @return The oneof2811. @@ -317572,6 +360260,13 @@ public Builder clearOneof2811() { return this; } + /** + * int32 oneof_2812 = 2812; + * @return Whether the oneof2812 field is set. + */ + public boolean hasOneof2812() { + return hugeOneofCase_ == 2812; + } /** * int32 oneof_2812 = 2812; * @return The oneof2812. @@ -317606,6 +360301,13 @@ public Builder clearOneof2812() { return this; } + /** + * int32 oneof_2813 = 2813; + * @return Whether the oneof2813 field is set. + */ + public boolean hasOneof2813() { + return hugeOneofCase_ == 2813; + } /** * int32 oneof_2813 = 2813; * @return The oneof2813. @@ -317640,6 +360342,13 @@ public Builder clearOneof2813() { return this; } + /** + * int32 oneof_2814 = 2814; + * @return Whether the oneof2814 field is set. + */ + public boolean hasOneof2814() { + return hugeOneofCase_ == 2814; + } /** * int32 oneof_2814 = 2814; * @return The oneof2814. @@ -317674,6 +360383,13 @@ public Builder clearOneof2814() { return this; } + /** + * int32 oneof_2815 = 2815; + * @return Whether the oneof2815 field is set. + */ + public boolean hasOneof2815() { + return hugeOneofCase_ == 2815; + } /** * int32 oneof_2815 = 2815; * @return The oneof2815. @@ -317708,6 +360424,13 @@ public Builder clearOneof2815() { return this; } + /** + * int32 oneof_2816 = 2816; + * @return Whether the oneof2816 field is set. + */ + public boolean hasOneof2816() { + return hugeOneofCase_ == 2816; + } /** * int32 oneof_2816 = 2816; * @return The oneof2816. @@ -317742,6 +360465,13 @@ public Builder clearOneof2816() { return this; } + /** + * int32 oneof_2817 = 2817; + * @return Whether the oneof2817 field is set. + */ + public boolean hasOneof2817() { + return hugeOneofCase_ == 2817; + } /** * int32 oneof_2817 = 2817; * @return The oneof2817. @@ -317776,6 +360506,13 @@ public Builder clearOneof2817() { return this; } + /** + * int32 oneof_2818 = 2818; + * @return Whether the oneof2818 field is set. + */ + public boolean hasOneof2818() { + return hugeOneofCase_ == 2818; + } /** * int32 oneof_2818 = 2818; * @return The oneof2818. @@ -317810,6 +360547,13 @@ public Builder clearOneof2818() { return this; } + /** + * int32 oneof_2819 = 2819; + * @return Whether the oneof2819 field is set. + */ + public boolean hasOneof2819() { + return hugeOneofCase_ == 2819; + } /** * int32 oneof_2819 = 2819; * @return The oneof2819. @@ -317844,6 +360588,13 @@ public Builder clearOneof2819() { return this; } + /** + * int32 oneof_2820 = 2820; + * @return Whether the oneof2820 field is set. + */ + public boolean hasOneof2820() { + return hugeOneofCase_ == 2820; + } /** * int32 oneof_2820 = 2820; * @return The oneof2820. @@ -317878,6 +360629,13 @@ public Builder clearOneof2820() { return this; } + /** + * int32 oneof_2821 = 2821; + * @return Whether the oneof2821 field is set. + */ + public boolean hasOneof2821() { + return hugeOneofCase_ == 2821; + } /** * int32 oneof_2821 = 2821; * @return The oneof2821. @@ -317912,6 +360670,13 @@ public Builder clearOneof2821() { return this; } + /** + * int32 oneof_2822 = 2822; + * @return Whether the oneof2822 field is set. + */ + public boolean hasOneof2822() { + return hugeOneofCase_ == 2822; + } /** * int32 oneof_2822 = 2822; * @return The oneof2822. @@ -317946,6 +360711,13 @@ public Builder clearOneof2822() { return this; } + /** + * int32 oneof_2823 = 2823; + * @return Whether the oneof2823 field is set. + */ + public boolean hasOneof2823() { + return hugeOneofCase_ == 2823; + } /** * int32 oneof_2823 = 2823; * @return The oneof2823. @@ -317980,6 +360752,13 @@ public Builder clearOneof2823() { return this; } + /** + * int32 oneof_2824 = 2824; + * @return Whether the oneof2824 field is set. + */ + public boolean hasOneof2824() { + return hugeOneofCase_ == 2824; + } /** * int32 oneof_2824 = 2824; * @return The oneof2824. @@ -318014,6 +360793,13 @@ public Builder clearOneof2824() { return this; } + /** + * int32 oneof_2825 = 2825; + * @return Whether the oneof2825 field is set. + */ + public boolean hasOneof2825() { + return hugeOneofCase_ == 2825; + } /** * int32 oneof_2825 = 2825; * @return The oneof2825. @@ -318048,6 +360834,13 @@ public Builder clearOneof2825() { return this; } + /** + * int32 oneof_2826 = 2826; + * @return Whether the oneof2826 field is set. + */ + public boolean hasOneof2826() { + return hugeOneofCase_ == 2826; + } /** * int32 oneof_2826 = 2826; * @return The oneof2826. @@ -318082,6 +360875,13 @@ public Builder clearOneof2826() { return this; } + /** + * int32 oneof_2827 = 2827; + * @return Whether the oneof2827 field is set. + */ + public boolean hasOneof2827() { + return hugeOneofCase_ == 2827; + } /** * int32 oneof_2827 = 2827; * @return The oneof2827. @@ -318116,6 +360916,13 @@ public Builder clearOneof2827() { return this; } + /** + * int32 oneof_2828 = 2828; + * @return Whether the oneof2828 field is set. + */ + public boolean hasOneof2828() { + return hugeOneofCase_ == 2828; + } /** * int32 oneof_2828 = 2828; * @return The oneof2828. @@ -318150,6 +360957,13 @@ public Builder clearOneof2828() { return this; } + /** + * int32 oneof_2829 = 2829; + * @return Whether the oneof2829 field is set. + */ + public boolean hasOneof2829() { + return hugeOneofCase_ == 2829; + } /** * int32 oneof_2829 = 2829; * @return The oneof2829. @@ -318184,6 +360998,13 @@ public Builder clearOneof2829() { return this; } + /** + * int32 oneof_2830 = 2830; + * @return Whether the oneof2830 field is set. + */ + public boolean hasOneof2830() { + return hugeOneofCase_ == 2830; + } /** * int32 oneof_2830 = 2830; * @return The oneof2830. @@ -318218,6 +361039,13 @@ public Builder clearOneof2830() { return this; } + /** + * int32 oneof_2831 = 2831; + * @return Whether the oneof2831 field is set. + */ + public boolean hasOneof2831() { + return hugeOneofCase_ == 2831; + } /** * int32 oneof_2831 = 2831; * @return The oneof2831. @@ -318252,6 +361080,13 @@ public Builder clearOneof2831() { return this; } + /** + * int32 oneof_2832 = 2832; + * @return Whether the oneof2832 field is set. + */ + public boolean hasOneof2832() { + return hugeOneofCase_ == 2832; + } /** * int32 oneof_2832 = 2832; * @return The oneof2832. @@ -318286,6 +361121,13 @@ public Builder clearOneof2832() { return this; } + /** + * int32 oneof_2833 = 2833; + * @return Whether the oneof2833 field is set. + */ + public boolean hasOneof2833() { + return hugeOneofCase_ == 2833; + } /** * int32 oneof_2833 = 2833; * @return The oneof2833. @@ -318320,6 +361162,13 @@ public Builder clearOneof2833() { return this; } + /** + * int32 oneof_2834 = 2834; + * @return Whether the oneof2834 field is set. + */ + public boolean hasOneof2834() { + return hugeOneofCase_ == 2834; + } /** * int32 oneof_2834 = 2834; * @return The oneof2834. @@ -318354,6 +361203,13 @@ public Builder clearOneof2834() { return this; } + /** + * int32 oneof_2835 = 2835; + * @return Whether the oneof2835 field is set. + */ + public boolean hasOneof2835() { + return hugeOneofCase_ == 2835; + } /** * int32 oneof_2835 = 2835; * @return The oneof2835. @@ -318388,6 +361244,13 @@ public Builder clearOneof2835() { return this; } + /** + * int32 oneof_2836 = 2836; + * @return Whether the oneof2836 field is set. + */ + public boolean hasOneof2836() { + return hugeOneofCase_ == 2836; + } /** * int32 oneof_2836 = 2836; * @return The oneof2836. @@ -318422,6 +361285,13 @@ public Builder clearOneof2836() { return this; } + /** + * int32 oneof_2837 = 2837; + * @return Whether the oneof2837 field is set. + */ + public boolean hasOneof2837() { + return hugeOneofCase_ == 2837; + } /** * int32 oneof_2837 = 2837; * @return The oneof2837. @@ -318456,6 +361326,13 @@ public Builder clearOneof2837() { return this; } + /** + * int32 oneof_2838 = 2838; + * @return Whether the oneof2838 field is set. + */ + public boolean hasOneof2838() { + return hugeOneofCase_ == 2838; + } /** * int32 oneof_2838 = 2838; * @return The oneof2838. @@ -318490,6 +361367,13 @@ public Builder clearOneof2838() { return this; } + /** + * int32 oneof_2839 = 2839; + * @return Whether the oneof2839 field is set. + */ + public boolean hasOneof2839() { + return hugeOneofCase_ == 2839; + } /** * int32 oneof_2839 = 2839; * @return The oneof2839. @@ -318524,6 +361408,13 @@ public Builder clearOneof2839() { return this; } + /** + * int32 oneof_2840 = 2840; + * @return Whether the oneof2840 field is set. + */ + public boolean hasOneof2840() { + return hugeOneofCase_ == 2840; + } /** * int32 oneof_2840 = 2840; * @return The oneof2840. @@ -318558,6 +361449,13 @@ public Builder clearOneof2840() { return this; } + /** + * int32 oneof_2841 = 2841; + * @return Whether the oneof2841 field is set. + */ + public boolean hasOneof2841() { + return hugeOneofCase_ == 2841; + } /** * int32 oneof_2841 = 2841; * @return The oneof2841. @@ -318592,6 +361490,13 @@ public Builder clearOneof2841() { return this; } + /** + * int32 oneof_2842 = 2842; + * @return Whether the oneof2842 field is set. + */ + public boolean hasOneof2842() { + return hugeOneofCase_ == 2842; + } /** * int32 oneof_2842 = 2842; * @return The oneof2842. @@ -318626,6 +361531,13 @@ public Builder clearOneof2842() { return this; } + /** + * int32 oneof_2843 = 2843; + * @return Whether the oneof2843 field is set. + */ + public boolean hasOneof2843() { + return hugeOneofCase_ == 2843; + } /** * int32 oneof_2843 = 2843; * @return The oneof2843. @@ -318660,6 +361572,13 @@ public Builder clearOneof2843() { return this; } + /** + * int32 oneof_2844 = 2844; + * @return Whether the oneof2844 field is set. + */ + public boolean hasOneof2844() { + return hugeOneofCase_ == 2844; + } /** * int32 oneof_2844 = 2844; * @return The oneof2844. @@ -318694,6 +361613,13 @@ public Builder clearOneof2844() { return this; } + /** + * int32 oneof_2845 = 2845; + * @return Whether the oneof2845 field is set. + */ + public boolean hasOneof2845() { + return hugeOneofCase_ == 2845; + } /** * int32 oneof_2845 = 2845; * @return The oneof2845. @@ -318728,6 +361654,13 @@ public Builder clearOneof2845() { return this; } + /** + * int32 oneof_2846 = 2846; + * @return Whether the oneof2846 field is set. + */ + public boolean hasOneof2846() { + return hugeOneofCase_ == 2846; + } /** * int32 oneof_2846 = 2846; * @return The oneof2846. @@ -318762,6 +361695,13 @@ public Builder clearOneof2846() { return this; } + /** + * int32 oneof_2847 = 2847; + * @return Whether the oneof2847 field is set. + */ + public boolean hasOneof2847() { + return hugeOneofCase_ == 2847; + } /** * int32 oneof_2847 = 2847; * @return The oneof2847. @@ -318796,6 +361736,13 @@ public Builder clearOneof2847() { return this; } + /** + * int32 oneof_2848 = 2848; + * @return Whether the oneof2848 field is set. + */ + public boolean hasOneof2848() { + return hugeOneofCase_ == 2848; + } /** * int32 oneof_2848 = 2848; * @return The oneof2848. @@ -318830,6 +361777,13 @@ public Builder clearOneof2848() { return this; } + /** + * int32 oneof_2849 = 2849; + * @return Whether the oneof2849 field is set. + */ + public boolean hasOneof2849() { + return hugeOneofCase_ == 2849; + } /** * int32 oneof_2849 = 2849; * @return The oneof2849. @@ -318864,6 +361818,13 @@ public Builder clearOneof2849() { return this; } + /** + * int32 oneof_2850 = 2850; + * @return Whether the oneof2850 field is set. + */ + public boolean hasOneof2850() { + return hugeOneofCase_ == 2850; + } /** * int32 oneof_2850 = 2850; * @return The oneof2850. @@ -318898,6 +361859,13 @@ public Builder clearOneof2850() { return this; } + /** + * int32 oneof_2851 = 2851; + * @return Whether the oneof2851 field is set. + */ + public boolean hasOneof2851() { + return hugeOneofCase_ == 2851; + } /** * int32 oneof_2851 = 2851; * @return The oneof2851. @@ -318932,6 +361900,13 @@ public Builder clearOneof2851() { return this; } + /** + * int32 oneof_2852 = 2852; + * @return Whether the oneof2852 field is set. + */ + public boolean hasOneof2852() { + return hugeOneofCase_ == 2852; + } /** * int32 oneof_2852 = 2852; * @return The oneof2852. @@ -318966,6 +361941,13 @@ public Builder clearOneof2852() { return this; } + /** + * int32 oneof_2853 = 2853; + * @return Whether the oneof2853 field is set. + */ + public boolean hasOneof2853() { + return hugeOneofCase_ == 2853; + } /** * int32 oneof_2853 = 2853; * @return The oneof2853. @@ -319000,6 +361982,13 @@ public Builder clearOneof2853() { return this; } + /** + * int32 oneof_2854 = 2854; + * @return Whether the oneof2854 field is set. + */ + public boolean hasOneof2854() { + return hugeOneofCase_ == 2854; + } /** * int32 oneof_2854 = 2854; * @return The oneof2854. @@ -319034,6 +362023,13 @@ public Builder clearOneof2854() { return this; } + /** + * int32 oneof_2855 = 2855; + * @return Whether the oneof2855 field is set. + */ + public boolean hasOneof2855() { + return hugeOneofCase_ == 2855; + } /** * int32 oneof_2855 = 2855; * @return The oneof2855. @@ -319068,6 +362064,13 @@ public Builder clearOneof2855() { return this; } + /** + * int32 oneof_2856 = 2856; + * @return Whether the oneof2856 field is set. + */ + public boolean hasOneof2856() { + return hugeOneofCase_ == 2856; + } /** * int32 oneof_2856 = 2856; * @return The oneof2856. @@ -319102,6 +362105,13 @@ public Builder clearOneof2856() { return this; } + /** + * int32 oneof_2857 = 2857; + * @return Whether the oneof2857 field is set. + */ + public boolean hasOneof2857() { + return hugeOneofCase_ == 2857; + } /** * int32 oneof_2857 = 2857; * @return The oneof2857. @@ -319136,6 +362146,13 @@ public Builder clearOneof2857() { return this; } + /** + * int32 oneof_2858 = 2858; + * @return Whether the oneof2858 field is set. + */ + public boolean hasOneof2858() { + return hugeOneofCase_ == 2858; + } /** * int32 oneof_2858 = 2858; * @return The oneof2858. @@ -319170,6 +362187,13 @@ public Builder clearOneof2858() { return this; } + /** + * int32 oneof_2859 = 2859; + * @return Whether the oneof2859 field is set. + */ + public boolean hasOneof2859() { + return hugeOneofCase_ == 2859; + } /** * int32 oneof_2859 = 2859; * @return The oneof2859. @@ -319204,6 +362228,13 @@ public Builder clearOneof2859() { return this; } + /** + * int32 oneof_2860 = 2860; + * @return Whether the oneof2860 field is set. + */ + public boolean hasOneof2860() { + return hugeOneofCase_ == 2860; + } /** * int32 oneof_2860 = 2860; * @return The oneof2860. @@ -319238,6 +362269,13 @@ public Builder clearOneof2860() { return this; } + /** + * int32 oneof_2861 = 2861; + * @return Whether the oneof2861 field is set. + */ + public boolean hasOneof2861() { + return hugeOneofCase_ == 2861; + } /** * int32 oneof_2861 = 2861; * @return The oneof2861. @@ -319272,6 +362310,13 @@ public Builder clearOneof2861() { return this; } + /** + * int32 oneof_2862 = 2862; + * @return Whether the oneof2862 field is set. + */ + public boolean hasOneof2862() { + return hugeOneofCase_ == 2862; + } /** * int32 oneof_2862 = 2862; * @return The oneof2862. @@ -319306,6 +362351,13 @@ public Builder clearOneof2862() { return this; } + /** + * int32 oneof_2863 = 2863; + * @return Whether the oneof2863 field is set. + */ + public boolean hasOneof2863() { + return hugeOneofCase_ == 2863; + } /** * int32 oneof_2863 = 2863; * @return The oneof2863. @@ -319340,6 +362392,13 @@ public Builder clearOneof2863() { return this; } + /** + * int32 oneof_2864 = 2864; + * @return Whether the oneof2864 field is set. + */ + public boolean hasOneof2864() { + return hugeOneofCase_ == 2864; + } /** * int32 oneof_2864 = 2864; * @return The oneof2864. @@ -319374,6 +362433,13 @@ public Builder clearOneof2864() { return this; } + /** + * int32 oneof_2865 = 2865; + * @return Whether the oneof2865 field is set. + */ + public boolean hasOneof2865() { + return hugeOneofCase_ == 2865; + } /** * int32 oneof_2865 = 2865; * @return The oneof2865. @@ -319408,6 +362474,13 @@ public Builder clearOneof2865() { return this; } + /** + * int32 oneof_2866 = 2866; + * @return Whether the oneof2866 field is set. + */ + public boolean hasOneof2866() { + return hugeOneofCase_ == 2866; + } /** * int32 oneof_2866 = 2866; * @return The oneof2866. @@ -319442,6 +362515,13 @@ public Builder clearOneof2866() { return this; } + /** + * int32 oneof_2867 = 2867; + * @return Whether the oneof2867 field is set. + */ + public boolean hasOneof2867() { + return hugeOneofCase_ == 2867; + } /** * int32 oneof_2867 = 2867; * @return The oneof2867. @@ -319476,6 +362556,13 @@ public Builder clearOneof2867() { return this; } + /** + * int32 oneof_2868 = 2868; + * @return Whether the oneof2868 field is set. + */ + public boolean hasOneof2868() { + return hugeOneofCase_ == 2868; + } /** * int32 oneof_2868 = 2868; * @return The oneof2868. @@ -319510,6 +362597,13 @@ public Builder clearOneof2868() { return this; } + /** + * int32 oneof_2869 = 2869; + * @return Whether the oneof2869 field is set. + */ + public boolean hasOneof2869() { + return hugeOneofCase_ == 2869; + } /** * int32 oneof_2869 = 2869; * @return The oneof2869. @@ -319544,6 +362638,13 @@ public Builder clearOneof2869() { return this; } + /** + * int32 oneof_2870 = 2870; + * @return Whether the oneof2870 field is set. + */ + public boolean hasOneof2870() { + return hugeOneofCase_ == 2870; + } /** * int32 oneof_2870 = 2870; * @return The oneof2870. @@ -319578,6 +362679,13 @@ public Builder clearOneof2870() { return this; } + /** + * int32 oneof_2871 = 2871; + * @return Whether the oneof2871 field is set. + */ + public boolean hasOneof2871() { + return hugeOneofCase_ == 2871; + } /** * int32 oneof_2871 = 2871; * @return The oneof2871. @@ -319612,6 +362720,13 @@ public Builder clearOneof2871() { return this; } + /** + * int32 oneof_2872 = 2872; + * @return Whether the oneof2872 field is set. + */ + public boolean hasOneof2872() { + return hugeOneofCase_ == 2872; + } /** * int32 oneof_2872 = 2872; * @return The oneof2872. @@ -319646,6 +362761,13 @@ public Builder clearOneof2872() { return this; } + /** + * int32 oneof_2873 = 2873; + * @return Whether the oneof2873 field is set. + */ + public boolean hasOneof2873() { + return hugeOneofCase_ == 2873; + } /** * int32 oneof_2873 = 2873; * @return The oneof2873. @@ -319680,6 +362802,13 @@ public Builder clearOneof2873() { return this; } + /** + * int32 oneof_2874 = 2874; + * @return Whether the oneof2874 field is set. + */ + public boolean hasOneof2874() { + return hugeOneofCase_ == 2874; + } /** * int32 oneof_2874 = 2874; * @return The oneof2874. @@ -319714,6 +362843,13 @@ public Builder clearOneof2874() { return this; } + /** + * int32 oneof_2875 = 2875; + * @return Whether the oneof2875 field is set. + */ + public boolean hasOneof2875() { + return hugeOneofCase_ == 2875; + } /** * int32 oneof_2875 = 2875; * @return The oneof2875. @@ -319748,6 +362884,13 @@ public Builder clearOneof2875() { return this; } + /** + * int32 oneof_2876 = 2876; + * @return Whether the oneof2876 field is set. + */ + public boolean hasOneof2876() { + return hugeOneofCase_ == 2876; + } /** * int32 oneof_2876 = 2876; * @return The oneof2876. @@ -319782,6 +362925,13 @@ public Builder clearOneof2876() { return this; } + /** + * int32 oneof_2877 = 2877; + * @return Whether the oneof2877 field is set. + */ + public boolean hasOneof2877() { + return hugeOneofCase_ == 2877; + } /** * int32 oneof_2877 = 2877; * @return The oneof2877. @@ -319816,6 +362966,13 @@ public Builder clearOneof2877() { return this; } + /** + * int32 oneof_2878 = 2878; + * @return Whether the oneof2878 field is set. + */ + public boolean hasOneof2878() { + return hugeOneofCase_ == 2878; + } /** * int32 oneof_2878 = 2878; * @return The oneof2878. @@ -319850,6 +363007,13 @@ public Builder clearOneof2878() { return this; } + /** + * int32 oneof_2879 = 2879; + * @return Whether the oneof2879 field is set. + */ + public boolean hasOneof2879() { + return hugeOneofCase_ == 2879; + } /** * int32 oneof_2879 = 2879; * @return The oneof2879. @@ -319884,6 +363048,13 @@ public Builder clearOneof2879() { return this; } + /** + * int32 oneof_2880 = 2880; + * @return Whether the oneof2880 field is set. + */ + public boolean hasOneof2880() { + return hugeOneofCase_ == 2880; + } /** * int32 oneof_2880 = 2880; * @return The oneof2880. @@ -319918,6 +363089,13 @@ public Builder clearOneof2880() { return this; } + /** + * int32 oneof_2881 = 2881; + * @return Whether the oneof2881 field is set. + */ + public boolean hasOneof2881() { + return hugeOneofCase_ == 2881; + } /** * int32 oneof_2881 = 2881; * @return The oneof2881. @@ -319952,6 +363130,13 @@ public Builder clearOneof2881() { return this; } + /** + * int32 oneof_2882 = 2882; + * @return Whether the oneof2882 field is set. + */ + public boolean hasOneof2882() { + return hugeOneofCase_ == 2882; + } /** * int32 oneof_2882 = 2882; * @return The oneof2882. @@ -319986,6 +363171,13 @@ public Builder clearOneof2882() { return this; } + /** + * int32 oneof_2883 = 2883; + * @return Whether the oneof2883 field is set. + */ + public boolean hasOneof2883() { + return hugeOneofCase_ == 2883; + } /** * int32 oneof_2883 = 2883; * @return The oneof2883. @@ -320020,6 +363212,13 @@ public Builder clearOneof2883() { return this; } + /** + * int32 oneof_2884 = 2884; + * @return Whether the oneof2884 field is set. + */ + public boolean hasOneof2884() { + return hugeOneofCase_ == 2884; + } /** * int32 oneof_2884 = 2884; * @return The oneof2884. @@ -320054,6 +363253,13 @@ public Builder clearOneof2884() { return this; } + /** + * int32 oneof_2885 = 2885; + * @return Whether the oneof2885 field is set. + */ + public boolean hasOneof2885() { + return hugeOneofCase_ == 2885; + } /** * int32 oneof_2885 = 2885; * @return The oneof2885. @@ -320088,6 +363294,13 @@ public Builder clearOneof2885() { return this; } + /** + * int32 oneof_2886 = 2886; + * @return Whether the oneof2886 field is set. + */ + public boolean hasOneof2886() { + return hugeOneofCase_ == 2886; + } /** * int32 oneof_2886 = 2886; * @return The oneof2886. @@ -320122,6 +363335,13 @@ public Builder clearOneof2886() { return this; } + /** + * int32 oneof_2887 = 2887; + * @return Whether the oneof2887 field is set. + */ + public boolean hasOneof2887() { + return hugeOneofCase_ == 2887; + } /** * int32 oneof_2887 = 2887; * @return The oneof2887. @@ -320156,6 +363376,13 @@ public Builder clearOneof2887() { return this; } + /** + * int32 oneof_2888 = 2888; + * @return Whether the oneof2888 field is set. + */ + public boolean hasOneof2888() { + return hugeOneofCase_ == 2888; + } /** * int32 oneof_2888 = 2888; * @return The oneof2888. @@ -320190,6 +363417,13 @@ public Builder clearOneof2888() { return this; } + /** + * int32 oneof_2889 = 2889; + * @return Whether the oneof2889 field is set. + */ + public boolean hasOneof2889() { + return hugeOneofCase_ == 2889; + } /** * int32 oneof_2889 = 2889; * @return The oneof2889. @@ -320224,6 +363458,13 @@ public Builder clearOneof2889() { return this; } + /** + * int32 oneof_2890 = 2890; + * @return Whether the oneof2890 field is set. + */ + public boolean hasOneof2890() { + return hugeOneofCase_ == 2890; + } /** * int32 oneof_2890 = 2890; * @return The oneof2890. @@ -320258,6 +363499,13 @@ public Builder clearOneof2890() { return this; } + /** + * int32 oneof_2891 = 2891; + * @return Whether the oneof2891 field is set. + */ + public boolean hasOneof2891() { + return hugeOneofCase_ == 2891; + } /** * int32 oneof_2891 = 2891; * @return The oneof2891. @@ -320292,6 +363540,13 @@ public Builder clearOneof2891() { return this; } + /** + * int32 oneof_2892 = 2892; + * @return Whether the oneof2892 field is set. + */ + public boolean hasOneof2892() { + return hugeOneofCase_ == 2892; + } /** * int32 oneof_2892 = 2892; * @return The oneof2892. @@ -320326,6 +363581,13 @@ public Builder clearOneof2892() { return this; } + /** + * int32 oneof_2893 = 2893; + * @return Whether the oneof2893 field is set. + */ + public boolean hasOneof2893() { + return hugeOneofCase_ == 2893; + } /** * int32 oneof_2893 = 2893; * @return The oneof2893. @@ -320360,6 +363622,13 @@ public Builder clearOneof2893() { return this; } + /** + * int32 oneof_2894 = 2894; + * @return Whether the oneof2894 field is set. + */ + public boolean hasOneof2894() { + return hugeOneofCase_ == 2894; + } /** * int32 oneof_2894 = 2894; * @return The oneof2894. @@ -320394,6 +363663,13 @@ public Builder clearOneof2894() { return this; } + /** + * int32 oneof_2895 = 2895; + * @return Whether the oneof2895 field is set. + */ + public boolean hasOneof2895() { + return hugeOneofCase_ == 2895; + } /** * int32 oneof_2895 = 2895; * @return The oneof2895. @@ -320428,6 +363704,13 @@ public Builder clearOneof2895() { return this; } + /** + * int32 oneof_2896 = 2896; + * @return Whether the oneof2896 field is set. + */ + public boolean hasOneof2896() { + return hugeOneofCase_ == 2896; + } /** * int32 oneof_2896 = 2896; * @return The oneof2896. @@ -320462,6 +363745,13 @@ public Builder clearOneof2896() { return this; } + /** + * int32 oneof_2897 = 2897; + * @return Whether the oneof2897 field is set. + */ + public boolean hasOneof2897() { + return hugeOneofCase_ == 2897; + } /** * int32 oneof_2897 = 2897; * @return The oneof2897. @@ -320496,6 +363786,13 @@ public Builder clearOneof2897() { return this; } + /** + * int32 oneof_2898 = 2898; + * @return Whether the oneof2898 field is set. + */ + public boolean hasOneof2898() { + return hugeOneofCase_ == 2898; + } /** * int32 oneof_2898 = 2898; * @return The oneof2898. @@ -320530,6 +363827,13 @@ public Builder clearOneof2898() { return this; } + /** + * int32 oneof_2899 = 2899; + * @return Whether the oneof2899 field is set. + */ + public boolean hasOneof2899() { + return hugeOneofCase_ == 2899; + } /** * int32 oneof_2899 = 2899; * @return The oneof2899. @@ -320564,6 +363868,13 @@ public Builder clearOneof2899() { return this; } + /** + * int32 oneof_2900 = 2900; + * @return Whether the oneof2900 field is set. + */ + public boolean hasOneof2900() { + return hugeOneofCase_ == 2900; + } /** * int32 oneof_2900 = 2900; * @return The oneof2900. @@ -320598,6 +363909,13 @@ public Builder clearOneof2900() { return this; } + /** + * int32 oneof_2901 = 2901; + * @return Whether the oneof2901 field is set. + */ + public boolean hasOneof2901() { + return hugeOneofCase_ == 2901; + } /** * int32 oneof_2901 = 2901; * @return The oneof2901. @@ -320632,6 +363950,13 @@ public Builder clearOneof2901() { return this; } + /** + * int32 oneof_2902 = 2902; + * @return Whether the oneof2902 field is set. + */ + public boolean hasOneof2902() { + return hugeOneofCase_ == 2902; + } /** * int32 oneof_2902 = 2902; * @return The oneof2902. @@ -320666,6 +363991,13 @@ public Builder clearOneof2902() { return this; } + /** + * int32 oneof_2903 = 2903; + * @return Whether the oneof2903 field is set. + */ + public boolean hasOneof2903() { + return hugeOneofCase_ == 2903; + } /** * int32 oneof_2903 = 2903; * @return The oneof2903. @@ -320700,6 +364032,13 @@ public Builder clearOneof2903() { return this; } + /** + * int32 oneof_2904 = 2904; + * @return Whether the oneof2904 field is set. + */ + public boolean hasOneof2904() { + return hugeOneofCase_ == 2904; + } /** * int32 oneof_2904 = 2904; * @return The oneof2904. @@ -320734,6 +364073,13 @@ public Builder clearOneof2904() { return this; } + /** + * int32 oneof_2905 = 2905; + * @return Whether the oneof2905 field is set. + */ + public boolean hasOneof2905() { + return hugeOneofCase_ == 2905; + } /** * int32 oneof_2905 = 2905; * @return The oneof2905. @@ -320768,6 +364114,13 @@ public Builder clearOneof2905() { return this; } + /** + * int32 oneof_2906 = 2906; + * @return Whether the oneof2906 field is set. + */ + public boolean hasOneof2906() { + return hugeOneofCase_ == 2906; + } /** * int32 oneof_2906 = 2906; * @return The oneof2906. @@ -320802,6 +364155,13 @@ public Builder clearOneof2906() { return this; } + /** + * int32 oneof_2907 = 2907; + * @return Whether the oneof2907 field is set. + */ + public boolean hasOneof2907() { + return hugeOneofCase_ == 2907; + } /** * int32 oneof_2907 = 2907; * @return The oneof2907. @@ -320836,6 +364196,13 @@ public Builder clearOneof2907() { return this; } + /** + * int32 oneof_2908 = 2908; + * @return Whether the oneof2908 field is set. + */ + public boolean hasOneof2908() { + return hugeOneofCase_ == 2908; + } /** * int32 oneof_2908 = 2908; * @return The oneof2908. @@ -320870,6 +364237,13 @@ public Builder clearOneof2908() { return this; } + /** + * int32 oneof_2909 = 2909; + * @return Whether the oneof2909 field is set. + */ + public boolean hasOneof2909() { + return hugeOneofCase_ == 2909; + } /** * int32 oneof_2909 = 2909; * @return The oneof2909. @@ -320904,6 +364278,13 @@ public Builder clearOneof2909() { return this; } + /** + * int32 oneof_2910 = 2910; + * @return Whether the oneof2910 field is set. + */ + public boolean hasOneof2910() { + return hugeOneofCase_ == 2910; + } /** * int32 oneof_2910 = 2910; * @return The oneof2910. @@ -320938,6 +364319,13 @@ public Builder clearOneof2910() { return this; } + /** + * int32 oneof_2911 = 2911; + * @return Whether the oneof2911 field is set. + */ + public boolean hasOneof2911() { + return hugeOneofCase_ == 2911; + } /** * int32 oneof_2911 = 2911; * @return The oneof2911. @@ -320972,6 +364360,13 @@ public Builder clearOneof2911() { return this; } + /** + * int32 oneof_2912 = 2912; + * @return Whether the oneof2912 field is set. + */ + public boolean hasOneof2912() { + return hugeOneofCase_ == 2912; + } /** * int32 oneof_2912 = 2912; * @return The oneof2912. @@ -321006,6 +364401,13 @@ public Builder clearOneof2912() { return this; } + /** + * int32 oneof_2913 = 2913; + * @return Whether the oneof2913 field is set. + */ + public boolean hasOneof2913() { + return hugeOneofCase_ == 2913; + } /** * int32 oneof_2913 = 2913; * @return The oneof2913. @@ -321040,6 +364442,13 @@ public Builder clearOneof2913() { return this; } + /** + * int32 oneof_2914 = 2914; + * @return Whether the oneof2914 field is set. + */ + public boolean hasOneof2914() { + return hugeOneofCase_ == 2914; + } /** * int32 oneof_2914 = 2914; * @return The oneof2914. @@ -321074,6 +364483,13 @@ public Builder clearOneof2914() { return this; } + /** + * int32 oneof_2915 = 2915; + * @return Whether the oneof2915 field is set. + */ + public boolean hasOneof2915() { + return hugeOneofCase_ == 2915; + } /** * int32 oneof_2915 = 2915; * @return The oneof2915. @@ -321108,6 +364524,13 @@ public Builder clearOneof2915() { return this; } + /** + * int32 oneof_2916 = 2916; + * @return Whether the oneof2916 field is set. + */ + public boolean hasOneof2916() { + return hugeOneofCase_ == 2916; + } /** * int32 oneof_2916 = 2916; * @return The oneof2916. @@ -321142,6 +364565,13 @@ public Builder clearOneof2916() { return this; } + /** + * int32 oneof_2917 = 2917; + * @return Whether the oneof2917 field is set. + */ + public boolean hasOneof2917() { + return hugeOneofCase_ == 2917; + } /** * int32 oneof_2917 = 2917; * @return The oneof2917. @@ -321176,6 +364606,13 @@ public Builder clearOneof2917() { return this; } + /** + * int32 oneof_2918 = 2918; + * @return Whether the oneof2918 field is set. + */ + public boolean hasOneof2918() { + return hugeOneofCase_ == 2918; + } /** * int32 oneof_2918 = 2918; * @return The oneof2918. @@ -321210,6 +364647,13 @@ public Builder clearOneof2918() { return this; } + /** + * int32 oneof_2919 = 2919; + * @return Whether the oneof2919 field is set. + */ + public boolean hasOneof2919() { + return hugeOneofCase_ == 2919; + } /** * int32 oneof_2919 = 2919; * @return The oneof2919. @@ -321244,6 +364688,13 @@ public Builder clearOneof2919() { return this; } + /** + * int32 oneof_2920 = 2920; + * @return Whether the oneof2920 field is set. + */ + public boolean hasOneof2920() { + return hugeOneofCase_ == 2920; + } /** * int32 oneof_2920 = 2920; * @return The oneof2920. @@ -321278,6 +364729,13 @@ public Builder clearOneof2920() { return this; } + /** + * int32 oneof_2921 = 2921; + * @return Whether the oneof2921 field is set. + */ + public boolean hasOneof2921() { + return hugeOneofCase_ == 2921; + } /** * int32 oneof_2921 = 2921; * @return The oneof2921. @@ -321312,6 +364770,13 @@ public Builder clearOneof2921() { return this; } + /** + * int32 oneof_2922 = 2922; + * @return Whether the oneof2922 field is set. + */ + public boolean hasOneof2922() { + return hugeOneofCase_ == 2922; + } /** * int32 oneof_2922 = 2922; * @return The oneof2922. @@ -321346,6 +364811,13 @@ public Builder clearOneof2922() { return this; } + /** + * int32 oneof_2923 = 2923; + * @return Whether the oneof2923 field is set. + */ + public boolean hasOneof2923() { + return hugeOneofCase_ == 2923; + } /** * int32 oneof_2923 = 2923; * @return The oneof2923. @@ -321380,6 +364852,13 @@ public Builder clearOneof2923() { return this; } + /** + * int32 oneof_2924 = 2924; + * @return Whether the oneof2924 field is set. + */ + public boolean hasOneof2924() { + return hugeOneofCase_ == 2924; + } /** * int32 oneof_2924 = 2924; * @return The oneof2924. @@ -321414,6 +364893,13 @@ public Builder clearOneof2924() { return this; } + /** + * int32 oneof_2925 = 2925; + * @return Whether the oneof2925 field is set. + */ + public boolean hasOneof2925() { + return hugeOneofCase_ == 2925; + } /** * int32 oneof_2925 = 2925; * @return The oneof2925. @@ -321448,6 +364934,13 @@ public Builder clearOneof2925() { return this; } + /** + * int32 oneof_2926 = 2926; + * @return Whether the oneof2926 field is set. + */ + public boolean hasOneof2926() { + return hugeOneofCase_ == 2926; + } /** * int32 oneof_2926 = 2926; * @return The oneof2926. @@ -321482,6 +364975,13 @@ public Builder clearOneof2926() { return this; } + /** + * int32 oneof_2927 = 2927; + * @return Whether the oneof2927 field is set. + */ + public boolean hasOneof2927() { + return hugeOneofCase_ == 2927; + } /** * int32 oneof_2927 = 2927; * @return The oneof2927. @@ -321516,6 +365016,13 @@ public Builder clearOneof2927() { return this; } + /** + * int32 oneof_2928 = 2928; + * @return Whether the oneof2928 field is set. + */ + public boolean hasOneof2928() { + return hugeOneofCase_ == 2928; + } /** * int32 oneof_2928 = 2928; * @return The oneof2928. @@ -321550,6 +365057,13 @@ public Builder clearOneof2928() { return this; } + /** + * int32 oneof_2929 = 2929; + * @return Whether the oneof2929 field is set. + */ + public boolean hasOneof2929() { + return hugeOneofCase_ == 2929; + } /** * int32 oneof_2929 = 2929; * @return The oneof2929. @@ -321584,6 +365098,13 @@ public Builder clearOneof2929() { return this; } + /** + * int32 oneof_2930 = 2930; + * @return Whether the oneof2930 field is set. + */ + public boolean hasOneof2930() { + return hugeOneofCase_ == 2930; + } /** * int32 oneof_2930 = 2930; * @return The oneof2930. @@ -321618,6 +365139,13 @@ public Builder clearOneof2930() { return this; } + /** + * int32 oneof_2931 = 2931; + * @return Whether the oneof2931 field is set. + */ + public boolean hasOneof2931() { + return hugeOneofCase_ == 2931; + } /** * int32 oneof_2931 = 2931; * @return The oneof2931. @@ -321652,6 +365180,13 @@ public Builder clearOneof2931() { return this; } + /** + * int32 oneof_2932 = 2932; + * @return Whether the oneof2932 field is set. + */ + public boolean hasOneof2932() { + return hugeOneofCase_ == 2932; + } /** * int32 oneof_2932 = 2932; * @return The oneof2932. @@ -321686,6 +365221,13 @@ public Builder clearOneof2932() { return this; } + /** + * int32 oneof_2933 = 2933; + * @return Whether the oneof2933 field is set. + */ + public boolean hasOneof2933() { + return hugeOneofCase_ == 2933; + } /** * int32 oneof_2933 = 2933; * @return The oneof2933. @@ -321720,6 +365262,13 @@ public Builder clearOneof2933() { return this; } + /** + * int32 oneof_2934 = 2934; + * @return Whether the oneof2934 field is set. + */ + public boolean hasOneof2934() { + return hugeOneofCase_ == 2934; + } /** * int32 oneof_2934 = 2934; * @return The oneof2934. @@ -321754,6 +365303,13 @@ public Builder clearOneof2934() { return this; } + /** + * int32 oneof_2935 = 2935; + * @return Whether the oneof2935 field is set. + */ + public boolean hasOneof2935() { + return hugeOneofCase_ == 2935; + } /** * int32 oneof_2935 = 2935; * @return The oneof2935. @@ -321788,6 +365344,13 @@ public Builder clearOneof2935() { return this; } + /** + * int32 oneof_2936 = 2936; + * @return Whether the oneof2936 field is set. + */ + public boolean hasOneof2936() { + return hugeOneofCase_ == 2936; + } /** * int32 oneof_2936 = 2936; * @return The oneof2936. @@ -321822,6 +365385,13 @@ public Builder clearOneof2936() { return this; } + /** + * int32 oneof_2937 = 2937; + * @return Whether the oneof2937 field is set. + */ + public boolean hasOneof2937() { + return hugeOneofCase_ == 2937; + } /** * int32 oneof_2937 = 2937; * @return The oneof2937. @@ -321856,6 +365426,13 @@ public Builder clearOneof2937() { return this; } + /** + * int32 oneof_2938 = 2938; + * @return Whether the oneof2938 field is set. + */ + public boolean hasOneof2938() { + return hugeOneofCase_ == 2938; + } /** * int32 oneof_2938 = 2938; * @return The oneof2938. @@ -321890,6 +365467,13 @@ public Builder clearOneof2938() { return this; } + /** + * int32 oneof_2939 = 2939; + * @return Whether the oneof2939 field is set. + */ + public boolean hasOneof2939() { + return hugeOneofCase_ == 2939; + } /** * int32 oneof_2939 = 2939; * @return The oneof2939. @@ -321924,6 +365508,13 @@ public Builder clearOneof2939() { return this; } + /** + * int32 oneof_2940 = 2940; + * @return Whether the oneof2940 field is set. + */ + public boolean hasOneof2940() { + return hugeOneofCase_ == 2940; + } /** * int32 oneof_2940 = 2940; * @return The oneof2940. @@ -321958,6 +365549,13 @@ public Builder clearOneof2940() { return this; } + /** + * int32 oneof_2941 = 2941; + * @return Whether the oneof2941 field is set. + */ + public boolean hasOneof2941() { + return hugeOneofCase_ == 2941; + } /** * int32 oneof_2941 = 2941; * @return The oneof2941. @@ -321992,6 +365590,13 @@ public Builder clearOneof2941() { return this; } + /** + * int32 oneof_2942 = 2942; + * @return Whether the oneof2942 field is set. + */ + public boolean hasOneof2942() { + return hugeOneofCase_ == 2942; + } /** * int32 oneof_2942 = 2942; * @return The oneof2942. @@ -322026,6 +365631,13 @@ public Builder clearOneof2942() { return this; } + /** + * int32 oneof_2943 = 2943; + * @return Whether the oneof2943 field is set. + */ + public boolean hasOneof2943() { + return hugeOneofCase_ == 2943; + } /** * int32 oneof_2943 = 2943; * @return The oneof2943. @@ -322060,6 +365672,13 @@ public Builder clearOneof2943() { return this; } + /** + * int32 oneof_2944 = 2944; + * @return Whether the oneof2944 field is set. + */ + public boolean hasOneof2944() { + return hugeOneofCase_ == 2944; + } /** * int32 oneof_2944 = 2944; * @return The oneof2944. @@ -322094,6 +365713,13 @@ public Builder clearOneof2944() { return this; } + /** + * int32 oneof_2945 = 2945; + * @return Whether the oneof2945 field is set. + */ + public boolean hasOneof2945() { + return hugeOneofCase_ == 2945; + } /** * int32 oneof_2945 = 2945; * @return The oneof2945. @@ -322128,6 +365754,13 @@ public Builder clearOneof2945() { return this; } + /** + * int32 oneof_2946 = 2946; + * @return Whether the oneof2946 field is set. + */ + public boolean hasOneof2946() { + return hugeOneofCase_ == 2946; + } /** * int32 oneof_2946 = 2946; * @return The oneof2946. @@ -322162,6 +365795,13 @@ public Builder clearOneof2946() { return this; } + /** + * int32 oneof_2947 = 2947; + * @return Whether the oneof2947 field is set. + */ + public boolean hasOneof2947() { + return hugeOneofCase_ == 2947; + } /** * int32 oneof_2947 = 2947; * @return The oneof2947. @@ -322196,6 +365836,13 @@ public Builder clearOneof2947() { return this; } + /** + * int32 oneof_2948 = 2948; + * @return Whether the oneof2948 field is set. + */ + public boolean hasOneof2948() { + return hugeOneofCase_ == 2948; + } /** * int32 oneof_2948 = 2948; * @return The oneof2948. @@ -322230,6 +365877,13 @@ public Builder clearOneof2948() { return this; } + /** + * int32 oneof_2949 = 2949; + * @return Whether the oneof2949 field is set. + */ + public boolean hasOneof2949() { + return hugeOneofCase_ == 2949; + } /** * int32 oneof_2949 = 2949; * @return The oneof2949. @@ -322264,6 +365918,13 @@ public Builder clearOneof2949() { return this; } + /** + * int32 oneof_2950 = 2950; + * @return Whether the oneof2950 field is set. + */ + public boolean hasOneof2950() { + return hugeOneofCase_ == 2950; + } /** * int32 oneof_2950 = 2950; * @return The oneof2950. @@ -322298,6 +365959,13 @@ public Builder clearOneof2950() { return this; } + /** + * int32 oneof_2951 = 2951; + * @return Whether the oneof2951 field is set. + */ + public boolean hasOneof2951() { + return hugeOneofCase_ == 2951; + } /** * int32 oneof_2951 = 2951; * @return The oneof2951. @@ -322332,6 +366000,13 @@ public Builder clearOneof2951() { return this; } + /** + * int32 oneof_2952 = 2952; + * @return Whether the oneof2952 field is set. + */ + public boolean hasOneof2952() { + return hugeOneofCase_ == 2952; + } /** * int32 oneof_2952 = 2952; * @return The oneof2952. @@ -322366,6 +366041,13 @@ public Builder clearOneof2952() { return this; } + /** + * int32 oneof_2953 = 2953; + * @return Whether the oneof2953 field is set. + */ + public boolean hasOneof2953() { + return hugeOneofCase_ == 2953; + } /** * int32 oneof_2953 = 2953; * @return The oneof2953. @@ -322400,6 +366082,13 @@ public Builder clearOneof2953() { return this; } + /** + * int32 oneof_2954 = 2954; + * @return Whether the oneof2954 field is set. + */ + public boolean hasOneof2954() { + return hugeOneofCase_ == 2954; + } /** * int32 oneof_2954 = 2954; * @return The oneof2954. @@ -322434,6 +366123,13 @@ public Builder clearOneof2954() { return this; } + /** + * int32 oneof_2955 = 2955; + * @return Whether the oneof2955 field is set. + */ + public boolean hasOneof2955() { + return hugeOneofCase_ == 2955; + } /** * int32 oneof_2955 = 2955; * @return The oneof2955. @@ -322468,6 +366164,13 @@ public Builder clearOneof2955() { return this; } + /** + * int32 oneof_2956 = 2956; + * @return Whether the oneof2956 field is set. + */ + public boolean hasOneof2956() { + return hugeOneofCase_ == 2956; + } /** * int32 oneof_2956 = 2956; * @return The oneof2956. @@ -322502,6 +366205,13 @@ public Builder clearOneof2956() { return this; } + /** + * int32 oneof_2957 = 2957; + * @return Whether the oneof2957 field is set. + */ + public boolean hasOneof2957() { + return hugeOneofCase_ == 2957; + } /** * int32 oneof_2957 = 2957; * @return The oneof2957. @@ -322536,6 +366246,13 @@ public Builder clearOneof2957() { return this; } + /** + * int32 oneof_2958 = 2958; + * @return Whether the oneof2958 field is set. + */ + public boolean hasOneof2958() { + return hugeOneofCase_ == 2958; + } /** * int32 oneof_2958 = 2958; * @return The oneof2958. @@ -322570,6 +366287,13 @@ public Builder clearOneof2958() { return this; } + /** + * int32 oneof_2959 = 2959; + * @return Whether the oneof2959 field is set. + */ + public boolean hasOneof2959() { + return hugeOneofCase_ == 2959; + } /** * int32 oneof_2959 = 2959; * @return The oneof2959. @@ -322604,6 +366328,13 @@ public Builder clearOneof2959() { return this; } + /** + * int32 oneof_2960 = 2960; + * @return Whether the oneof2960 field is set. + */ + public boolean hasOneof2960() { + return hugeOneofCase_ == 2960; + } /** * int32 oneof_2960 = 2960; * @return The oneof2960. @@ -322638,6 +366369,13 @@ public Builder clearOneof2960() { return this; } + /** + * int32 oneof_2961 = 2961; + * @return Whether the oneof2961 field is set. + */ + public boolean hasOneof2961() { + return hugeOneofCase_ == 2961; + } /** * int32 oneof_2961 = 2961; * @return The oneof2961. @@ -322672,6 +366410,13 @@ public Builder clearOneof2961() { return this; } + /** + * int32 oneof_2962 = 2962; + * @return Whether the oneof2962 field is set. + */ + public boolean hasOneof2962() { + return hugeOneofCase_ == 2962; + } /** * int32 oneof_2962 = 2962; * @return The oneof2962. @@ -322706,6 +366451,13 @@ public Builder clearOneof2962() { return this; } + /** + * int32 oneof_2963 = 2963; + * @return Whether the oneof2963 field is set. + */ + public boolean hasOneof2963() { + return hugeOneofCase_ == 2963; + } /** * int32 oneof_2963 = 2963; * @return The oneof2963. @@ -322740,6 +366492,13 @@ public Builder clearOneof2963() { return this; } + /** + * int32 oneof_2964 = 2964; + * @return Whether the oneof2964 field is set. + */ + public boolean hasOneof2964() { + return hugeOneofCase_ == 2964; + } /** * int32 oneof_2964 = 2964; * @return The oneof2964. @@ -322774,6 +366533,13 @@ public Builder clearOneof2964() { return this; } + /** + * int32 oneof_2965 = 2965; + * @return Whether the oneof2965 field is set. + */ + public boolean hasOneof2965() { + return hugeOneofCase_ == 2965; + } /** * int32 oneof_2965 = 2965; * @return The oneof2965. @@ -322808,6 +366574,13 @@ public Builder clearOneof2965() { return this; } + /** + * int32 oneof_2966 = 2966; + * @return Whether the oneof2966 field is set. + */ + public boolean hasOneof2966() { + return hugeOneofCase_ == 2966; + } /** * int32 oneof_2966 = 2966; * @return The oneof2966. @@ -322842,6 +366615,13 @@ public Builder clearOneof2966() { return this; } + /** + * int32 oneof_2967 = 2967; + * @return Whether the oneof2967 field is set. + */ + public boolean hasOneof2967() { + return hugeOneofCase_ == 2967; + } /** * int32 oneof_2967 = 2967; * @return The oneof2967. @@ -322876,6 +366656,13 @@ public Builder clearOneof2967() { return this; } + /** + * int32 oneof_2968 = 2968; + * @return Whether the oneof2968 field is set. + */ + public boolean hasOneof2968() { + return hugeOneofCase_ == 2968; + } /** * int32 oneof_2968 = 2968; * @return The oneof2968. @@ -322910,6 +366697,13 @@ public Builder clearOneof2968() { return this; } + /** + * int32 oneof_2969 = 2969; + * @return Whether the oneof2969 field is set. + */ + public boolean hasOneof2969() { + return hugeOneofCase_ == 2969; + } /** * int32 oneof_2969 = 2969; * @return The oneof2969. @@ -322944,6 +366738,13 @@ public Builder clearOneof2969() { return this; } + /** + * int32 oneof_2970 = 2970; + * @return Whether the oneof2970 field is set. + */ + public boolean hasOneof2970() { + return hugeOneofCase_ == 2970; + } /** * int32 oneof_2970 = 2970; * @return The oneof2970. @@ -322978,6 +366779,13 @@ public Builder clearOneof2970() { return this; } + /** + * int32 oneof_2971 = 2971; + * @return Whether the oneof2971 field is set. + */ + public boolean hasOneof2971() { + return hugeOneofCase_ == 2971; + } /** * int32 oneof_2971 = 2971; * @return The oneof2971. @@ -323012,6 +366820,13 @@ public Builder clearOneof2971() { return this; } + /** + * int32 oneof_2972 = 2972; + * @return Whether the oneof2972 field is set. + */ + public boolean hasOneof2972() { + return hugeOneofCase_ == 2972; + } /** * int32 oneof_2972 = 2972; * @return The oneof2972. @@ -323046,6 +366861,13 @@ public Builder clearOneof2972() { return this; } + /** + * int32 oneof_2973 = 2973; + * @return Whether the oneof2973 field is set. + */ + public boolean hasOneof2973() { + return hugeOneofCase_ == 2973; + } /** * int32 oneof_2973 = 2973; * @return The oneof2973. @@ -323080,6 +366902,13 @@ public Builder clearOneof2973() { return this; } + /** + * int32 oneof_2974 = 2974; + * @return Whether the oneof2974 field is set. + */ + public boolean hasOneof2974() { + return hugeOneofCase_ == 2974; + } /** * int32 oneof_2974 = 2974; * @return The oneof2974. @@ -323114,6 +366943,13 @@ public Builder clearOneof2974() { return this; } + /** + * int32 oneof_2975 = 2975; + * @return Whether the oneof2975 field is set. + */ + public boolean hasOneof2975() { + return hugeOneofCase_ == 2975; + } /** * int32 oneof_2975 = 2975; * @return The oneof2975. @@ -323148,6 +366984,13 @@ public Builder clearOneof2975() { return this; } + /** + * int32 oneof_2976 = 2976; + * @return Whether the oneof2976 field is set. + */ + public boolean hasOneof2976() { + return hugeOneofCase_ == 2976; + } /** * int32 oneof_2976 = 2976; * @return The oneof2976. @@ -323182,6 +367025,13 @@ public Builder clearOneof2976() { return this; } + /** + * int32 oneof_2977 = 2977; + * @return Whether the oneof2977 field is set. + */ + public boolean hasOneof2977() { + return hugeOneofCase_ == 2977; + } /** * int32 oneof_2977 = 2977; * @return The oneof2977. @@ -323216,6 +367066,13 @@ public Builder clearOneof2977() { return this; } + /** + * int32 oneof_2978 = 2978; + * @return Whether the oneof2978 field is set. + */ + public boolean hasOneof2978() { + return hugeOneofCase_ == 2978; + } /** * int32 oneof_2978 = 2978; * @return The oneof2978. @@ -323250,6 +367107,13 @@ public Builder clearOneof2978() { return this; } + /** + * int32 oneof_2979 = 2979; + * @return Whether the oneof2979 field is set. + */ + public boolean hasOneof2979() { + return hugeOneofCase_ == 2979; + } /** * int32 oneof_2979 = 2979; * @return The oneof2979. @@ -323284,6 +367148,13 @@ public Builder clearOneof2979() { return this; } + /** + * int32 oneof_2980 = 2980; + * @return Whether the oneof2980 field is set. + */ + public boolean hasOneof2980() { + return hugeOneofCase_ == 2980; + } /** * int32 oneof_2980 = 2980; * @return The oneof2980. @@ -323318,6 +367189,13 @@ public Builder clearOneof2980() { return this; } + /** + * int32 oneof_2981 = 2981; + * @return Whether the oneof2981 field is set. + */ + public boolean hasOneof2981() { + return hugeOneofCase_ == 2981; + } /** * int32 oneof_2981 = 2981; * @return The oneof2981. @@ -323352,6 +367230,13 @@ public Builder clearOneof2981() { return this; } + /** + * int32 oneof_2982 = 2982; + * @return Whether the oneof2982 field is set. + */ + public boolean hasOneof2982() { + return hugeOneofCase_ == 2982; + } /** * int32 oneof_2982 = 2982; * @return The oneof2982. @@ -323386,6 +367271,13 @@ public Builder clearOneof2982() { return this; } + /** + * int32 oneof_2983 = 2983; + * @return Whether the oneof2983 field is set. + */ + public boolean hasOneof2983() { + return hugeOneofCase_ == 2983; + } /** * int32 oneof_2983 = 2983; * @return The oneof2983. @@ -323420,6 +367312,13 @@ public Builder clearOneof2983() { return this; } + /** + * int32 oneof_2984 = 2984; + * @return Whether the oneof2984 field is set. + */ + public boolean hasOneof2984() { + return hugeOneofCase_ == 2984; + } /** * int32 oneof_2984 = 2984; * @return The oneof2984. @@ -323454,6 +367353,13 @@ public Builder clearOneof2984() { return this; } + /** + * int32 oneof_2985 = 2985; + * @return Whether the oneof2985 field is set. + */ + public boolean hasOneof2985() { + return hugeOneofCase_ == 2985; + } /** * int32 oneof_2985 = 2985; * @return The oneof2985. @@ -323488,6 +367394,13 @@ public Builder clearOneof2985() { return this; } + /** + * int32 oneof_2986 = 2986; + * @return Whether the oneof2986 field is set. + */ + public boolean hasOneof2986() { + return hugeOneofCase_ == 2986; + } /** * int32 oneof_2986 = 2986; * @return The oneof2986. @@ -323522,6 +367435,13 @@ public Builder clearOneof2986() { return this; } + /** + * int32 oneof_2987 = 2987; + * @return Whether the oneof2987 field is set. + */ + public boolean hasOneof2987() { + return hugeOneofCase_ == 2987; + } /** * int32 oneof_2987 = 2987; * @return The oneof2987. @@ -323556,6 +367476,13 @@ public Builder clearOneof2987() { return this; } + /** + * int32 oneof_2988 = 2988; + * @return Whether the oneof2988 field is set. + */ + public boolean hasOneof2988() { + return hugeOneofCase_ == 2988; + } /** * int32 oneof_2988 = 2988; * @return The oneof2988. @@ -323590,6 +367517,13 @@ public Builder clearOneof2988() { return this; } + /** + * int32 oneof_2989 = 2989; + * @return Whether the oneof2989 field is set. + */ + public boolean hasOneof2989() { + return hugeOneofCase_ == 2989; + } /** * int32 oneof_2989 = 2989; * @return The oneof2989. @@ -323624,6 +367558,13 @@ public Builder clearOneof2989() { return this; } + /** + * int32 oneof_2990 = 2990; + * @return Whether the oneof2990 field is set. + */ + public boolean hasOneof2990() { + return hugeOneofCase_ == 2990; + } /** * int32 oneof_2990 = 2990; * @return The oneof2990. @@ -323658,6 +367599,13 @@ public Builder clearOneof2990() { return this; } + /** + * int32 oneof_2991 = 2991; + * @return Whether the oneof2991 field is set. + */ + public boolean hasOneof2991() { + return hugeOneofCase_ == 2991; + } /** * int32 oneof_2991 = 2991; * @return The oneof2991. @@ -323692,6 +367640,13 @@ public Builder clearOneof2991() { return this; } + /** + * int32 oneof_2992 = 2992; + * @return Whether the oneof2992 field is set. + */ + public boolean hasOneof2992() { + return hugeOneofCase_ == 2992; + } /** * int32 oneof_2992 = 2992; * @return The oneof2992. @@ -323726,6 +367681,13 @@ public Builder clearOneof2992() { return this; } + /** + * int32 oneof_2993 = 2993; + * @return Whether the oneof2993 field is set. + */ + public boolean hasOneof2993() { + return hugeOneofCase_ == 2993; + } /** * int32 oneof_2993 = 2993; * @return The oneof2993. @@ -323760,6 +367722,13 @@ public Builder clearOneof2993() { return this; } + /** + * int32 oneof_2994 = 2994; + * @return Whether the oneof2994 field is set. + */ + public boolean hasOneof2994() { + return hugeOneofCase_ == 2994; + } /** * int32 oneof_2994 = 2994; * @return The oneof2994. @@ -323794,6 +367763,13 @@ public Builder clearOneof2994() { return this; } + /** + * int32 oneof_2995 = 2995; + * @return Whether the oneof2995 field is set. + */ + public boolean hasOneof2995() { + return hugeOneofCase_ == 2995; + } /** * int32 oneof_2995 = 2995; * @return The oneof2995. @@ -323828,6 +367804,13 @@ public Builder clearOneof2995() { return this; } + /** + * int32 oneof_2996 = 2996; + * @return Whether the oneof2996 field is set. + */ + public boolean hasOneof2996() { + return hugeOneofCase_ == 2996; + } /** * int32 oneof_2996 = 2996; * @return The oneof2996. @@ -323862,6 +367845,13 @@ public Builder clearOneof2996() { return this; } + /** + * int32 oneof_2997 = 2997; + * @return Whether the oneof2997 field is set. + */ + public boolean hasOneof2997() { + return hugeOneofCase_ == 2997; + } /** * int32 oneof_2997 = 2997; * @return The oneof2997. @@ -323896,6 +367886,13 @@ public Builder clearOneof2997() { return this; } + /** + * int32 oneof_2998 = 2998; + * @return Whether the oneof2998 field is set. + */ + public boolean hasOneof2998() { + return hugeOneofCase_ == 2998; + } /** * int32 oneof_2998 = 2998; * @return The oneof2998. @@ -323930,6 +367927,13 @@ public Builder clearOneof2998() { return this; } + /** + * int32 oneof_2999 = 2999; + * @return Whether the oneof2999 field is set. + */ + public boolean hasOneof2999() { + return hugeOneofCase_ == 2999; + } /** * int32 oneof_2999 = 2999; * @return The oneof2999. diff --git a/jvm-test-types/src/main/java/pbandk/testpb/Validate.java b/jvm-test-types/src/main/java/pbandk/testpb/Validate.java index c3145032..68417d74 100644 --- a/jvm-test-types/src/main/java/pbandk/testpb/Validate.java +++ b/jvm-test-types/src/main/java/pbandk/testpb/Validate.java @@ -166,7 +166,7 @@ public interface FieldRulesOrBuilder extends * Scalar Field Types * * - * optional .pbandk.testpb.FloatRules float = 1; + * .pbandk.testpb.FloatRules float = 1; * @return Whether the float field is set. */ boolean hasFloat(); @@ -175,7 +175,7 @@ public interface FieldRulesOrBuilder extends * Scalar Field Types * * - * optional .pbandk.testpb.FloatRules float = 1; + * .pbandk.testpb.FloatRules float = 1; * @return The float. */ pbandk.testpb.Validate.FloatRules getFloat(); @@ -184,217 +184,217 @@ public interface FieldRulesOrBuilder extends * Scalar Field Types * * - * optional .pbandk.testpb.FloatRules float = 1; + * .pbandk.testpb.FloatRules float = 1; */ pbandk.testpb.Validate.FloatRulesOrBuilder getFloatOrBuilder(); /** - * optional .pbandk.testpb.DoubleRules double = 2; + * .pbandk.testpb.DoubleRules double = 2; * @return Whether the double field is set. */ boolean hasDouble(); /** - * optional .pbandk.testpb.DoubleRules double = 2; + * .pbandk.testpb.DoubleRules double = 2; * @return The double. */ pbandk.testpb.Validate.DoubleRules getDouble(); /** - * optional .pbandk.testpb.DoubleRules double = 2; + * .pbandk.testpb.DoubleRules double = 2; */ pbandk.testpb.Validate.DoubleRulesOrBuilder getDoubleOrBuilder(); /** - * optional .pbandk.testpb.Int32Rules int32 = 3; + * .pbandk.testpb.Int32Rules int32 = 3; * @return Whether the int32 field is set. */ boolean hasInt32(); /** - * optional .pbandk.testpb.Int32Rules int32 = 3; + * .pbandk.testpb.Int32Rules int32 = 3; * @return The int32. */ pbandk.testpb.Validate.Int32Rules getInt32(); /** - * optional .pbandk.testpb.Int32Rules int32 = 3; + * .pbandk.testpb.Int32Rules int32 = 3; */ pbandk.testpb.Validate.Int32RulesOrBuilder getInt32OrBuilder(); /** - * optional .pbandk.testpb.Int64Rules int64 = 4; + * .pbandk.testpb.Int64Rules int64 = 4; * @return Whether the int64 field is set. */ boolean hasInt64(); /** - * optional .pbandk.testpb.Int64Rules int64 = 4; + * .pbandk.testpb.Int64Rules int64 = 4; * @return The int64. */ pbandk.testpb.Validate.Int64Rules getInt64(); /** - * optional .pbandk.testpb.Int64Rules int64 = 4; + * .pbandk.testpb.Int64Rules int64 = 4; */ pbandk.testpb.Validate.Int64RulesOrBuilder getInt64OrBuilder(); /** - * optional .pbandk.testpb.UInt32Rules uint32 = 5; + * .pbandk.testpb.UInt32Rules uint32 = 5; * @return Whether the uint32 field is set. */ boolean hasUint32(); /** - * optional .pbandk.testpb.UInt32Rules uint32 = 5; + * .pbandk.testpb.UInt32Rules uint32 = 5; * @return The uint32. */ pbandk.testpb.Validate.UInt32Rules getUint32(); /** - * optional .pbandk.testpb.UInt32Rules uint32 = 5; + * .pbandk.testpb.UInt32Rules uint32 = 5; */ pbandk.testpb.Validate.UInt32RulesOrBuilder getUint32OrBuilder(); /** - * optional .pbandk.testpb.UInt64Rules uint64 = 6; + * .pbandk.testpb.UInt64Rules uint64 = 6; * @return Whether the uint64 field is set. */ boolean hasUint64(); /** - * optional .pbandk.testpb.UInt64Rules uint64 = 6; + * .pbandk.testpb.UInt64Rules uint64 = 6; * @return The uint64. */ pbandk.testpb.Validate.UInt64Rules getUint64(); /** - * optional .pbandk.testpb.UInt64Rules uint64 = 6; + * .pbandk.testpb.UInt64Rules uint64 = 6; */ pbandk.testpb.Validate.UInt64RulesOrBuilder getUint64OrBuilder(); /** - * optional .pbandk.testpb.SInt32Rules sint32 = 7; + * .pbandk.testpb.SInt32Rules sint32 = 7; * @return Whether the sint32 field is set. */ boolean hasSint32(); /** - * optional .pbandk.testpb.SInt32Rules sint32 = 7; + * .pbandk.testpb.SInt32Rules sint32 = 7; * @return The sint32. */ pbandk.testpb.Validate.SInt32Rules getSint32(); /** - * optional .pbandk.testpb.SInt32Rules sint32 = 7; + * .pbandk.testpb.SInt32Rules sint32 = 7; */ pbandk.testpb.Validate.SInt32RulesOrBuilder getSint32OrBuilder(); /** - * optional .pbandk.testpb.SInt64Rules sint64 = 8; + * .pbandk.testpb.SInt64Rules sint64 = 8; * @return Whether the sint64 field is set. */ boolean hasSint64(); /** - * optional .pbandk.testpb.SInt64Rules sint64 = 8; + * .pbandk.testpb.SInt64Rules sint64 = 8; * @return The sint64. */ pbandk.testpb.Validate.SInt64Rules getSint64(); /** - * optional .pbandk.testpb.SInt64Rules sint64 = 8; + * .pbandk.testpb.SInt64Rules sint64 = 8; */ pbandk.testpb.Validate.SInt64RulesOrBuilder getSint64OrBuilder(); /** - * optional .pbandk.testpb.Fixed32Rules fixed32 = 9; + * .pbandk.testpb.Fixed32Rules fixed32 = 9; * @return Whether the fixed32 field is set. */ boolean hasFixed32(); /** - * optional .pbandk.testpb.Fixed32Rules fixed32 = 9; + * .pbandk.testpb.Fixed32Rules fixed32 = 9; * @return The fixed32. */ pbandk.testpb.Validate.Fixed32Rules getFixed32(); /** - * optional .pbandk.testpb.Fixed32Rules fixed32 = 9; + * .pbandk.testpb.Fixed32Rules fixed32 = 9; */ pbandk.testpb.Validate.Fixed32RulesOrBuilder getFixed32OrBuilder(); /** - * optional .pbandk.testpb.Fixed64Rules fixed64 = 10; + * .pbandk.testpb.Fixed64Rules fixed64 = 10; * @return Whether the fixed64 field is set. */ boolean hasFixed64(); /** - * optional .pbandk.testpb.Fixed64Rules fixed64 = 10; + * .pbandk.testpb.Fixed64Rules fixed64 = 10; * @return The fixed64. */ pbandk.testpb.Validate.Fixed64Rules getFixed64(); /** - * optional .pbandk.testpb.Fixed64Rules fixed64 = 10; + * .pbandk.testpb.Fixed64Rules fixed64 = 10; */ pbandk.testpb.Validate.Fixed64RulesOrBuilder getFixed64OrBuilder(); /** - * optional .pbandk.testpb.SFixed32Rules sfixed32 = 11; + * .pbandk.testpb.SFixed32Rules sfixed32 = 11; * @return Whether the sfixed32 field is set. */ boolean hasSfixed32(); /** - * optional .pbandk.testpb.SFixed32Rules sfixed32 = 11; + * .pbandk.testpb.SFixed32Rules sfixed32 = 11; * @return The sfixed32. */ pbandk.testpb.Validate.SFixed32Rules getSfixed32(); /** - * optional .pbandk.testpb.SFixed32Rules sfixed32 = 11; + * .pbandk.testpb.SFixed32Rules sfixed32 = 11; */ pbandk.testpb.Validate.SFixed32RulesOrBuilder getSfixed32OrBuilder(); /** - * optional .pbandk.testpb.SFixed64Rules sfixed64 = 12; + * .pbandk.testpb.SFixed64Rules sfixed64 = 12; * @return Whether the sfixed64 field is set. */ boolean hasSfixed64(); /** - * optional .pbandk.testpb.SFixed64Rules sfixed64 = 12; + * .pbandk.testpb.SFixed64Rules sfixed64 = 12; * @return The sfixed64. */ pbandk.testpb.Validate.SFixed64Rules getSfixed64(); /** - * optional .pbandk.testpb.SFixed64Rules sfixed64 = 12; + * .pbandk.testpb.SFixed64Rules sfixed64 = 12; */ pbandk.testpb.Validate.SFixed64RulesOrBuilder getSfixed64OrBuilder(); /** - * optional .pbandk.testpb.BoolRules bool = 13; + * .pbandk.testpb.BoolRules bool = 13; * @return Whether the bool field is set. */ boolean hasBool(); /** - * optional .pbandk.testpb.BoolRules bool = 13; + * .pbandk.testpb.BoolRules bool = 13; * @return The bool. */ pbandk.testpb.Validate.BoolRules getBool(); /** - * optional .pbandk.testpb.BoolRules bool = 13; + * .pbandk.testpb.BoolRules bool = 13; */ pbandk.testpb.Validate.BoolRulesOrBuilder getBoolOrBuilder(); /** - * optional .pbandk.testpb.StringRules string = 14; + * .pbandk.testpb.StringRules string = 14; * @return Whether the string field is set. */ boolean hasString(); /** - * optional .pbandk.testpb.StringRules string = 14; + * .pbandk.testpb.StringRules string = 14; * @return The string. */ pbandk.testpb.Validate.StringRules getString(); /** - * optional .pbandk.testpb.StringRules string = 14; + * .pbandk.testpb.StringRules string = 14; */ pbandk.testpb.Validate.StringRulesOrBuilder getStringOrBuilder(); /** - * optional .pbandk.testpb.BytesRules bytes = 15; + * .pbandk.testpb.BytesRules bytes = 15; * @return Whether the bytes field is set. */ boolean hasBytes(); /** - * optional .pbandk.testpb.BytesRules bytes = 15; + * .pbandk.testpb.BytesRules bytes = 15; * @return The bytes. */ pbandk.testpb.Validate.BytesRules getBytes(); /** - * optional .pbandk.testpb.BytesRules bytes = 15; + * .pbandk.testpb.BytesRules bytes = 15; */ pbandk.testpb.Validate.BytesRulesOrBuilder getBytesOrBuilder(); @@ -403,7 +403,7 @@ public interface FieldRulesOrBuilder extends * Complex Field Types * * - * optional .pbandk.testpb.EnumRules enum = 16; + * .pbandk.testpb.EnumRules enum = 16; * @return Whether the enum field is set. */ boolean hasEnum(); @@ -412,7 +412,7 @@ public interface FieldRulesOrBuilder extends * Complex Field Types * * - * optional .pbandk.testpb.EnumRules enum = 16; + * .pbandk.testpb.EnumRules enum = 16; * @return The enum. */ pbandk.testpb.Validate.EnumRules getEnum(); @@ -421,37 +421,37 @@ public interface FieldRulesOrBuilder extends * Complex Field Types * * - * optional .pbandk.testpb.EnumRules enum = 16; + * .pbandk.testpb.EnumRules enum = 16; */ pbandk.testpb.Validate.EnumRulesOrBuilder getEnumOrBuilder(); /** - * optional .pbandk.testpb.RepeatedRules repeated = 18; + * .pbandk.testpb.RepeatedRules repeated = 18; * @return Whether the repeated field is set. */ boolean hasRepeated(); /** - * optional .pbandk.testpb.RepeatedRules repeated = 18; + * .pbandk.testpb.RepeatedRules repeated = 18; * @return The repeated. */ pbandk.testpb.Validate.RepeatedRules getRepeated(); /** - * optional .pbandk.testpb.RepeatedRules repeated = 18; + * .pbandk.testpb.RepeatedRules repeated = 18; */ pbandk.testpb.Validate.RepeatedRulesOrBuilder getRepeatedOrBuilder(); /** - * optional .pbandk.testpb.MapRules map = 19; + * .pbandk.testpb.MapRules map = 19; * @return Whether the map field is set. */ boolean hasMap(); /** - * optional .pbandk.testpb.MapRules map = 19; + * .pbandk.testpb.MapRules map = 19; * @return The map. */ pbandk.testpb.Validate.MapRules getMap(); /** - * optional .pbandk.testpb.MapRules map = 19; + * .pbandk.testpb.MapRules map = 19; */ pbandk.testpb.Validate.MapRulesOrBuilder getMapOrBuilder(); @@ -460,7 +460,7 @@ public interface FieldRulesOrBuilder extends * Well-Known Field Types * * - * optional .pbandk.testpb.AnyRules any = 20; + * .pbandk.testpb.AnyRules any = 20; * @return Whether the any field is set. */ boolean hasAny(); @@ -469,7 +469,7 @@ public interface FieldRulesOrBuilder extends * Well-Known Field Types * * - * optional .pbandk.testpb.AnyRules any = 20; + * .pbandk.testpb.AnyRules any = 20; * @return The any. */ pbandk.testpb.Validate.AnyRules getAny(); @@ -478,37 +478,37 @@ public interface FieldRulesOrBuilder extends * Well-Known Field Types * * - * optional .pbandk.testpb.AnyRules any = 20; + * .pbandk.testpb.AnyRules any = 20; */ pbandk.testpb.Validate.AnyRulesOrBuilder getAnyOrBuilder(); /** - * optional .pbandk.testpb.DurationRules duration = 21; + * .pbandk.testpb.DurationRules duration = 21; * @return Whether the duration field is set. */ boolean hasDuration(); /** - * optional .pbandk.testpb.DurationRules duration = 21; + * .pbandk.testpb.DurationRules duration = 21; * @return The duration. */ pbandk.testpb.Validate.DurationRules getDuration(); /** - * optional .pbandk.testpb.DurationRules duration = 21; + * .pbandk.testpb.DurationRules duration = 21; */ pbandk.testpb.Validate.DurationRulesOrBuilder getDurationOrBuilder(); /** - * optional .pbandk.testpb.TimestampRules timestamp = 22; + * .pbandk.testpb.TimestampRules timestamp = 22; * @return Whether the timestamp field is set. */ boolean hasTimestamp(); /** - * optional .pbandk.testpb.TimestampRules timestamp = 22; + * .pbandk.testpb.TimestampRules timestamp = 22; * @return The timestamp. */ pbandk.testpb.Validate.TimestampRules getTimestamp(); /** - * optional .pbandk.testpb.TimestampRules timestamp = 22; + * .pbandk.testpb.TimestampRules timestamp = 22; */ pbandk.testpb.Validate.TimestampRulesOrBuilder getTimestampOrBuilder(); @@ -522,7 +522,7 @@ public interface FieldRulesOrBuilder extends * * Protobuf type {@code pbandk.testpb.FieldRules} */ - public static final class FieldRules extends + public static final class FieldRules extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:pbandk.testpb.FieldRules) FieldRulesOrBuilder { @@ -990,6 +990,7 @@ public int getNumber() { * optional .pbandk.testpb.MessageRules message = 17; * @return Whether the message field is set. */ + @java.lang.Override public boolean hasMessage() { return ((bitField0_ & 0x00000001) != 0); } @@ -997,12 +998,14 @@ public boolean hasMessage() { * optional .pbandk.testpb.MessageRules message = 17; * @return The message. */ + @java.lang.Override public pbandk.testpb.Validate.MessageRules getMessage() { return message_ == null ? pbandk.testpb.Validate.MessageRules.getDefaultInstance() : message_; } /** * optional .pbandk.testpb.MessageRules message = 17; */ + @java.lang.Override public pbandk.testpb.Validate.MessageRulesOrBuilder getMessageOrBuilder() { return message_ == null ? pbandk.testpb.Validate.MessageRules.getDefaultInstance() : message_; } @@ -1013,9 +1016,10 @@ public pbandk.testpb.Validate.MessageRulesOrBuilder getMessageOrBuilder() { * Scalar Field Types * * - * optional .pbandk.testpb.FloatRules float = 1; + * .pbandk.testpb.FloatRules float = 1; * @return Whether the float field is set. */ + @java.lang.Override public boolean hasFloat() { return typeCase_ == 1; } @@ -1024,9 +1028,10 @@ public boolean hasFloat() { * Scalar Field Types * * - * optional .pbandk.testpb.FloatRules float = 1; + * .pbandk.testpb.FloatRules float = 1; * @return The float. */ + @java.lang.Override public pbandk.testpb.Validate.FloatRules getFloat() { if (typeCase_ == 1) { return (pbandk.testpb.Validate.FloatRules) type_; @@ -1038,8 +1043,9 @@ public pbandk.testpb.Validate.FloatRules getFloat() { * Scalar Field Types * * - * optional .pbandk.testpb.FloatRules float = 1; + * .pbandk.testpb.FloatRules float = 1; */ + @java.lang.Override public pbandk.testpb.Validate.FloatRulesOrBuilder getFloatOrBuilder() { if (typeCase_ == 1) { return (pbandk.testpb.Validate.FloatRules) type_; @@ -1049,16 +1055,18 @@ public pbandk.testpb.Validate.FloatRulesOrBuilder getFloatOrBuilder() { public static final int DOUBLE_FIELD_NUMBER = 2; /** - * optional .pbandk.testpb.DoubleRules double = 2; + * .pbandk.testpb.DoubleRules double = 2; * @return Whether the double field is set. */ + @java.lang.Override public boolean hasDouble() { return typeCase_ == 2; } /** - * optional .pbandk.testpb.DoubleRules double = 2; + * .pbandk.testpb.DoubleRules double = 2; * @return The double. */ + @java.lang.Override public pbandk.testpb.Validate.DoubleRules getDouble() { if (typeCase_ == 2) { return (pbandk.testpb.Validate.DoubleRules) type_; @@ -1066,8 +1074,9 @@ public pbandk.testpb.Validate.DoubleRules getDouble() { return pbandk.testpb.Validate.DoubleRules.getDefaultInstance(); } /** - * optional .pbandk.testpb.DoubleRules double = 2; + * .pbandk.testpb.DoubleRules double = 2; */ + @java.lang.Override public pbandk.testpb.Validate.DoubleRulesOrBuilder getDoubleOrBuilder() { if (typeCase_ == 2) { return (pbandk.testpb.Validate.DoubleRules) type_; @@ -1077,16 +1086,18 @@ public pbandk.testpb.Validate.DoubleRulesOrBuilder getDoubleOrBuilder() { public static final int INT32_FIELD_NUMBER = 3; /** - * optional .pbandk.testpb.Int32Rules int32 = 3; + * .pbandk.testpb.Int32Rules int32 = 3; * @return Whether the int32 field is set. */ + @java.lang.Override public boolean hasInt32() { return typeCase_ == 3; } /** - * optional .pbandk.testpb.Int32Rules int32 = 3; + * .pbandk.testpb.Int32Rules int32 = 3; * @return The int32. */ + @java.lang.Override public pbandk.testpb.Validate.Int32Rules getInt32() { if (typeCase_ == 3) { return (pbandk.testpb.Validate.Int32Rules) type_; @@ -1094,8 +1105,9 @@ public pbandk.testpb.Validate.Int32Rules getInt32() { return pbandk.testpb.Validate.Int32Rules.getDefaultInstance(); } /** - * optional .pbandk.testpb.Int32Rules int32 = 3; + * .pbandk.testpb.Int32Rules int32 = 3; */ + @java.lang.Override public pbandk.testpb.Validate.Int32RulesOrBuilder getInt32OrBuilder() { if (typeCase_ == 3) { return (pbandk.testpb.Validate.Int32Rules) type_; @@ -1105,16 +1117,18 @@ public pbandk.testpb.Validate.Int32RulesOrBuilder getInt32OrBuilder() { public static final int INT64_FIELD_NUMBER = 4; /** - * optional .pbandk.testpb.Int64Rules int64 = 4; + * .pbandk.testpb.Int64Rules int64 = 4; * @return Whether the int64 field is set. */ + @java.lang.Override public boolean hasInt64() { return typeCase_ == 4; } /** - * optional .pbandk.testpb.Int64Rules int64 = 4; + * .pbandk.testpb.Int64Rules int64 = 4; * @return The int64. */ + @java.lang.Override public pbandk.testpb.Validate.Int64Rules getInt64() { if (typeCase_ == 4) { return (pbandk.testpb.Validate.Int64Rules) type_; @@ -1122,8 +1136,9 @@ public pbandk.testpb.Validate.Int64Rules getInt64() { return pbandk.testpb.Validate.Int64Rules.getDefaultInstance(); } /** - * optional .pbandk.testpb.Int64Rules int64 = 4; + * .pbandk.testpb.Int64Rules int64 = 4; */ + @java.lang.Override public pbandk.testpb.Validate.Int64RulesOrBuilder getInt64OrBuilder() { if (typeCase_ == 4) { return (pbandk.testpb.Validate.Int64Rules) type_; @@ -1133,16 +1148,18 @@ public pbandk.testpb.Validate.Int64RulesOrBuilder getInt64OrBuilder() { public static final int UINT32_FIELD_NUMBER = 5; /** - * optional .pbandk.testpb.UInt32Rules uint32 = 5; + * .pbandk.testpb.UInt32Rules uint32 = 5; * @return Whether the uint32 field is set. */ + @java.lang.Override public boolean hasUint32() { return typeCase_ == 5; } /** - * optional .pbandk.testpb.UInt32Rules uint32 = 5; + * .pbandk.testpb.UInt32Rules uint32 = 5; * @return The uint32. */ + @java.lang.Override public pbandk.testpb.Validate.UInt32Rules getUint32() { if (typeCase_ == 5) { return (pbandk.testpb.Validate.UInt32Rules) type_; @@ -1150,8 +1167,9 @@ public pbandk.testpb.Validate.UInt32Rules getUint32() { return pbandk.testpb.Validate.UInt32Rules.getDefaultInstance(); } /** - * optional .pbandk.testpb.UInt32Rules uint32 = 5; + * .pbandk.testpb.UInt32Rules uint32 = 5; */ + @java.lang.Override public pbandk.testpb.Validate.UInt32RulesOrBuilder getUint32OrBuilder() { if (typeCase_ == 5) { return (pbandk.testpb.Validate.UInt32Rules) type_; @@ -1161,16 +1179,18 @@ public pbandk.testpb.Validate.UInt32RulesOrBuilder getUint32OrBuilder() { public static final int UINT64_FIELD_NUMBER = 6; /** - * optional .pbandk.testpb.UInt64Rules uint64 = 6; + * .pbandk.testpb.UInt64Rules uint64 = 6; * @return Whether the uint64 field is set. */ + @java.lang.Override public boolean hasUint64() { return typeCase_ == 6; } /** - * optional .pbandk.testpb.UInt64Rules uint64 = 6; + * .pbandk.testpb.UInt64Rules uint64 = 6; * @return The uint64. */ + @java.lang.Override public pbandk.testpb.Validate.UInt64Rules getUint64() { if (typeCase_ == 6) { return (pbandk.testpb.Validate.UInt64Rules) type_; @@ -1178,8 +1198,9 @@ public pbandk.testpb.Validate.UInt64Rules getUint64() { return pbandk.testpb.Validate.UInt64Rules.getDefaultInstance(); } /** - * optional .pbandk.testpb.UInt64Rules uint64 = 6; + * .pbandk.testpb.UInt64Rules uint64 = 6; */ + @java.lang.Override public pbandk.testpb.Validate.UInt64RulesOrBuilder getUint64OrBuilder() { if (typeCase_ == 6) { return (pbandk.testpb.Validate.UInt64Rules) type_; @@ -1189,16 +1210,18 @@ public pbandk.testpb.Validate.UInt64RulesOrBuilder getUint64OrBuilder() { public static final int SINT32_FIELD_NUMBER = 7; /** - * optional .pbandk.testpb.SInt32Rules sint32 = 7; + * .pbandk.testpb.SInt32Rules sint32 = 7; * @return Whether the sint32 field is set. */ + @java.lang.Override public boolean hasSint32() { return typeCase_ == 7; } /** - * optional .pbandk.testpb.SInt32Rules sint32 = 7; + * .pbandk.testpb.SInt32Rules sint32 = 7; * @return The sint32. */ + @java.lang.Override public pbandk.testpb.Validate.SInt32Rules getSint32() { if (typeCase_ == 7) { return (pbandk.testpb.Validate.SInt32Rules) type_; @@ -1206,8 +1229,9 @@ public pbandk.testpb.Validate.SInt32Rules getSint32() { return pbandk.testpb.Validate.SInt32Rules.getDefaultInstance(); } /** - * optional .pbandk.testpb.SInt32Rules sint32 = 7; + * .pbandk.testpb.SInt32Rules sint32 = 7; */ + @java.lang.Override public pbandk.testpb.Validate.SInt32RulesOrBuilder getSint32OrBuilder() { if (typeCase_ == 7) { return (pbandk.testpb.Validate.SInt32Rules) type_; @@ -1217,16 +1241,18 @@ public pbandk.testpb.Validate.SInt32RulesOrBuilder getSint32OrBuilder() { public static final int SINT64_FIELD_NUMBER = 8; /** - * optional .pbandk.testpb.SInt64Rules sint64 = 8; + * .pbandk.testpb.SInt64Rules sint64 = 8; * @return Whether the sint64 field is set. */ + @java.lang.Override public boolean hasSint64() { return typeCase_ == 8; } /** - * optional .pbandk.testpb.SInt64Rules sint64 = 8; + * .pbandk.testpb.SInt64Rules sint64 = 8; * @return The sint64. */ + @java.lang.Override public pbandk.testpb.Validate.SInt64Rules getSint64() { if (typeCase_ == 8) { return (pbandk.testpb.Validate.SInt64Rules) type_; @@ -1234,8 +1260,9 @@ public pbandk.testpb.Validate.SInt64Rules getSint64() { return pbandk.testpb.Validate.SInt64Rules.getDefaultInstance(); } /** - * optional .pbandk.testpb.SInt64Rules sint64 = 8; + * .pbandk.testpb.SInt64Rules sint64 = 8; */ + @java.lang.Override public pbandk.testpb.Validate.SInt64RulesOrBuilder getSint64OrBuilder() { if (typeCase_ == 8) { return (pbandk.testpb.Validate.SInt64Rules) type_; @@ -1245,16 +1272,18 @@ public pbandk.testpb.Validate.SInt64RulesOrBuilder getSint64OrBuilder() { public static final int FIXED32_FIELD_NUMBER = 9; /** - * optional .pbandk.testpb.Fixed32Rules fixed32 = 9; + * .pbandk.testpb.Fixed32Rules fixed32 = 9; * @return Whether the fixed32 field is set. */ + @java.lang.Override public boolean hasFixed32() { return typeCase_ == 9; } /** - * optional .pbandk.testpb.Fixed32Rules fixed32 = 9; + * .pbandk.testpb.Fixed32Rules fixed32 = 9; * @return The fixed32. */ + @java.lang.Override public pbandk.testpb.Validate.Fixed32Rules getFixed32() { if (typeCase_ == 9) { return (pbandk.testpb.Validate.Fixed32Rules) type_; @@ -1262,8 +1291,9 @@ public pbandk.testpb.Validate.Fixed32Rules getFixed32() { return pbandk.testpb.Validate.Fixed32Rules.getDefaultInstance(); } /** - * optional .pbandk.testpb.Fixed32Rules fixed32 = 9; + * .pbandk.testpb.Fixed32Rules fixed32 = 9; */ + @java.lang.Override public pbandk.testpb.Validate.Fixed32RulesOrBuilder getFixed32OrBuilder() { if (typeCase_ == 9) { return (pbandk.testpb.Validate.Fixed32Rules) type_; @@ -1273,16 +1303,18 @@ public pbandk.testpb.Validate.Fixed32RulesOrBuilder getFixed32OrBuilder() { public static final int FIXED64_FIELD_NUMBER = 10; /** - * optional .pbandk.testpb.Fixed64Rules fixed64 = 10; + * .pbandk.testpb.Fixed64Rules fixed64 = 10; * @return Whether the fixed64 field is set. */ + @java.lang.Override public boolean hasFixed64() { return typeCase_ == 10; } /** - * optional .pbandk.testpb.Fixed64Rules fixed64 = 10; + * .pbandk.testpb.Fixed64Rules fixed64 = 10; * @return The fixed64. */ + @java.lang.Override public pbandk.testpb.Validate.Fixed64Rules getFixed64() { if (typeCase_ == 10) { return (pbandk.testpb.Validate.Fixed64Rules) type_; @@ -1290,8 +1322,9 @@ public pbandk.testpb.Validate.Fixed64Rules getFixed64() { return pbandk.testpb.Validate.Fixed64Rules.getDefaultInstance(); } /** - * optional .pbandk.testpb.Fixed64Rules fixed64 = 10; + * .pbandk.testpb.Fixed64Rules fixed64 = 10; */ + @java.lang.Override public pbandk.testpb.Validate.Fixed64RulesOrBuilder getFixed64OrBuilder() { if (typeCase_ == 10) { return (pbandk.testpb.Validate.Fixed64Rules) type_; @@ -1301,16 +1334,18 @@ public pbandk.testpb.Validate.Fixed64RulesOrBuilder getFixed64OrBuilder() { public static final int SFIXED32_FIELD_NUMBER = 11; /** - * optional .pbandk.testpb.SFixed32Rules sfixed32 = 11; + * .pbandk.testpb.SFixed32Rules sfixed32 = 11; * @return Whether the sfixed32 field is set. */ + @java.lang.Override public boolean hasSfixed32() { return typeCase_ == 11; } /** - * optional .pbandk.testpb.SFixed32Rules sfixed32 = 11; + * .pbandk.testpb.SFixed32Rules sfixed32 = 11; * @return The sfixed32. */ + @java.lang.Override public pbandk.testpb.Validate.SFixed32Rules getSfixed32() { if (typeCase_ == 11) { return (pbandk.testpb.Validate.SFixed32Rules) type_; @@ -1318,8 +1353,9 @@ public pbandk.testpb.Validate.SFixed32Rules getSfixed32() { return pbandk.testpb.Validate.SFixed32Rules.getDefaultInstance(); } /** - * optional .pbandk.testpb.SFixed32Rules sfixed32 = 11; + * .pbandk.testpb.SFixed32Rules sfixed32 = 11; */ + @java.lang.Override public pbandk.testpb.Validate.SFixed32RulesOrBuilder getSfixed32OrBuilder() { if (typeCase_ == 11) { return (pbandk.testpb.Validate.SFixed32Rules) type_; @@ -1329,16 +1365,18 @@ public pbandk.testpb.Validate.SFixed32RulesOrBuilder getSfixed32OrBuilder() { public static final int SFIXED64_FIELD_NUMBER = 12; /** - * optional .pbandk.testpb.SFixed64Rules sfixed64 = 12; + * .pbandk.testpb.SFixed64Rules sfixed64 = 12; * @return Whether the sfixed64 field is set. */ + @java.lang.Override public boolean hasSfixed64() { return typeCase_ == 12; } /** - * optional .pbandk.testpb.SFixed64Rules sfixed64 = 12; + * .pbandk.testpb.SFixed64Rules sfixed64 = 12; * @return The sfixed64. */ + @java.lang.Override public pbandk.testpb.Validate.SFixed64Rules getSfixed64() { if (typeCase_ == 12) { return (pbandk.testpb.Validate.SFixed64Rules) type_; @@ -1346,8 +1384,9 @@ public pbandk.testpb.Validate.SFixed64Rules getSfixed64() { return pbandk.testpb.Validate.SFixed64Rules.getDefaultInstance(); } /** - * optional .pbandk.testpb.SFixed64Rules sfixed64 = 12; + * .pbandk.testpb.SFixed64Rules sfixed64 = 12; */ + @java.lang.Override public pbandk.testpb.Validate.SFixed64RulesOrBuilder getSfixed64OrBuilder() { if (typeCase_ == 12) { return (pbandk.testpb.Validate.SFixed64Rules) type_; @@ -1357,16 +1396,18 @@ public pbandk.testpb.Validate.SFixed64RulesOrBuilder getSfixed64OrBuilder() { public static final int BOOL_FIELD_NUMBER = 13; /** - * optional .pbandk.testpb.BoolRules bool = 13; + * .pbandk.testpb.BoolRules bool = 13; * @return Whether the bool field is set. */ + @java.lang.Override public boolean hasBool() { return typeCase_ == 13; } /** - * optional .pbandk.testpb.BoolRules bool = 13; + * .pbandk.testpb.BoolRules bool = 13; * @return The bool. */ + @java.lang.Override public pbandk.testpb.Validate.BoolRules getBool() { if (typeCase_ == 13) { return (pbandk.testpb.Validate.BoolRules) type_; @@ -1374,8 +1415,9 @@ public pbandk.testpb.Validate.BoolRules getBool() { return pbandk.testpb.Validate.BoolRules.getDefaultInstance(); } /** - * optional .pbandk.testpb.BoolRules bool = 13; + * .pbandk.testpb.BoolRules bool = 13; */ + @java.lang.Override public pbandk.testpb.Validate.BoolRulesOrBuilder getBoolOrBuilder() { if (typeCase_ == 13) { return (pbandk.testpb.Validate.BoolRules) type_; @@ -1385,16 +1427,18 @@ public pbandk.testpb.Validate.BoolRulesOrBuilder getBoolOrBuilder() { public static final int STRING_FIELD_NUMBER = 14; /** - * optional .pbandk.testpb.StringRules string = 14; + * .pbandk.testpb.StringRules string = 14; * @return Whether the string field is set. */ + @java.lang.Override public boolean hasString() { return typeCase_ == 14; } /** - * optional .pbandk.testpb.StringRules string = 14; + * .pbandk.testpb.StringRules string = 14; * @return The string. */ + @java.lang.Override public pbandk.testpb.Validate.StringRules getString() { if (typeCase_ == 14) { return (pbandk.testpb.Validate.StringRules) type_; @@ -1402,8 +1446,9 @@ public pbandk.testpb.Validate.StringRules getString() { return pbandk.testpb.Validate.StringRules.getDefaultInstance(); } /** - * optional .pbandk.testpb.StringRules string = 14; + * .pbandk.testpb.StringRules string = 14; */ + @java.lang.Override public pbandk.testpb.Validate.StringRulesOrBuilder getStringOrBuilder() { if (typeCase_ == 14) { return (pbandk.testpb.Validate.StringRules) type_; @@ -1413,16 +1458,18 @@ public pbandk.testpb.Validate.StringRulesOrBuilder getStringOrBuilder() { public static final int BYTES_FIELD_NUMBER = 15; /** - * optional .pbandk.testpb.BytesRules bytes = 15; + * .pbandk.testpb.BytesRules bytes = 15; * @return Whether the bytes field is set. */ + @java.lang.Override public boolean hasBytes() { return typeCase_ == 15; } /** - * optional .pbandk.testpb.BytesRules bytes = 15; + * .pbandk.testpb.BytesRules bytes = 15; * @return The bytes. */ + @java.lang.Override public pbandk.testpb.Validate.BytesRules getBytes() { if (typeCase_ == 15) { return (pbandk.testpb.Validate.BytesRules) type_; @@ -1430,8 +1477,9 @@ public pbandk.testpb.Validate.BytesRules getBytes() { return pbandk.testpb.Validate.BytesRules.getDefaultInstance(); } /** - * optional .pbandk.testpb.BytesRules bytes = 15; + * .pbandk.testpb.BytesRules bytes = 15; */ + @java.lang.Override public pbandk.testpb.Validate.BytesRulesOrBuilder getBytesOrBuilder() { if (typeCase_ == 15) { return (pbandk.testpb.Validate.BytesRules) type_; @@ -1445,9 +1493,10 @@ public pbandk.testpb.Validate.BytesRulesOrBuilder getBytesOrBuilder() { * Complex Field Types * * - * optional .pbandk.testpb.EnumRules enum = 16; + * .pbandk.testpb.EnumRules enum = 16; * @return Whether the enum field is set. */ + @java.lang.Override public boolean hasEnum() { return typeCase_ == 16; } @@ -1456,9 +1505,10 @@ public boolean hasEnum() { * Complex Field Types * * - * optional .pbandk.testpb.EnumRules enum = 16; + * .pbandk.testpb.EnumRules enum = 16; * @return The enum. */ + @java.lang.Override public pbandk.testpb.Validate.EnumRules getEnum() { if (typeCase_ == 16) { return (pbandk.testpb.Validate.EnumRules) type_; @@ -1470,8 +1520,9 @@ public pbandk.testpb.Validate.EnumRules getEnum() { * Complex Field Types * * - * optional .pbandk.testpb.EnumRules enum = 16; + * .pbandk.testpb.EnumRules enum = 16; */ + @java.lang.Override public pbandk.testpb.Validate.EnumRulesOrBuilder getEnumOrBuilder() { if (typeCase_ == 16) { return (pbandk.testpb.Validate.EnumRules) type_; @@ -1481,16 +1532,18 @@ public pbandk.testpb.Validate.EnumRulesOrBuilder getEnumOrBuilder() { public static final int REPEATED_FIELD_NUMBER = 18; /** - * optional .pbandk.testpb.RepeatedRules repeated = 18; + * .pbandk.testpb.RepeatedRules repeated = 18; * @return Whether the repeated field is set. */ + @java.lang.Override public boolean hasRepeated() { return typeCase_ == 18; } /** - * optional .pbandk.testpb.RepeatedRules repeated = 18; + * .pbandk.testpb.RepeatedRules repeated = 18; * @return The repeated. */ + @java.lang.Override public pbandk.testpb.Validate.RepeatedRules getRepeated() { if (typeCase_ == 18) { return (pbandk.testpb.Validate.RepeatedRules) type_; @@ -1498,8 +1551,9 @@ public pbandk.testpb.Validate.RepeatedRules getRepeated() { return pbandk.testpb.Validate.RepeatedRules.getDefaultInstance(); } /** - * optional .pbandk.testpb.RepeatedRules repeated = 18; + * .pbandk.testpb.RepeatedRules repeated = 18; */ + @java.lang.Override public pbandk.testpb.Validate.RepeatedRulesOrBuilder getRepeatedOrBuilder() { if (typeCase_ == 18) { return (pbandk.testpb.Validate.RepeatedRules) type_; @@ -1509,16 +1563,18 @@ public pbandk.testpb.Validate.RepeatedRulesOrBuilder getRepeatedOrBuilder() { public static final int MAP_FIELD_NUMBER = 19; /** - * optional .pbandk.testpb.MapRules map = 19; + * .pbandk.testpb.MapRules map = 19; * @return Whether the map field is set. */ + @java.lang.Override public boolean hasMap() { return typeCase_ == 19; } /** - * optional .pbandk.testpb.MapRules map = 19; + * .pbandk.testpb.MapRules map = 19; * @return The map. */ + @java.lang.Override public pbandk.testpb.Validate.MapRules getMap() { if (typeCase_ == 19) { return (pbandk.testpb.Validate.MapRules) type_; @@ -1526,8 +1582,9 @@ public pbandk.testpb.Validate.MapRules getMap() { return pbandk.testpb.Validate.MapRules.getDefaultInstance(); } /** - * optional .pbandk.testpb.MapRules map = 19; + * .pbandk.testpb.MapRules map = 19; */ + @java.lang.Override public pbandk.testpb.Validate.MapRulesOrBuilder getMapOrBuilder() { if (typeCase_ == 19) { return (pbandk.testpb.Validate.MapRules) type_; @@ -1541,9 +1598,10 @@ public pbandk.testpb.Validate.MapRulesOrBuilder getMapOrBuilder() { * Well-Known Field Types * * - * optional .pbandk.testpb.AnyRules any = 20; + * .pbandk.testpb.AnyRules any = 20; * @return Whether the any field is set. */ + @java.lang.Override public boolean hasAny() { return typeCase_ == 20; } @@ -1552,9 +1610,10 @@ public boolean hasAny() { * Well-Known Field Types * * - * optional .pbandk.testpb.AnyRules any = 20; + * .pbandk.testpb.AnyRules any = 20; * @return The any. */ + @java.lang.Override public pbandk.testpb.Validate.AnyRules getAny() { if (typeCase_ == 20) { return (pbandk.testpb.Validate.AnyRules) type_; @@ -1566,8 +1625,9 @@ public pbandk.testpb.Validate.AnyRules getAny() { * Well-Known Field Types * * - * optional .pbandk.testpb.AnyRules any = 20; + * .pbandk.testpb.AnyRules any = 20; */ + @java.lang.Override public pbandk.testpb.Validate.AnyRulesOrBuilder getAnyOrBuilder() { if (typeCase_ == 20) { return (pbandk.testpb.Validate.AnyRules) type_; @@ -1577,16 +1637,18 @@ public pbandk.testpb.Validate.AnyRulesOrBuilder getAnyOrBuilder() { public static final int DURATION_FIELD_NUMBER = 21; /** - * optional .pbandk.testpb.DurationRules duration = 21; + * .pbandk.testpb.DurationRules duration = 21; * @return Whether the duration field is set. */ + @java.lang.Override public boolean hasDuration() { return typeCase_ == 21; } /** - * optional .pbandk.testpb.DurationRules duration = 21; + * .pbandk.testpb.DurationRules duration = 21; * @return The duration. */ + @java.lang.Override public pbandk.testpb.Validate.DurationRules getDuration() { if (typeCase_ == 21) { return (pbandk.testpb.Validate.DurationRules) type_; @@ -1594,8 +1656,9 @@ public pbandk.testpb.Validate.DurationRules getDuration() { return pbandk.testpb.Validate.DurationRules.getDefaultInstance(); } /** - * optional .pbandk.testpb.DurationRules duration = 21; + * .pbandk.testpb.DurationRules duration = 21; */ + @java.lang.Override public pbandk.testpb.Validate.DurationRulesOrBuilder getDurationOrBuilder() { if (typeCase_ == 21) { return (pbandk.testpb.Validate.DurationRules) type_; @@ -1605,16 +1668,18 @@ public pbandk.testpb.Validate.DurationRulesOrBuilder getDurationOrBuilder() { public static final int TIMESTAMP_FIELD_NUMBER = 22; /** - * optional .pbandk.testpb.TimestampRules timestamp = 22; + * .pbandk.testpb.TimestampRules timestamp = 22; * @return Whether the timestamp field is set. */ + @java.lang.Override public boolean hasTimestamp() { return typeCase_ == 22; } /** - * optional .pbandk.testpb.TimestampRules timestamp = 22; + * .pbandk.testpb.TimestampRules timestamp = 22; * @return The timestamp. */ + @java.lang.Override public pbandk.testpb.Validate.TimestampRules getTimestamp() { if (typeCase_ == 22) { return (pbandk.testpb.Validate.TimestampRules) type_; @@ -1622,8 +1687,9 @@ public pbandk.testpb.Validate.TimestampRules getTimestamp() { return pbandk.testpb.Validate.TimestampRules.getDefaultInstance(); } /** - * optional .pbandk.testpb.TimestampRules timestamp = 22; + * .pbandk.testpb.TimestampRules timestamp = 22; */ + @java.lang.Override public pbandk.testpb.Validate.TimestampRulesOrBuilder getTimestampOrBuilder() { if (typeCase_ == 22) { return (pbandk.testpb.Validate.TimestampRules) type_; @@ -2664,9 +2730,10 @@ public pbandk.testpb.Validate.MessageRulesOrBuilder getMessageOrBuilder() { * Scalar Field Types * * - * optional .pbandk.testpb.FloatRules float = 1; + * .pbandk.testpb.FloatRules float = 1; * @return Whether the float field is set. */ + @java.lang.Override public boolean hasFloat() { return typeCase_ == 1; } @@ -2675,9 +2742,10 @@ public boolean hasFloat() { * Scalar Field Types * * - * optional .pbandk.testpb.FloatRules float = 1; + * .pbandk.testpb.FloatRules float = 1; * @return The float. */ + @java.lang.Override public pbandk.testpb.Validate.FloatRules getFloat() { if (floatBuilder_ == null) { if (typeCase_ == 1) { @@ -2696,7 +2764,7 @@ public pbandk.testpb.Validate.FloatRules getFloat() { * Scalar Field Types * * - * optional .pbandk.testpb.FloatRules float = 1; + * .pbandk.testpb.FloatRules float = 1; */ public Builder setFloat(pbandk.testpb.Validate.FloatRules value) { if (floatBuilder_ == null) { @@ -2716,7 +2784,7 @@ public Builder setFloat(pbandk.testpb.Validate.FloatRules value) { * Scalar Field Types * * - * optional .pbandk.testpb.FloatRules float = 1; + * .pbandk.testpb.FloatRules float = 1; */ public Builder setFloat( pbandk.testpb.Validate.FloatRules.Builder builderForValue) { @@ -2734,7 +2802,7 @@ public Builder setFloat( * Scalar Field Types * * - * optional .pbandk.testpb.FloatRules float = 1; + * .pbandk.testpb.FloatRules float = 1; */ public Builder mergeFloat(pbandk.testpb.Validate.FloatRules value) { if (floatBuilder_ == null) { @@ -2760,7 +2828,7 @@ public Builder mergeFloat(pbandk.testpb.Validate.FloatRules value) { * Scalar Field Types * * - * optional .pbandk.testpb.FloatRules float = 1; + * .pbandk.testpb.FloatRules float = 1; */ public Builder clearFloat() { if (floatBuilder_ == null) { @@ -2783,7 +2851,7 @@ public Builder clearFloat() { * Scalar Field Types * * - * optional .pbandk.testpb.FloatRules float = 1; + * .pbandk.testpb.FloatRules float = 1; */ public pbandk.testpb.Validate.FloatRules.Builder getFloatBuilder() { return getFloatFieldBuilder().getBuilder(); @@ -2793,8 +2861,9 @@ public pbandk.testpb.Validate.FloatRules.Builder getFloatBuilder() { * Scalar Field Types * * - * optional .pbandk.testpb.FloatRules float = 1; + * .pbandk.testpb.FloatRules float = 1; */ + @java.lang.Override public pbandk.testpb.Validate.FloatRulesOrBuilder getFloatOrBuilder() { if ((typeCase_ == 1) && (floatBuilder_ != null)) { return floatBuilder_.getMessageOrBuilder(); @@ -2810,7 +2879,7 @@ public pbandk.testpb.Validate.FloatRulesOrBuilder getFloatOrBuilder() { * Scalar Field Types * * - * optional .pbandk.testpb.FloatRules float = 1; + * .pbandk.testpb.FloatRules float = 1; */ private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.FloatRules, pbandk.testpb.Validate.FloatRules.Builder, pbandk.testpb.Validate.FloatRulesOrBuilder> @@ -2834,16 +2903,18 @@ public pbandk.testpb.Validate.FloatRulesOrBuilder getFloatOrBuilder() { private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.DoubleRules, pbandk.testpb.Validate.DoubleRules.Builder, pbandk.testpb.Validate.DoubleRulesOrBuilder> doubleBuilder_; /** - * optional .pbandk.testpb.DoubleRules double = 2; + * .pbandk.testpb.DoubleRules double = 2; * @return Whether the double field is set. */ + @java.lang.Override public boolean hasDouble() { return typeCase_ == 2; } /** - * optional .pbandk.testpb.DoubleRules double = 2; + * .pbandk.testpb.DoubleRules double = 2; * @return The double. */ + @java.lang.Override public pbandk.testpb.Validate.DoubleRules getDouble() { if (doubleBuilder_ == null) { if (typeCase_ == 2) { @@ -2858,7 +2929,7 @@ public pbandk.testpb.Validate.DoubleRules getDouble() { } } /** - * optional .pbandk.testpb.DoubleRules double = 2; + * .pbandk.testpb.DoubleRules double = 2; */ public Builder setDouble(pbandk.testpb.Validate.DoubleRules value) { if (doubleBuilder_ == null) { @@ -2874,7 +2945,7 @@ public Builder setDouble(pbandk.testpb.Validate.DoubleRules value) { return this; } /** - * optional .pbandk.testpb.DoubleRules double = 2; + * .pbandk.testpb.DoubleRules double = 2; */ public Builder setDouble( pbandk.testpb.Validate.DoubleRules.Builder builderForValue) { @@ -2888,7 +2959,7 @@ public Builder setDouble( return this; } /** - * optional .pbandk.testpb.DoubleRules double = 2; + * .pbandk.testpb.DoubleRules double = 2; */ public Builder mergeDouble(pbandk.testpb.Validate.DoubleRules value) { if (doubleBuilder_ == null) { @@ -2910,7 +2981,7 @@ public Builder mergeDouble(pbandk.testpb.Validate.DoubleRules value) { return this; } /** - * optional .pbandk.testpb.DoubleRules double = 2; + * .pbandk.testpb.DoubleRules double = 2; */ public Builder clearDouble() { if (doubleBuilder_ == null) { @@ -2929,14 +3000,15 @@ public Builder clearDouble() { return this; } /** - * optional .pbandk.testpb.DoubleRules double = 2; + * .pbandk.testpb.DoubleRules double = 2; */ public pbandk.testpb.Validate.DoubleRules.Builder getDoubleBuilder() { return getDoubleFieldBuilder().getBuilder(); } /** - * optional .pbandk.testpb.DoubleRules double = 2; + * .pbandk.testpb.DoubleRules double = 2; */ + @java.lang.Override public pbandk.testpb.Validate.DoubleRulesOrBuilder getDoubleOrBuilder() { if ((typeCase_ == 2) && (doubleBuilder_ != null)) { return doubleBuilder_.getMessageOrBuilder(); @@ -2948,7 +3020,7 @@ public pbandk.testpb.Validate.DoubleRulesOrBuilder getDoubleOrBuilder() { } } /** - * optional .pbandk.testpb.DoubleRules double = 2; + * .pbandk.testpb.DoubleRules double = 2; */ private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.DoubleRules, pbandk.testpb.Validate.DoubleRules.Builder, pbandk.testpb.Validate.DoubleRulesOrBuilder> @@ -2972,16 +3044,18 @@ public pbandk.testpb.Validate.DoubleRulesOrBuilder getDoubleOrBuilder() { private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.Int32Rules, pbandk.testpb.Validate.Int32Rules.Builder, pbandk.testpb.Validate.Int32RulesOrBuilder> int32Builder_; /** - * optional .pbandk.testpb.Int32Rules int32 = 3; + * .pbandk.testpb.Int32Rules int32 = 3; * @return Whether the int32 field is set. */ + @java.lang.Override public boolean hasInt32() { return typeCase_ == 3; } /** - * optional .pbandk.testpb.Int32Rules int32 = 3; + * .pbandk.testpb.Int32Rules int32 = 3; * @return The int32. */ + @java.lang.Override public pbandk.testpb.Validate.Int32Rules getInt32() { if (int32Builder_ == null) { if (typeCase_ == 3) { @@ -2996,7 +3070,7 @@ public pbandk.testpb.Validate.Int32Rules getInt32() { } } /** - * optional .pbandk.testpb.Int32Rules int32 = 3; + * .pbandk.testpb.Int32Rules int32 = 3; */ public Builder setInt32(pbandk.testpb.Validate.Int32Rules value) { if (int32Builder_ == null) { @@ -3012,7 +3086,7 @@ public Builder setInt32(pbandk.testpb.Validate.Int32Rules value) { return this; } /** - * optional .pbandk.testpb.Int32Rules int32 = 3; + * .pbandk.testpb.Int32Rules int32 = 3; */ public Builder setInt32( pbandk.testpb.Validate.Int32Rules.Builder builderForValue) { @@ -3026,7 +3100,7 @@ public Builder setInt32( return this; } /** - * optional .pbandk.testpb.Int32Rules int32 = 3; + * .pbandk.testpb.Int32Rules int32 = 3; */ public Builder mergeInt32(pbandk.testpb.Validate.Int32Rules value) { if (int32Builder_ == null) { @@ -3048,7 +3122,7 @@ public Builder mergeInt32(pbandk.testpb.Validate.Int32Rules value) { return this; } /** - * optional .pbandk.testpb.Int32Rules int32 = 3; + * .pbandk.testpb.Int32Rules int32 = 3; */ public Builder clearInt32() { if (int32Builder_ == null) { @@ -3067,14 +3141,15 @@ public Builder clearInt32() { return this; } /** - * optional .pbandk.testpb.Int32Rules int32 = 3; + * .pbandk.testpb.Int32Rules int32 = 3; */ public pbandk.testpb.Validate.Int32Rules.Builder getInt32Builder() { return getInt32FieldBuilder().getBuilder(); } /** - * optional .pbandk.testpb.Int32Rules int32 = 3; + * .pbandk.testpb.Int32Rules int32 = 3; */ + @java.lang.Override public pbandk.testpb.Validate.Int32RulesOrBuilder getInt32OrBuilder() { if ((typeCase_ == 3) && (int32Builder_ != null)) { return int32Builder_.getMessageOrBuilder(); @@ -3086,7 +3161,7 @@ public pbandk.testpb.Validate.Int32RulesOrBuilder getInt32OrBuilder() { } } /** - * optional .pbandk.testpb.Int32Rules int32 = 3; + * .pbandk.testpb.Int32Rules int32 = 3; */ private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.Int32Rules, pbandk.testpb.Validate.Int32Rules.Builder, pbandk.testpb.Validate.Int32RulesOrBuilder> @@ -3110,16 +3185,18 @@ public pbandk.testpb.Validate.Int32RulesOrBuilder getInt32OrBuilder() { private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.Int64Rules, pbandk.testpb.Validate.Int64Rules.Builder, pbandk.testpb.Validate.Int64RulesOrBuilder> int64Builder_; /** - * optional .pbandk.testpb.Int64Rules int64 = 4; + * .pbandk.testpb.Int64Rules int64 = 4; * @return Whether the int64 field is set. */ + @java.lang.Override public boolean hasInt64() { return typeCase_ == 4; } /** - * optional .pbandk.testpb.Int64Rules int64 = 4; + * .pbandk.testpb.Int64Rules int64 = 4; * @return The int64. */ + @java.lang.Override public pbandk.testpb.Validate.Int64Rules getInt64() { if (int64Builder_ == null) { if (typeCase_ == 4) { @@ -3134,7 +3211,7 @@ public pbandk.testpb.Validate.Int64Rules getInt64() { } } /** - * optional .pbandk.testpb.Int64Rules int64 = 4; + * .pbandk.testpb.Int64Rules int64 = 4; */ public Builder setInt64(pbandk.testpb.Validate.Int64Rules value) { if (int64Builder_ == null) { @@ -3150,7 +3227,7 @@ public Builder setInt64(pbandk.testpb.Validate.Int64Rules value) { return this; } /** - * optional .pbandk.testpb.Int64Rules int64 = 4; + * .pbandk.testpb.Int64Rules int64 = 4; */ public Builder setInt64( pbandk.testpb.Validate.Int64Rules.Builder builderForValue) { @@ -3164,7 +3241,7 @@ public Builder setInt64( return this; } /** - * optional .pbandk.testpb.Int64Rules int64 = 4; + * .pbandk.testpb.Int64Rules int64 = 4; */ public Builder mergeInt64(pbandk.testpb.Validate.Int64Rules value) { if (int64Builder_ == null) { @@ -3186,7 +3263,7 @@ public Builder mergeInt64(pbandk.testpb.Validate.Int64Rules value) { return this; } /** - * optional .pbandk.testpb.Int64Rules int64 = 4; + * .pbandk.testpb.Int64Rules int64 = 4; */ public Builder clearInt64() { if (int64Builder_ == null) { @@ -3205,14 +3282,15 @@ public Builder clearInt64() { return this; } /** - * optional .pbandk.testpb.Int64Rules int64 = 4; + * .pbandk.testpb.Int64Rules int64 = 4; */ public pbandk.testpb.Validate.Int64Rules.Builder getInt64Builder() { return getInt64FieldBuilder().getBuilder(); } /** - * optional .pbandk.testpb.Int64Rules int64 = 4; + * .pbandk.testpb.Int64Rules int64 = 4; */ + @java.lang.Override public pbandk.testpb.Validate.Int64RulesOrBuilder getInt64OrBuilder() { if ((typeCase_ == 4) && (int64Builder_ != null)) { return int64Builder_.getMessageOrBuilder(); @@ -3224,7 +3302,7 @@ public pbandk.testpb.Validate.Int64RulesOrBuilder getInt64OrBuilder() { } } /** - * optional .pbandk.testpb.Int64Rules int64 = 4; + * .pbandk.testpb.Int64Rules int64 = 4; */ private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.Int64Rules, pbandk.testpb.Validate.Int64Rules.Builder, pbandk.testpb.Validate.Int64RulesOrBuilder> @@ -3248,16 +3326,18 @@ public pbandk.testpb.Validate.Int64RulesOrBuilder getInt64OrBuilder() { private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.UInt32Rules, pbandk.testpb.Validate.UInt32Rules.Builder, pbandk.testpb.Validate.UInt32RulesOrBuilder> uint32Builder_; /** - * optional .pbandk.testpb.UInt32Rules uint32 = 5; + * .pbandk.testpb.UInt32Rules uint32 = 5; * @return Whether the uint32 field is set. */ + @java.lang.Override public boolean hasUint32() { return typeCase_ == 5; } /** - * optional .pbandk.testpb.UInt32Rules uint32 = 5; + * .pbandk.testpb.UInt32Rules uint32 = 5; * @return The uint32. */ + @java.lang.Override public pbandk.testpb.Validate.UInt32Rules getUint32() { if (uint32Builder_ == null) { if (typeCase_ == 5) { @@ -3272,7 +3352,7 @@ public pbandk.testpb.Validate.UInt32Rules getUint32() { } } /** - * optional .pbandk.testpb.UInt32Rules uint32 = 5; + * .pbandk.testpb.UInt32Rules uint32 = 5; */ public Builder setUint32(pbandk.testpb.Validate.UInt32Rules value) { if (uint32Builder_ == null) { @@ -3288,7 +3368,7 @@ public Builder setUint32(pbandk.testpb.Validate.UInt32Rules value) { return this; } /** - * optional .pbandk.testpb.UInt32Rules uint32 = 5; + * .pbandk.testpb.UInt32Rules uint32 = 5; */ public Builder setUint32( pbandk.testpb.Validate.UInt32Rules.Builder builderForValue) { @@ -3302,7 +3382,7 @@ public Builder setUint32( return this; } /** - * optional .pbandk.testpb.UInt32Rules uint32 = 5; + * .pbandk.testpb.UInt32Rules uint32 = 5; */ public Builder mergeUint32(pbandk.testpb.Validate.UInt32Rules value) { if (uint32Builder_ == null) { @@ -3324,7 +3404,7 @@ public Builder mergeUint32(pbandk.testpb.Validate.UInt32Rules value) { return this; } /** - * optional .pbandk.testpb.UInt32Rules uint32 = 5; + * .pbandk.testpb.UInt32Rules uint32 = 5; */ public Builder clearUint32() { if (uint32Builder_ == null) { @@ -3343,14 +3423,15 @@ public Builder clearUint32() { return this; } /** - * optional .pbandk.testpb.UInt32Rules uint32 = 5; + * .pbandk.testpb.UInt32Rules uint32 = 5; */ public pbandk.testpb.Validate.UInt32Rules.Builder getUint32Builder() { return getUint32FieldBuilder().getBuilder(); } /** - * optional .pbandk.testpb.UInt32Rules uint32 = 5; + * .pbandk.testpb.UInt32Rules uint32 = 5; */ + @java.lang.Override public pbandk.testpb.Validate.UInt32RulesOrBuilder getUint32OrBuilder() { if ((typeCase_ == 5) && (uint32Builder_ != null)) { return uint32Builder_.getMessageOrBuilder(); @@ -3362,7 +3443,7 @@ public pbandk.testpb.Validate.UInt32RulesOrBuilder getUint32OrBuilder() { } } /** - * optional .pbandk.testpb.UInt32Rules uint32 = 5; + * .pbandk.testpb.UInt32Rules uint32 = 5; */ private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.UInt32Rules, pbandk.testpb.Validate.UInt32Rules.Builder, pbandk.testpb.Validate.UInt32RulesOrBuilder> @@ -3386,16 +3467,18 @@ public pbandk.testpb.Validate.UInt32RulesOrBuilder getUint32OrBuilder() { private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.UInt64Rules, pbandk.testpb.Validate.UInt64Rules.Builder, pbandk.testpb.Validate.UInt64RulesOrBuilder> uint64Builder_; /** - * optional .pbandk.testpb.UInt64Rules uint64 = 6; + * .pbandk.testpb.UInt64Rules uint64 = 6; * @return Whether the uint64 field is set. */ + @java.lang.Override public boolean hasUint64() { return typeCase_ == 6; } /** - * optional .pbandk.testpb.UInt64Rules uint64 = 6; + * .pbandk.testpb.UInt64Rules uint64 = 6; * @return The uint64. */ + @java.lang.Override public pbandk.testpb.Validate.UInt64Rules getUint64() { if (uint64Builder_ == null) { if (typeCase_ == 6) { @@ -3410,7 +3493,7 @@ public pbandk.testpb.Validate.UInt64Rules getUint64() { } } /** - * optional .pbandk.testpb.UInt64Rules uint64 = 6; + * .pbandk.testpb.UInt64Rules uint64 = 6; */ public Builder setUint64(pbandk.testpb.Validate.UInt64Rules value) { if (uint64Builder_ == null) { @@ -3426,7 +3509,7 @@ public Builder setUint64(pbandk.testpb.Validate.UInt64Rules value) { return this; } /** - * optional .pbandk.testpb.UInt64Rules uint64 = 6; + * .pbandk.testpb.UInt64Rules uint64 = 6; */ public Builder setUint64( pbandk.testpb.Validate.UInt64Rules.Builder builderForValue) { @@ -3440,7 +3523,7 @@ public Builder setUint64( return this; } /** - * optional .pbandk.testpb.UInt64Rules uint64 = 6; + * .pbandk.testpb.UInt64Rules uint64 = 6; */ public Builder mergeUint64(pbandk.testpb.Validate.UInt64Rules value) { if (uint64Builder_ == null) { @@ -3462,7 +3545,7 @@ public Builder mergeUint64(pbandk.testpb.Validate.UInt64Rules value) { return this; } /** - * optional .pbandk.testpb.UInt64Rules uint64 = 6; + * .pbandk.testpb.UInt64Rules uint64 = 6; */ public Builder clearUint64() { if (uint64Builder_ == null) { @@ -3481,14 +3564,15 @@ public Builder clearUint64() { return this; } /** - * optional .pbandk.testpb.UInt64Rules uint64 = 6; + * .pbandk.testpb.UInt64Rules uint64 = 6; */ public pbandk.testpb.Validate.UInt64Rules.Builder getUint64Builder() { return getUint64FieldBuilder().getBuilder(); } /** - * optional .pbandk.testpb.UInt64Rules uint64 = 6; + * .pbandk.testpb.UInt64Rules uint64 = 6; */ + @java.lang.Override public pbandk.testpb.Validate.UInt64RulesOrBuilder getUint64OrBuilder() { if ((typeCase_ == 6) && (uint64Builder_ != null)) { return uint64Builder_.getMessageOrBuilder(); @@ -3500,7 +3584,7 @@ public pbandk.testpb.Validate.UInt64RulesOrBuilder getUint64OrBuilder() { } } /** - * optional .pbandk.testpb.UInt64Rules uint64 = 6; + * .pbandk.testpb.UInt64Rules uint64 = 6; */ private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.UInt64Rules, pbandk.testpb.Validate.UInt64Rules.Builder, pbandk.testpb.Validate.UInt64RulesOrBuilder> @@ -3524,16 +3608,18 @@ public pbandk.testpb.Validate.UInt64RulesOrBuilder getUint64OrBuilder() { private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.SInt32Rules, pbandk.testpb.Validate.SInt32Rules.Builder, pbandk.testpb.Validate.SInt32RulesOrBuilder> sint32Builder_; /** - * optional .pbandk.testpb.SInt32Rules sint32 = 7; + * .pbandk.testpb.SInt32Rules sint32 = 7; * @return Whether the sint32 field is set. */ + @java.lang.Override public boolean hasSint32() { return typeCase_ == 7; } /** - * optional .pbandk.testpb.SInt32Rules sint32 = 7; + * .pbandk.testpb.SInt32Rules sint32 = 7; * @return The sint32. */ + @java.lang.Override public pbandk.testpb.Validate.SInt32Rules getSint32() { if (sint32Builder_ == null) { if (typeCase_ == 7) { @@ -3548,7 +3634,7 @@ public pbandk.testpb.Validate.SInt32Rules getSint32() { } } /** - * optional .pbandk.testpb.SInt32Rules sint32 = 7; + * .pbandk.testpb.SInt32Rules sint32 = 7; */ public Builder setSint32(pbandk.testpb.Validate.SInt32Rules value) { if (sint32Builder_ == null) { @@ -3564,7 +3650,7 @@ public Builder setSint32(pbandk.testpb.Validate.SInt32Rules value) { return this; } /** - * optional .pbandk.testpb.SInt32Rules sint32 = 7; + * .pbandk.testpb.SInt32Rules sint32 = 7; */ public Builder setSint32( pbandk.testpb.Validate.SInt32Rules.Builder builderForValue) { @@ -3578,7 +3664,7 @@ public Builder setSint32( return this; } /** - * optional .pbandk.testpb.SInt32Rules sint32 = 7; + * .pbandk.testpb.SInt32Rules sint32 = 7; */ public Builder mergeSint32(pbandk.testpb.Validate.SInt32Rules value) { if (sint32Builder_ == null) { @@ -3600,7 +3686,7 @@ public Builder mergeSint32(pbandk.testpb.Validate.SInt32Rules value) { return this; } /** - * optional .pbandk.testpb.SInt32Rules sint32 = 7; + * .pbandk.testpb.SInt32Rules sint32 = 7; */ public Builder clearSint32() { if (sint32Builder_ == null) { @@ -3619,14 +3705,15 @@ public Builder clearSint32() { return this; } /** - * optional .pbandk.testpb.SInt32Rules sint32 = 7; + * .pbandk.testpb.SInt32Rules sint32 = 7; */ public pbandk.testpb.Validate.SInt32Rules.Builder getSint32Builder() { return getSint32FieldBuilder().getBuilder(); } /** - * optional .pbandk.testpb.SInt32Rules sint32 = 7; + * .pbandk.testpb.SInt32Rules sint32 = 7; */ + @java.lang.Override public pbandk.testpb.Validate.SInt32RulesOrBuilder getSint32OrBuilder() { if ((typeCase_ == 7) && (sint32Builder_ != null)) { return sint32Builder_.getMessageOrBuilder(); @@ -3638,7 +3725,7 @@ public pbandk.testpb.Validate.SInt32RulesOrBuilder getSint32OrBuilder() { } } /** - * optional .pbandk.testpb.SInt32Rules sint32 = 7; + * .pbandk.testpb.SInt32Rules sint32 = 7; */ private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.SInt32Rules, pbandk.testpb.Validate.SInt32Rules.Builder, pbandk.testpb.Validate.SInt32RulesOrBuilder> @@ -3662,16 +3749,18 @@ public pbandk.testpb.Validate.SInt32RulesOrBuilder getSint32OrBuilder() { private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.SInt64Rules, pbandk.testpb.Validate.SInt64Rules.Builder, pbandk.testpb.Validate.SInt64RulesOrBuilder> sint64Builder_; /** - * optional .pbandk.testpb.SInt64Rules sint64 = 8; + * .pbandk.testpb.SInt64Rules sint64 = 8; * @return Whether the sint64 field is set. */ + @java.lang.Override public boolean hasSint64() { return typeCase_ == 8; } /** - * optional .pbandk.testpb.SInt64Rules sint64 = 8; + * .pbandk.testpb.SInt64Rules sint64 = 8; * @return The sint64. */ + @java.lang.Override public pbandk.testpb.Validate.SInt64Rules getSint64() { if (sint64Builder_ == null) { if (typeCase_ == 8) { @@ -3686,7 +3775,7 @@ public pbandk.testpb.Validate.SInt64Rules getSint64() { } } /** - * optional .pbandk.testpb.SInt64Rules sint64 = 8; + * .pbandk.testpb.SInt64Rules sint64 = 8; */ public Builder setSint64(pbandk.testpb.Validate.SInt64Rules value) { if (sint64Builder_ == null) { @@ -3702,7 +3791,7 @@ public Builder setSint64(pbandk.testpb.Validate.SInt64Rules value) { return this; } /** - * optional .pbandk.testpb.SInt64Rules sint64 = 8; + * .pbandk.testpb.SInt64Rules sint64 = 8; */ public Builder setSint64( pbandk.testpb.Validate.SInt64Rules.Builder builderForValue) { @@ -3716,7 +3805,7 @@ public Builder setSint64( return this; } /** - * optional .pbandk.testpb.SInt64Rules sint64 = 8; + * .pbandk.testpb.SInt64Rules sint64 = 8; */ public Builder mergeSint64(pbandk.testpb.Validate.SInt64Rules value) { if (sint64Builder_ == null) { @@ -3738,7 +3827,7 @@ public Builder mergeSint64(pbandk.testpb.Validate.SInt64Rules value) { return this; } /** - * optional .pbandk.testpb.SInt64Rules sint64 = 8; + * .pbandk.testpb.SInt64Rules sint64 = 8; */ public Builder clearSint64() { if (sint64Builder_ == null) { @@ -3757,14 +3846,15 @@ public Builder clearSint64() { return this; } /** - * optional .pbandk.testpb.SInt64Rules sint64 = 8; + * .pbandk.testpb.SInt64Rules sint64 = 8; */ public pbandk.testpb.Validate.SInt64Rules.Builder getSint64Builder() { return getSint64FieldBuilder().getBuilder(); } /** - * optional .pbandk.testpb.SInt64Rules sint64 = 8; + * .pbandk.testpb.SInt64Rules sint64 = 8; */ + @java.lang.Override public pbandk.testpb.Validate.SInt64RulesOrBuilder getSint64OrBuilder() { if ((typeCase_ == 8) && (sint64Builder_ != null)) { return sint64Builder_.getMessageOrBuilder(); @@ -3776,7 +3866,7 @@ public pbandk.testpb.Validate.SInt64RulesOrBuilder getSint64OrBuilder() { } } /** - * optional .pbandk.testpb.SInt64Rules sint64 = 8; + * .pbandk.testpb.SInt64Rules sint64 = 8; */ private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.SInt64Rules, pbandk.testpb.Validate.SInt64Rules.Builder, pbandk.testpb.Validate.SInt64RulesOrBuilder> @@ -3800,16 +3890,18 @@ public pbandk.testpb.Validate.SInt64RulesOrBuilder getSint64OrBuilder() { private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.Fixed32Rules, pbandk.testpb.Validate.Fixed32Rules.Builder, pbandk.testpb.Validate.Fixed32RulesOrBuilder> fixed32Builder_; /** - * optional .pbandk.testpb.Fixed32Rules fixed32 = 9; + * .pbandk.testpb.Fixed32Rules fixed32 = 9; * @return Whether the fixed32 field is set. */ + @java.lang.Override public boolean hasFixed32() { return typeCase_ == 9; } /** - * optional .pbandk.testpb.Fixed32Rules fixed32 = 9; + * .pbandk.testpb.Fixed32Rules fixed32 = 9; * @return The fixed32. */ + @java.lang.Override public pbandk.testpb.Validate.Fixed32Rules getFixed32() { if (fixed32Builder_ == null) { if (typeCase_ == 9) { @@ -3824,7 +3916,7 @@ public pbandk.testpb.Validate.Fixed32Rules getFixed32() { } } /** - * optional .pbandk.testpb.Fixed32Rules fixed32 = 9; + * .pbandk.testpb.Fixed32Rules fixed32 = 9; */ public Builder setFixed32(pbandk.testpb.Validate.Fixed32Rules value) { if (fixed32Builder_ == null) { @@ -3840,7 +3932,7 @@ public Builder setFixed32(pbandk.testpb.Validate.Fixed32Rules value) { return this; } /** - * optional .pbandk.testpb.Fixed32Rules fixed32 = 9; + * .pbandk.testpb.Fixed32Rules fixed32 = 9; */ public Builder setFixed32( pbandk.testpb.Validate.Fixed32Rules.Builder builderForValue) { @@ -3854,7 +3946,7 @@ public Builder setFixed32( return this; } /** - * optional .pbandk.testpb.Fixed32Rules fixed32 = 9; + * .pbandk.testpb.Fixed32Rules fixed32 = 9; */ public Builder mergeFixed32(pbandk.testpb.Validate.Fixed32Rules value) { if (fixed32Builder_ == null) { @@ -3876,7 +3968,7 @@ public Builder mergeFixed32(pbandk.testpb.Validate.Fixed32Rules value) { return this; } /** - * optional .pbandk.testpb.Fixed32Rules fixed32 = 9; + * .pbandk.testpb.Fixed32Rules fixed32 = 9; */ public Builder clearFixed32() { if (fixed32Builder_ == null) { @@ -3895,14 +3987,15 @@ public Builder clearFixed32() { return this; } /** - * optional .pbandk.testpb.Fixed32Rules fixed32 = 9; + * .pbandk.testpb.Fixed32Rules fixed32 = 9; */ public pbandk.testpb.Validate.Fixed32Rules.Builder getFixed32Builder() { return getFixed32FieldBuilder().getBuilder(); } /** - * optional .pbandk.testpb.Fixed32Rules fixed32 = 9; + * .pbandk.testpb.Fixed32Rules fixed32 = 9; */ + @java.lang.Override public pbandk.testpb.Validate.Fixed32RulesOrBuilder getFixed32OrBuilder() { if ((typeCase_ == 9) && (fixed32Builder_ != null)) { return fixed32Builder_.getMessageOrBuilder(); @@ -3914,7 +4007,7 @@ public pbandk.testpb.Validate.Fixed32RulesOrBuilder getFixed32OrBuilder() { } } /** - * optional .pbandk.testpb.Fixed32Rules fixed32 = 9; + * .pbandk.testpb.Fixed32Rules fixed32 = 9; */ private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.Fixed32Rules, pbandk.testpb.Validate.Fixed32Rules.Builder, pbandk.testpb.Validate.Fixed32RulesOrBuilder> @@ -3938,16 +4031,18 @@ public pbandk.testpb.Validate.Fixed32RulesOrBuilder getFixed32OrBuilder() { private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.Fixed64Rules, pbandk.testpb.Validate.Fixed64Rules.Builder, pbandk.testpb.Validate.Fixed64RulesOrBuilder> fixed64Builder_; /** - * optional .pbandk.testpb.Fixed64Rules fixed64 = 10; + * .pbandk.testpb.Fixed64Rules fixed64 = 10; * @return Whether the fixed64 field is set. */ + @java.lang.Override public boolean hasFixed64() { return typeCase_ == 10; } /** - * optional .pbandk.testpb.Fixed64Rules fixed64 = 10; + * .pbandk.testpb.Fixed64Rules fixed64 = 10; * @return The fixed64. */ + @java.lang.Override public pbandk.testpb.Validate.Fixed64Rules getFixed64() { if (fixed64Builder_ == null) { if (typeCase_ == 10) { @@ -3962,7 +4057,7 @@ public pbandk.testpb.Validate.Fixed64Rules getFixed64() { } } /** - * optional .pbandk.testpb.Fixed64Rules fixed64 = 10; + * .pbandk.testpb.Fixed64Rules fixed64 = 10; */ public Builder setFixed64(pbandk.testpb.Validate.Fixed64Rules value) { if (fixed64Builder_ == null) { @@ -3978,7 +4073,7 @@ public Builder setFixed64(pbandk.testpb.Validate.Fixed64Rules value) { return this; } /** - * optional .pbandk.testpb.Fixed64Rules fixed64 = 10; + * .pbandk.testpb.Fixed64Rules fixed64 = 10; */ public Builder setFixed64( pbandk.testpb.Validate.Fixed64Rules.Builder builderForValue) { @@ -3992,7 +4087,7 @@ public Builder setFixed64( return this; } /** - * optional .pbandk.testpb.Fixed64Rules fixed64 = 10; + * .pbandk.testpb.Fixed64Rules fixed64 = 10; */ public Builder mergeFixed64(pbandk.testpb.Validate.Fixed64Rules value) { if (fixed64Builder_ == null) { @@ -4014,7 +4109,7 @@ public Builder mergeFixed64(pbandk.testpb.Validate.Fixed64Rules value) { return this; } /** - * optional .pbandk.testpb.Fixed64Rules fixed64 = 10; + * .pbandk.testpb.Fixed64Rules fixed64 = 10; */ public Builder clearFixed64() { if (fixed64Builder_ == null) { @@ -4033,14 +4128,15 @@ public Builder clearFixed64() { return this; } /** - * optional .pbandk.testpb.Fixed64Rules fixed64 = 10; + * .pbandk.testpb.Fixed64Rules fixed64 = 10; */ public pbandk.testpb.Validate.Fixed64Rules.Builder getFixed64Builder() { return getFixed64FieldBuilder().getBuilder(); } /** - * optional .pbandk.testpb.Fixed64Rules fixed64 = 10; + * .pbandk.testpb.Fixed64Rules fixed64 = 10; */ + @java.lang.Override public pbandk.testpb.Validate.Fixed64RulesOrBuilder getFixed64OrBuilder() { if ((typeCase_ == 10) && (fixed64Builder_ != null)) { return fixed64Builder_.getMessageOrBuilder(); @@ -4052,7 +4148,7 @@ public pbandk.testpb.Validate.Fixed64RulesOrBuilder getFixed64OrBuilder() { } } /** - * optional .pbandk.testpb.Fixed64Rules fixed64 = 10; + * .pbandk.testpb.Fixed64Rules fixed64 = 10; */ private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.Fixed64Rules, pbandk.testpb.Validate.Fixed64Rules.Builder, pbandk.testpb.Validate.Fixed64RulesOrBuilder> @@ -4076,16 +4172,18 @@ public pbandk.testpb.Validate.Fixed64RulesOrBuilder getFixed64OrBuilder() { private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.SFixed32Rules, pbandk.testpb.Validate.SFixed32Rules.Builder, pbandk.testpb.Validate.SFixed32RulesOrBuilder> sfixed32Builder_; /** - * optional .pbandk.testpb.SFixed32Rules sfixed32 = 11; + * .pbandk.testpb.SFixed32Rules sfixed32 = 11; * @return Whether the sfixed32 field is set. */ + @java.lang.Override public boolean hasSfixed32() { return typeCase_ == 11; } /** - * optional .pbandk.testpb.SFixed32Rules sfixed32 = 11; + * .pbandk.testpb.SFixed32Rules sfixed32 = 11; * @return The sfixed32. */ + @java.lang.Override public pbandk.testpb.Validate.SFixed32Rules getSfixed32() { if (sfixed32Builder_ == null) { if (typeCase_ == 11) { @@ -4100,7 +4198,7 @@ public pbandk.testpb.Validate.SFixed32Rules getSfixed32() { } } /** - * optional .pbandk.testpb.SFixed32Rules sfixed32 = 11; + * .pbandk.testpb.SFixed32Rules sfixed32 = 11; */ public Builder setSfixed32(pbandk.testpb.Validate.SFixed32Rules value) { if (sfixed32Builder_ == null) { @@ -4116,7 +4214,7 @@ public Builder setSfixed32(pbandk.testpb.Validate.SFixed32Rules value) { return this; } /** - * optional .pbandk.testpb.SFixed32Rules sfixed32 = 11; + * .pbandk.testpb.SFixed32Rules sfixed32 = 11; */ public Builder setSfixed32( pbandk.testpb.Validate.SFixed32Rules.Builder builderForValue) { @@ -4130,7 +4228,7 @@ public Builder setSfixed32( return this; } /** - * optional .pbandk.testpb.SFixed32Rules sfixed32 = 11; + * .pbandk.testpb.SFixed32Rules sfixed32 = 11; */ public Builder mergeSfixed32(pbandk.testpb.Validate.SFixed32Rules value) { if (sfixed32Builder_ == null) { @@ -4152,7 +4250,7 @@ public Builder mergeSfixed32(pbandk.testpb.Validate.SFixed32Rules value) { return this; } /** - * optional .pbandk.testpb.SFixed32Rules sfixed32 = 11; + * .pbandk.testpb.SFixed32Rules sfixed32 = 11; */ public Builder clearSfixed32() { if (sfixed32Builder_ == null) { @@ -4171,14 +4269,15 @@ public Builder clearSfixed32() { return this; } /** - * optional .pbandk.testpb.SFixed32Rules sfixed32 = 11; + * .pbandk.testpb.SFixed32Rules sfixed32 = 11; */ public pbandk.testpb.Validate.SFixed32Rules.Builder getSfixed32Builder() { return getSfixed32FieldBuilder().getBuilder(); } /** - * optional .pbandk.testpb.SFixed32Rules sfixed32 = 11; + * .pbandk.testpb.SFixed32Rules sfixed32 = 11; */ + @java.lang.Override public pbandk.testpb.Validate.SFixed32RulesOrBuilder getSfixed32OrBuilder() { if ((typeCase_ == 11) && (sfixed32Builder_ != null)) { return sfixed32Builder_.getMessageOrBuilder(); @@ -4190,7 +4289,7 @@ public pbandk.testpb.Validate.SFixed32RulesOrBuilder getSfixed32OrBuilder() { } } /** - * optional .pbandk.testpb.SFixed32Rules sfixed32 = 11; + * .pbandk.testpb.SFixed32Rules sfixed32 = 11; */ private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.SFixed32Rules, pbandk.testpb.Validate.SFixed32Rules.Builder, pbandk.testpb.Validate.SFixed32RulesOrBuilder> @@ -4214,16 +4313,18 @@ public pbandk.testpb.Validate.SFixed32RulesOrBuilder getSfixed32OrBuilder() { private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.SFixed64Rules, pbandk.testpb.Validate.SFixed64Rules.Builder, pbandk.testpb.Validate.SFixed64RulesOrBuilder> sfixed64Builder_; /** - * optional .pbandk.testpb.SFixed64Rules sfixed64 = 12; + * .pbandk.testpb.SFixed64Rules sfixed64 = 12; * @return Whether the sfixed64 field is set. */ + @java.lang.Override public boolean hasSfixed64() { return typeCase_ == 12; } /** - * optional .pbandk.testpb.SFixed64Rules sfixed64 = 12; + * .pbandk.testpb.SFixed64Rules sfixed64 = 12; * @return The sfixed64. */ + @java.lang.Override public pbandk.testpb.Validate.SFixed64Rules getSfixed64() { if (sfixed64Builder_ == null) { if (typeCase_ == 12) { @@ -4238,7 +4339,7 @@ public pbandk.testpb.Validate.SFixed64Rules getSfixed64() { } } /** - * optional .pbandk.testpb.SFixed64Rules sfixed64 = 12; + * .pbandk.testpb.SFixed64Rules sfixed64 = 12; */ public Builder setSfixed64(pbandk.testpb.Validate.SFixed64Rules value) { if (sfixed64Builder_ == null) { @@ -4254,7 +4355,7 @@ public Builder setSfixed64(pbandk.testpb.Validate.SFixed64Rules value) { return this; } /** - * optional .pbandk.testpb.SFixed64Rules sfixed64 = 12; + * .pbandk.testpb.SFixed64Rules sfixed64 = 12; */ public Builder setSfixed64( pbandk.testpb.Validate.SFixed64Rules.Builder builderForValue) { @@ -4268,7 +4369,7 @@ public Builder setSfixed64( return this; } /** - * optional .pbandk.testpb.SFixed64Rules sfixed64 = 12; + * .pbandk.testpb.SFixed64Rules sfixed64 = 12; */ public Builder mergeSfixed64(pbandk.testpb.Validate.SFixed64Rules value) { if (sfixed64Builder_ == null) { @@ -4290,7 +4391,7 @@ public Builder mergeSfixed64(pbandk.testpb.Validate.SFixed64Rules value) { return this; } /** - * optional .pbandk.testpb.SFixed64Rules sfixed64 = 12; + * .pbandk.testpb.SFixed64Rules sfixed64 = 12; */ public Builder clearSfixed64() { if (sfixed64Builder_ == null) { @@ -4309,14 +4410,15 @@ public Builder clearSfixed64() { return this; } /** - * optional .pbandk.testpb.SFixed64Rules sfixed64 = 12; + * .pbandk.testpb.SFixed64Rules sfixed64 = 12; */ public pbandk.testpb.Validate.SFixed64Rules.Builder getSfixed64Builder() { return getSfixed64FieldBuilder().getBuilder(); } /** - * optional .pbandk.testpb.SFixed64Rules sfixed64 = 12; + * .pbandk.testpb.SFixed64Rules sfixed64 = 12; */ + @java.lang.Override public pbandk.testpb.Validate.SFixed64RulesOrBuilder getSfixed64OrBuilder() { if ((typeCase_ == 12) && (sfixed64Builder_ != null)) { return sfixed64Builder_.getMessageOrBuilder(); @@ -4328,7 +4430,7 @@ public pbandk.testpb.Validate.SFixed64RulesOrBuilder getSfixed64OrBuilder() { } } /** - * optional .pbandk.testpb.SFixed64Rules sfixed64 = 12; + * .pbandk.testpb.SFixed64Rules sfixed64 = 12; */ private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.SFixed64Rules, pbandk.testpb.Validate.SFixed64Rules.Builder, pbandk.testpb.Validate.SFixed64RulesOrBuilder> @@ -4352,16 +4454,18 @@ public pbandk.testpb.Validate.SFixed64RulesOrBuilder getSfixed64OrBuilder() { private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.BoolRules, pbandk.testpb.Validate.BoolRules.Builder, pbandk.testpb.Validate.BoolRulesOrBuilder> boolBuilder_; /** - * optional .pbandk.testpb.BoolRules bool = 13; + * .pbandk.testpb.BoolRules bool = 13; * @return Whether the bool field is set. */ + @java.lang.Override public boolean hasBool() { return typeCase_ == 13; } /** - * optional .pbandk.testpb.BoolRules bool = 13; + * .pbandk.testpb.BoolRules bool = 13; * @return The bool. */ + @java.lang.Override public pbandk.testpb.Validate.BoolRules getBool() { if (boolBuilder_ == null) { if (typeCase_ == 13) { @@ -4376,7 +4480,7 @@ public pbandk.testpb.Validate.BoolRules getBool() { } } /** - * optional .pbandk.testpb.BoolRules bool = 13; + * .pbandk.testpb.BoolRules bool = 13; */ public Builder setBool(pbandk.testpb.Validate.BoolRules value) { if (boolBuilder_ == null) { @@ -4392,7 +4496,7 @@ public Builder setBool(pbandk.testpb.Validate.BoolRules value) { return this; } /** - * optional .pbandk.testpb.BoolRules bool = 13; + * .pbandk.testpb.BoolRules bool = 13; */ public Builder setBool( pbandk.testpb.Validate.BoolRules.Builder builderForValue) { @@ -4406,7 +4510,7 @@ public Builder setBool( return this; } /** - * optional .pbandk.testpb.BoolRules bool = 13; + * .pbandk.testpb.BoolRules bool = 13; */ public Builder mergeBool(pbandk.testpb.Validate.BoolRules value) { if (boolBuilder_ == null) { @@ -4428,7 +4532,7 @@ public Builder mergeBool(pbandk.testpb.Validate.BoolRules value) { return this; } /** - * optional .pbandk.testpb.BoolRules bool = 13; + * .pbandk.testpb.BoolRules bool = 13; */ public Builder clearBool() { if (boolBuilder_ == null) { @@ -4447,14 +4551,15 @@ public Builder clearBool() { return this; } /** - * optional .pbandk.testpb.BoolRules bool = 13; + * .pbandk.testpb.BoolRules bool = 13; */ public pbandk.testpb.Validate.BoolRules.Builder getBoolBuilder() { return getBoolFieldBuilder().getBuilder(); } /** - * optional .pbandk.testpb.BoolRules bool = 13; + * .pbandk.testpb.BoolRules bool = 13; */ + @java.lang.Override public pbandk.testpb.Validate.BoolRulesOrBuilder getBoolOrBuilder() { if ((typeCase_ == 13) && (boolBuilder_ != null)) { return boolBuilder_.getMessageOrBuilder(); @@ -4466,7 +4571,7 @@ public pbandk.testpb.Validate.BoolRulesOrBuilder getBoolOrBuilder() { } } /** - * optional .pbandk.testpb.BoolRules bool = 13; + * .pbandk.testpb.BoolRules bool = 13; */ private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.BoolRules, pbandk.testpb.Validate.BoolRules.Builder, pbandk.testpb.Validate.BoolRulesOrBuilder> @@ -4490,16 +4595,18 @@ public pbandk.testpb.Validate.BoolRulesOrBuilder getBoolOrBuilder() { private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.StringRules, pbandk.testpb.Validate.StringRules.Builder, pbandk.testpb.Validate.StringRulesOrBuilder> stringBuilder_; /** - * optional .pbandk.testpb.StringRules string = 14; + * .pbandk.testpb.StringRules string = 14; * @return Whether the string field is set. */ + @java.lang.Override public boolean hasString() { return typeCase_ == 14; } /** - * optional .pbandk.testpb.StringRules string = 14; + * .pbandk.testpb.StringRules string = 14; * @return The string. */ + @java.lang.Override public pbandk.testpb.Validate.StringRules getString() { if (stringBuilder_ == null) { if (typeCase_ == 14) { @@ -4514,7 +4621,7 @@ public pbandk.testpb.Validate.StringRules getString() { } } /** - * optional .pbandk.testpb.StringRules string = 14; + * .pbandk.testpb.StringRules string = 14; */ public Builder setString(pbandk.testpb.Validate.StringRules value) { if (stringBuilder_ == null) { @@ -4530,7 +4637,7 @@ public Builder setString(pbandk.testpb.Validate.StringRules value) { return this; } /** - * optional .pbandk.testpb.StringRules string = 14; + * .pbandk.testpb.StringRules string = 14; */ public Builder setString( pbandk.testpb.Validate.StringRules.Builder builderForValue) { @@ -4544,7 +4651,7 @@ public Builder setString( return this; } /** - * optional .pbandk.testpb.StringRules string = 14; + * .pbandk.testpb.StringRules string = 14; */ public Builder mergeString(pbandk.testpb.Validate.StringRules value) { if (stringBuilder_ == null) { @@ -4566,7 +4673,7 @@ public Builder mergeString(pbandk.testpb.Validate.StringRules value) { return this; } /** - * optional .pbandk.testpb.StringRules string = 14; + * .pbandk.testpb.StringRules string = 14; */ public Builder clearString() { if (stringBuilder_ == null) { @@ -4585,14 +4692,15 @@ public Builder clearString() { return this; } /** - * optional .pbandk.testpb.StringRules string = 14; + * .pbandk.testpb.StringRules string = 14; */ public pbandk.testpb.Validate.StringRules.Builder getStringBuilder() { return getStringFieldBuilder().getBuilder(); } /** - * optional .pbandk.testpb.StringRules string = 14; + * .pbandk.testpb.StringRules string = 14; */ + @java.lang.Override public pbandk.testpb.Validate.StringRulesOrBuilder getStringOrBuilder() { if ((typeCase_ == 14) && (stringBuilder_ != null)) { return stringBuilder_.getMessageOrBuilder(); @@ -4604,7 +4712,7 @@ public pbandk.testpb.Validate.StringRulesOrBuilder getStringOrBuilder() { } } /** - * optional .pbandk.testpb.StringRules string = 14; + * .pbandk.testpb.StringRules string = 14; */ private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.StringRules, pbandk.testpb.Validate.StringRules.Builder, pbandk.testpb.Validate.StringRulesOrBuilder> @@ -4628,16 +4736,18 @@ public pbandk.testpb.Validate.StringRulesOrBuilder getStringOrBuilder() { private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.BytesRules, pbandk.testpb.Validate.BytesRules.Builder, pbandk.testpb.Validate.BytesRulesOrBuilder> bytesBuilder_; /** - * optional .pbandk.testpb.BytesRules bytes = 15; + * .pbandk.testpb.BytesRules bytes = 15; * @return Whether the bytes field is set. */ + @java.lang.Override public boolean hasBytes() { return typeCase_ == 15; } /** - * optional .pbandk.testpb.BytesRules bytes = 15; + * .pbandk.testpb.BytesRules bytes = 15; * @return The bytes. */ + @java.lang.Override public pbandk.testpb.Validate.BytesRules getBytes() { if (bytesBuilder_ == null) { if (typeCase_ == 15) { @@ -4652,7 +4762,7 @@ public pbandk.testpb.Validate.BytesRules getBytes() { } } /** - * optional .pbandk.testpb.BytesRules bytes = 15; + * .pbandk.testpb.BytesRules bytes = 15; */ public Builder setBytes(pbandk.testpb.Validate.BytesRules value) { if (bytesBuilder_ == null) { @@ -4668,7 +4778,7 @@ public Builder setBytes(pbandk.testpb.Validate.BytesRules value) { return this; } /** - * optional .pbandk.testpb.BytesRules bytes = 15; + * .pbandk.testpb.BytesRules bytes = 15; */ public Builder setBytes( pbandk.testpb.Validate.BytesRules.Builder builderForValue) { @@ -4682,7 +4792,7 @@ public Builder setBytes( return this; } /** - * optional .pbandk.testpb.BytesRules bytes = 15; + * .pbandk.testpb.BytesRules bytes = 15; */ public Builder mergeBytes(pbandk.testpb.Validate.BytesRules value) { if (bytesBuilder_ == null) { @@ -4704,7 +4814,7 @@ public Builder mergeBytes(pbandk.testpb.Validate.BytesRules value) { return this; } /** - * optional .pbandk.testpb.BytesRules bytes = 15; + * .pbandk.testpb.BytesRules bytes = 15; */ public Builder clearBytes() { if (bytesBuilder_ == null) { @@ -4723,14 +4833,15 @@ public Builder clearBytes() { return this; } /** - * optional .pbandk.testpb.BytesRules bytes = 15; + * .pbandk.testpb.BytesRules bytes = 15; */ public pbandk.testpb.Validate.BytesRules.Builder getBytesBuilder() { return getBytesFieldBuilder().getBuilder(); } /** - * optional .pbandk.testpb.BytesRules bytes = 15; + * .pbandk.testpb.BytesRules bytes = 15; */ + @java.lang.Override public pbandk.testpb.Validate.BytesRulesOrBuilder getBytesOrBuilder() { if ((typeCase_ == 15) && (bytesBuilder_ != null)) { return bytesBuilder_.getMessageOrBuilder(); @@ -4742,7 +4853,7 @@ public pbandk.testpb.Validate.BytesRulesOrBuilder getBytesOrBuilder() { } } /** - * optional .pbandk.testpb.BytesRules bytes = 15; + * .pbandk.testpb.BytesRules bytes = 15; */ private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.BytesRules, pbandk.testpb.Validate.BytesRules.Builder, pbandk.testpb.Validate.BytesRulesOrBuilder> @@ -4770,9 +4881,10 @@ public pbandk.testpb.Validate.BytesRulesOrBuilder getBytesOrBuilder() { * Complex Field Types * * - * optional .pbandk.testpb.EnumRules enum = 16; + * .pbandk.testpb.EnumRules enum = 16; * @return Whether the enum field is set. */ + @java.lang.Override public boolean hasEnum() { return typeCase_ == 16; } @@ -4781,9 +4893,10 @@ public boolean hasEnum() { * Complex Field Types * * - * optional .pbandk.testpb.EnumRules enum = 16; + * .pbandk.testpb.EnumRules enum = 16; * @return The enum. */ + @java.lang.Override public pbandk.testpb.Validate.EnumRules getEnum() { if (enumBuilder_ == null) { if (typeCase_ == 16) { @@ -4802,7 +4915,7 @@ public pbandk.testpb.Validate.EnumRules getEnum() { * Complex Field Types * * - * optional .pbandk.testpb.EnumRules enum = 16; + * .pbandk.testpb.EnumRules enum = 16; */ public Builder setEnum(pbandk.testpb.Validate.EnumRules value) { if (enumBuilder_ == null) { @@ -4822,7 +4935,7 @@ public Builder setEnum(pbandk.testpb.Validate.EnumRules value) { * Complex Field Types * * - * optional .pbandk.testpb.EnumRules enum = 16; + * .pbandk.testpb.EnumRules enum = 16; */ public Builder setEnum( pbandk.testpb.Validate.EnumRules.Builder builderForValue) { @@ -4840,7 +4953,7 @@ public Builder setEnum( * Complex Field Types * * - * optional .pbandk.testpb.EnumRules enum = 16; + * .pbandk.testpb.EnumRules enum = 16; */ public Builder mergeEnum(pbandk.testpb.Validate.EnumRules value) { if (enumBuilder_ == null) { @@ -4866,7 +4979,7 @@ public Builder mergeEnum(pbandk.testpb.Validate.EnumRules value) { * Complex Field Types * * - * optional .pbandk.testpb.EnumRules enum = 16; + * .pbandk.testpb.EnumRules enum = 16; */ public Builder clearEnum() { if (enumBuilder_ == null) { @@ -4889,7 +5002,7 @@ public Builder clearEnum() { * Complex Field Types * * - * optional .pbandk.testpb.EnumRules enum = 16; + * .pbandk.testpb.EnumRules enum = 16; */ public pbandk.testpb.Validate.EnumRules.Builder getEnumBuilder() { return getEnumFieldBuilder().getBuilder(); @@ -4899,8 +5012,9 @@ public pbandk.testpb.Validate.EnumRules.Builder getEnumBuilder() { * Complex Field Types * * - * optional .pbandk.testpb.EnumRules enum = 16; + * .pbandk.testpb.EnumRules enum = 16; */ + @java.lang.Override public pbandk.testpb.Validate.EnumRulesOrBuilder getEnumOrBuilder() { if ((typeCase_ == 16) && (enumBuilder_ != null)) { return enumBuilder_.getMessageOrBuilder(); @@ -4916,7 +5030,7 @@ public pbandk.testpb.Validate.EnumRulesOrBuilder getEnumOrBuilder() { * Complex Field Types * * - * optional .pbandk.testpb.EnumRules enum = 16; + * .pbandk.testpb.EnumRules enum = 16; */ private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.EnumRules, pbandk.testpb.Validate.EnumRules.Builder, pbandk.testpb.Validate.EnumRulesOrBuilder> @@ -4940,16 +5054,18 @@ public pbandk.testpb.Validate.EnumRulesOrBuilder getEnumOrBuilder() { private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.RepeatedRules, pbandk.testpb.Validate.RepeatedRules.Builder, pbandk.testpb.Validate.RepeatedRulesOrBuilder> repeatedBuilder_; /** - * optional .pbandk.testpb.RepeatedRules repeated = 18; + * .pbandk.testpb.RepeatedRules repeated = 18; * @return Whether the repeated field is set. */ + @java.lang.Override public boolean hasRepeated() { return typeCase_ == 18; } /** - * optional .pbandk.testpb.RepeatedRules repeated = 18; + * .pbandk.testpb.RepeatedRules repeated = 18; * @return The repeated. */ + @java.lang.Override public pbandk.testpb.Validate.RepeatedRules getRepeated() { if (repeatedBuilder_ == null) { if (typeCase_ == 18) { @@ -4964,7 +5080,7 @@ public pbandk.testpb.Validate.RepeatedRules getRepeated() { } } /** - * optional .pbandk.testpb.RepeatedRules repeated = 18; + * .pbandk.testpb.RepeatedRules repeated = 18; */ public Builder setRepeated(pbandk.testpb.Validate.RepeatedRules value) { if (repeatedBuilder_ == null) { @@ -4980,7 +5096,7 @@ public Builder setRepeated(pbandk.testpb.Validate.RepeatedRules value) { return this; } /** - * optional .pbandk.testpb.RepeatedRules repeated = 18; + * .pbandk.testpb.RepeatedRules repeated = 18; */ public Builder setRepeated( pbandk.testpb.Validate.RepeatedRules.Builder builderForValue) { @@ -4994,7 +5110,7 @@ public Builder setRepeated( return this; } /** - * optional .pbandk.testpb.RepeatedRules repeated = 18; + * .pbandk.testpb.RepeatedRules repeated = 18; */ public Builder mergeRepeated(pbandk.testpb.Validate.RepeatedRules value) { if (repeatedBuilder_ == null) { @@ -5016,7 +5132,7 @@ public Builder mergeRepeated(pbandk.testpb.Validate.RepeatedRules value) { return this; } /** - * optional .pbandk.testpb.RepeatedRules repeated = 18; + * .pbandk.testpb.RepeatedRules repeated = 18; */ public Builder clearRepeated() { if (repeatedBuilder_ == null) { @@ -5035,14 +5151,15 @@ public Builder clearRepeated() { return this; } /** - * optional .pbandk.testpb.RepeatedRules repeated = 18; + * .pbandk.testpb.RepeatedRules repeated = 18; */ public pbandk.testpb.Validate.RepeatedRules.Builder getRepeatedBuilder() { return getRepeatedFieldBuilder().getBuilder(); } /** - * optional .pbandk.testpb.RepeatedRules repeated = 18; + * .pbandk.testpb.RepeatedRules repeated = 18; */ + @java.lang.Override public pbandk.testpb.Validate.RepeatedRulesOrBuilder getRepeatedOrBuilder() { if ((typeCase_ == 18) && (repeatedBuilder_ != null)) { return repeatedBuilder_.getMessageOrBuilder(); @@ -5054,7 +5171,7 @@ public pbandk.testpb.Validate.RepeatedRulesOrBuilder getRepeatedOrBuilder() { } } /** - * optional .pbandk.testpb.RepeatedRules repeated = 18; + * .pbandk.testpb.RepeatedRules repeated = 18; */ private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.RepeatedRules, pbandk.testpb.Validate.RepeatedRules.Builder, pbandk.testpb.Validate.RepeatedRulesOrBuilder> @@ -5078,16 +5195,18 @@ public pbandk.testpb.Validate.RepeatedRulesOrBuilder getRepeatedOrBuilder() { private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.MapRules, pbandk.testpb.Validate.MapRules.Builder, pbandk.testpb.Validate.MapRulesOrBuilder> mapBuilder_; /** - * optional .pbandk.testpb.MapRules map = 19; + * .pbandk.testpb.MapRules map = 19; * @return Whether the map field is set. */ + @java.lang.Override public boolean hasMap() { return typeCase_ == 19; } /** - * optional .pbandk.testpb.MapRules map = 19; + * .pbandk.testpb.MapRules map = 19; * @return The map. */ + @java.lang.Override public pbandk.testpb.Validate.MapRules getMap() { if (mapBuilder_ == null) { if (typeCase_ == 19) { @@ -5102,7 +5221,7 @@ public pbandk.testpb.Validate.MapRules getMap() { } } /** - * optional .pbandk.testpb.MapRules map = 19; + * .pbandk.testpb.MapRules map = 19; */ public Builder setMap(pbandk.testpb.Validate.MapRules value) { if (mapBuilder_ == null) { @@ -5118,7 +5237,7 @@ public Builder setMap(pbandk.testpb.Validate.MapRules value) { return this; } /** - * optional .pbandk.testpb.MapRules map = 19; + * .pbandk.testpb.MapRules map = 19; */ public Builder setMap( pbandk.testpb.Validate.MapRules.Builder builderForValue) { @@ -5132,7 +5251,7 @@ public Builder setMap( return this; } /** - * optional .pbandk.testpb.MapRules map = 19; + * .pbandk.testpb.MapRules map = 19; */ public Builder mergeMap(pbandk.testpb.Validate.MapRules value) { if (mapBuilder_ == null) { @@ -5154,7 +5273,7 @@ public Builder mergeMap(pbandk.testpb.Validate.MapRules value) { return this; } /** - * optional .pbandk.testpb.MapRules map = 19; + * .pbandk.testpb.MapRules map = 19; */ public Builder clearMap() { if (mapBuilder_ == null) { @@ -5173,14 +5292,15 @@ public Builder clearMap() { return this; } /** - * optional .pbandk.testpb.MapRules map = 19; + * .pbandk.testpb.MapRules map = 19; */ public pbandk.testpb.Validate.MapRules.Builder getMapBuilder() { return getMapFieldBuilder().getBuilder(); } /** - * optional .pbandk.testpb.MapRules map = 19; + * .pbandk.testpb.MapRules map = 19; */ + @java.lang.Override public pbandk.testpb.Validate.MapRulesOrBuilder getMapOrBuilder() { if ((typeCase_ == 19) && (mapBuilder_ != null)) { return mapBuilder_.getMessageOrBuilder(); @@ -5192,7 +5312,7 @@ public pbandk.testpb.Validate.MapRulesOrBuilder getMapOrBuilder() { } } /** - * optional .pbandk.testpb.MapRules map = 19; + * .pbandk.testpb.MapRules map = 19; */ private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.MapRules, pbandk.testpb.Validate.MapRules.Builder, pbandk.testpb.Validate.MapRulesOrBuilder> @@ -5220,9 +5340,10 @@ public pbandk.testpb.Validate.MapRulesOrBuilder getMapOrBuilder() { * Well-Known Field Types * * - * optional .pbandk.testpb.AnyRules any = 20; + * .pbandk.testpb.AnyRules any = 20; * @return Whether the any field is set. */ + @java.lang.Override public boolean hasAny() { return typeCase_ == 20; } @@ -5231,9 +5352,10 @@ public boolean hasAny() { * Well-Known Field Types * * - * optional .pbandk.testpb.AnyRules any = 20; + * .pbandk.testpb.AnyRules any = 20; * @return The any. */ + @java.lang.Override public pbandk.testpb.Validate.AnyRules getAny() { if (anyBuilder_ == null) { if (typeCase_ == 20) { @@ -5252,7 +5374,7 @@ public pbandk.testpb.Validate.AnyRules getAny() { * Well-Known Field Types * * - * optional .pbandk.testpb.AnyRules any = 20; + * .pbandk.testpb.AnyRules any = 20; */ public Builder setAny(pbandk.testpb.Validate.AnyRules value) { if (anyBuilder_ == null) { @@ -5272,7 +5394,7 @@ public Builder setAny(pbandk.testpb.Validate.AnyRules value) { * Well-Known Field Types * * - * optional .pbandk.testpb.AnyRules any = 20; + * .pbandk.testpb.AnyRules any = 20; */ public Builder setAny( pbandk.testpb.Validate.AnyRules.Builder builderForValue) { @@ -5290,7 +5412,7 @@ public Builder setAny( * Well-Known Field Types * * - * optional .pbandk.testpb.AnyRules any = 20; + * .pbandk.testpb.AnyRules any = 20; */ public Builder mergeAny(pbandk.testpb.Validate.AnyRules value) { if (anyBuilder_ == null) { @@ -5316,7 +5438,7 @@ public Builder mergeAny(pbandk.testpb.Validate.AnyRules value) { * Well-Known Field Types * * - * optional .pbandk.testpb.AnyRules any = 20; + * .pbandk.testpb.AnyRules any = 20; */ public Builder clearAny() { if (anyBuilder_ == null) { @@ -5339,7 +5461,7 @@ public Builder clearAny() { * Well-Known Field Types * * - * optional .pbandk.testpb.AnyRules any = 20; + * .pbandk.testpb.AnyRules any = 20; */ public pbandk.testpb.Validate.AnyRules.Builder getAnyBuilder() { return getAnyFieldBuilder().getBuilder(); @@ -5349,8 +5471,9 @@ public pbandk.testpb.Validate.AnyRules.Builder getAnyBuilder() { * Well-Known Field Types * * - * optional .pbandk.testpb.AnyRules any = 20; + * .pbandk.testpb.AnyRules any = 20; */ + @java.lang.Override public pbandk.testpb.Validate.AnyRulesOrBuilder getAnyOrBuilder() { if ((typeCase_ == 20) && (anyBuilder_ != null)) { return anyBuilder_.getMessageOrBuilder(); @@ -5366,7 +5489,7 @@ public pbandk.testpb.Validate.AnyRulesOrBuilder getAnyOrBuilder() { * Well-Known Field Types * * - * optional .pbandk.testpb.AnyRules any = 20; + * .pbandk.testpb.AnyRules any = 20; */ private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.AnyRules, pbandk.testpb.Validate.AnyRules.Builder, pbandk.testpb.Validate.AnyRulesOrBuilder> @@ -5390,16 +5513,18 @@ public pbandk.testpb.Validate.AnyRulesOrBuilder getAnyOrBuilder() { private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.DurationRules, pbandk.testpb.Validate.DurationRules.Builder, pbandk.testpb.Validate.DurationRulesOrBuilder> durationBuilder_; /** - * optional .pbandk.testpb.DurationRules duration = 21; + * .pbandk.testpb.DurationRules duration = 21; * @return Whether the duration field is set. */ + @java.lang.Override public boolean hasDuration() { return typeCase_ == 21; } /** - * optional .pbandk.testpb.DurationRules duration = 21; + * .pbandk.testpb.DurationRules duration = 21; * @return The duration. */ + @java.lang.Override public pbandk.testpb.Validate.DurationRules getDuration() { if (durationBuilder_ == null) { if (typeCase_ == 21) { @@ -5414,7 +5539,7 @@ public pbandk.testpb.Validate.DurationRules getDuration() { } } /** - * optional .pbandk.testpb.DurationRules duration = 21; + * .pbandk.testpb.DurationRules duration = 21; */ public Builder setDuration(pbandk.testpb.Validate.DurationRules value) { if (durationBuilder_ == null) { @@ -5430,7 +5555,7 @@ public Builder setDuration(pbandk.testpb.Validate.DurationRules value) { return this; } /** - * optional .pbandk.testpb.DurationRules duration = 21; + * .pbandk.testpb.DurationRules duration = 21; */ public Builder setDuration( pbandk.testpb.Validate.DurationRules.Builder builderForValue) { @@ -5444,7 +5569,7 @@ public Builder setDuration( return this; } /** - * optional .pbandk.testpb.DurationRules duration = 21; + * .pbandk.testpb.DurationRules duration = 21; */ public Builder mergeDuration(pbandk.testpb.Validate.DurationRules value) { if (durationBuilder_ == null) { @@ -5466,7 +5591,7 @@ public Builder mergeDuration(pbandk.testpb.Validate.DurationRules value) { return this; } /** - * optional .pbandk.testpb.DurationRules duration = 21; + * .pbandk.testpb.DurationRules duration = 21; */ public Builder clearDuration() { if (durationBuilder_ == null) { @@ -5485,14 +5610,15 @@ public Builder clearDuration() { return this; } /** - * optional .pbandk.testpb.DurationRules duration = 21; + * .pbandk.testpb.DurationRules duration = 21; */ public pbandk.testpb.Validate.DurationRules.Builder getDurationBuilder() { return getDurationFieldBuilder().getBuilder(); } /** - * optional .pbandk.testpb.DurationRules duration = 21; + * .pbandk.testpb.DurationRules duration = 21; */ + @java.lang.Override public pbandk.testpb.Validate.DurationRulesOrBuilder getDurationOrBuilder() { if ((typeCase_ == 21) && (durationBuilder_ != null)) { return durationBuilder_.getMessageOrBuilder(); @@ -5504,7 +5630,7 @@ public pbandk.testpb.Validate.DurationRulesOrBuilder getDurationOrBuilder() { } } /** - * optional .pbandk.testpb.DurationRules duration = 21; + * .pbandk.testpb.DurationRules duration = 21; */ private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.DurationRules, pbandk.testpb.Validate.DurationRules.Builder, pbandk.testpb.Validate.DurationRulesOrBuilder> @@ -5528,16 +5654,18 @@ public pbandk.testpb.Validate.DurationRulesOrBuilder getDurationOrBuilder() { private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.TimestampRules, pbandk.testpb.Validate.TimestampRules.Builder, pbandk.testpb.Validate.TimestampRulesOrBuilder> timestampBuilder_; /** - * optional .pbandk.testpb.TimestampRules timestamp = 22; + * .pbandk.testpb.TimestampRules timestamp = 22; * @return Whether the timestamp field is set. */ + @java.lang.Override public boolean hasTimestamp() { return typeCase_ == 22; } /** - * optional .pbandk.testpb.TimestampRules timestamp = 22; + * .pbandk.testpb.TimestampRules timestamp = 22; * @return The timestamp. */ + @java.lang.Override public pbandk.testpb.Validate.TimestampRules getTimestamp() { if (timestampBuilder_ == null) { if (typeCase_ == 22) { @@ -5552,7 +5680,7 @@ public pbandk.testpb.Validate.TimestampRules getTimestamp() { } } /** - * optional .pbandk.testpb.TimestampRules timestamp = 22; + * .pbandk.testpb.TimestampRules timestamp = 22; */ public Builder setTimestamp(pbandk.testpb.Validate.TimestampRules value) { if (timestampBuilder_ == null) { @@ -5568,7 +5696,7 @@ public Builder setTimestamp(pbandk.testpb.Validate.TimestampRules value) { return this; } /** - * optional .pbandk.testpb.TimestampRules timestamp = 22; + * .pbandk.testpb.TimestampRules timestamp = 22; */ public Builder setTimestamp( pbandk.testpb.Validate.TimestampRules.Builder builderForValue) { @@ -5582,7 +5710,7 @@ public Builder setTimestamp( return this; } /** - * optional .pbandk.testpb.TimestampRules timestamp = 22; + * .pbandk.testpb.TimestampRules timestamp = 22; */ public Builder mergeTimestamp(pbandk.testpb.Validate.TimestampRules value) { if (timestampBuilder_ == null) { @@ -5604,7 +5732,7 @@ public Builder mergeTimestamp(pbandk.testpb.Validate.TimestampRules value) { return this; } /** - * optional .pbandk.testpb.TimestampRules timestamp = 22; + * .pbandk.testpb.TimestampRules timestamp = 22; */ public Builder clearTimestamp() { if (timestampBuilder_ == null) { @@ -5623,14 +5751,15 @@ public Builder clearTimestamp() { return this; } /** - * optional .pbandk.testpb.TimestampRules timestamp = 22; + * .pbandk.testpb.TimestampRules timestamp = 22; */ public pbandk.testpb.Validate.TimestampRules.Builder getTimestampBuilder() { return getTimestampFieldBuilder().getBuilder(); } /** - * optional .pbandk.testpb.TimestampRules timestamp = 22; + * .pbandk.testpb.TimestampRules timestamp = 22; */ + @java.lang.Override public pbandk.testpb.Validate.TimestampRulesOrBuilder getTimestampOrBuilder() { if ((typeCase_ == 22) && (timestampBuilder_ != null)) { return timestampBuilder_.getMessageOrBuilder(); @@ -5642,7 +5771,7 @@ public pbandk.testpb.Validate.TimestampRulesOrBuilder getTimestampOrBuilder() { } } /** - * optional .pbandk.testpb.TimestampRules timestamp = 22; + * .pbandk.testpb.TimestampRules timestamp = 22; */ private com.google.protobuf.SingleFieldBuilderV3< pbandk.testpb.Validate.TimestampRules, pbandk.testpb.Validate.TimestampRules.Builder, pbandk.testpb.Validate.TimestampRulesOrBuilder> @@ -5897,7 +6026,7 @@ public interface FloatRulesOrBuilder extends * * Protobuf type {@code pbandk.testpb.FloatRules} */ - public static final class FloatRules extends + public static final class FloatRules extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:pbandk.testpb.FloatRules) FloatRulesOrBuilder { @@ -6058,6 +6187,7 @@ private FloatRules( * optional float const = 1; * @return Whether the const field is set. */ + @java.lang.Override public boolean hasConst() { return ((bitField0_ & 0x00000001) != 0); } @@ -6069,6 +6199,7 @@ public boolean hasConst() { * optional float const = 1; * @return The const. */ + @java.lang.Override public float getConst() { return const_; } @@ -6084,6 +6215,7 @@ public float getConst() { * optional float lt = 2; * @return Whether the lt field is set. */ + @java.lang.Override public boolean hasLt() { return ((bitField0_ & 0x00000002) != 0); } @@ -6096,6 +6228,7 @@ public boolean hasLt() { * optional float lt = 2; * @return The lt. */ + @java.lang.Override public float getLt() { return lt_; } @@ -6111,6 +6244,7 @@ public float getLt() { * optional float lte = 3; * @return Whether the lte field is set. */ + @java.lang.Override public boolean hasLte() { return ((bitField0_ & 0x00000004) != 0); } @@ -6123,6 +6257,7 @@ public boolean hasLte() { * optional float lte = 3; * @return The lte. */ + @java.lang.Override public float getLte() { return lte_; } @@ -6139,6 +6274,7 @@ public float getLte() { * optional float gt = 4; * @return Whether the gt field is set. */ + @java.lang.Override public boolean hasGt() { return ((bitField0_ & 0x00000008) != 0); } @@ -6152,6 +6288,7 @@ public boolean hasGt() { * optional float gt = 4; * @return The gt. */ + @java.lang.Override public float getGt() { return gt_; } @@ -6168,6 +6305,7 @@ public float getGt() { * optional float gte = 5; * @return Whether the gte field is set. */ + @java.lang.Override public boolean hasGte() { return ((bitField0_ & 0x00000010) != 0); } @@ -6181,6 +6319,7 @@ public boolean hasGte() { * optional float gte = 5; * @return The gte. */ + @java.lang.Override public float getGte() { return gte_; } @@ -6196,6 +6335,7 @@ public float getGte() { * repeated float in = 6; * @return A list containing the in. */ + @java.lang.Override public java.util.List getInList() { return in_; @@ -6237,6 +6377,7 @@ public float getIn(int index) { * repeated float not_in = 7; * @return A list containing the notIn. */ + @java.lang.Override public java.util.List getNotInList() { return notIn_; @@ -6768,6 +6909,7 @@ public Builder mergeFrom( * optional float const = 1; * @return Whether the const field is set. */ + @java.lang.Override public boolean hasConst() { return ((bitField0_ & 0x00000001) != 0); } @@ -6779,6 +6921,7 @@ public boolean hasConst() { * optional float const = 1; * @return The const. */ + @java.lang.Override public float getConst() { return const_; } @@ -6822,6 +6965,7 @@ public Builder clearConst() { * optional float lt = 2; * @return Whether the lt field is set. */ + @java.lang.Override public boolean hasLt() { return ((bitField0_ & 0x00000002) != 0); } @@ -6834,6 +6978,7 @@ public boolean hasLt() { * optional float lt = 2; * @return The lt. */ + @java.lang.Override public float getLt() { return lt_; } @@ -6879,6 +7024,7 @@ public Builder clearLt() { * optional float lte = 3; * @return Whether the lte field is set. */ + @java.lang.Override public boolean hasLte() { return ((bitField0_ & 0x00000004) != 0); } @@ -6891,6 +7037,7 @@ public boolean hasLte() { * optional float lte = 3; * @return The lte. */ + @java.lang.Override public float getLte() { return lte_; } @@ -6937,6 +7084,7 @@ public Builder clearLte() { * optional float gt = 4; * @return Whether the gt field is set. */ + @java.lang.Override public boolean hasGt() { return ((bitField0_ & 0x00000008) != 0); } @@ -6950,6 +7098,7 @@ public boolean hasGt() { * optional float gt = 4; * @return The gt. */ + @java.lang.Override public float getGt() { return gt_; } @@ -6998,6 +7147,7 @@ public Builder clearGt() { * optional float gte = 5; * @return Whether the gte field is set. */ + @java.lang.Override public boolean hasGte() { return ((bitField0_ & 0x00000010) != 0); } @@ -7011,6 +7161,7 @@ public boolean hasGte() { * optional float gte = 5; * @return The gte. */ + @java.lang.Override public float getGte() { return gte_; } @@ -7510,7 +7661,7 @@ public interface DoubleRulesOrBuilder extends * * Protobuf type {@code pbandk.testpb.DoubleRules} */ - public static final class DoubleRules extends + public static final class DoubleRules extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:pbandk.testpb.DoubleRules) DoubleRulesOrBuilder { @@ -7671,6 +7822,7 @@ private DoubleRules( * optional double const = 1; * @return Whether the const field is set. */ + @java.lang.Override public boolean hasConst() { return ((bitField0_ & 0x00000001) != 0); } @@ -7682,6 +7834,7 @@ public boolean hasConst() { * optional double const = 1; * @return The const. */ + @java.lang.Override public double getConst() { return const_; } @@ -7697,6 +7850,7 @@ public double getConst() { * optional double lt = 2; * @return Whether the lt field is set. */ + @java.lang.Override public boolean hasLt() { return ((bitField0_ & 0x00000002) != 0); } @@ -7709,6 +7863,7 @@ public boolean hasLt() { * optional double lt = 2; * @return The lt. */ + @java.lang.Override public double getLt() { return lt_; } @@ -7724,6 +7879,7 @@ public double getLt() { * optional double lte = 3; * @return Whether the lte field is set. */ + @java.lang.Override public boolean hasLte() { return ((bitField0_ & 0x00000004) != 0); } @@ -7736,6 +7892,7 @@ public boolean hasLte() { * optional double lte = 3; * @return The lte. */ + @java.lang.Override public double getLte() { return lte_; } @@ -7752,6 +7909,7 @@ public double getLte() { * optional double gt = 4; * @return Whether the gt field is set. */ + @java.lang.Override public boolean hasGt() { return ((bitField0_ & 0x00000008) != 0); } @@ -7765,6 +7923,7 @@ public boolean hasGt() { * optional double gt = 4; * @return The gt. */ + @java.lang.Override public double getGt() { return gt_; } @@ -7781,6 +7940,7 @@ public double getGt() { * optional double gte = 5; * @return Whether the gte field is set. */ + @java.lang.Override public boolean hasGte() { return ((bitField0_ & 0x00000010) != 0); } @@ -7794,6 +7954,7 @@ public boolean hasGte() { * optional double gte = 5; * @return The gte. */ + @java.lang.Override public double getGte() { return gte_; } @@ -7809,6 +7970,7 @@ public double getGte() { * repeated double in = 6; * @return A list containing the in. */ + @java.lang.Override public java.util.List getInList() { return in_; @@ -7850,6 +8012,7 @@ public double getIn(int index) { * repeated double not_in = 7; * @return A list containing the notIn. */ + @java.lang.Override public java.util.List getNotInList() { return notIn_; @@ -8381,6 +8544,7 @@ public Builder mergeFrom( * optional double const = 1; * @return Whether the const field is set. */ + @java.lang.Override public boolean hasConst() { return ((bitField0_ & 0x00000001) != 0); } @@ -8392,6 +8556,7 @@ public boolean hasConst() { * optional double const = 1; * @return The const. */ + @java.lang.Override public double getConst() { return const_; } @@ -8435,6 +8600,7 @@ public Builder clearConst() { * optional double lt = 2; * @return Whether the lt field is set. */ + @java.lang.Override public boolean hasLt() { return ((bitField0_ & 0x00000002) != 0); } @@ -8447,6 +8613,7 @@ public boolean hasLt() { * optional double lt = 2; * @return The lt. */ + @java.lang.Override public double getLt() { return lt_; } @@ -8492,6 +8659,7 @@ public Builder clearLt() { * optional double lte = 3; * @return Whether the lte field is set. */ + @java.lang.Override public boolean hasLte() { return ((bitField0_ & 0x00000004) != 0); } @@ -8504,6 +8672,7 @@ public boolean hasLte() { * optional double lte = 3; * @return The lte. */ + @java.lang.Override public double getLte() { return lte_; } @@ -8550,6 +8719,7 @@ public Builder clearLte() { * optional double gt = 4; * @return Whether the gt field is set. */ + @java.lang.Override public boolean hasGt() { return ((bitField0_ & 0x00000008) != 0); } @@ -8563,6 +8733,7 @@ public boolean hasGt() { * optional double gt = 4; * @return The gt. */ + @java.lang.Override public double getGt() { return gt_; } @@ -8611,6 +8782,7 @@ public Builder clearGt() { * optional double gte = 5; * @return Whether the gte field is set. */ + @java.lang.Override public boolean hasGte() { return ((bitField0_ & 0x00000010) != 0); } @@ -8624,6 +8796,7 @@ public boolean hasGte() { * optional double gte = 5; * @return The gte. */ + @java.lang.Override public double getGte() { return gte_; } @@ -9123,7 +9296,7 @@ public interface Int32RulesOrBuilder extends * * Protobuf type {@code pbandk.testpb.Int32Rules} */ - public static final class Int32Rules extends + public static final class Int32Rules extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:pbandk.testpb.Int32Rules) Int32RulesOrBuilder { @@ -9284,6 +9457,7 @@ private Int32Rules( * optional int32 const = 1; * @return Whether the const field is set. */ + @java.lang.Override public boolean hasConst() { return ((bitField0_ & 0x00000001) != 0); } @@ -9295,6 +9469,7 @@ public boolean hasConst() { * optional int32 const = 1; * @return The const. */ + @java.lang.Override public int getConst() { return const_; } @@ -9310,6 +9485,7 @@ public int getConst() { * optional int32 lt = 2; * @return Whether the lt field is set. */ + @java.lang.Override public boolean hasLt() { return ((bitField0_ & 0x00000002) != 0); } @@ -9322,6 +9498,7 @@ public boolean hasLt() { * optional int32 lt = 2; * @return The lt. */ + @java.lang.Override public int getLt() { return lt_; } @@ -9337,6 +9514,7 @@ public int getLt() { * optional int32 lte = 3; * @return Whether the lte field is set. */ + @java.lang.Override public boolean hasLte() { return ((bitField0_ & 0x00000004) != 0); } @@ -9349,6 +9527,7 @@ public boolean hasLte() { * optional int32 lte = 3; * @return The lte. */ + @java.lang.Override public int getLte() { return lte_; } @@ -9365,6 +9544,7 @@ public int getLte() { * optional int32 gt = 4; * @return Whether the gt field is set. */ + @java.lang.Override public boolean hasGt() { return ((bitField0_ & 0x00000008) != 0); } @@ -9378,6 +9558,7 @@ public boolean hasGt() { * optional int32 gt = 4; * @return The gt. */ + @java.lang.Override public int getGt() { return gt_; } @@ -9394,6 +9575,7 @@ public int getGt() { * optional int32 gte = 5; * @return Whether the gte field is set. */ + @java.lang.Override public boolean hasGte() { return ((bitField0_ & 0x00000010) != 0); } @@ -9407,6 +9589,7 @@ public boolean hasGte() { * optional int32 gte = 5; * @return The gte. */ + @java.lang.Override public int getGte() { return gte_; } @@ -9422,6 +9605,7 @@ public int getGte() { * repeated int32 in = 6; * @return A list containing the in. */ + @java.lang.Override public java.util.List getInList() { return in_; @@ -9463,6 +9647,7 @@ public int getIn(int index) { * repeated int32 not_in = 7; * @return A list containing the notIn. */ + @java.lang.Override public java.util.List getNotInList() { return notIn_; @@ -9990,6 +10175,7 @@ public Builder mergeFrom( * optional int32 const = 1; * @return Whether the const field is set. */ + @java.lang.Override public boolean hasConst() { return ((bitField0_ & 0x00000001) != 0); } @@ -10001,6 +10187,7 @@ public boolean hasConst() { * optional int32 const = 1; * @return The const. */ + @java.lang.Override public int getConst() { return const_; } @@ -10044,6 +10231,7 @@ public Builder clearConst() { * optional int32 lt = 2; * @return Whether the lt field is set. */ + @java.lang.Override public boolean hasLt() { return ((bitField0_ & 0x00000002) != 0); } @@ -10056,6 +10244,7 @@ public boolean hasLt() { * optional int32 lt = 2; * @return The lt. */ + @java.lang.Override public int getLt() { return lt_; } @@ -10101,6 +10290,7 @@ public Builder clearLt() { * optional int32 lte = 3; * @return Whether the lte field is set. */ + @java.lang.Override public boolean hasLte() { return ((bitField0_ & 0x00000004) != 0); } @@ -10113,6 +10303,7 @@ public boolean hasLte() { * optional int32 lte = 3; * @return The lte. */ + @java.lang.Override public int getLte() { return lte_; } @@ -10159,6 +10350,7 @@ public Builder clearLte() { * optional int32 gt = 4; * @return Whether the gt field is set. */ + @java.lang.Override public boolean hasGt() { return ((bitField0_ & 0x00000008) != 0); } @@ -10172,6 +10364,7 @@ public boolean hasGt() { * optional int32 gt = 4; * @return The gt. */ + @java.lang.Override public int getGt() { return gt_; } @@ -10220,6 +10413,7 @@ public Builder clearGt() { * optional int32 gte = 5; * @return Whether the gte field is set. */ + @java.lang.Override public boolean hasGte() { return ((bitField0_ & 0x00000010) != 0); } @@ -10233,6 +10427,7 @@ public boolean hasGte() { * optional int32 gte = 5; * @return The gte. */ + @java.lang.Override public int getGte() { return gte_; } @@ -10732,7 +10927,7 @@ public interface Int64RulesOrBuilder extends * * Protobuf type {@code pbandk.testpb.Int64Rules} */ - public static final class Int64Rules extends + public static final class Int64Rules extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:pbandk.testpb.Int64Rules) Int64RulesOrBuilder { @@ -10893,6 +11088,7 @@ private Int64Rules( * optional int64 const = 1; * @return Whether the const field is set. */ + @java.lang.Override public boolean hasConst() { return ((bitField0_ & 0x00000001) != 0); } @@ -10904,6 +11100,7 @@ public boolean hasConst() { * optional int64 const = 1; * @return The const. */ + @java.lang.Override public long getConst() { return const_; } @@ -10919,6 +11116,7 @@ public long getConst() { * optional int64 lt = 2; * @return Whether the lt field is set. */ + @java.lang.Override public boolean hasLt() { return ((bitField0_ & 0x00000002) != 0); } @@ -10931,6 +11129,7 @@ public boolean hasLt() { * optional int64 lt = 2; * @return The lt. */ + @java.lang.Override public long getLt() { return lt_; } @@ -10946,6 +11145,7 @@ public long getLt() { * optional int64 lte = 3; * @return Whether the lte field is set. */ + @java.lang.Override public boolean hasLte() { return ((bitField0_ & 0x00000004) != 0); } @@ -10958,6 +11158,7 @@ public boolean hasLte() { * optional int64 lte = 3; * @return The lte. */ + @java.lang.Override public long getLte() { return lte_; } @@ -10974,6 +11175,7 @@ public long getLte() { * optional int64 gt = 4; * @return Whether the gt field is set. */ + @java.lang.Override public boolean hasGt() { return ((bitField0_ & 0x00000008) != 0); } @@ -10987,6 +11189,7 @@ public boolean hasGt() { * optional int64 gt = 4; * @return The gt. */ + @java.lang.Override public long getGt() { return gt_; } @@ -11003,6 +11206,7 @@ public long getGt() { * optional int64 gte = 5; * @return Whether the gte field is set. */ + @java.lang.Override public boolean hasGte() { return ((bitField0_ & 0x00000010) != 0); } @@ -11016,6 +11220,7 @@ public boolean hasGte() { * optional int64 gte = 5; * @return The gte. */ + @java.lang.Override public long getGte() { return gte_; } @@ -11031,6 +11236,7 @@ public long getGte() { * repeated int64 in = 6; * @return A list containing the in. */ + @java.lang.Override public java.util.List getInList() { return in_; @@ -11072,6 +11278,7 @@ public long getIn(int index) { * repeated int64 not_in = 7; * @return A list containing the notIn. */ + @java.lang.Override public java.util.List getNotInList() { return notIn_; @@ -11604,6 +11811,7 @@ public Builder mergeFrom( * optional int64 const = 1; * @return Whether the const field is set. */ + @java.lang.Override public boolean hasConst() { return ((bitField0_ & 0x00000001) != 0); } @@ -11615,6 +11823,7 @@ public boolean hasConst() { * optional int64 const = 1; * @return The const. */ + @java.lang.Override public long getConst() { return const_; } @@ -11658,6 +11867,7 @@ public Builder clearConst() { * optional int64 lt = 2; * @return Whether the lt field is set. */ + @java.lang.Override public boolean hasLt() { return ((bitField0_ & 0x00000002) != 0); } @@ -11670,6 +11880,7 @@ public boolean hasLt() { * optional int64 lt = 2; * @return The lt. */ + @java.lang.Override public long getLt() { return lt_; } @@ -11715,6 +11926,7 @@ public Builder clearLt() { * optional int64 lte = 3; * @return Whether the lte field is set. */ + @java.lang.Override public boolean hasLte() { return ((bitField0_ & 0x00000004) != 0); } @@ -11727,6 +11939,7 @@ public boolean hasLte() { * optional int64 lte = 3; * @return The lte. */ + @java.lang.Override public long getLte() { return lte_; } @@ -11773,6 +11986,7 @@ public Builder clearLte() { * optional int64 gt = 4; * @return Whether the gt field is set. */ + @java.lang.Override public boolean hasGt() { return ((bitField0_ & 0x00000008) != 0); } @@ -11786,6 +12000,7 @@ public boolean hasGt() { * optional int64 gt = 4; * @return The gt. */ + @java.lang.Override public long getGt() { return gt_; } @@ -11834,6 +12049,7 @@ public Builder clearGt() { * optional int64 gte = 5; * @return Whether the gte field is set. */ + @java.lang.Override public boolean hasGte() { return ((bitField0_ & 0x00000010) != 0); } @@ -11847,6 +12063,7 @@ public boolean hasGte() { * optional int64 gte = 5; * @return The gte. */ + @java.lang.Override public long getGte() { return gte_; } @@ -12346,7 +12563,7 @@ public interface UInt32RulesOrBuilder extends * * Protobuf type {@code pbandk.testpb.UInt32Rules} */ - public static final class UInt32Rules extends + public static final class UInt32Rules extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:pbandk.testpb.UInt32Rules) UInt32RulesOrBuilder { @@ -12507,6 +12724,7 @@ private UInt32Rules( * optional uint32 const = 1; * @return Whether the const field is set. */ + @java.lang.Override public boolean hasConst() { return ((bitField0_ & 0x00000001) != 0); } @@ -12518,6 +12736,7 @@ public boolean hasConst() { * optional uint32 const = 1; * @return The const. */ + @java.lang.Override public int getConst() { return const_; } @@ -12533,6 +12752,7 @@ public int getConst() { * optional uint32 lt = 2; * @return Whether the lt field is set. */ + @java.lang.Override public boolean hasLt() { return ((bitField0_ & 0x00000002) != 0); } @@ -12545,6 +12765,7 @@ public boolean hasLt() { * optional uint32 lt = 2; * @return The lt. */ + @java.lang.Override public int getLt() { return lt_; } @@ -12560,6 +12781,7 @@ public int getLt() { * optional uint32 lte = 3; * @return Whether the lte field is set. */ + @java.lang.Override public boolean hasLte() { return ((bitField0_ & 0x00000004) != 0); } @@ -12572,6 +12794,7 @@ public boolean hasLte() { * optional uint32 lte = 3; * @return The lte. */ + @java.lang.Override public int getLte() { return lte_; } @@ -12588,6 +12811,7 @@ public int getLte() { * optional uint32 gt = 4; * @return Whether the gt field is set. */ + @java.lang.Override public boolean hasGt() { return ((bitField0_ & 0x00000008) != 0); } @@ -12601,6 +12825,7 @@ public boolean hasGt() { * optional uint32 gt = 4; * @return The gt. */ + @java.lang.Override public int getGt() { return gt_; } @@ -12617,6 +12842,7 @@ public int getGt() { * optional uint32 gte = 5; * @return Whether the gte field is set. */ + @java.lang.Override public boolean hasGte() { return ((bitField0_ & 0x00000010) != 0); } @@ -12630,6 +12856,7 @@ public boolean hasGte() { * optional uint32 gte = 5; * @return The gte. */ + @java.lang.Override public int getGte() { return gte_; } @@ -12645,6 +12872,7 @@ public int getGte() { * repeated uint32 in = 6; * @return A list containing the in. */ + @java.lang.Override public java.util.List getInList() { return in_; @@ -12686,6 +12914,7 @@ public int getIn(int index) { * repeated uint32 not_in = 7; * @return A list containing the notIn. */ + @java.lang.Override public java.util.List getNotInList() { return notIn_; @@ -13213,6 +13442,7 @@ public Builder mergeFrom( * optional uint32 const = 1; * @return Whether the const field is set. */ + @java.lang.Override public boolean hasConst() { return ((bitField0_ & 0x00000001) != 0); } @@ -13224,6 +13454,7 @@ public boolean hasConst() { * optional uint32 const = 1; * @return The const. */ + @java.lang.Override public int getConst() { return const_; } @@ -13267,6 +13498,7 @@ public Builder clearConst() { * optional uint32 lt = 2; * @return Whether the lt field is set. */ + @java.lang.Override public boolean hasLt() { return ((bitField0_ & 0x00000002) != 0); } @@ -13279,6 +13511,7 @@ public boolean hasLt() { * optional uint32 lt = 2; * @return The lt. */ + @java.lang.Override public int getLt() { return lt_; } @@ -13324,6 +13557,7 @@ public Builder clearLt() { * optional uint32 lte = 3; * @return Whether the lte field is set. */ + @java.lang.Override public boolean hasLte() { return ((bitField0_ & 0x00000004) != 0); } @@ -13336,6 +13570,7 @@ public boolean hasLte() { * optional uint32 lte = 3; * @return The lte. */ + @java.lang.Override public int getLte() { return lte_; } @@ -13382,6 +13617,7 @@ public Builder clearLte() { * optional uint32 gt = 4; * @return Whether the gt field is set. */ + @java.lang.Override public boolean hasGt() { return ((bitField0_ & 0x00000008) != 0); } @@ -13395,6 +13631,7 @@ public boolean hasGt() { * optional uint32 gt = 4; * @return The gt. */ + @java.lang.Override public int getGt() { return gt_; } @@ -13443,6 +13680,7 @@ public Builder clearGt() { * optional uint32 gte = 5; * @return Whether the gte field is set. */ + @java.lang.Override public boolean hasGte() { return ((bitField0_ & 0x00000010) != 0); } @@ -13456,6 +13694,7 @@ public boolean hasGte() { * optional uint32 gte = 5; * @return The gte. */ + @java.lang.Override public int getGte() { return gte_; } @@ -13955,7 +14194,7 @@ public interface UInt64RulesOrBuilder extends * * Protobuf type {@code pbandk.testpb.UInt64Rules} */ - public static final class UInt64Rules extends + public static final class UInt64Rules extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:pbandk.testpb.UInt64Rules) UInt64RulesOrBuilder { @@ -14116,6 +14355,7 @@ private UInt64Rules( * optional uint64 const = 1; * @return Whether the const field is set. */ + @java.lang.Override public boolean hasConst() { return ((bitField0_ & 0x00000001) != 0); } @@ -14127,6 +14367,7 @@ public boolean hasConst() { * optional uint64 const = 1; * @return The const. */ + @java.lang.Override public long getConst() { return const_; } @@ -14142,6 +14383,7 @@ public long getConst() { * optional uint64 lt = 2; * @return Whether the lt field is set. */ + @java.lang.Override public boolean hasLt() { return ((bitField0_ & 0x00000002) != 0); } @@ -14154,6 +14396,7 @@ public boolean hasLt() { * optional uint64 lt = 2; * @return The lt. */ + @java.lang.Override public long getLt() { return lt_; } @@ -14169,6 +14412,7 @@ public long getLt() { * optional uint64 lte = 3; * @return Whether the lte field is set. */ + @java.lang.Override public boolean hasLte() { return ((bitField0_ & 0x00000004) != 0); } @@ -14181,6 +14425,7 @@ public boolean hasLte() { * optional uint64 lte = 3; * @return The lte. */ + @java.lang.Override public long getLte() { return lte_; } @@ -14197,6 +14442,7 @@ public long getLte() { * optional uint64 gt = 4; * @return Whether the gt field is set. */ + @java.lang.Override public boolean hasGt() { return ((bitField0_ & 0x00000008) != 0); } @@ -14210,6 +14456,7 @@ public boolean hasGt() { * optional uint64 gt = 4; * @return The gt. */ + @java.lang.Override public long getGt() { return gt_; } @@ -14226,6 +14473,7 @@ public long getGt() { * optional uint64 gte = 5; * @return Whether the gte field is set. */ + @java.lang.Override public boolean hasGte() { return ((bitField0_ & 0x00000010) != 0); } @@ -14239,6 +14487,7 @@ public boolean hasGte() { * optional uint64 gte = 5; * @return The gte. */ + @java.lang.Override public long getGte() { return gte_; } @@ -14254,6 +14503,7 @@ public long getGte() { * repeated uint64 in = 6; * @return A list containing the in. */ + @java.lang.Override public java.util.List getInList() { return in_; @@ -14295,6 +14545,7 @@ public long getIn(int index) { * repeated uint64 not_in = 7; * @return A list containing the notIn. */ + @java.lang.Override public java.util.List getNotInList() { return notIn_; @@ -14827,6 +15078,7 @@ public Builder mergeFrom( * optional uint64 const = 1; * @return Whether the const field is set. */ + @java.lang.Override public boolean hasConst() { return ((bitField0_ & 0x00000001) != 0); } @@ -14838,6 +15090,7 @@ public boolean hasConst() { * optional uint64 const = 1; * @return The const. */ + @java.lang.Override public long getConst() { return const_; } @@ -14881,6 +15134,7 @@ public Builder clearConst() { * optional uint64 lt = 2; * @return Whether the lt field is set. */ + @java.lang.Override public boolean hasLt() { return ((bitField0_ & 0x00000002) != 0); } @@ -14893,6 +15147,7 @@ public boolean hasLt() { * optional uint64 lt = 2; * @return The lt. */ + @java.lang.Override public long getLt() { return lt_; } @@ -14938,6 +15193,7 @@ public Builder clearLt() { * optional uint64 lte = 3; * @return Whether the lte field is set. */ + @java.lang.Override public boolean hasLte() { return ((bitField0_ & 0x00000004) != 0); } @@ -14950,6 +15206,7 @@ public boolean hasLte() { * optional uint64 lte = 3; * @return The lte. */ + @java.lang.Override public long getLte() { return lte_; } @@ -14996,6 +15253,7 @@ public Builder clearLte() { * optional uint64 gt = 4; * @return Whether the gt field is set. */ + @java.lang.Override public boolean hasGt() { return ((bitField0_ & 0x00000008) != 0); } @@ -15009,6 +15267,7 @@ public boolean hasGt() { * optional uint64 gt = 4; * @return The gt. */ + @java.lang.Override public long getGt() { return gt_; } @@ -15057,6 +15316,7 @@ public Builder clearGt() { * optional uint64 gte = 5; * @return Whether the gte field is set. */ + @java.lang.Override public boolean hasGte() { return ((bitField0_ & 0x00000010) != 0); } @@ -15070,6 +15330,7 @@ public boolean hasGte() { * optional uint64 gte = 5; * @return The gte. */ + @java.lang.Override public long getGte() { return gte_; } @@ -15569,7 +15830,7 @@ public interface SInt32RulesOrBuilder extends * * Protobuf type {@code pbandk.testpb.SInt32Rules} */ - public static final class SInt32Rules extends + public static final class SInt32Rules extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:pbandk.testpb.SInt32Rules) SInt32RulesOrBuilder { @@ -15730,6 +15991,7 @@ private SInt32Rules( * optional sint32 const = 1; * @return Whether the const field is set. */ + @java.lang.Override public boolean hasConst() { return ((bitField0_ & 0x00000001) != 0); } @@ -15741,6 +16003,7 @@ public boolean hasConst() { * optional sint32 const = 1; * @return The const. */ + @java.lang.Override public int getConst() { return const_; } @@ -15756,6 +16019,7 @@ public int getConst() { * optional sint32 lt = 2; * @return Whether the lt field is set. */ + @java.lang.Override public boolean hasLt() { return ((bitField0_ & 0x00000002) != 0); } @@ -15768,6 +16032,7 @@ public boolean hasLt() { * optional sint32 lt = 2; * @return The lt. */ + @java.lang.Override public int getLt() { return lt_; } @@ -15783,6 +16048,7 @@ public int getLt() { * optional sint32 lte = 3; * @return Whether the lte field is set. */ + @java.lang.Override public boolean hasLte() { return ((bitField0_ & 0x00000004) != 0); } @@ -15795,6 +16061,7 @@ public boolean hasLte() { * optional sint32 lte = 3; * @return The lte. */ + @java.lang.Override public int getLte() { return lte_; } @@ -15811,6 +16078,7 @@ public int getLte() { * optional sint32 gt = 4; * @return Whether the gt field is set. */ + @java.lang.Override public boolean hasGt() { return ((bitField0_ & 0x00000008) != 0); } @@ -15824,6 +16092,7 @@ public boolean hasGt() { * optional sint32 gt = 4; * @return The gt. */ + @java.lang.Override public int getGt() { return gt_; } @@ -15840,6 +16109,7 @@ public int getGt() { * optional sint32 gte = 5; * @return Whether the gte field is set. */ + @java.lang.Override public boolean hasGte() { return ((bitField0_ & 0x00000010) != 0); } @@ -15853,6 +16123,7 @@ public boolean hasGte() { * optional sint32 gte = 5; * @return The gte. */ + @java.lang.Override public int getGte() { return gte_; } @@ -15868,6 +16139,7 @@ public int getGte() { * repeated sint32 in = 6; * @return A list containing the in. */ + @java.lang.Override public java.util.List getInList() { return in_; @@ -15909,6 +16181,7 @@ public int getIn(int index) { * repeated sint32 not_in = 7; * @return A list containing the notIn. */ + @java.lang.Override public java.util.List getNotInList() { return notIn_; @@ -16436,6 +16709,7 @@ public Builder mergeFrom( * optional sint32 const = 1; * @return Whether the const field is set. */ + @java.lang.Override public boolean hasConst() { return ((bitField0_ & 0x00000001) != 0); } @@ -16447,6 +16721,7 @@ public boolean hasConst() { * optional sint32 const = 1; * @return The const. */ + @java.lang.Override public int getConst() { return const_; } @@ -16490,6 +16765,7 @@ public Builder clearConst() { * optional sint32 lt = 2; * @return Whether the lt field is set. */ + @java.lang.Override public boolean hasLt() { return ((bitField0_ & 0x00000002) != 0); } @@ -16502,6 +16778,7 @@ public boolean hasLt() { * optional sint32 lt = 2; * @return The lt. */ + @java.lang.Override public int getLt() { return lt_; } @@ -16547,6 +16824,7 @@ public Builder clearLt() { * optional sint32 lte = 3; * @return Whether the lte field is set. */ + @java.lang.Override public boolean hasLte() { return ((bitField0_ & 0x00000004) != 0); } @@ -16559,6 +16837,7 @@ public boolean hasLte() { * optional sint32 lte = 3; * @return The lte. */ + @java.lang.Override public int getLte() { return lte_; } @@ -16605,6 +16884,7 @@ public Builder clearLte() { * optional sint32 gt = 4; * @return Whether the gt field is set. */ + @java.lang.Override public boolean hasGt() { return ((bitField0_ & 0x00000008) != 0); } @@ -16618,6 +16898,7 @@ public boolean hasGt() { * optional sint32 gt = 4; * @return The gt. */ + @java.lang.Override public int getGt() { return gt_; } @@ -16666,6 +16947,7 @@ public Builder clearGt() { * optional sint32 gte = 5; * @return Whether the gte field is set. */ + @java.lang.Override public boolean hasGte() { return ((bitField0_ & 0x00000010) != 0); } @@ -16679,6 +16961,7 @@ public boolean hasGte() { * optional sint32 gte = 5; * @return The gte. */ + @java.lang.Override public int getGte() { return gte_; } @@ -17178,7 +17461,7 @@ public interface SInt64RulesOrBuilder extends * * Protobuf type {@code pbandk.testpb.SInt64Rules} */ - public static final class SInt64Rules extends + public static final class SInt64Rules extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:pbandk.testpb.SInt64Rules) SInt64RulesOrBuilder { @@ -17339,6 +17622,7 @@ private SInt64Rules( * optional sint64 const = 1; * @return Whether the const field is set. */ + @java.lang.Override public boolean hasConst() { return ((bitField0_ & 0x00000001) != 0); } @@ -17350,6 +17634,7 @@ public boolean hasConst() { * optional sint64 const = 1; * @return The const. */ + @java.lang.Override public long getConst() { return const_; } @@ -17365,6 +17650,7 @@ public long getConst() { * optional sint64 lt = 2; * @return Whether the lt field is set. */ + @java.lang.Override public boolean hasLt() { return ((bitField0_ & 0x00000002) != 0); } @@ -17377,6 +17663,7 @@ public boolean hasLt() { * optional sint64 lt = 2; * @return The lt. */ + @java.lang.Override public long getLt() { return lt_; } @@ -17392,6 +17679,7 @@ public long getLt() { * optional sint64 lte = 3; * @return Whether the lte field is set. */ + @java.lang.Override public boolean hasLte() { return ((bitField0_ & 0x00000004) != 0); } @@ -17404,6 +17692,7 @@ public boolean hasLte() { * optional sint64 lte = 3; * @return The lte. */ + @java.lang.Override public long getLte() { return lte_; } @@ -17420,6 +17709,7 @@ public long getLte() { * optional sint64 gt = 4; * @return Whether the gt field is set. */ + @java.lang.Override public boolean hasGt() { return ((bitField0_ & 0x00000008) != 0); } @@ -17433,6 +17723,7 @@ public boolean hasGt() { * optional sint64 gt = 4; * @return The gt. */ + @java.lang.Override public long getGt() { return gt_; } @@ -17449,6 +17740,7 @@ public long getGt() { * optional sint64 gte = 5; * @return Whether the gte field is set. */ + @java.lang.Override public boolean hasGte() { return ((bitField0_ & 0x00000010) != 0); } @@ -17462,6 +17754,7 @@ public boolean hasGte() { * optional sint64 gte = 5; * @return The gte. */ + @java.lang.Override public long getGte() { return gte_; } @@ -17477,6 +17770,7 @@ public long getGte() { * repeated sint64 in = 6; * @return A list containing the in. */ + @java.lang.Override public java.util.List getInList() { return in_; @@ -17518,6 +17812,7 @@ public long getIn(int index) { * repeated sint64 not_in = 7; * @return A list containing the notIn. */ + @java.lang.Override public java.util.List getNotInList() { return notIn_; @@ -18050,6 +18345,7 @@ public Builder mergeFrom( * optional sint64 const = 1; * @return Whether the const field is set. */ + @java.lang.Override public boolean hasConst() { return ((bitField0_ & 0x00000001) != 0); } @@ -18061,6 +18357,7 @@ public boolean hasConst() { * optional sint64 const = 1; * @return The const. */ + @java.lang.Override public long getConst() { return const_; } @@ -18104,6 +18401,7 @@ public Builder clearConst() { * optional sint64 lt = 2; * @return Whether the lt field is set. */ + @java.lang.Override public boolean hasLt() { return ((bitField0_ & 0x00000002) != 0); } @@ -18116,6 +18414,7 @@ public boolean hasLt() { * optional sint64 lt = 2; * @return The lt. */ + @java.lang.Override public long getLt() { return lt_; } @@ -18161,6 +18460,7 @@ public Builder clearLt() { * optional sint64 lte = 3; * @return Whether the lte field is set. */ + @java.lang.Override public boolean hasLte() { return ((bitField0_ & 0x00000004) != 0); } @@ -18173,6 +18473,7 @@ public boolean hasLte() { * optional sint64 lte = 3; * @return The lte. */ + @java.lang.Override public long getLte() { return lte_; } @@ -18219,6 +18520,7 @@ public Builder clearLte() { * optional sint64 gt = 4; * @return Whether the gt field is set. */ + @java.lang.Override public boolean hasGt() { return ((bitField0_ & 0x00000008) != 0); } @@ -18232,6 +18534,7 @@ public boolean hasGt() { * optional sint64 gt = 4; * @return The gt. */ + @java.lang.Override public long getGt() { return gt_; } @@ -18280,6 +18583,7 @@ public Builder clearGt() { * optional sint64 gte = 5; * @return Whether the gte field is set. */ + @java.lang.Override public boolean hasGte() { return ((bitField0_ & 0x00000010) != 0); } @@ -18293,6 +18597,7 @@ public boolean hasGte() { * optional sint64 gte = 5; * @return The gte. */ + @java.lang.Override public long getGte() { return gte_; } @@ -18792,7 +19097,7 @@ public interface Fixed32RulesOrBuilder extends * * Protobuf type {@code pbandk.testpb.Fixed32Rules} */ - public static final class Fixed32Rules extends + public static final class Fixed32Rules extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:pbandk.testpb.Fixed32Rules) Fixed32RulesOrBuilder { @@ -18953,6 +19258,7 @@ private Fixed32Rules( * optional fixed32 const = 1; * @return Whether the const field is set. */ + @java.lang.Override public boolean hasConst() { return ((bitField0_ & 0x00000001) != 0); } @@ -18964,6 +19270,7 @@ public boolean hasConst() { * optional fixed32 const = 1; * @return The const. */ + @java.lang.Override public int getConst() { return const_; } @@ -18979,6 +19286,7 @@ public int getConst() { * optional fixed32 lt = 2; * @return Whether the lt field is set. */ + @java.lang.Override public boolean hasLt() { return ((bitField0_ & 0x00000002) != 0); } @@ -18991,6 +19299,7 @@ public boolean hasLt() { * optional fixed32 lt = 2; * @return The lt. */ + @java.lang.Override public int getLt() { return lt_; } @@ -19006,6 +19315,7 @@ public int getLt() { * optional fixed32 lte = 3; * @return Whether the lte field is set. */ + @java.lang.Override public boolean hasLte() { return ((bitField0_ & 0x00000004) != 0); } @@ -19018,6 +19328,7 @@ public boolean hasLte() { * optional fixed32 lte = 3; * @return The lte. */ + @java.lang.Override public int getLte() { return lte_; } @@ -19034,6 +19345,7 @@ public int getLte() { * optional fixed32 gt = 4; * @return Whether the gt field is set. */ + @java.lang.Override public boolean hasGt() { return ((bitField0_ & 0x00000008) != 0); } @@ -19047,6 +19359,7 @@ public boolean hasGt() { * optional fixed32 gt = 4; * @return The gt. */ + @java.lang.Override public int getGt() { return gt_; } @@ -19063,6 +19376,7 @@ public int getGt() { * optional fixed32 gte = 5; * @return Whether the gte field is set. */ + @java.lang.Override public boolean hasGte() { return ((bitField0_ & 0x00000010) != 0); } @@ -19076,6 +19390,7 @@ public boolean hasGte() { * optional fixed32 gte = 5; * @return The gte. */ + @java.lang.Override public int getGte() { return gte_; } @@ -19091,6 +19406,7 @@ public int getGte() { * repeated fixed32 in = 6; * @return A list containing the in. */ + @java.lang.Override public java.util.List getInList() { return in_; @@ -19132,6 +19448,7 @@ public int getIn(int index) { * repeated fixed32 not_in = 7; * @return A list containing the notIn. */ + @java.lang.Override public java.util.List getNotInList() { return notIn_; @@ -19653,6 +19970,7 @@ public Builder mergeFrom( * optional fixed32 const = 1; * @return Whether the const field is set. */ + @java.lang.Override public boolean hasConst() { return ((bitField0_ & 0x00000001) != 0); } @@ -19664,6 +19982,7 @@ public boolean hasConst() { * optional fixed32 const = 1; * @return The const. */ + @java.lang.Override public int getConst() { return const_; } @@ -19707,6 +20026,7 @@ public Builder clearConst() { * optional fixed32 lt = 2; * @return Whether the lt field is set. */ + @java.lang.Override public boolean hasLt() { return ((bitField0_ & 0x00000002) != 0); } @@ -19719,6 +20039,7 @@ public boolean hasLt() { * optional fixed32 lt = 2; * @return The lt. */ + @java.lang.Override public int getLt() { return lt_; } @@ -19764,6 +20085,7 @@ public Builder clearLt() { * optional fixed32 lte = 3; * @return Whether the lte field is set. */ + @java.lang.Override public boolean hasLte() { return ((bitField0_ & 0x00000004) != 0); } @@ -19776,6 +20098,7 @@ public boolean hasLte() { * optional fixed32 lte = 3; * @return The lte. */ + @java.lang.Override public int getLte() { return lte_; } @@ -19822,6 +20145,7 @@ public Builder clearLte() { * optional fixed32 gt = 4; * @return Whether the gt field is set. */ + @java.lang.Override public boolean hasGt() { return ((bitField0_ & 0x00000008) != 0); } @@ -19835,6 +20159,7 @@ public boolean hasGt() { * optional fixed32 gt = 4; * @return The gt. */ + @java.lang.Override public int getGt() { return gt_; } @@ -19883,6 +20208,7 @@ public Builder clearGt() { * optional fixed32 gte = 5; * @return Whether the gte field is set. */ + @java.lang.Override public boolean hasGte() { return ((bitField0_ & 0x00000010) != 0); } @@ -19896,6 +20222,7 @@ public boolean hasGte() { * optional fixed32 gte = 5; * @return The gte. */ + @java.lang.Override public int getGte() { return gte_; } @@ -20395,7 +20722,7 @@ public interface Fixed64RulesOrBuilder extends * * Protobuf type {@code pbandk.testpb.Fixed64Rules} */ - public static final class Fixed64Rules extends + public static final class Fixed64Rules extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:pbandk.testpb.Fixed64Rules) Fixed64RulesOrBuilder { @@ -20556,6 +20883,7 @@ private Fixed64Rules( * optional fixed64 const = 1; * @return Whether the const field is set. */ + @java.lang.Override public boolean hasConst() { return ((bitField0_ & 0x00000001) != 0); } @@ -20567,6 +20895,7 @@ public boolean hasConst() { * optional fixed64 const = 1; * @return The const. */ + @java.lang.Override public long getConst() { return const_; } @@ -20582,6 +20911,7 @@ public long getConst() { * optional fixed64 lt = 2; * @return Whether the lt field is set. */ + @java.lang.Override public boolean hasLt() { return ((bitField0_ & 0x00000002) != 0); } @@ -20594,6 +20924,7 @@ public boolean hasLt() { * optional fixed64 lt = 2; * @return The lt. */ + @java.lang.Override public long getLt() { return lt_; } @@ -20609,6 +20940,7 @@ public long getLt() { * optional fixed64 lte = 3; * @return Whether the lte field is set. */ + @java.lang.Override public boolean hasLte() { return ((bitField0_ & 0x00000004) != 0); } @@ -20621,6 +20953,7 @@ public boolean hasLte() { * optional fixed64 lte = 3; * @return The lte. */ + @java.lang.Override public long getLte() { return lte_; } @@ -20637,6 +20970,7 @@ public long getLte() { * optional fixed64 gt = 4; * @return Whether the gt field is set. */ + @java.lang.Override public boolean hasGt() { return ((bitField0_ & 0x00000008) != 0); } @@ -20650,6 +20984,7 @@ public boolean hasGt() { * optional fixed64 gt = 4; * @return The gt. */ + @java.lang.Override public long getGt() { return gt_; } @@ -20666,6 +21001,7 @@ public long getGt() { * optional fixed64 gte = 5; * @return Whether the gte field is set. */ + @java.lang.Override public boolean hasGte() { return ((bitField0_ & 0x00000010) != 0); } @@ -20679,6 +21015,7 @@ public boolean hasGte() { * optional fixed64 gte = 5; * @return The gte. */ + @java.lang.Override public long getGte() { return gte_; } @@ -20694,6 +21031,7 @@ public long getGte() { * repeated fixed64 in = 6; * @return A list containing the in. */ + @java.lang.Override public java.util.List getInList() { return in_; @@ -20735,6 +21073,7 @@ public long getIn(int index) { * repeated fixed64 not_in = 7; * @return A list containing the notIn. */ + @java.lang.Override public java.util.List getNotInList() { return notIn_; @@ -21261,6 +21600,7 @@ public Builder mergeFrom( * optional fixed64 const = 1; * @return Whether the const field is set. */ + @java.lang.Override public boolean hasConst() { return ((bitField0_ & 0x00000001) != 0); } @@ -21272,6 +21612,7 @@ public boolean hasConst() { * optional fixed64 const = 1; * @return The const. */ + @java.lang.Override public long getConst() { return const_; } @@ -21315,6 +21656,7 @@ public Builder clearConst() { * optional fixed64 lt = 2; * @return Whether the lt field is set. */ + @java.lang.Override public boolean hasLt() { return ((bitField0_ & 0x00000002) != 0); } @@ -21327,6 +21669,7 @@ public boolean hasLt() { * optional fixed64 lt = 2; * @return The lt. */ + @java.lang.Override public long getLt() { return lt_; } @@ -21372,6 +21715,7 @@ public Builder clearLt() { * optional fixed64 lte = 3; * @return Whether the lte field is set. */ + @java.lang.Override public boolean hasLte() { return ((bitField0_ & 0x00000004) != 0); } @@ -21384,6 +21728,7 @@ public boolean hasLte() { * optional fixed64 lte = 3; * @return The lte. */ + @java.lang.Override public long getLte() { return lte_; } @@ -21430,6 +21775,7 @@ public Builder clearLte() { * optional fixed64 gt = 4; * @return Whether the gt field is set. */ + @java.lang.Override public boolean hasGt() { return ((bitField0_ & 0x00000008) != 0); } @@ -21443,6 +21789,7 @@ public boolean hasGt() { * optional fixed64 gt = 4; * @return The gt. */ + @java.lang.Override public long getGt() { return gt_; } @@ -21491,6 +21838,7 @@ public Builder clearGt() { * optional fixed64 gte = 5; * @return Whether the gte field is set. */ + @java.lang.Override public boolean hasGte() { return ((bitField0_ & 0x00000010) != 0); } @@ -21504,6 +21852,7 @@ public boolean hasGte() { * optional fixed64 gte = 5; * @return The gte. */ + @java.lang.Override public long getGte() { return gte_; } @@ -22003,7 +22352,7 @@ public interface SFixed32RulesOrBuilder extends * * Protobuf type {@code pbandk.testpb.SFixed32Rules} */ - public static final class SFixed32Rules extends + public static final class SFixed32Rules extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:pbandk.testpb.SFixed32Rules) SFixed32RulesOrBuilder { @@ -22164,6 +22513,7 @@ private SFixed32Rules( * optional sfixed32 const = 1; * @return Whether the const field is set. */ + @java.lang.Override public boolean hasConst() { return ((bitField0_ & 0x00000001) != 0); } @@ -22175,6 +22525,7 @@ public boolean hasConst() { * optional sfixed32 const = 1; * @return The const. */ + @java.lang.Override public int getConst() { return const_; } @@ -22190,6 +22541,7 @@ public int getConst() { * optional sfixed32 lt = 2; * @return Whether the lt field is set. */ + @java.lang.Override public boolean hasLt() { return ((bitField0_ & 0x00000002) != 0); } @@ -22202,6 +22554,7 @@ public boolean hasLt() { * optional sfixed32 lt = 2; * @return The lt. */ + @java.lang.Override public int getLt() { return lt_; } @@ -22217,6 +22570,7 @@ public int getLt() { * optional sfixed32 lte = 3; * @return Whether the lte field is set. */ + @java.lang.Override public boolean hasLte() { return ((bitField0_ & 0x00000004) != 0); } @@ -22229,6 +22583,7 @@ public boolean hasLte() { * optional sfixed32 lte = 3; * @return The lte. */ + @java.lang.Override public int getLte() { return lte_; } @@ -22245,6 +22600,7 @@ public int getLte() { * optional sfixed32 gt = 4; * @return Whether the gt field is set. */ + @java.lang.Override public boolean hasGt() { return ((bitField0_ & 0x00000008) != 0); } @@ -22258,6 +22614,7 @@ public boolean hasGt() { * optional sfixed32 gt = 4; * @return The gt. */ + @java.lang.Override public int getGt() { return gt_; } @@ -22274,6 +22631,7 @@ public int getGt() { * optional sfixed32 gte = 5; * @return Whether the gte field is set. */ + @java.lang.Override public boolean hasGte() { return ((bitField0_ & 0x00000010) != 0); } @@ -22287,6 +22645,7 @@ public boolean hasGte() { * optional sfixed32 gte = 5; * @return The gte. */ + @java.lang.Override public int getGte() { return gte_; } @@ -22302,6 +22661,7 @@ public int getGte() { * repeated sfixed32 in = 6; * @return A list containing the in. */ + @java.lang.Override public java.util.List getInList() { return in_; @@ -22343,6 +22703,7 @@ public int getIn(int index) { * repeated sfixed32 not_in = 7; * @return A list containing the notIn. */ + @java.lang.Override public java.util.List getNotInList() { return notIn_; @@ -22864,6 +23225,7 @@ public Builder mergeFrom( * optional sfixed32 const = 1; * @return Whether the const field is set. */ + @java.lang.Override public boolean hasConst() { return ((bitField0_ & 0x00000001) != 0); } @@ -22875,6 +23237,7 @@ public boolean hasConst() { * optional sfixed32 const = 1; * @return The const. */ + @java.lang.Override public int getConst() { return const_; } @@ -22918,6 +23281,7 @@ public Builder clearConst() { * optional sfixed32 lt = 2; * @return Whether the lt field is set. */ + @java.lang.Override public boolean hasLt() { return ((bitField0_ & 0x00000002) != 0); } @@ -22930,6 +23294,7 @@ public boolean hasLt() { * optional sfixed32 lt = 2; * @return The lt. */ + @java.lang.Override public int getLt() { return lt_; } @@ -22975,6 +23340,7 @@ public Builder clearLt() { * optional sfixed32 lte = 3; * @return Whether the lte field is set. */ + @java.lang.Override public boolean hasLte() { return ((bitField0_ & 0x00000004) != 0); } @@ -22987,6 +23353,7 @@ public boolean hasLte() { * optional sfixed32 lte = 3; * @return The lte. */ + @java.lang.Override public int getLte() { return lte_; } @@ -23033,6 +23400,7 @@ public Builder clearLte() { * optional sfixed32 gt = 4; * @return Whether the gt field is set. */ + @java.lang.Override public boolean hasGt() { return ((bitField0_ & 0x00000008) != 0); } @@ -23046,6 +23414,7 @@ public boolean hasGt() { * optional sfixed32 gt = 4; * @return The gt. */ + @java.lang.Override public int getGt() { return gt_; } @@ -23094,6 +23463,7 @@ public Builder clearGt() { * optional sfixed32 gte = 5; * @return Whether the gte field is set. */ + @java.lang.Override public boolean hasGte() { return ((bitField0_ & 0x00000010) != 0); } @@ -23107,6 +23477,7 @@ public boolean hasGte() { * optional sfixed32 gte = 5; * @return The gte. */ + @java.lang.Override public int getGte() { return gte_; } @@ -23606,7 +23977,7 @@ public interface SFixed64RulesOrBuilder extends * * Protobuf type {@code pbandk.testpb.SFixed64Rules} */ - public static final class SFixed64Rules extends + public static final class SFixed64Rules extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:pbandk.testpb.SFixed64Rules) SFixed64RulesOrBuilder { @@ -23767,6 +24138,7 @@ private SFixed64Rules( * optional sfixed64 const = 1; * @return Whether the const field is set. */ + @java.lang.Override public boolean hasConst() { return ((bitField0_ & 0x00000001) != 0); } @@ -23778,6 +24150,7 @@ public boolean hasConst() { * optional sfixed64 const = 1; * @return The const. */ + @java.lang.Override public long getConst() { return const_; } @@ -23793,6 +24166,7 @@ public long getConst() { * optional sfixed64 lt = 2; * @return Whether the lt field is set. */ + @java.lang.Override public boolean hasLt() { return ((bitField0_ & 0x00000002) != 0); } @@ -23805,6 +24179,7 @@ public boolean hasLt() { * optional sfixed64 lt = 2; * @return The lt. */ + @java.lang.Override public long getLt() { return lt_; } @@ -23820,6 +24195,7 @@ public long getLt() { * optional sfixed64 lte = 3; * @return Whether the lte field is set. */ + @java.lang.Override public boolean hasLte() { return ((bitField0_ & 0x00000004) != 0); } @@ -23832,6 +24208,7 @@ public boolean hasLte() { * optional sfixed64 lte = 3; * @return The lte. */ + @java.lang.Override public long getLte() { return lte_; } @@ -23848,6 +24225,7 @@ public long getLte() { * optional sfixed64 gt = 4; * @return Whether the gt field is set. */ + @java.lang.Override public boolean hasGt() { return ((bitField0_ & 0x00000008) != 0); } @@ -23861,6 +24239,7 @@ public boolean hasGt() { * optional sfixed64 gt = 4; * @return The gt. */ + @java.lang.Override public long getGt() { return gt_; } @@ -23877,6 +24256,7 @@ public long getGt() { * optional sfixed64 gte = 5; * @return Whether the gte field is set. */ + @java.lang.Override public boolean hasGte() { return ((bitField0_ & 0x00000010) != 0); } @@ -23890,6 +24270,7 @@ public boolean hasGte() { * optional sfixed64 gte = 5; * @return The gte. */ + @java.lang.Override public long getGte() { return gte_; } @@ -23905,6 +24286,7 @@ public long getGte() { * repeated sfixed64 in = 6; * @return A list containing the in. */ + @java.lang.Override public java.util.List getInList() { return in_; @@ -23946,6 +24328,7 @@ public long getIn(int index) { * repeated sfixed64 not_in = 7; * @return A list containing the notIn. */ + @java.lang.Override public java.util.List getNotInList() { return notIn_; @@ -24472,6 +24855,7 @@ public Builder mergeFrom( * optional sfixed64 const = 1; * @return Whether the const field is set. */ + @java.lang.Override public boolean hasConst() { return ((bitField0_ & 0x00000001) != 0); } @@ -24483,6 +24867,7 @@ public boolean hasConst() { * optional sfixed64 const = 1; * @return The const. */ + @java.lang.Override public long getConst() { return const_; } @@ -24526,6 +24911,7 @@ public Builder clearConst() { * optional sfixed64 lt = 2; * @return Whether the lt field is set. */ + @java.lang.Override public boolean hasLt() { return ((bitField0_ & 0x00000002) != 0); } @@ -24538,6 +24924,7 @@ public boolean hasLt() { * optional sfixed64 lt = 2; * @return The lt. */ + @java.lang.Override public long getLt() { return lt_; } @@ -24583,6 +24970,7 @@ public Builder clearLt() { * optional sfixed64 lte = 3; * @return Whether the lte field is set. */ + @java.lang.Override public boolean hasLte() { return ((bitField0_ & 0x00000004) != 0); } @@ -24595,6 +24983,7 @@ public boolean hasLte() { * optional sfixed64 lte = 3; * @return The lte. */ + @java.lang.Override public long getLte() { return lte_; } @@ -24641,6 +25030,7 @@ public Builder clearLte() { * optional sfixed64 gt = 4; * @return Whether the gt field is set. */ + @java.lang.Override public boolean hasGt() { return ((bitField0_ & 0x00000008) != 0); } @@ -24654,6 +25044,7 @@ public boolean hasGt() { * optional sfixed64 gt = 4; * @return The gt. */ + @java.lang.Override public long getGt() { return gt_; } @@ -24702,6 +25093,7 @@ public Builder clearGt() { * optional sfixed64 gte = 5; * @return Whether the gte field is set. */ + @java.lang.Override public boolean hasGte() { return ((bitField0_ & 0x00000010) != 0); } @@ -24715,6 +25107,7 @@ public boolean hasGte() { * optional sfixed64 gte = 5; * @return The gte. */ + @java.lang.Override public long getGte() { return gte_; } @@ -25062,7 +25455,7 @@ public interface BoolRulesOrBuilder extends * * Protobuf type {@code pbandk.testpb.BoolRules} */ - public static final class BoolRules extends + public static final class BoolRules extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:pbandk.testpb.BoolRules) BoolRulesOrBuilder { @@ -25153,6 +25546,7 @@ private BoolRules( * optional bool const = 1; * @return Whether the const field is set. */ + @java.lang.Override public boolean hasConst() { return ((bitField0_ & 0x00000001) != 0); } @@ -25164,6 +25558,7 @@ public boolean hasConst() { * optional bool const = 1; * @return The const. */ + @java.lang.Override public boolean getConst() { return const_; } @@ -25496,6 +25891,7 @@ public Builder mergeFrom( * optional bool const = 1; * @return Whether the const field is set. */ + @java.lang.Override public boolean hasConst() { return ((bitField0_ & 0x00000001) != 0); } @@ -25507,6 +25903,7 @@ public boolean hasConst() { * optional bool const = 1; * @return The const. */ + @java.lang.Override public boolean getConst() { return const_; } @@ -26016,7 +26413,7 @@ public interface StringRulesOrBuilder extends * defined by RFC 5322 * * - * optional bool email = 12; + * bool email = 12; * @return Whether the email field is set. */ boolean hasEmail(); @@ -26026,7 +26423,7 @@ public interface StringRulesOrBuilder extends * defined by RFC 5322 * * - * optional bool email = 12; + * bool email = 12; * @return The email. */ boolean getEmail(); @@ -26038,7 +26435,7 @@ public interface StringRulesOrBuilder extends * internationalized domain names (IDNs). * * - * optional bool hostname = 13; + * bool hostname = 13; * @return Whether the hostname field is set. */ boolean hasHostname(); @@ -26049,7 +26446,7 @@ public interface StringRulesOrBuilder extends * internationalized domain names (IDNs). * * - * optional bool hostname = 13; + * bool hostname = 13; * @return The hostname. */ boolean getHostname(); @@ -26060,7 +26457,7 @@ public interface StringRulesOrBuilder extends * Valid IPv6 addresses should not include surrounding square brackets. * * - * optional bool ip = 14; + * bool ip = 14; * @return Whether the ip field is set. */ boolean hasIp(); @@ -26070,7 +26467,7 @@ public interface StringRulesOrBuilder extends * Valid IPv6 addresses should not include surrounding square brackets. * * - * optional bool ip = 14; + * bool ip = 14; * @return The ip. */ boolean getIp(); @@ -26080,7 +26477,7 @@ public interface StringRulesOrBuilder extends * Ipv4 specifies that the field must be a valid IPv4 address. * * - * optional bool ipv4 = 15; + * bool ipv4 = 15; * @return Whether the ipv4 field is set. */ boolean hasIpv4(); @@ -26089,7 +26486,7 @@ public interface StringRulesOrBuilder extends * Ipv4 specifies that the field must be a valid IPv4 address. * * - * optional bool ipv4 = 15; + * bool ipv4 = 15; * @return The ipv4. */ boolean getIpv4(); @@ -26100,7 +26497,7 @@ public interface StringRulesOrBuilder extends * IPv6 addresses should not include surrounding square brackets. * * - * optional bool ipv6 = 16; + * bool ipv6 = 16; * @return Whether the ipv6 field is set. */ boolean hasIpv6(); @@ -26110,7 +26507,7 @@ public interface StringRulesOrBuilder extends * IPv6 addresses should not include surrounding square brackets. * * - * optional bool ipv6 = 16; + * bool ipv6 = 16; * @return The ipv6. */ boolean getIpv6(); @@ -26121,7 +26518,7 @@ public interface StringRulesOrBuilder extends * by RFC 3986 * * - * optional bool uri = 17; + * bool uri = 17; * @return Whether the uri field is set. */ boolean hasUri(); @@ -26131,7 +26528,7 @@ public interface StringRulesOrBuilder extends * by RFC 3986 * * - * optional bool uri = 17; + * bool uri = 17; * @return The uri. */ boolean getUri(); @@ -26142,7 +26539,7 @@ public interface StringRulesOrBuilder extends * 3986 and may be relative or absolute. * * - * optional bool uri_ref = 18; + * bool uri_ref = 18; * @return Whether the uriRef field is set. */ boolean hasUriRef(); @@ -26152,7 +26549,7 @@ public interface StringRulesOrBuilder extends * 3986 and may be relative or absolute. * * - * optional bool uri_ref = 18; + * bool uri_ref = 18; * @return The uriRef. */ boolean getUriRef(); @@ -26164,7 +26561,7 @@ public interface StringRulesOrBuilder extends * names or IDNs), or it can be a valid IP (v4 or v6). * * - * optional bool address = 21; + * bool address = 21; * @return Whether the address field is set. */ boolean hasAddress(); @@ -26175,7 +26572,7 @@ public interface StringRulesOrBuilder extends * names or IDNs), or it can be a valid IP (v4 or v6). * * - * optional bool address = 21; + * bool address = 21; * @return The address. */ boolean getAddress(); @@ -26186,7 +26583,7 @@ public interface StringRulesOrBuilder extends * RFC 4122 * * - * optional bool uuid = 22; + * bool uuid = 22; * @return Whether the uuid field is set. */ boolean hasUuid(); @@ -26196,7 +26593,7 @@ public interface StringRulesOrBuilder extends * RFC 4122 * * - * optional bool uuid = 22; + * bool uuid = 22; * @return The uuid. */ boolean getUuid(); @@ -26206,7 +26603,7 @@ public interface StringRulesOrBuilder extends * WellKnownRegex specifies a common well known pattern defined as a regex. * * - * optional .pbandk.testpb.KnownRegex well_known_regex = 24; + * .pbandk.testpb.KnownRegex well_known_regex = 24; * @return Whether the wellKnownRegex field is set. */ boolean hasWellKnownRegex(); @@ -26215,7 +26612,7 @@ public interface StringRulesOrBuilder extends * WellKnownRegex specifies a common well known pattern defined as a regex. * * - * optional .pbandk.testpb.KnownRegex well_known_regex = 24; + * .pbandk.testpb.KnownRegex well_known_regex = 24; * @return The wellKnownRegex. */ pbandk.testpb.Validate.KnownRegex getWellKnownRegex(); @@ -26256,7 +26653,7 @@ public interface StringRulesOrBuilder extends * * Protobuf type {@code pbandk.testpb.StringRules} */ - public static final class StringRules extends + public static final class StringRules extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:pbandk.testpb.StringRules) StringRulesOrBuilder { @@ -26559,6 +26956,7 @@ public int getNumber() { * optional string const = 1; * @return Whether the const field is set. */ + @java.lang.Override public boolean hasConst() { return ((bitField0_ & 0x00000001) != 0); } @@ -26570,6 +26968,7 @@ public boolean hasConst() { * optional string const = 1; * @return The const. */ + @java.lang.Override public java.lang.String getConst() { java.lang.Object ref = const_; if (ref instanceof java.lang.String) { @@ -26592,6 +26991,7 @@ public java.lang.String getConst() { * optional string const = 1; * @return The bytes for const. */ + @java.lang.Override public com.google.protobuf.ByteString getConstBytes() { java.lang.Object ref = const_; @@ -26618,6 +27018,7 @@ public java.lang.String getConst() { * optional uint64 len = 19; * @return Whether the len field is set. */ + @java.lang.Override public boolean hasLen() { return ((bitField0_ & 0x00000002) != 0); } @@ -26631,6 +27032,7 @@ public boolean hasLen() { * optional uint64 len = 19; * @return The len. */ + @java.lang.Override public long getLen() { return len_; } @@ -26647,6 +27049,7 @@ public long getLen() { * optional uint64 min_len = 2; * @return Whether the minLen field is set. */ + @java.lang.Override public boolean hasMinLen() { return ((bitField0_ & 0x00000004) != 0); } @@ -26660,6 +27063,7 @@ public boolean hasMinLen() { * optional uint64 min_len = 2; * @return The minLen. */ + @java.lang.Override public long getMinLen() { return minLen_; } @@ -26676,6 +27080,7 @@ public long getMinLen() { * optional uint64 max_len = 3; * @return Whether the maxLen field is set. */ + @java.lang.Override public boolean hasMaxLen() { return ((bitField0_ & 0x00000008) != 0); } @@ -26689,6 +27094,7 @@ public boolean hasMaxLen() { * optional uint64 max_len = 3; * @return The maxLen. */ + @java.lang.Override public long getMaxLen() { return maxLen_; } @@ -26704,6 +27110,7 @@ public long getMaxLen() { * optional uint64 len_bytes = 20; * @return Whether the lenBytes field is set. */ + @java.lang.Override public boolean hasLenBytes() { return ((bitField0_ & 0x00000010) != 0); } @@ -26716,6 +27123,7 @@ public boolean hasLenBytes() { * optional uint64 len_bytes = 20; * @return The lenBytes. */ + @java.lang.Override public long getLenBytes() { return lenBytes_; } @@ -26731,6 +27139,7 @@ public long getLenBytes() { * optional uint64 min_bytes = 4; * @return Whether the minBytes field is set. */ + @java.lang.Override public boolean hasMinBytes() { return ((bitField0_ & 0x00000020) != 0); } @@ -26743,6 +27152,7 @@ public boolean hasMinBytes() { * optional uint64 min_bytes = 4; * @return The minBytes. */ + @java.lang.Override public long getMinBytes() { return minBytes_; } @@ -26758,6 +27168,7 @@ public long getMinBytes() { * optional uint64 max_bytes = 5; * @return Whether the maxBytes field is set. */ + @java.lang.Override public boolean hasMaxBytes() { return ((bitField0_ & 0x00000040) != 0); } @@ -26770,6 +27181,7 @@ public boolean hasMaxBytes() { * optional uint64 max_bytes = 5; * @return The maxBytes. */ + @java.lang.Override public long getMaxBytes() { return maxBytes_; } @@ -26786,6 +27198,7 @@ public long getMaxBytes() { * optional string pattern = 6; * @return Whether the pattern field is set. */ + @java.lang.Override public boolean hasPattern() { return ((bitField0_ & 0x00000080) != 0); } @@ -26799,6 +27212,7 @@ public boolean hasPattern() { * optional string pattern = 6; * @return The pattern. */ + @java.lang.Override public java.lang.String getPattern() { java.lang.Object ref = pattern_; if (ref instanceof java.lang.String) { @@ -26823,6 +27237,7 @@ public java.lang.String getPattern() { * optional string pattern = 6; * @return The bytes for pattern. */ + @java.lang.Override public com.google.protobuf.ByteString getPatternBytes() { java.lang.Object ref = pattern_; @@ -26848,6 +27263,7 @@ public java.lang.String getPattern() { * optional string prefix = 7; * @return Whether the prefix field is set. */ + @java.lang.Override public boolean hasPrefix() { return ((bitField0_ & 0x00000100) != 0); } @@ -26860,6 +27276,7 @@ public boolean hasPrefix() { * optional string prefix = 7; * @return The prefix. */ + @java.lang.Override public java.lang.String getPrefix() { java.lang.Object ref = prefix_; if (ref instanceof java.lang.String) { @@ -26883,6 +27300,7 @@ public java.lang.String getPrefix() { * optional string prefix = 7; * @return The bytes for prefix. */ + @java.lang.Override public com.google.protobuf.ByteString getPrefixBytes() { java.lang.Object ref = prefix_; @@ -26908,6 +27326,7 @@ public java.lang.String getPrefix() { * optional string suffix = 8; * @return Whether the suffix field is set. */ + @java.lang.Override public boolean hasSuffix() { return ((bitField0_ & 0x00000200) != 0); } @@ -26920,6 +27339,7 @@ public boolean hasSuffix() { * optional string suffix = 8; * @return The suffix. */ + @java.lang.Override public java.lang.String getSuffix() { java.lang.Object ref = suffix_; if (ref instanceof java.lang.String) { @@ -26943,6 +27363,7 @@ public java.lang.String getSuffix() { * optional string suffix = 8; * @return The bytes for suffix. */ + @java.lang.Override public com.google.protobuf.ByteString getSuffixBytes() { java.lang.Object ref = suffix_; @@ -26968,6 +27389,7 @@ public java.lang.String getSuffix() { * optional string contains = 9; * @return Whether the contains field is set. */ + @java.lang.Override public boolean hasContains() { return ((bitField0_ & 0x00000400) != 0); } @@ -26980,6 +27402,7 @@ public boolean hasContains() { * optional string contains = 9; * @return The contains. */ + @java.lang.Override public java.lang.String getContains() { java.lang.Object ref = contains_; if (ref instanceof java.lang.String) { @@ -27003,6 +27426,7 @@ public java.lang.String getContains() { * optional string contains = 9; * @return The bytes for contains. */ + @java.lang.Override public com.google.protobuf.ByteString getContainsBytes() { java.lang.Object ref = contains_; @@ -27028,6 +27452,7 @@ public java.lang.String getContains() { * optional string not_contains = 23; * @return Whether the notContains field is set. */ + @java.lang.Override public boolean hasNotContains() { return ((bitField0_ & 0x00000800) != 0); } @@ -27040,6 +27465,7 @@ public boolean hasNotContains() { * optional string not_contains = 23; * @return The notContains. */ + @java.lang.Override public java.lang.String getNotContains() { java.lang.Object ref = notContains_; if (ref instanceof java.lang.String) { @@ -27063,6 +27489,7 @@ public java.lang.String getNotContains() { * optional string not_contains = 23; * @return The bytes for notContains. */ + @java.lang.Override public com.google.protobuf.ByteString getNotContainsBytes() { java.lang.Object ref = notContains_; @@ -27194,9 +27621,10 @@ public java.lang.String getNotIn(int index) { * defined by RFC 5322 * * - * optional bool email = 12; + * bool email = 12; * @return Whether the email field is set. */ + @java.lang.Override public boolean hasEmail() { return wellKnownCase_ == 12; } @@ -27206,9 +27634,10 @@ public boolean hasEmail() { * defined by RFC 5322 * * - * optional bool email = 12; + * bool email = 12; * @return The email. */ + @java.lang.Override public boolean getEmail() { if (wellKnownCase_ == 12) { return (java.lang.Boolean) wellKnown_; @@ -27224,9 +27653,10 @@ public boolean getEmail() { * internationalized domain names (IDNs). * * - * optional bool hostname = 13; + * bool hostname = 13; * @return Whether the hostname field is set. */ + @java.lang.Override public boolean hasHostname() { return wellKnownCase_ == 13; } @@ -27237,9 +27667,10 @@ public boolean hasHostname() { * internationalized domain names (IDNs). * * - * optional bool hostname = 13; + * bool hostname = 13; * @return The hostname. */ + @java.lang.Override public boolean getHostname() { if (wellKnownCase_ == 13) { return (java.lang.Boolean) wellKnown_; @@ -27254,9 +27685,10 @@ public boolean getHostname() { * Valid IPv6 addresses should not include surrounding square brackets. * * - * optional bool ip = 14; + * bool ip = 14; * @return Whether the ip field is set. */ + @java.lang.Override public boolean hasIp() { return wellKnownCase_ == 14; } @@ -27266,9 +27698,10 @@ public boolean hasIp() { * Valid IPv6 addresses should not include surrounding square brackets. * * - * optional bool ip = 14; + * bool ip = 14; * @return The ip. */ + @java.lang.Override public boolean getIp() { if (wellKnownCase_ == 14) { return (java.lang.Boolean) wellKnown_; @@ -27282,9 +27715,10 @@ public boolean getIp() { * Ipv4 specifies that the field must be a valid IPv4 address. * * - * optional bool ipv4 = 15; + * bool ipv4 = 15; * @return Whether the ipv4 field is set. */ + @java.lang.Override public boolean hasIpv4() { return wellKnownCase_ == 15; } @@ -27293,9 +27727,10 @@ public boolean hasIpv4() { * Ipv4 specifies that the field must be a valid IPv4 address. * * - * optional bool ipv4 = 15; + * bool ipv4 = 15; * @return The ipv4. */ + @java.lang.Override public boolean getIpv4() { if (wellKnownCase_ == 15) { return (java.lang.Boolean) wellKnown_; @@ -27310,9 +27745,10 @@ public boolean getIpv4() { * IPv6 addresses should not include surrounding square brackets. * * - * optional bool ipv6 = 16; + * bool ipv6 = 16; * @return Whether the ipv6 field is set. */ + @java.lang.Override public boolean hasIpv6() { return wellKnownCase_ == 16; } @@ -27322,9 +27758,10 @@ public boolean hasIpv6() { * IPv6 addresses should not include surrounding square brackets. * * - * optional bool ipv6 = 16; + * bool ipv6 = 16; * @return The ipv6. */ + @java.lang.Override public boolean getIpv6() { if (wellKnownCase_ == 16) { return (java.lang.Boolean) wellKnown_; @@ -27339,9 +27776,10 @@ public boolean getIpv6() { * by RFC 3986 * * - * optional bool uri = 17; + * bool uri = 17; * @return Whether the uri field is set. */ + @java.lang.Override public boolean hasUri() { return wellKnownCase_ == 17; } @@ -27351,9 +27789,10 @@ public boolean hasUri() { * by RFC 3986 * * - * optional bool uri = 17; + * bool uri = 17; * @return The uri. */ + @java.lang.Override public boolean getUri() { if (wellKnownCase_ == 17) { return (java.lang.Boolean) wellKnown_; @@ -27368,9 +27807,10 @@ public boolean getUri() { * 3986 and may be relative or absolute. * * - * optional bool uri_ref = 18; + * bool uri_ref = 18; * @return Whether the uriRef field is set. */ + @java.lang.Override public boolean hasUriRef() { return wellKnownCase_ == 18; } @@ -27380,9 +27820,10 @@ public boolean hasUriRef() { * 3986 and may be relative or absolute. * * - * optional bool uri_ref = 18; + * bool uri_ref = 18; * @return The uriRef. */ + @java.lang.Override public boolean getUriRef() { if (wellKnownCase_ == 18) { return (java.lang.Boolean) wellKnown_; @@ -27398,9 +27839,10 @@ public boolean getUriRef() { * names or IDNs), or it can be a valid IP (v4 or v6). * * - * optional bool address = 21; + * bool address = 21; * @return Whether the address field is set. */ + @java.lang.Override public boolean hasAddress() { return wellKnownCase_ == 21; } @@ -27411,9 +27853,10 @@ public boolean hasAddress() { * names or IDNs), or it can be a valid IP (v4 or v6). * * - * optional bool address = 21; + * bool address = 21; * @return The address. */ + @java.lang.Override public boolean getAddress() { if (wellKnownCase_ == 21) { return (java.lang.Boolean) wellKnown_; @@ -27428,9 +27871,10 @@ public boolean getAddress() { * RFC 4122 * * - * optional bool uuid = 22; + * bool uuid = 22; * @return Whether the uuid field is set. */ + @java.lang.Override public boolean hasUuid() { return wellKnownCase_ == 22; } @@ -27440,9 +27884,10 @@ public boolean hasUuid() { * RFC 4122 * * - * optional bool uuid = 22; + * bool uuid = 22; * @return The uuid. */ + @java.lang.Override public boolean getUuid() { if (wellKnownCase_ == 22) { return (java.lang.Boolean) wellKnown_; @@ -27456,7 +27901,7 @@ public boolean getUuid() { * WellKnownRegex specifies a common well known pattern defined as a regex. * * - * optional .pbandk.testpb.KnownRegex well_known_regex = 24; + * .pbandk.testpb.KnownRegex well_known_regex = 24; * @return Whether the wellKnownRegex field is set. */ public boolean hasWellKnownRegex() { @@ -27467,7 +27912,7 @@ public boolean hasWellKnownRegex() { * WellKnownRegex specifies a common well known pattern defined as a regex. * * - * optional .pbandk.testpb.KnownRegex well_known_regex = 24; + * .pbandk.testpb.KnownRegex well_known_regex = 24; * @return The wellKnownRegex. */ public pbandk.testpb.Validate.KnownRegex getWellKnownRegex() { @@ -27494,6 +27939,7 @@ public pbandk.testpb.Validate.KnownRegex getWellKnownRegex() { * optional bool strict = 25; * @return Whether the strict field is set. */ + @java.lang.Override public boolean hasStrict() { return ((bitField0_ & 0x00400000) != 0); } @@ -27509,6 +27955,7 @@ public boolean hasStrict() { * optional bool strict = 25; * @return The strict. */ + @java.lang.Override public boolean getStrict() { return strict_; } @@ -28610,6 +29057,7 @@ public Builder setConstBytes( * optional uint64 len = 19; * @return Whether the len field is set. */ + @java.lang.Override public boolean hasLen() { return ((bitField0_ & 0x00000002) != 0); } @@ -28623,6 +29071,7 @@ public boolean hasLen() { * optional uint64 len = 19; * @return The len. */ + @java.lang.Override public long getLen() { return len_; } @@ -28671,6 +29120,7 @@ public Builder clearLen() { * optional uint64 min_len = 2; * @return Whether the minLen field is set. */ + @java.lang.Override public boolean hasMinLen() { return ((bitField0_ & 0x00000004) != 0); } @@ -28684,6 +29134,7 @@ public boolean hasMinLen() { * optional uint64 min_len = 2; * @return The minLen. */ + @java.lang.Override public long getMinLen() { return minLen_; } @@ -28732,6 +29183,7 @@ public Builder clearMinLen() { * optional uint64 max_len = 3; * @return Whether the maxLen field is set. */ + @java.lang.Override public boolean hasMaxLen() { return ((bitField0_ & 0x00000008) != 0); } @@ -28745,6 +29197,7 @@ public boolean hasMaxLen() { * optional uint64 max_len = 3; * @return The maxLen. */ + @java.lang.Override public long getMaxLen() { return maxLen_; } @@ -28792,6 +29245,7 @@ public Builder clearMaxLen() { * optional uint64 len_bytes = 20; * @return Whether the lenBytes field is set. */ + @java.lang.Override public boolean hasLenBytes() { return ((bitField0_ & 0x00000010) != 0); } @@ -28804,6 +29258,7 @@ public boolean hasLenBytes() { * optional uint64 len_bytes = 20; * @return The lenBytes. */ + @java.lang.Override public long getLenBytes() { return lenBytes_; } @@ -28849,6 +29304,7 @@ public Builder clearLenBytes() { * optional uint64 min_bytes = 4; * @return Whether the minBytes field is set. */ + @java.lang.Override public boolean hasMinBytes() { return ((bitField0_ & 0x00000020) != 0); } @@ -28861,6 +29317,7 @@ public boolean hasMinBytes() { * optional uint64 min_bytes = 4; * @return The minBytes. */ + @java.lang.Override public long getMinBytes() { return minBytes_; } @@ -28906,6 +29363,7 @@ public Builder clearMinBytes() { * optional uint64 max_bytes = 5; * @return Whether the maxBytes field is set. */ + @java.lang.Override public boolean hasMaxBytes() { return ((bitField0_ & 0x00000040) != 0); } @@ -28918,6 +29376,7 @@ public boolean hasMaxBytes() { * optional uint64 max_bytes = 5; * @return The maxBytes. */ + @java.lang.Override public long getMaxBytes() { return maxBytes_; } @@ -29843,7 +30302,7 @@ public Builder addNotInBytes( * defined by RFC 5322 * * - * optional bool email = 12; + * bool email = 12; * @return Whether the email field is set. */ public boolean hasEmail() { @@ -29855,7 +30314,7 @@ public boolean hasEmail() { * defined by RFC 5322 * * - * optional bool email = 12; + * bool email = 12; * @return The email. */ public boolean getEmail() { @@ -29870,7 +30329,7 @@ public boolean getEmail() { * defined by RFC 5322 * * - * optional bool email = 12; + * bool email = 12; * @param value The email to set. * @return This builder for chaining. */ @@ -29886,7 +30345,7 @@ public Builder setEmail(boolean value) { * defined by RFC 5322 * * - * optional bool email = 12; + * bool email = 12; * @return This builder for chaining. */ public Builder clearEmail() { @@ -29905,7 +30364,7 @@ public Builder clearEmail() { * internationalized domain names (IDNs). * * - * optional bool hostname = 13; + * bool hostname = 13; * @return Whether the hostname field is set. */ public boolean hasHostname() { @@ -29918,7 +30377,7 @@ public boolean hasHostname() { * internationalized domain names (IDNs). * * - * optional bool hostname = 13; + * bool hostname = 13; * @return The hostname. */ public boolean getHostname() { @@ -29934,7 +30393,7 @@ public boolean getHostname() { * internationalized domain names (IDNs). * * - * optional bool hostname = 13; + * bool hostname = 13; * @param value The hostname to set. * @return This builder for chaining. */ @@ -29951,7 +30410,7 @@ public Builder setHostname(boolean value) { * internationalized domain names (IDNs). * * - * optional bool hostname = 13; + * bool hostname = 13; * @return This builder for chaining. */ public Builder clearHostname() { @@ -29969,7 +30428,7 @@ public Builder clearHostname() { * Valid IPv6 addresses should not include surrounding square brackets. * * - * optional bool ip = 14; + * bool ip = 14; * @return Whether the ip field is set. */ public boolean hasIp() { @@ -29981,7 +30440,7 @@ public boolean hasIp() { * Valid IPv6 addresses should not include surrounding square brackets. * * - * optional bool ip = 14; + * bool ip = 14; * @return The ip. */ public boolean getIp() { @@ -29996,7 +30455,7 @@ public boolean getIp() { * Valid IPv6 addresses should not include surrounding square brackets. * * - * optional bool ip = 14; + * bool ip = 14; * @param value The ip to set. * @return This builder for chaining. */ @@ -30012,7 +30471,7 @@ public Builder setIp(boolean value) { * Valid IPv6 addresses should not include surrounding square brackets. * * - * optional bool ip = 14; + * bool ip = 14; * @return This builder for chaining. */ public Builder clearIp() { @@ -30029,7 +30488,7 @@ public Builder clearIp() { * Ipv4 specifies that the field must be a valid IPv4 address. * * - * optional bool ipv4 = 15; + * bool ipv4 = 15; * @return Whether the ipv4 field is set. */ public boolean hasIpv4() { @@ -30040,7 +30499,7 @@ public boolean hasIpv4() { * Ipv4 specifies that the field must be a valid IPv4 address. * * - * optional bool ipv4 = 15; + * bool ipv4 = 15; * @return The ipv4. */ public boolean getIpv4() { @@ -30054,7 +30513,7 @@ public boolean getIpv4() { * Ipv4 specifies that the field must be a valid IPv4 address. * * - * optional bool ipv4 = 15; + * bool ipv4 = 15; * @param value The ipv4 to set. * @return This builder for chaining. */ @@ -30069,7 +30528,7 @@ public Builder setIpv4(boolean value) { * Ipv4 specifies that the field must be a valid IPv4 address. * * - * optional bool ipv4 = 15; + * bool ipv4 = 15; * @return This builder for chaining. */ public Builder clearIpv4() { @@ -30087,7 +30546,7 @@ public Builder clearIpv4() { * IPv6 addresses should not include surrounding square brackets. * * - * optional bool ipv6 = 16; + * bool ipv6 = 16; * @return Whether the ipv6 field is set. */ public boolean hasIpv6() { @@ -30099,7 +30558,7 @@ public boolean hasIpv6() { * IPv6 addresses should not include surrounding square brackets. * * - * optional bool ipv6 = 16; + * bool ipv6 = 16; * @return The ipv6. */ public boolean getIpv6() { @@ -30114,7 +30573,7 @@ public boolean getIpv6() { * IPv6 addresses should not include surrounding square brackets. * * - * optional bool ipv6 = 16; + * bool ipv6 = 16; * @param value The ipv6 to set. * @return This builder for chaining. */ @@ -30130,7 +30589,7 @@ public Builder setIpv6(boolean value) { * IPv6 addresses should not include surrounding square brackets. * * - * optional bool ipv6 = 16; + * bool ipv6 = 16; * @return This builder for chaining. */ public Builder clearIpv6() { @@ -30148,7 +30607,7 @@ public Builder clearIpv6() { * by RFC 3986 * * - * optional bool uri = 17; + * bool uri = 17; * @return Whether the uri field is set. */ public boolean hasUri() { @@ -30160,7 +30619,7 @@ public boolean hasUri() { * by RFC 3986 * * - * optional bool uri = 17; + * bool uri = 17; * @return The uri. */ public boolean getUri() { @@ -30175,7 +30634,7 @@ public boolean getUri() { * by RFC 3986 * * - * optional bool uri = 17; + * bool uri = 17; * @param value The uri to set. * @return This builder for chaining. */ @@ -30191,7 +30650,7 @@ public Builder setUri(boolean value) { * by RFC 3986 * * - * optional bool uri = 17; + * bool uri = 17; * @return This builder for chaining. */ public Builder clearUri() { @@ -30209,7 +30668,7 @@ public Builder clearUri() { * 3986 and may be relative or absolute. * * - * optional bool uri_ref = 18; + * bool uri_ref = 18; * @return Whether the uriRef field is set. */ public boolean hasUriRef() { @@ -30221,7 +30680,7 @@ public boolean hasUriRef() { * 3986 and may be relative or absolute. * * - * optional bool uri_ref = 18; + * bool uri_ref = 18; * @return The uriRef. */ public boolean getUriRef() { @@ -30236,7 +30695,7 @@ public boolean getUriRef() { * 3986 and may be relative or absolute. * * - * optional bool uri_ref = 18; + * bool uri_ref = 18; * @param value The uriRef to set. * @return This builder for chaining. */ @@ -30252,7 +30711,7 @@ public Builder setUriRef(boolean value) { * 3986 and may be relative or absolute. * * - * optional bool uri_ref = 18; + * bool uri_ref = 18; * @return This builder for chaining. */ public Builder clearUriRef() { @@ -30271,7 +30730,7 @@ public Builder clearUriRef() { * names or IDNs), or it can be a valid IP (v4 or v6). * * - * optional bool address = 21; + * bool address = 21; * @return Whether the address field is set. */ public boolean hasAddress() { @@ -30284,7 +30743,7 @@ public boolean hasAddress() { * names or IDNs), or it can be a valid IP (v4 or v6). * * - * optional bool address = 21; + * bool address = 21; * @return The address. */ public boolean getAddress() { @@ -30300,7 +30759,7 @@ public boolean getAddress() { * names or IDNs), or it can be a valid IP (v4 or v6). * * - * optional bool address = 21; + * bool address = 21; * @param value The address to set. * @return This builder for chaining. */ @@ -30317,7 +30776,7 @@ public Builder setAddress(boolean value) { * names or IDNs), or it can be a valid IP (v4 or v6). * * - * optional bool address = 21; + * bool address = 21; * @return This builder for chaining. */ public Builder clearAddress() { @@ -30335,7 +30794,7 @@ public Builder clearAddress() { * RFC 4122 * * - * optional bool uuid = 22; + * bool uuid = 22; * @return Whether the uuid field is set. */ public boolean hasUuid() { @@ -30347,7 +30806,7 @@ public boolean hasUuid() { * RFC 4122 * * - * optional bool uuid = 22; + * bool uuid = 22; * @return The uuid. */ public boolean getUuid() { @@ -30362,7 +30821,7 @@ public boolean getUuid() { * RFC 4122 * * - * optional bool uuid = 22; + * bool uuid = 22; * @param value The uuid to set. * @return This builder for chaining. */ @@ -30378,7 +30837,7 @@ public Builder setUuid(boolean value) { * RFC 4122 * * - * optional bool uuid = 22; + * bool uuid = 22; * @return This builder for chaining. */ public Builder clearUuid() { @@ -30395,9 +30854,10 @@ public Builder clearUuid() { * WellKnownRegex specifies a common well known pattern defined as a regex. * * - * optional .pbandk.testpb.KnownRegex well_known_regex = 24; + * .pbandk.testpb.KnownRegex well_known_regex = 24; * @return Whether the wellKnownRegex field is set. */ + @java.lang.Override public boolean hasWellKnownRegex() { return wellKnownCase_ == 24; } @@ -30406,9 +30866,10 @@ public boolean hasWellKnownRegex() { * WellKnownRegex specifies a common well known pattern defined as a regex. * * - * optional .pbandk.testpb.KnownRegex well_known_regex = 24; + * .pbandk.testpb.KnownRegex well_known_regex = 24; * @return The wellKnownRegex. */ + @java.lang.Override public pbandk.testpb.Validate.KnownRegex getWellKnownRegex() { if (wellKnownCase_ == 24) { @SuppressWarnings("deprecation") @@ -30423,7 +30884,7 @@ public pbandk.testpb.Validate.KnownRegex getWellKnownRegex() { * WellKnownRegex specifies a common well known pattern defined as a regex. * * - * optional .pbandk.testpb.KnownRegex well_known_regex = 24; + * .pbandk.testpb.KnownRegex well_known_regex = 24; * @param value The wellKnownRegex to set. * @return This builder for chaining. */ @@ -30441,7 +30902,7 @@ public Builder setWellKnownRegex(pbandk.testpb.Validate.KnownRegex value) { * WellKnownRegex specifies a common well known pattern defined as a regex. * * - * optional .pbandk.testpb.KnownRegex well_known_regex = 24; + * .pbandk.testpb.KnownRegex well_known_regex = 24; * @return This builder for chaining. */ public Builder clearWellKnownRegex() { @@ -30466,6 +30927,7 @@ public Builder clearWellKnownRegex() { * optional bool strict = 25; * @return Whether the strict field is set. */ + @java.lang.Override public boolean hasStrict() { return ((bitField0_ & 0x01000000) != 0); } @@ -30481,6 +30943,7 @@ public boolean hasStrict() { * optional bool strict = 25; * @return The strict. */ + @java.lang.Override public boolean getStrict() { return strict_; } @@ -30826,7 +31289,7 @@ public interface BytesRulesOrBuilder extends * byte format * * - * optional bool ip = 10; + * bool ip = 10; * @return Whether the ip field is set. */ boolean hasIp(); @@ -30836,7 +31299,7 @@ public interface BytesRulesOrBuilder extends * byte format * * - * optional bool ip = 10; + * bool ip = 10; * @return The ip. */ boolean getIp(); @@ -30847,7 +31310,7 @@ public interface BytesRulesOrBuilder extends * format * * - * optional bool ipv4 = 11; + * bool ipv4 = 11; * @return Whether the ipv4 field is set. */ boolean hasIpv4(); @@ -30857,7 +31320,7 @@ public interface BytesRulesOrBuilder extends * format * * - * optional bool ipv4 = 11; + * bool ipv4 = 11; * @return The ipv4. */ boolean getIpv4(); @@ -30868,7 +31331,7 @@ public interface BytesRulesOrBuilder extends * format * * - * optional bool ipv6 = 12; + * bool ipv6 = 12; * @return Whether the ipv6 field is set. */ boolean hasIpv6(); @@ -30878,7 +31341,7 @@ public interface BytesRulesOrBuilder extends * format * * - * optional bool ipv6 = 12; + * bool ipv6 = 12; * @return The ipv6. */ boolean getIpv6(); @@ -30892,7 +31355,7 @@ public interface BytesRulesOrBuilder extends * * Protobuf type {@code pbandk.testpb.BytesRules} */ - public static final class BytesRules extends + public static final class BytesRules extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:pbandk.testpb.BytesRules) BytesRulesOrBuilder { @@ -31106,6 +31569,7 @@ public int getNumber() { * optional bytes const = 1; * @return Whether the const field is set. */ + @java.lang.Override public boolean hasConst() { return ((bitField0_ & 0x00000001) != 0); } @@ -31117,6 +31581,7 @@ public boolean hasConst() { * optional bytes const = 1; * @return The const. */ + @java.lang.Override public com.google.protobuf.ByteString getConst() { return const_; } @@ -31131,6 +31596,7 @@ public com.google.protobuf.ByteString getConst() { * optional uint64 len = 13; * @return Whether the len field is set. */ + @java.lang.Override public boolean hasLen() { return ((bitField0_ & 0x00000002) != 0); } @@ -31142,6 +31608,7 @@ public boolean hasLen() { * optional uint64 len = 13; * @return The len. */ + @java.lang.Override public long getLen() { return len_; } @@ -31157,6 +31624,7 @@ public long getLen() { * optional uint64 min_len = 2; * @return Whether the minLen field is set. */ + @java.lang.Override public boolean hasMinLen() { return ((bitField0_ & 0x00000004) != 0); } @@ -31169,6 +31637,7 @@ public boolean hasMinLen() { * optional uint64 min_len = 2; * @return The minLen. */ + @java.lang.Override public long getMinLen() { return minLen_; } @@ -31184,6 +31653,7 @@ public long getMinLen() { * optional uint64 max_len = 3; * @return Whether the maxLen field is set. */ + @java.lang.Override public boolean hasMaxLen() { return ((bitField0_ & 0x00000008) != 0); } @@ -31196,6 +31666,7 @@ public boolean hasMaxLen() { * optional uint64 max_len = 3; * @return The maxLen. */ + @java.lang.Override public long getMaxLen() { return maxLen_; } @@ -31212,6 +31683,7 @@ public long getMaxLen() { * optional string pattern = 4; * @return Whether the pattern field is set. */ + @java.lang.Override public boolean hasPattern() { return ((bitField0_ & 0x00000010) != 0); } @@ -31225,6 +31697,7 @@ public boolean hasPattern() { * optional string pattern = 4; * @return The pattern. */ + @java.lang.Override public java.lang.String getPattern() { java.lang.Object ref = pattern_; if (ref instanceof java.lang.String) { @@ -31249,6 +31722,7 @@ public java.lang.String getPattern() { * optional string pattern = 4; * @return The bytes for pattern. */ + @java.lang.Override public com.google.protobuf.ByteString getPatternBytes() { java.lang.Object ref = pattern_; @@ -31274,6 +31748,7 @@ public java.lang.String getPattern() { * optional bytes prefix = 5; * @return Whether the prefix field is set. */ + @java.lang.Override public boolean hasPrefix() { return ((bitField0_ & 0x00000020) != 0); } @@ -31286,6 +31761,7 @@ public boolean hasPrefix() { * optional bytes prefix = 5; * @return The prefix. */ + @java.lang.Override public com.google.protobuf.ByteString getPrefix() { return prefix_; } @@ -31301,6 +31777,7 @@ public com.google.protobuf.ByteString getPrefix() { * optional bytes suffix = 6; * @return Whether the suffix field is set. */ + @java.lang.Override public boolean hasSuffix() { return ((bitField0_ & 0x00000040) != 0); } @@ -31313,6 +31790,7 @@ public boolean hasSuffix() { * optional bytes suffix = 6; * @return The suffix. */ + @java.lang.Override public com.google.protobuf.ByteString getSuffix() { return suffix_; } @@ -31328,6 +31806,7 @@ public com.google.protobuf.ByteString getSuffix() { * optional bytes contains = 7; * @return Whether the contains field is set. */ + @java.lang.Override public boolean hasContains() { return ((bitField0_ & 0x00000080) != 0); } @@ -31340,6 +31819,7 @@ public boolean hasContains() { * optional bytes contains = 7; * @return The contains. */ + @java.lang.Override public com.google.protobuf.ByteString getContains() { return contains_; } @@ -31355,6 +31835,7 @@ public com.google.protobuf.ByteString getContains() { * repeated bytes in = 8; * @return A list containing the in. */ + @java.lang.Override public java.util.List getInList() { return in_; @@ -31396,6 +31877,7 @@ public com.google.protobuf.ByteString getIn(int index) { * repeated bytes not_in = 9; * @return A list containing the notIn. */ + @java.lang.Override public java.util.List getNotInList() { return notIn_; @@ -31433,9 +31915,10 @@ public com.google.protobuf.ByteString getNotIn(int index) { * byte format * * - * optional bool ip = 10; + * bool ip = 10; * @return Whether the ip field is set. */ + @java.lang.Override public boolean hasIp() { return wellKnownCase_ == 10; } @@ -31445,9 +31928,10 @@ public boolean hasIp() { * byte format * * - * optional bool ip = 10; + * bool ip = 10; * @return The ip. */ + @java.lang.Override public boolean getIp() { if (wellKnownCase_ == 10) { return (java.lang.Boolean) wellKnown_; @@ -31462,9 +31946,10 @@ public boolean getIp() { * format * * - * optional bool ipv4 = 11; + * bool ipv4 = 11; * @return Whether the ipv4 field is set. */ + @java.lang.Override public boolean hasIpv4() { return wellKnownCase_ == 11; } @@ -31474,9 +31959,10 @@ public boolean hasIpv4() { * format * * - * optional bool ipv4 = 11; + * bool ipv4 = 11; * @return The ipv4. */ + @java.lang.Override public boolean getIpv4() { if (wellKnownCase_ == 11) { return (java.lang.Boolean) wellKnown_; @@ -31491,9 +31977,10 @@ public boolean getIpv4() { * format * * - * optional bool ipv6 = 12; + * bool ipv6 = 12; * @return Whether the ipv6 field is set. */ + @java.lang.Override public boolean hasIpv6() { return wellKnownCase_ == 12; } @@ -31503,9 +31990,10 @@ public boolean hasIpv6() { * format * * - * optional bool ipv6 = 12; + * bool ipv6 = 12; * @return The ipv6. */ + @java.lang.Override public boolean getIpv6() { if (wellKnownCase_ == 12) { return (java.lang.Boolean) wellKnown_; @@ -32196,6 +32684,7 @@ public Builder clearWellKnown() { * optional bytes const = 1; * @return Whether the const field is set. */ + @java.lang.Override public boolean hasConst() { return ((bitField0_ & 0x00000001) != 0); } @@ -32207,6 +32696,7 @@ public boolean hasConst() { * optional bytes const = 1; * @return The const. */ + @java.lang.Override public com.google.protobuf.ByteString getConst() { return const_; } @@ -32252,6 +32742,7 @@ public Builder clearConst() { * optional uint64 len = 13; * @return Whether the len field is set. */ + @java.lang.Override public boolean hasLen() { return ((bitField0_ & 0x00000002) != 0); } @@ -32263,6 +32754,7 @@ public boolean hasLen() { * optional uint64 len = 13; * @return The len. */ + @java.lang.Override public long getLen() { return len_; } @@ -32306,6 +32798,7 @@ public Builder clearLen() { * optional uint64 min_len = 2; * @return Whether the minLen field is set. */ + @java.lang.Override public boolean hasMinLen() { return ((bitField0_ & 0x00000004) != 0); } @@ -32318,6 +32811,7 @@ public boolean hasMinLen() { * optional uint64 min_len = 2; * @return The minLen. */ + @java.lang.Override public long getMinLen() { return minLen_; } @@ -32363,6 +32857,7 @@ public Builder clearMinLen() { * optional uint64 max_len = 3; * @return Whether the maxLen field is set. */ + @java.lang.Override public boolean hasMaxLen() { return ((bitField0_ & 0x00000008) != 0); } @@ -32375,6 +32870,7 @@ public boolean hasMaxLen() { * optional uint64 max_len = 3; * @return The maxLen. */ + @java.lang.Override public long getMaxLen() { return maxLen_; } @@ -32540,6 +33036,7 @@ public Builder setPatternBytes( * optional bytes prefix = 5; * @return Whether the prefix field is set. */ + @java.lang.Override public boolean hasPrefix() { return ((bitField0_ & 0x00000020) != 0); } @@ -32552,6 +33049,7 @@ public boolean hasPrefix() { * optional bytes prefix = 5; * @return The prefix. */ + @java.lang.Override public com.google.protobuf.ByteString getPrefix() { return prefix_; } @@ -32600,6 +33098,7 @@ public Builder clearPrefix() { * optional bytes suffix = 6; * @return Whether the suffix field is set. */ + @java.lang.Override public boolean hasSuffix() { return ((bitField0_ & 0x00000040) != 0); } @@ -32612,6 +33111,7 @@ public boolean hasSuffix() { * optional bytes suffix = 6; * @return The suffix. */ + @java.lang.Override public com.google.protobuf.ByteString getSuffix() { return suffix_; } @@ -32660,6 +33160,7 @@ public Builder clearSuffix() { * optional bytes contains = 7; * @return Whether the contains field is set. */ + @java.lang.Override public boolean hasContains() { return ((bitField0_ & 0x00000080) != 0); } @@ -32672,6 +33173,7 @@ public boolean hasContains() { * optional bytes contains = 7; * @return The contains. */ + @java.lang.Override public com.google.protobuf.ByteString getContains() { return contains_; } @@ -32956,7 +33458,7 @@ public Builder clearNotIn() { * byte format * * - * optional bool ip = 10; + * bool ip = 10; * @return Whether the ip field is set. */ public boolean hasIp() { @@ -32968,7 +33470,7 @@ public boolean hasIp() { * byte format * * - * optional bool ip = 10; + * bool ip = 10; * @return The ip. */ public boolean getIp() { @@ -32983,7 +33485,7 @@ public boolean getIp() { * byte format * * - * optional bool ip = 10; + * bool ip = 10; * @param value The ip to set. * @return This builder for chaining. */ @@ -32999,7 +33501,7 @@ public Builder setIp(boolean value) { * byte format * * - * optional bool ip = 10; + * bool ip = 10; * @return This builder for chaining. */ public Builder clearIp() { @@ -33017,7 +33519,7 @@ public Builder clearIp() { * format * * - * optional bool ipv4 = 11; + * bool ipv4 = 11; * @return Whether the ipv4 field is set. */ public boolean hasIpv4() { @@ -33029,7 +33531,7 @@ public boolean hasIpv4() { * format * * - * optional bool ipv4 = 11; + * bool ipv4 = 11; * @return The ipv4. */ public boolean getIpv4() { @@ -33044,7 +33546,7 @@ public boolean getIpv4() { * format * * - * optional bool ipv4 = 11; + * bool ipv4 = 11; * @param value The ipv4 to set. * @return This builder for chaining. */ @@ -33060,7 +33562,7 @@ public Builder setIpv4(boolean value) { * format * * - * optional bool ipv4 = 11; + * bool ipv4 = 11; * @return This builder for chaining. */ public Builder clearIpv4() { @@ -33078,7 +33580,7 @@ public Builder clearIpv4() { * format * * - * optional bool ipv6 = 12; + * bool ipv6 = 12; * @return Whether the ipv6 field is set. */ public boolean hasIpv6() { @@ -33090,7 +33592,7 @@ public boolean hasIpv6() { * format * * - * optional bool ipv6 = 12; + * bool ipv6 = 12; * @return The ipv6. */ public boolean getIpv6() { @@ -33105,7 +33607,7 @@ public boolean getIpv6() { * format * * - * optional bool ipv6 = 12; + * bool ipv6 = 12; * @param value The ipv6 to set. * @return This builder for chaining. */ @@ -33121,7 +33623,7 @@ public Builder setIpv6(boolean value) { * format * * - * optional bool ipv6 = 12; + * bool ipv6 = 12; * @return This builder for chaining. */ public Builder clearIpv6() { @@ -33300,7 +33802,7 @@ public interface EnumRulesOrBuilder extends * * Protobuf type {@code pbandk.testpb.EnumRules} */ - public static final class EnumRules extends + public static final class EnumRules extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:pbandk.testpb.EnumRules) EnumRulesOrBuilder { @@ -33446,6 +33948,7 @@ private EnumRules( * optional int32 const = 1; * @return Whether the const field is set. */ + @java.lang.Override public boolean hasConst() { return ((bitField0_ & 0x00000001) != 0); } @@ -33457,6 +33960,7 @@ public boolean hasConst() { * optional int32 const = 1; * @return The const. */ + @java.lang.Override public int getConst() { return const_; } @@ -33472,6 +33976,7 @@ public int getConst() { * optional bool defined_only = 2; * @return Whether the definedOnly field is set. */ + @java.lang.Override public boolean hasDefinedOnly() { return ((bitField0_ & 0x00000002) != 0); } @@ -33484,6 +33989,7 @@ public boolean hasDefinedOnly() { * optional bool defined_only = 2; * @return The definedOnly. */ + @java.lang.Override public boolean getDefinedOnly() { return definedOnly_; } @@ -33499,6 +34005,7 @@ public boolean getDefinedOnly() { * repeated int32 in = 3; * @return A list containing the in. */ + @java.lang.Override public java.util.List getInList() { return in_; @@ -33540,6 +34047,7 @@ public int getIn(int index) { * repeated int32 not_in = 4; * @return A list containing the notIn. */ + @java.lang.Override public java.util.List getNotInList() { return notIn_; @@ -33993,6 +34501,7 @@ public Builder mergeFrom( * optional int32 const = 1; * @return Whether the const field is set. */ + @java.lang.Override public boolean hasConst() { return ((bitField0_ & 0x00000001) != 0); } @@ -34004,6 +34513,7 @@ public boolean hasConst() { * optional int32 const = 1; * @return The const. */ + @java.lang.Override public int getConst() { return const_; } @@ -34047,6 +34557,7 @@ public Builder clearConst() { * optional bool defined_only = 2; * @return Whether the definedOnly field is set. */ + @java.lang.Override public boolean hasDefinedOnly() { return ((bitField0_ & 0x00000002) != 0); } @@ -34059,6 +34570,7 @@ public boolean hasDefinedOnly() { * optional bool defined_only = 2; * @return The definedOnly. */ + @java.lang.Override public boolean getDefinedOnly() { return definedOnly_; } @@ -34426,7 +34938,7 @@ public interface MessageRulesOrBuilder extends * * Protobuf type {@code pbandk.testpb.MessageRules} */ - public static final class MessageRules extends + public static final class MessageRules extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:pbandk.testpb.MessageRules) MessageRulesOrBuilder { @@ -34523,6 +35035,7 @@ private MessageRules( * optional bool skip = 1; * @return Whether the skip field is set. */ + @java.lang.Override public boolean hasSkip() { return ((bitField0_ & 0x00000001) != 0); } @@ -34535,6 +35048,7 @@ public boolean hasSkip() { * optional bool skip = 1; * @return The skip. */ + @java.lang.Override public boolean getSkip() { return skip_; } @@ -34549,6 +35063,7 @@ public boolean getSkip() { * optional bool required = 2; * @return Whether the required field is set. */ + @java.lang.Override public boolean hasRequired() { return ((bitField0_ & 0x00000002) != 0); } @@ -34560,6 +35075,7 @@ public boolean hasRequired() { * optional bool required = 2; * @return The required. */ + @java.lang.Override public boolean getRequired() { return required_; } @@ -34920,6 +35436,7 @@ public Builder mergeFrom( * optional bool skip = 1; * @return Whether the skip field is set. */ + @java.lang.Override public boolean hasSkip() { return ((bitField0_ & 0x00000001) != 0); } @@ -34932,6 +35449,7 @@ public boolean hasSkip() { * optional bool skip = 1; * @return The skip. */ + @java.lang.Override public boolean getSkip() { return skip_; } @@ -34976,6 +35494,7 @@ public Builder clearSkip() { * optional bool required = 2; * @return Whether the required field is set. */ + @java.lang.Override public boolean hasRequired() { return ((bitField0_ & 0x00000002) != 0); } @@ -34987,6 +35506,7 @@ public boolean hasRequired() { * optional bool required = 2; * @return The required. */ + @java.lang.Override public boolean getRequired() { return required_; } @@ -35181,7 +35701,7 @@ public interface RepeatedRulesOrBuilder extends * * Protobuf type {@code pbandk.testpb.RepeatedRules} */ - public static final class RepeatedRules extends + public static final class RepeatedRules extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:pbandk.testpb.RepeatedRules) RepeatedRulesOrBuilder { @@ -35296,6 +35816,7 @@ private RepeatedRules( * optional uint64 min_items = 1; * @return Whether the minItems field is set. */ + @java.lang.Override public boolean hasMinItems() { return ((bitField0_ & 0x00000001) != 0); } @@ -35308,6 +35829,7 @@ public boolean hasMinItems() { * optional uint64 min_items = 1; * @return The minItems. */ + @java.lang.Override public long getMinItems() { return minItems_; } @@ -35323,6 +35845,7 @@ public long getMinItems() { * optional uint64 max_items = 2; * @return Whether the maxItems field is set. */ + @java.lang.Override public boolean hasMaxItems() { return ((bitField0_ & 0x00000002) != 0); } @@ -35335,6 +35858,7 @@ public boolean hasMaxItems() { * optional uint64 max_items = 2; * @return The maxItems. */ + @java.lang.Override public long getMaxItems() { return maxItems_; } @@ -35351,6 +35875,7 @@ public long getMaxItems() { * optional bool unique = 3; * @return Whether the unique field is set. */ + @java.lang.Override public boolean hasUnique() { return ((bitField0_ & 0x00000004) != 0); } @@ -35364,6 +35889,7 @@ public boolean hasUnique() { * optional bool unique = 3; * @return The unique. */ + @java.lang.Override public boolean getUnique() { return unique_; } @@ -35380,6 +35906,7 @@ public boolean getUnique() { * optional .pbandk.testpb.FieldRules items = 4; * @return Whether the items field is set. */ + @java.lang.Override public boolean hasItems() { return ((bitField0_ & 0x00000008) != 0); } @@ -35393,6 +35920,7 @@ public boolean hasItems() { * optional .pbandk.testpb.FieldRules items = 4; * @return The items. */ + @java.lang.Override public pbandk.testpb.Validate.FieldRules getItems() { return items_ == null ? pbandk.testpb.Validate.FieldRules.getDefaultInstance() : items_; } @@ -35405,6 +35933,7 @@ public pbandk.testpb.Validate.FieldRules getItems() { * * optional .pbandk.testpb.FieldRules items = 4; */ + @java.lang.Override public pbandk.testpb.Validate.FieldRulesOrBuilder getItemsOrBuilder() { return items_ == null ? pbandk.testpb.Validate.FieldRules.getDefaultInstance() : items_; } @@ -35824,6 +36353,7 @@ public Builder mergeFrom( * optional uint64 min_items = 1; * @return Whether the minItems field is set. */ + @java.lang.Override public boolean hasMinItems() { return ((bitField0_ & 0x00000001) != 0); } @@ -35836,6 +36366,7 @@ public boolean hasMinItems() { * optional uint64 min_items = 1; * @return The minItems. */ + @java.lang.Override public long getMinItems() { return minItems_; } @@ -35881,6 +36412,7 @@ public Builder clearMinItems() { * optional uint64 max_items = 2; * @return Whether the maxItems field is set. */ + @java.lang.Override public boolean hasMaxItems() { return ((bitField0_ & 0x00000002) != 0); } @@ -35893,6 +36425,7 @@ public boolean hasMaxItems() { * optional uint64 max_items = 2; * @return The maxItems. */ + @java.lang.Override public long getMaxItems() { return maxItems_; } @@ -35939,6 +36472,7 @@ public Builder clearMaxItems() { * optional bool unique = 3; * @return Whether the unique field is set. */ + @java.lang.Override public boolean hasUnique() { return ((bitField0_ & 0x00000004) != 0); } @@ -35952,6 +36486,7 @@ public boolean hasUnique() { * optional bool unique = 3; * @return The unique. */ + @java.lang.Override public boolean getUnique() { return unique_; } @@ -36349,7 +36884,7 @@ public interface MapRulesOrBuilder extends * * Protobuf type {@code pbandk.testpb.MapRules} */ - public static final class MapRules extends + public static final class MapRules extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:pbandk.testpb.MapRules) MapRulesOrBuilder { @@ -36477,6 +37012,7 @@ private MapRules( * optional uint64 min_pairs = 1; * @return Whether the minPairs field is set. */ + @java.lang.Override public boolean hasMinPairs() { return ((bitField0_ & 0x00000001) != 0); } @@ -36489,6 +37025,7 @@ public boolean hasMinPairs() { * optional uint64 min_pairs = 1; * @return The minPairs. */ + @java.lang.Override public long getMinPairs() { return minPairs_; } @@ -36504,6 +37041,7 @@ public long getMinPairs() { * optional uint64 max_pairs = 2; * @return Whether the maxPairs field is set. */ + @java.lang.Override public boolean hasMaxPairs() { return ((bitField0_ & 0x00000002) != 0); } @@ -36516,6 +37054,7 @@ public boolean hasMaxPairs() { * optional uint64 max_pairs = 2; * @return The maxPairs. */ + @java.lang.Override public long getMaxPairs() { return maxPairs_; } @@ -36531,6 +37070,7 @@ public long getMaxPairs() { * optional bool no_sparse = 3; * @return Whether the noSparse field is set. */ + @java.lang.Override public boolean hasNoSparse() { return ((bitField0_ & 0x00000004) != 0); } @@ -36543,6 +37083,7 @@ public boolean hasNoSparse() { * optional bool no_sparse = 3; * @return The noSparse. */ + @java.lang.Override public boolean getNoSparse() { return noSparse_; } @@ -36557,6 +37098,7 @@ public boolean getNoSparse() { * optional .pbandk.testpb.FieldRules keys = 4; * @return Whether the keys field is set. */ + @java.lang.Override public boolean hasKeys() { return ((bitField0_ & 0x00000008) != 0); } @@ -36568,6 +37110,7 @@ public boolean hasKeys() { * optional .pbandk.testpb.FieldRules keys = 4; * @return The keys. */ + @java.lang.Override public pbandk.testpb.Validate.FieldRules getKeys() { return keys_ == null ? pbandk.testpb.Validate.FieldRules.getDefaultInstance() : keys_; } @@ -36578,6 +37121,7 @@ public pbandk.testpb.Validate.FieldRules getKeys() { * * optional .pbandk.testpb.FieldRules keys = 4; */ + @java.lang.Override public pbandk.testpb.Validate.FieldRulesOrBuilder getKeysOrBuilder() { return keys_ == null ? pbandk.testpb.Validate.FieldRules.getDefaultInstance() : keys_; } @@ -36594,6 +37138,7 @@ public pbandk.testpb.Validate.FieldRulesOrBuilder getKeysOrBuilder() { * optional .pbandk.testpb.FieldRules values = 5; * @return Whether the values field is set. */ + @java.lang.Override public boolean hasValues() { return ((bitField0_ & 0x00000010) != 0); } @@ -36607,6 +37152,7 @@ public boolean hasValues() { * optional .pbandk.testpb.FieldRules values = 5; * @return The values. */ + @java.lang.Override public pbandk.testpb.Validate.FieldRules getValues() { return values_ == null ? pbandk.testpb.Validate.FieldRules.getDefaultInstance() : values_; } @@ -36619,6 +37165,7 @@ public pbandk.testpb.Validate.FieldRules getValues() { * * optional .pbandk.testpb.FieldRules values = 5; */ + @java.lang.Override public pbandk.testpb.Validate.FieldRulesOrBuilder getValuesOrBuilder() { return values_ == null ? pbandk.testpb.Validate.FieldRules.getDefaultInstance() : values_; } @@ -37072,6 +37619,7 @@ public Builder mergeFrom( * optional uint64 min_pairs = 1; * @return Whether the minPairs field is set. */ + @java.lang.Override public boolean hasMinPairs() { return ((bitField0_ & 0x00000001) != 0); } @@ -37084,6 +37632,7 @@ public boolean hasMinPairs() { * optional uint64 min_pairs = 1; * @return The minPairs. */ + @java.lang.Override public long getMinPairs() { return minPairs_; } @@ -37129,6 +37678,7 @@ public Builder clearMinPairs() { * optional uint64 max_pairs = 2; * @return Whether the maxPairs field is set. */ + @java.lang.Override public boolean hasMaxPairs() { return ((bitField0_ & 0x00000002) != 0); } @@ -37141,6 +37691,7 @@ public boolean hasMaxPairs() { * optional uint64 max_pairs = 2; * @return The maxPairs. */ + @java.lang.Override public long getMaxPairs() { return maxPairs_; } @@ -37186,6 +37737,7 @@ public Builder clearMaxPairs() { * optional bool no_sparse = 3; * @return Whether the noSparse field is set. */ + @java.lang.Override public boolean hasNoSparse() { return ((bitField0_ & 0x00000004) != 0); } @@ -37198,6 +37750,7 @@ public boolean hasNoSparse() { * optional bool no_sparse = 3; * @return The noSparse. */ + @java.lang.Override public boolean getNoSparse() { return noSparse_; } @@ -37736,7 +38289,7 @@ public interface AnyRulesOrBuilder extends * * Protobuf type {@code pbandk.testpb.AnyRules} */ - public static final class AnyRules extends + public static final class AnyRules extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:pbandk.testpb.AnyRules) AnyRulesOrBuilder { @@ -37853,6 +38406,7 @@ private AnyRules( * optional bool required = 1; * @return Whether the required field is set. */ + @java.lang.Override public boolean hasRequired() { return ((bitField0_ & 0x00000001) != 0); } @@ -37864,6 +38418,7 @@ public boolean hasRequired() { * optional bool required = 1; * @return The required. */ + @java.lang.Override public boolean getRequired() { return required_; } @@ -38375,6 +38930,7 @@ public Builder mergeFrom( * optional bool required = 1; * @return Whether the required field is set. */ + @java.lang.Override public boolean hasRequired() { return ((bitField0_ & 0x00000001) != 0); } @@ -38386,6 +38942,7 @@ public boolean hasRequired() { * optional bool required = 1; * @return The required. */ + @java.lang.Override public boolean getRequired() { return required_; } @@ -39055,7 +39612,7 @@ com.google.protobuf.DurationOrBuilder getNotInOrBuilder( * * Protobuf type {@code pbandk.testpb.DurationRules} */ - public static final class DurationRules extends + public static final class DurationRules extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:pbandk.testpb.DurationRules) DurationRulesOrBuilder { @@ -39237,6 +39794,7 @@ private DurationRules( * optional bool required = 1; * @return Whether the required field is set. */ + @java.lang.Override public boolean hasRequired() { return ((bitField0_ & 0x00000001) != 0); } @@ -39248,6 +39806,7 @@ public boolean hasRequired() { * optional bool required = 1; * @return The required. */ + @java.lang.Override public boolean getRequired() { return required_; } @@ -39262,6 +39821,7 @@ public boolean getRequired() { * optional .google.protobuf.Duration const = 2; * @return Whether the const field is set. */ + @java.lang.Override public boolean hasConst() { return ((bitField0_ & 0x00000002) != 0); } @@ -39273,6 +39833,7 @@ public boolean hasConst() { * optional .google.protobuf.Duration const = 2; * @return The const. */ + @java.lang.Override public com.google.protobuf.Duration getConst() { return const_ == null ? com.google.protobuf.Duration.getDefaultInstance() : const_; } @@ -39283,6 +39844,7 @@ public com.google.protobuf.Duration getConst() { * * optional .google.protobuf.Duration const = 2; */ + @java.lang.Override public com.google.protobuf.DurationOrBuilder getConstOrBuilder() { return const_ == null ? com.google.protobuf.Duration.getDefaultInstance() : const_; } @@ -39298,6 +39860,7 @@ public com.google.protobuf.DurationOrBuilder getConstOrBuilder() { * optional .google.protobuf.Duration lt = 3; * @return Whether the lt field is set. */ + @java.lang.Override public boolean hasLt() { return ((bitField0_ & 0x00000004) != 0); } @@ -39310,6 +39873,7 @@ public boolean hasLt() { * optional .google.protobuf.Duration lt = 3; * @return The lt. */ + @java.lang.Override public com.google.protobuf.Duration getLt() { return lt_ == null ? com.google.protobuf.Duration.getDefaultInstance() : lt_; } @@ -39321,6 +39885,7 @@ public com.google.protobuf.Duration getLt() { * * optional .google.protobuf.Duration lt = 3; */ + @java.lang.Override public com.google.protobuf.DurationOrBuilder getLtOrBuilder() { return lt_ == null ? com.google.protobuf.Duration.getDefaultInstance() : lt_; } @@ -39336,6 +39901,7 @@ public com.google.protobuf.DurationOrBuilder getLtOrBuilder() { * optional .google.protobuf.Duration lte = 4; * @return Whether the lte field is set. */ + @java.lang.Override public boolean hasLte() { return ((bitField0_ & 0x00000008) != 0); } @@ -39348,6 +39914,7 @@ public boolean hasLte() { * optional .google.protobuf.Duration lte = 4; * @return The lte. */ + @java.lang.Override public com.google.protobuf.Duration getLte() { return lte_ == null ? com.google.protobuf.Duration.getDefaultInstance() : lte_; } @@ -39359,6 +39926,7 @@ public com.google.protobuf.Duration getLte() { * * optional .google.protobuf.Duration lte = 4; */ + @java.lang.Override public com.google.protobuf.DurationOrBuilder getLteOrBuilder() { return lte_ == null ? com.google.protobuf.Duration.getDefaultInstance() : lte_; } @@ -39374,6 +39942,7 @@ public com.google.protobuf.DurationOrBuilder getLteOrBuilder() { * optional .google.protobuf.Duration gt = 5; * @return Whether the gt field is set. */ + @java.lang.Override public boolean hasGt() { return ((bitField0_ & 0x00000010) != 0); } @@ -39386,6 +39955,7 @@ public boolean hasGt() { * optional .google.protobuf.Duration gt = 5; * @return The gt. */ + @java.lang.Override public com.google.protobuf.Duration getGt() { return gt_ == null ? com.google.protobuf.Duration.getDefaultInstance() : gt_; } @@ -39397,6 +39967,7 @@ public com.google.protobuf.Duration getGt() { * * optional .google.protobuf.Duration gt = 5; */ + @java.lang.Override public com.google.protobuf.DurationOrBuilder getGtOrBuilder() { return gt_ == null ? com.google.protobuf.Duration.getDefaultInstance() : gt_; } @@ -39412,6 +39983,7 @@ public com.google.protobuf.DurationOrBuilder getGtOrBuilder() { * optional .google.protobuf.Duration gte = 6; * @return Whether the gte field is set. */ + @java.lang.Override public boolean hasGte() { return ((bitField0_ & 0x00000020) != 0); } @@ -39424,6 +39996,7 @@ public boolean hasGte() { * optional .google.protobuf.Duration gte = 6; * @return The gte. */ + @java.lang.Override public com.google.protobuf.Duration getGte() { return gte_ == null ? com.google.protobuf.Duration.getDefaultInstance() : gte_; } @@ -39435,6 +40008,7 @@ public com.google.protobuf.Duration getGte() { * * optional .google.protobuf.Duration gte = 6; */ + @java.lang.Override public com.google.protobuf.DurationOrBuilder getGteOrBuilder() { return gte_ == null ? com.google.protobuf.Duration.getDefaultInstance() : gte_; } @@ -39449,6 +40023,7 @@ public com.google.protobuf.DurationOrBuilder getGteOrBuilder() { * * repeated .google.protobuf.Duration in = 7; */ + @java.lang.Override public java.util.List getInList() { return in_; } @@ -39460,6 +40035,7 @@ public java.util.List getInList() { * * repeated .google.protobuf.Duration in = 7; */ + @java.lang.Override public java.util.List getInOrBuilderList() { return in_; @@ -39472,6 +40048,7 @@ public java.util.List getInList() { * * repeated .google.protobuf.Duration in = 7; */ + @java.lang.Override public int getInCount() { return in_.size(); } @@ -39483,6 +40060,7 @@ public int getInCount() { * * repeated .google.protobuf.Duration in = 7; */ + @java.lang.Override public com.google.protobuf.Duration getIn(int index) { return in_.get(index); } @@ -39494,6 +40072,7 @@ public com.google.protobuf.Duration getIn(int index) { * * repeated .google.protobuf.Duration in = 7; */ + @java.lang.Override public com.google.protobuf.DurationOrBuilder getInOrBuilder( int index) { return in_.get(index); @@ -39509,6 +40088,7 @@ public com.google.protobuf.DurationOrBuilder getInOrBuilder( * * repeated .google.protobuf.Duration not_in = 8; */ + @java.lang.Override public java.util.List getNotInList() { return notIn_; } @@ -39520,6 +40100,7 @@ public java.util.List getNotInList() { * * repeated .google.protobuf.Duration not_in = 8; */ + @java.lang.Override public java.util.List getNotInOrBuilderList() { return notIn_; @@ -39532,6 +40113,7 @@ public java.util.List getNotInList() { * * repeated .google.protobuf.Duration not_in = 8; */ + @java.lang.Override public int getNotInCount() { return notIn_.size(); } @@ -39543,6 +40125,7 @@ public int getNotInCount() { * * repeated .google.protobuf.Duration not_in = 8; */ + @java.lang.Override public com.google.protobuf.Duration getNotIn(int index) { return notIn_.get(index); } @@ -39554,6 +40137,7 @@ public com.google.protobuf.Duration getNotIn(int index) { * * repeated .google.protobuf.Duration not_in = 8; */ + @java.lang.Override public com.google.protobuf.DurationOrBuilder getNotInOrBuilder( int index) { return notIn_.get(index); @@ -40168,6 +40752,7 @@ public Builder mergeFrom( * optional bool required = 1; * @return Whether the required field is set. */ + @java.lang.Override public boolean hasRequired() { return ((bitField0_ & 0x00000001) != 0); } @@ -40179,6 +40764,7 @@ public boolean hasRequired() { * optional bool required = 1; * @return The required. */ + @java.lang.Override public boolean getRequired() { return required_; } @@ -41993,7 +42579,7 @@ public interface TimestampRulesOrBuilder extends * * Protobuf type {@code pbandk.testpb.TimestampRules} */ - public static final class TimestampRules extends + public static final class TimestampRules extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:pbandk.testpb.TimestampRules) TimestampRulesOrBuilder { @@ -42172,6 +42758,7 @@ private TimestampRules( * optional bool required = 1; * @return Whether the required field is set. */ + @java.lang.Override public boolean hasRequired() { return ((bitField0_ & 0x00000001) != 0); } @@ -42183,6 +42770,7 @@ public boolean hasRequired() { * optional bool required = 1; * @return The required. */ + @java.lang.Override public boolean getRequired() { return required_; } @@ -42197,6 +42785,7 @@ public boolean getRequired() { * optional .google.protobuf.Timestamp const = 2; * @return Whether the const field is set. */ + @java.lang.Override public boolean hasConst() { return ((bitField0_ & 0x00000002) != 0); } @@ -42208,6 +42797,7 @@ public boolean hasConst() { * optional .google.protobuf.Timestamp const = 2; * @return The const. */ + @java.lang.Override public com.google.protobuf.Timestamp getConst() { return const_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : const_; } @@ -42218,6 +42808,7 @@ public com.google.protobuf.Timestamp getConst() { * * optional .google.protobuf.Timestamp const = 2; */ + @java.lang.Override public com.google.protobuf.TimestampOrBuilder getConstOrBuilder() { return const_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : const_; } @@ -42233,6 +42824,7 @@ public com.google.protobuf.TimestampOrBuilder getConstOrBuilder() { * optional .google.protobuf.Timestamp lt = 3; * @return Whether the lt field is set. */ + @java.lang.Override public boolean hasLt() { return ((bitField0_ & 0x00000004) != 0); } @@ -42245,6 +42837,7 @@ public boolean hasLt() { * optional .google.protobuf.Timestamp lt = 3; * @return The lt. */ + @java.lang.Override public com.google.protobuf.Timestamp getLt() { return lt_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : lt_; } @@ -42256,6 +42849,7 @@ public com.google.protobuf.Timestamp getLt() { * * optional .google.protobuf.Timestamp lt = 3; */ + @java.lang.Override public com.google.protobuf.TimestampOrBuilder getLtOrBuilder() { return lt_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : lt_; } @@ -42271,6 +42865,7 @@ public com.google.protobuf.TimestampOrBuilder getLtOrBuilder() { * optional .google.protobuf.Timestamp lte = 4; * @return Whether the lte field is set. */ + @java.lang.Override public boolean hasLte() { return ((bitField0_ & 0x00000008) != 0); } @@ -42283,6 +42878,7 @@ public boolean hasLte() { * optional .google.protobuf.Timestamp lte = 4; * @return The lte. */ + @java.lang.Override public com.google.protobuf.Timestamp getLte() { return lte_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : lte_; } @@ -42294,6 +42890,7 @@ public com.google.protobuf.Timestamp getLte() { * * optional .google.protobuf.Timestamp lte = 4; */ + @java.lang.Override public com.google.protobuf.TimestampOrBuilder getLteOrBuilder() { return lte_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : lte_; } @@ -42309,6 +42906,7 @@ public com.google.protobuf.TimestampOrBuilder getLteOrBuilder() { * optional .google.protobuf.Timestamp gt = 5; * @return Whether the gt field is set. */ + @java.lang.Override public boolean hasGt() { return ((bitField0_ & 0x00000010) != 0); } @@ -42321,6 +42919,7 @@ public boolean hasGt() { * optional .google.protobuf.Timestamp gt = 5; * @return The gt. */ + @java.lang.Override public com.google.protobuf.Timestamp getGt() { return gt_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : gt_; } @@ -42332,6 +42931,7 @@ public com.google.protobuf.Timestamp getGt() { * * optional .google.protobuf.Timestamp gt = 5; */ + @java.lang.Override public com.google.protobuf.TimestampOrBuilder getGtOrBuilder() { return gt_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : gt_; } @@ -42347,6 +42947,7 @@ public com.google.protobuf.TimestampOrBuilder getGtOrBuilder() { * optional .google.protobuf.Timestamp gte = 6; * @return Whether the gte field is set. */ + @java.lang.Override public boolean hasGte() { return ((bitField0_ & 0x00000020) != 0); } @@ -42359,6 +42960,7 @@ public boolean hasGte() { * optional .google.protobuf.Timestamp gte = 6; * @return The gte. */ + @java.lang.Override public com.google.protobuf.Timestamp getGte() { return gte_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : gte_; } @@ -42370,6 +42972,7 @@ public com.google.protobuf.Timestamp getGte() { * * optional .google.protobuf.Timestamp gte = 6; */ + @java.lang.Override public com.google.protobuf.TimestampOrBuilder getGteOrBuilder() { return gte_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : gte_; } @@ -42385,6 +42988,7 @@ public com.google.protobuf.TimestampOrBuilder getGteOrBuilder() { * optional bool lt_now = 7; * @return Whether the ltNow field is set. */ + @java.lang.Override public boolean hasLtNow() { return ((bitField0_ & 0x00000040) != 0); } @@ -42397,6 +43001,7 @@ public boolean hasLtNow() { * optional bool lt_now = 7; * @return The ltNow. */ + @java.lang.Override public boolean getLtNow() { return ltNow_; } @@ -42412,6 +43017,7 @@ public boolean getLtNow() { * optional bool gt_now = 8; * @return Whether the gtNow field is set. */ + @java.lang.Override public boolean hasGtNow() { return ((bitField0_ & 0x00000080) != 0); } @@ -42424,6 +43030,7 @@ public boolean hasGtNow() { * optional bool gt_now = 8; * @return The gtNow. */ + @java.lang.Override public boolean getGtNow() { return gtNow_; } @@ -42440,6 +43047,7 @@ public boolean getGtNow() { * optional .google.protobuf.Duration within = 9; * @return Whether the within field is set. */ + @java.lang.Override public boolean hasWithin() { return ((bitField0_ & 0x00000100) != 0); } @@ -42453,6 +43061,7 @@ public boolean hasWithin() { * optional .google.protobuf.Duration within = 9; * @return The within. */ + @java.lang.Override public com.google.protobuf.Duration getWithin() { return within_ == null ? com.google.protobuf.Duration.getDefaultInstance() : within_; } @@ -42465,6 +43074,7 @@ public com.google.protobuf.Duration getWithin() { * * optional .google.protobuf.Duration within = 9; */ + @java.lang.Override public com.google.protobuf.DurationOrBuilder getWithinOrBuilder() { return within_ == null ? com.google.protobuf.Duration.getDefaultInstance() : within_; } @@ -43054,6 +43664,7 @@ public Builder mergeFrom( * optional bool required = 1; * @return Whether the required field is set. */ + @java.lang.Override public boolean hasRequired() { return ((bitField0_ & 0x00000001) != 0); } @@ -43065,6 +43676,7 @@ public boolean hasRequired() { * optional bool required = 1; * @return The required. */ + @java.lang.Override public boolean getRequired() { return required_; } @@ -43924,6 +44536,7 @@ public com.google.protobuf.TimestampOrBuilder getGteOrBuilder() { * optional bool lt_now = 7; * @return Whether the ltNow field is set. */ + @java.lang.Override public boolean hasLtNow() { return ((bitField0_ & 0x00000040) != 0); } @@ -43936,6 +44549,7 @@ public boolean hasLtNow() { * optional bool lt_now = 7; * @return The ltNow. */ + @java.lang.Override public boolean getLtNow() { return ltNow_; } @@ -43981,6 +44595,7 @@ public Builder clearLtNow() { * optional bool gt_now = 8; * @return Whether the gtNow field is set. */ + @java.lang.Override public boolean hasGtNow() { return ((bitField0_ & 0x00000080) != 0); } @@ -43993,6 +44608,7 @@ public boolean hasGtNow() { * optional bool gt_now = 8; * @return The gtNow. */ + @java.lang.Override public boolean getGtNow() { return gtNow_; } diff --git a/jvm-test-types/src/main/java/pbandk/testpb/java/Test.java b/jvm-test-types/src/main/java/pbandk/testpb/java/Test.java index 1aaf69f3..9baf62df 100644 --- a/jvm-test-types/src/main/java/pbandk/testpb/java/Test.java +++ b/jvm-test-types/src/main/java/pbandk/testpb/java/Test.java @@ -33,7 +33,7 @@ public interface FooOrBuilder extends /** * Protobuf type {@code testpb.Foo} */ - public static final class Foo extends + public static final class Foo extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:testpb.Foo) FooOrBuilder { @@ -120,6 +120,7 @@ private Foo( * string val = 1; * @return The val. */ + @java.lang.Override public java.lang.String getVal() { java.lang.Object ref = val_; if (ref instanceof java.lang.String) { @@ -136,6 +137,7 @@ public java.lang.String getVal() { * string val = 1; * @return The bytes for val. */ + @java.lang.Override public com.google.protobuf.ByteString getValBytes() { java.lang.Object ref = val_; @@ -626,7 +628,7 @@ pbandk.testpb.java.Test.FooOrBuilder getFoosOrBuilder( /** * Protobuf type {@code testpb.Bar} */ - public static final class Bar extends + public static final class Bar extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:testpb.Bar) BarOrBuilder { @@ -732,12 +734,14 @@ private Bar( /** * repeated .testpb.Foo foos = 1; */ + @java.lang.Override public java.util.List getFoosList() { return foos_; } /** * repeated .testpb.Foo foos = 1; */ + @java.lang.Override public java.util.List getFoosOrBuilderList() { return foos_; @@ -745,18 +749,21 @@ public java.util.List getFoosList() { /** * repeated .testpb.Foo foos = 1; */ + @java.lang.Override public int getFoosCount() { return foos_.size(); } /** * repeated .testpb.Foo foos = 1; */ + @java.lang.Override public pbandk.testpb.java.Test.Foo getFoos(int index) { return foos_.get(index); } /** * repeated .testpb.Foo foos = 1; */ + @java.lang.Override public pbandk.testpb.java.Test.FooOrBuilder getFoosOrBuilder( int index) { return foos_.get(index); @@ -768,6 +775,7 @@ public pbandk.testpb.java.Test.FooOrBuilder getFoosOrBuilder( * .testpb.Foo single_foo = 2; * @return Whether the singleFoo field is set. */ + @java.lang.Override public boolean hasSingleFoo() { return singleFoo_ != null; } @@ -775,12 +783,14 @@ public boolean hasSingleFoo() { * .testpb.Foo single_foo = 2; * @return The singleFoo. */ + @java.lang.Override public pbandk.testpb.java.Test.Foo getSingleFoo() { return singleFoo_ == null ? pbandk.testpb.java.Test.Foo.getDefaultInstance() : singleFoo_; } /** * .testpb.Foo single_foo = 2; */ + @java.lang.Override public pbandk.testpb.java.Test.FooOrBuilder getSingleFooOrBuilder() { return getSingleFoo(); } @@ -1609,7 +1619,7 @@ java.lang.String getMapOrThrow( /** * Protobuf type {@code testpb.MessageWithMap} */ - public static final class MessageWithMap extends + public static final class MessageWithMap extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:testpb.MessageWithMap) MessageWithMapOrBuilder { @@ -1739,6 +1749,7 @@ public int getMapCount() { * map<string, string> map = 1; */ + @java.lang.Override public boolean containsMap( java.lang.String key) { if (key == null) { throw new java.lang.NullPointerException(); } @@ -1747,6 +1758,7 @@ public boolean containsMap( /** * Use {@link #getMapMap()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMap() { return getMapMap(); @@ -1754,6 +1766,7 @@ public java.util.Map getMap() { /** * map<string, string> map = 1; */ + @java.lang.Override public java.util.Map getMapMap() { return internalGetMap().getMap(); @@ -1761,6 +1774,7 @@ public java.util.Map getMapMap() { /** * map<string, string> map = 1; */ + @java.lang.Override public java.lang.String getMapOrDefault( java.lang.String key, @@ -1773,6 +1787,7 @@ public java.lang.String getMapOrDefault( /** * map<string, string> map = 1; */ + @java.lang.Override public java.lang.String getMapOrThrow( java.lang.String key) { @@ -2151,6 +2166,7 @@ public int getMapCount() { * map<string, string> map = 1; */ + @java.lang.Override public boolean containsMap( java.lang.String key) { if (key == null) { throw new java.lang.NullPointerException(); } @@ -2159,6 +2175,7 @@ public boolean containsMap( /** * Use {@link #getMapMap()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMap() { return getMapMap(); @@ -2166,6 +2183,7 @@ public java.util.Map getMap() { /** * map<string, string> map = 1; */ + @java.lang.Override public java.util.Map getMapMap() { return internalGetMap().getMap(); @@ -2173,6 +2191,7 @@ public java.util.Map getMapMap() { /** * map<string, string> map = 1; */ + @java.lang.Override public java.lang.String getMapOrDefault( java.lang.String key, @@ -2185,6 +2204,7 @@ public java.lang.String getMapOrDefault( /** * map<string, string> map = 1; */ + @java.lang.Override public java.lang.String getMapOrThrow( java.lang.String key) { @@ -2337,7 +2357,7 @@ pbandk.testpb.java.Test.Foo getMapOrThrow( /** * Protobuf type {@code testpb.FooMap} */ - public static final class FooMap extends + public static final class FooMap extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:testpb.FooMap) FooMapOrBuilder { @@ -2467,6 +2487,7 @@ public int getMapCount() { * map<string, .testpb.Foo> map = 1; */ + @java.lang.Override public boolean containsMap( java.lang.String key) { if (key == null) { throw new java.lang.NullPointerException(); } @@ -2475,6 +2496,7 @@ public boolean containsMap( /** * Use {@link #getMapMap()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMap() { return getMapMap(); @@ -2482,6 +2504,7 @@ public java.util.Map getMap() { /** * map<string, .testpb.Foo> map = 1; */ + @java.lang.Override public java.util.Map getMapMap() { return internalGetMap().getMap(); @@ -2489,6 +2512,7 @@ public java.util.Map getMapMap() /** * map<string, .testpb.Foo> map = 1; */ + @java.lang.Override public pbandk.testpb.java.Test.Foo getMapOrDefault( java.lang.String key, @@ -2501,6 +2525,7 @@ public pbandk.testpb.java.Test.Foo getMapOrDefault( /** * map<string, .testpb.Foo> map = 1; */ + @java.lang.Override public pbandk.testpb.java.Test.Foo getMapOrThrow( java.lang.String key) { @@ -2879,6 +2904,7 @@ public int getMapCount() { * map<string, .testpb.Foo> map = 1; */ + @java.lang.Override public boolean containsMap( java.lang.String key) { if (key == null) { throw new java.lang.NullPointerException(); } @@ -2887,6 +2913,7 @@ public boolean containsMap( /** * Use {@link #getMapMap()} instead. */ + @java.lang.Override @java.lang.Deprecated public java.util.Map getMap() { return getMapMap(); @@ -2894,6 +2921,7 @@ public java.util.Map getMap() { /** * map<string, .testpb.Foo> map = 1; */ + @java.lang.Override public java.util.Map getMapMap() { return internalGetMap().getMap(); @@ -2901,6 +2929,7 @@ public java.util.Map getMapMap() /** * map<string, .testpb.Foo> map = 1; */ + @java.lang.Override public pbandk.testpb.java.Test.Foo getMapOrDefault( java.lang.String key, @@ -2913,6 +2942,7 @@ public pbandk.testpb.java.Test.Foo getMapOrDefault( /** * map<string, .testpb.Foo> map = 1; */ + @java.lang.Override public pbandk.testpb.java.Test.Foo getMapOrThrow( java.lang.String key) { @@ -3060,7 +3090,7 @@ pbandk.testpb.java.Test.FooMapEntries.MapEntryOrBuilder getMapOrBuilder( * * Protobuf type {@code testpb.FooMapEntries} */ - public static final class FooMapEntries extends + public static final class FooMapEntries extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:testpb.FooMapEntries) FooMapEntriesOrBuilder { @@ -3182,7 +3212,7 @@ public interface MapEntryOrBuilder extends /** * Protobuf type {@code testpb.FooMapEntries.MapEntry} */ - public static final class MapEntry extends + public static final class MapEntry extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:testpb.FooMapEntries.MapEntry) MapEntryOrBuilder { @@ -3282,6 +3312,7 @@ private MapEntry( * string key = 1; * @return The key. */ + @java.lang.Override public java.lang.String getKey() { java.lang.Object ref = key_; if (ref instanceof java.lang.String) { @@ -3298,6 +3329,7 @@ public java.lang.String getKey() { * string key = 1; * @return The bytes for key. */ + @java.lang.Override public com.google.protobuf.ByteString getKeyBytes() { java.lang.Object ref = key_; @@ -3318,6 +3350,7 @@ public java.lang.String getKey() { * .testpb.Foo value = 2; * @return Whether the value field is set. */ + @java.lang.Override public boolean hasValue() { return value_ != null; } @@ -3325,12 +3358,14 @@ public boolean hasValue() { * .testpb.Foo value = 2; * @return The value. */ + @java.lang.Override public pbandk.testpb.java.Test.Foo getValue() { return value_ == null ? pbandk.testpb.java.Test.Foo.getDefaultInstance() : value_; } /** * .testpb.Foo value = 2; */ + @java.lang.Override public pbandk.testpb.java.Test.FooOrBuilder getValueOrBuilder() { return getValue(); } @@ -3919,12 +3954,14 @@ public pbandk.testpb.java.Test.FooMapEntries.MapEntry getDefaultInstanceForType( /** * repeated .testpb.FooMapEntries.MapEntry map = 1; */ + @java.lang.Override public java.util.List getMapList() { return map_; } /** * repeated .testpb.FooMapEntries.MapEntry map = 1; */ + @java.lang.Override public java.util.List getMapOrBuilderList() { return map_; @@ -3932,18 +3969,21 @@ public java.util.List getMapList /** * repeated .testpb.FooMapEntries.MapEntry map = 1; */ + @java.lang.Override public int getMapCount() { return map_.size(); } /** * repeated .testpb.FooMapEntries.MapEntry map = 1; */ + @java.lang.Override public pbandk.testpb.java.Test.FooMapEntries.MapEntry getMap(int index) { return map_.get(index); } /** * repeated .testpb.FooMapEntries.MapEntry map = 1; */ + @java.lang.Override public pbandk.testpb.java.Test.FooMapEntries.MapEntryOrBuilder getMapOrBuilder( int index) { return map_.get(index); @@ -4634,7 +4674,7 @@ com.google.protobuf.UInt64ValueOrBuilder getUint64ValuesOrBuilder( /** * Protobuf type {@code testpb.Wrappers} */ - public static final class Wrappers extends + public static final class Wrappers extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:testpb.Wrappers) WrappersOrBuilder { @@ -4741,6 +4781,7 @@ private Wrappers( * .google.protobuf.StringValue string_value = 1; * @return Whether the stringValue field is set. */ + @java.lang.Override public boolean hasStringValue() { return stringValue_ != null; } @@ -4748,12 +4789,14 @@ public boolean hasStringValue() { * .google.protobuf.StringValue string_value = 1; * @return The stringValue. */ + @java.lang.Override public com.google.protobuf.StringValue getStringValue() { return stringValue_ == null ? com.google.protobuf.StringValue.getDefaultInstance() : stringValue_; } /** * .google.protobuf.StringValue string_value = 1; */ + @java.lang.Override public com.google.protobuf.StringValueOrBuilder getStringValueOrBuilder() { return getStringValue(); } @@ -4763,12 +4806,14 @@ public com.google.protobuf.StringValueOrBuilder getStringValueOrBuilder() { /** * repeated .google.protobuf.UInt64Value uint64_values = 2; */ + @java.lang.Override public java.util.List getUint64ValuesList() { return uint64Values_; } /** * repeated .google.protobuf.UInt64Value uint64_values = 2; */ + @java.lang.Override public java.util.List getUint64ValuesOrBuilderList() { return uint64Values_; @@ -4776,18 +4821,21 @@ public java.util.List getUint64ValuesList() { /** * repeated .google.protobuf.UInt64Value uint64_values = 2; */ + @java.lang.Override public int getUint64ValuesCount() { return uint64Values_.size(); } /** * repeated .google.protobuf.UInt64Value uint64_values = 2; */ + @java.lang.Override public com.google.protobuf.UInt64Value getUint64Values(int index) { return uint64Values_.get(index); } /** * repeated .google.protobuf.UInt64Value uint64_values = 2; */ + @java.lang.Override public com.google.protobuf.UInt64ValueOrBuilder getUint64ValuesOrBuilder( int index) { return uint64Values_.get(index); diff --git a/jvm-test-types/src/main/java/pbandk/testpb/java/TestDuplicateOneofName.java b/jvm-test-types/src/main/java/pbandk/testpb/java/TestDuplicateOneofName.java index 416ebf2d..9437646f 100644 --- a/jvm-test-types/src/main/java/pbandk/testpb/java/TestDuplicateOneofName.java +++ b/jvm-test-types/src/main/java/pbandk/testpb/java/TestDuplicateOneofName.java @@ -18,6 +18,11 @@ public interface ValueOrBuilder extends // @@protoc_insertion_point(interface_extends:testpb.Value) com.google.protobuf.MessageOrBuilder { + /** + * string string_value = 1; + * @return Whether the stringValue field is set. + */ + boolean hasStringValue(); /** * string string_value = 1; * @return The stringValue. @@ -30,12 +35,22 @@ public interface ValueOrBuilder extends com.google.protobuf.ByteString getStringValueBytes(); + /** + * bool boolean_value = 2; + * @return Whether the booleanValue field is set. + */ + boolean hasBooleanValue(); /** * bool boolean_value = 2; * @return The booleanValue. */ boolean getBooleanValue(); + /** + * int32 integer_value = 3; + * @return Whether the integerValue field is set. + */ + boolean hasIntegerValue(); /** * int32 integer_value = 3; * @return The integerValue. @@ -47,7 +62,7 @@ public interface ValueOrBuilder extends /** * Protobuf type {@code testpb.Value} */ - public static final class Value extends + public static final class Value extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:testpb.Value) ValueOrBuilder { @@ -181,6 +196,13 @@ public int getNumber() { } public static final int STRING_VALUE_FIELD_NUMBER = 1; + /** + * string string_value = 1; + * @return Whether the stringValue field is set. + */ + public boolean hasStringValue() { + return valueCase_ == 1; + } /** * string string_value = 1; * @return The stringValue. @@ -226,10 +248,19 @@ public java.lang.String getStringValue() { } public static final int BOOLEAN_VALUE_FIELD_NUMBER = 2; + /** + * bool boolean_value = 2; + * @return Whether the booleanValue field is set. + */ + @java.lang.Override + public boolean hasBooleanValue() { + return valueCase_ == 2; + } /** * bool boolean_value = 2; * @return The booleanValue. */ + @java.lang.Override public boolean getBooleanValue() { if (valueCase_ == 2) { return (java.lang.Boolean) value_; @@ -238,10 +269,19 @@ public boolean getBooleanValue() { } public static final int INTEGER_VALUE_FIELD_NUMBER = 3; + /** + * int32 integer_value = 3; + * @return Whether the integerValue field is set. + */ + @java.lang.Override + public boolean hasIntegerValue() { + return valueCase_ == 3; + } /** * int32 integer_value = 3; * @return The integerValue. */ + @java.lang.Override public int getIntegerValue() { if (valueCase_ == 3) { return (java.lang.Integer) value_; @@ -638,10 +678,19 @@ public Builder clearValue() { } + /** + * string string_value = 1; + * @return Whether the stringValue field is set. + */ + @java.lang.Override + public boolean hasStringValue() { + return valueCase_ == 1; + } /** * string string_value = 1; * @return The stringValue. */ + @java.lang.Override public java.lang.String getStringValue() { java.lang.Object ref = ""; if (valueCase_ == 1) { @@ -663,6 +712,7 @@ public java.lang.String getStringValue() { * string string_value = 1; * @return The bytes for stringValue. */ + @java.lang.Override public com.google.protobuf.ByteString getStringValueBytes() { java.lang.Object ref = ""; @@ -725,6 +775,13 @@ public Builder setStringValueBytes( return this; } + /** + * bool boolean_value = 2; + * @return Whether the booleanValue field is set. + */ + public boolean hasBooleanValue() { + return valueCase_ == 2; + } /** * bool boolean_value = 2; * @return The booleanValue. @@ -759,6 +816,13 @@ public Builder clearBooleanValue() { return this; } + /** + * int32 integer_value = 3; + * @return Whether the integerValue field is set. + */ + public boolean hasIntegerValue() { + return valueCase_ == 3; + } /** * int32 integer_value = 3; * @return The integerValue. diff --git a/protoc-gen-kotlin/lib/build.gradle.kts b/protoc-gen-kotlin/lib/build.gradle.kts index ccddfe7f..3525edfc 100644 --- a/protoc-gen-kotlin/lib/build.gradle.kts +++ b/protoc-gen-kotlin/lib/build.gradle.kts @@ -2,7 +2,6 @@ plugins { kotlin("multiplatform") `maven-publish` signing - id("com.google.osdetector") } description = "Kotlin code generator for Protocol Buffers and library for writing code generator plugins." @@ -51,26 +50,15 @@ kotlin { } } -val downloadProtoc: Configuration by configurations.creating { - isTransitive = false -} - -dependencies { - downloadProtoc( - group = "com.google.protobuf", - name = "protoc", - version = Versions.protoc, - classifier = osdetector.classifier, - ext = "exe" - ) -} +val extractWellKnownTypeProtos = rootProject.tasks.named("extractWellKnownTypeProtos") tasks { val generateProto by registering(KotlinProtocTask::class) { - includeDir.set(project.file("src/commonMain/proto")) + includeDir.set(layout.dir(extractWellKnownTypeProtos.map { it.destinationDir })) outputDir.set(project.file("src/commonMain/kotlin")) kotlinPackage.set("pbandk.gen.pb") logLevel.set("debug") + protoFileSubdir("google/protobuf/compiler") } val generateTestProtoDescriptor by registering(DescriptorProtocTask::class) { @@ -78,12 +66,6 @@ tasks { includeDir.set(project.file("src/jvmTest/resources/protos")) outputDir.set(out) - - val protocBin = downloadProtoc.singleFile - .also { it.setExecutable(true) } - .absolutePath - - protoc.set(protocBin) } getByName("jvmTest").dependsOn(generateTestProtoDescriptor) diff --git a/protoc-gen-kotlin/lib/src/commonMain/kotlin/pbandk/gen/pb/plugin.kt b/protoc-gen-kotlin/lib/src/commonMain/kotlin/pbandk/gen/pb/plugin.kt index d3be5f2b..1260e169 100644 --- a/protoc-gen-kotlin/lib/src/commonMain/kotlin/pbandk/gen/pb/plugin.kt +++ b/protoc-gen-kotlin/lib/src/commonMain/kotlin/pbandk/gen/pb/plugin.kt @@ -138,6 +138,7 @@ data class CodeGeneratorRequest( data class CodeGeneratorResponse( val error: String? = null, + val supportedFeatures: Long? = null, val file: List = emptyList(), override val unknownFields: Map = emptyMap() ) : pbandk.Message { @@ -149,7 +150,7 @@ data class CodeGeneratorResponse( override fun decodeWith(u: pbandk.MessageDecoder) = pbandk.gen.pb.CodeGeneratorResponse.decodeWithImpl(u) override val descriptor: pbandk.MessageDescriptor by lazy { - val fieldsList = ArrayList>(2) + val fieldsList = ArrayList>(3) fieldsList.apply { add( pbandk.FieldDescriptor( @@ -161,6 +162,16 @@ data class CodeGeneratorResponse( value = pbandk.gen.pb.CodeGeneratorResponse::error ) ) + add( + pbandk.FieldDescriptor( + messageDescriptor = this@Companion::descriptor, + name = "supported_features", + number = 2, + type = pbandk.FieldDescriptor.Type.Primitive.UInt64(hasPresence = true), + jsonName = "supportedFeatures", + value = pbandk.gen.pb.CodeGeneratorResponse::supportedFeatures + ) + ) add( pbandk.FieldDescriptor( messageDescriptor = this@Companion::descriptor, @@ -180,10 +191,27 @@ data class CodeGeneratorResponse( } } + sealed class Feature(override val value: Int, override val name: String? = null) : pbandk.Message.Enum { + override fun equals(other: kotlin.Any?) = other is pbandk.gen.pb.CodeGeneratorResponse.Feature && other.value == value + override fun hashCode() = value.hashCode() + override fun toString() = "pbandk.gen.pb.CodeGeneratorResponse.Feature.${name ?: "UNRECOGNIZED"}(value=$value)" + + object NONE : Feature(0, "FEATURE_NONE") + object PROTO3_OPTIONAL : Feature(1, "FEATURE_PROTO3_OPTIONAL") + class UNRECOGNIZED(value: Int) : pbandk.gen.pb.CodeGeneratorResponse.Feature(value) + + companion object : pbandk.Message.Enum.Companion { + val values: List by lazy { listOf(NONE, PROTO3_OPTIONAL) } + override fun fromValue(value: Int) = values.firstOrNull { it.value == value } ?: UNRECOGNIZED(value) + override fun fromName(name: String) = values.firstOrNull { it.name == name } ?: throw IllegalArgumentException("No Feature with name: $name") + } + } + data class File( val name: String? = null, val insertionPoint: String? = null, val content: String? = null, + val generatedCodeInfo: pbandk.wkt.GeneratedCodeInfo? = null, override val unknownFields: Map = emptyMap() ) : pbandk.Message { override operator fun plus(other: pbandk.Message?) = protoMergeImpl(other) @@ -194,7 +222,7 @@ data class CodeGeneratorResponse( override fun decodeWith(u: pbandk.MessageDecoder) = pbandk.gen.pb.CodeGeneratorResponse.File.decodeWithImpl(u) override val descriptor: pbandk.MessageDescriptor by lazy { - val fieldsList = ArrayList>(3) + val fieldsList = ArrayList>(4) fieldsList.apply { add( pbandk.FieldDescriptor( @@ -226,6 +254,16 @@ data class CodeGeneratorResponse( value = pbandk.gen.pb.CodeGeneratorResponse.File::content ) ) + add( + pbandk.FieldDescriptor( + messageDescriptor = this@Companion::descriptor, + name = "generated_code_info", + number = 16, + type = pbandk.FieldDescriptor.Type.Message(messageCompanion = pbandk.wkt.GeneratedCodeInfo.Companion), + jsonName = "generatedCodeInfo", + value = pbandk.gen.pb.CodeGeneratorResponse.File::generatedCodeInfo + ) + ) } pbandk.MessageDescriptor( messageClass = pbandk.gen.pb.CodeGeneratorResponse.File::class, @@ -302,6 +340,7 @@ fun CodeGeneratorResponse?.orDefault() = this ?: CodeGeneratorResponse.defaultIn private fun CodeGeneratorResponse.protoMergeImpl(plus: pbandk.Message?): CodeGeneratorResponse = (plus as? CodeGeneratorResponse)?.let { it.copy( error = plus.error ?: error, + supportedFeatures = plus.supportedFeatures ?: supportedFeatures, file = file + plus.file, unknownFields = unknownFields + plus.unknownFields ) @@ -310,15 +349,17 @@ private fun CodeGeneratorResponse.protoMergeImpl(plus: pbandk.Message?): CodeGen @Suppress("UNCHECKED_CAST") private fun CodeGeneratorResponse.Companion.decodeWithImpl(u: pbandk.MessageDecoder): CodeGeneratorResponse { var error: String? = null + var supportedFeatures: Long? = null var file: pbandk.ListWithSize.Builder? = null val unknownFields = u.readMessage(this) { _fieldNumber, _fieldValue -> when (_fieldNumber) { 1 -> error = _fieldValue as String + 2 -> supportedFeatures = _fieldValue as Long 15 -> file = (file ?: pbandk.ListWithSize.Builder()).apply { this += _fieldValue as Sequence } } } - return CodeGeneratorResponse(error, pbandk.ListWithSize.Builder.fixed(file), unknownFields) + return CodeGeneratorResponse(error, supportedFeatures, pbandk.ListWithSize.Builder.fixed(file), unknownFields) } fun CodeGeneratorResponse.File?.orDefault() = this ?: CodeGeneratorResponse.File.defaultInstance @@ -328,6 +369,7 @@ private fun CodeGeneratorResponse.File.protoMergeImpl(plus: pbandk.Message?): Co name = plus.name ?: name, insertionPoint = plus.insertionPoint ?: insertionPoint, content = plus.content ?: content, + generatedCodeInfo = generatedCodeInfo?.plus(plus.generatedCodeInfo) ?: plus.generatedCodeInfo, unknownFields = unknownFields + plus.unknownFields ) } ?: this @@ -337,13 +379,15 @@ private fun CodeGeneratorResponse.File.Companion.decodeWithImpl(u: pbandk.Messag var name: String? = null var insertionPoint: String? = null var content: String? = null + var generatedCodeInfo: pbandk.wkt.GeneratedCodeInfo? = null val unknownFields = u.readMessage(this) { _fieldNumber, _fieldValue -> when (_fieldNumber) { 1 -> name = _fieldValue as String 2 -> insertionPoint = _fieldValue as String 15 -> content = _fieldValue as String + 16 -> generatedCodeInfo = _fieldValue as pbandk.wkt.GeneratedCodeInfo } } - return CodeGeneratorResponse.File(name, insertionPoint, content, unknownFields) + return CodeGeneratorResponse.File(name, insertionPoint, content, generatedCodeInfo, unknownFields) } diff --git a/protoc-gen-kotlin/lib/src/commonMain/proto/plugin.proto b/protoc-gen-kotlin/lib/src/commonMain/proto/plugin.proto deleted file mode 100644 index 403bfb34..00000000 --- a/protoc-gen-kotlin/lib/src/commonMain/proto/plugin.proto +++ /dev/null @@ -1,167 +0,0 @@ -// Protocol Buffers - Google's data interchange format -// Copyright 2008 Google Inc. All rights reserved. -// https://developers.google.com/protocol-buffers/ -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -// Author: kenton@google.com (Kenton Varda) -// -// WARNING: The plugin interface is currently EXPERIMENTAL and is subject to -// change. -// -// protoc (aka the Protocol Compiler) can be extended via plugins. A plugin is -// just a program that reads a CodeGeneratorRequest from stdin and writes a -// CodeGeneratorResponse to stdout. -// -// Plugins written using C++ can use google/protobuf/compiler/plugin.h instead -// of dealing with the raw protocol defined here. -// -// A plugin executable needs only to be placed somewhere in the path. The -// plugin should be named "protoc-gen-$NAME", and will then be used when the -// flag "--${NAME}_out" is passed to protoc. - -syntax = "proto2"; -package google.protobuf.compiler; -option java_package = "com.google.protobuf.compiler"; -option java_outer_classname = "PluginProtos"; - -option go_package = "github.com/golang/protobuf/protoc-gen-go/plugin;plugin_go"; - -import "google/protobuf/descriptor.proto"; - -// The version number of protocol compiler. -message Version { - optional int32 major = 1; - optional int32 minor = 2; - optional int32 patch = 3; - // A suffix for alpha, beta or rc release, e.g., "alpha-1", "rc2". It should - // be empty for mainline stable releases. - optional string suffix = 4; -} - -// An encoded CodeGeneratorRequest is written to the plugin's stdin. -message CodeGeneratorRequest { - // The .proto files that were explicitly listed on the command-line. The - // code generator should generate code only for these files. Each file's - // descriptor will be included in proto_file, below. - repeated string file_to_generate = 1; - - // The generator parameter passed on the command-line. - optional string parameter = 2; - - // FileDescriptorProtos for all files in files_to_generate and everything - // they import. The files will appear in topological order, so each file - // appears before any file that imports it. - // - // protoc guarantees that all proto_files will be written after - // the fields above, even though this is not technically guaranteed by the - // protobuf wire format. This theoretically could allow a plugin to stream - // in the FileDescriptorProtos and handle them one by one rather than read - // the entire set into memory at once. However, as of this writing, this - // is not similarly optimized on protoc's end -- it will store all fields in - // memory at once before sending them to the plugin. - // - // Type names of fields and extensions in the FileDescriptorProto are always - // fully qualified. - repeated FileDescriptorProto proto_file = 15; - - // The version number of protocol compiler. - optional Version compiler_version = 3; - -} - -// The plugin writes an encoded CodeGeneratorResponse to stdout. -message CodeGeneratorResponse { - // Error message. If non-empty, code generation failed. The plugin process - // should exit with status code zero even if it reports an error in this way. - // - // This should be used to indicate errors in .proto files which prevent the - // code generator from generating correct code. Errors which indicate a - // problem in protoc itself -- such as the input CodeGeneratorRequest being - // unparseable -- should be reported by writing a message to stderr and - // exiting with a non-zero status code. - optional string error = 1; - - // Represents a single generated file. - message File { - // The file name, relative to the output directory. The name must not - // contain "." or ".." components and must be relative, not be absolute (so, - // the file cannot lie outside the output directory). "/" must be used as - // the path separator, not "\". - // - // If the name is omitted, the content will be appended to the previous - // file. This allows the generator to break large files into small chunks, - // and allows the generated text to be streamed back to protoc so that large - // files need not reside completely in memory at one time. Note that as of - // this writing protoc does not optimize for this -- it will read the entire - // CodeGeneratorResponse before writing files to disk. - optional string name = 1; - - // If non-empty, indicates that the named file should already exist, and the - // content here is to be inserted into that file at a defined insertion - // point. This feature allows a code generator to extend the output - // produced by another code generator. The original generator may provide - // insertion points by placing special annotations in the file that look - // like: - // @@protoc_insertion_point(NAME) - // The annotation can have arbitrary text before and after it on the line, - // which allows it to be placed in a comment. NAME should be replaced with - // an identifier naming the point -- this is what other generators will use - // as the insertion_point. Code inserted at this point will be placed - // immediately above the line containing the insertion point (thus multiple - // insertions to the same point will come out in the order they were added). - // The double-@ is intended to make it unlikely that the generated code - // could contain things that look like insertion points by accident. - // - // For example, the C++ code generator places the following line in the - // .pb.h files that it generates: - // // @@protoc_insertion_point(namespace_scope) - // This line appears within the scope of the file's package namespace, but - // outside of any particular class. Another plugin can then specify the - // insertion_point "namespace_scope" to generate additional classes or - // other declarations that should be placed in this scope. - // - // Note that if the line containing the insertion point begins with - // whitespace, the same whitespace will be added to every line of the - // inserted text. This is useful for languages like Python, where - // indentation matters. In these languages, the insertion point comment - // should be indented the same amount as any inserted code will need to be - // in order to work correctly in that context. - // - // The code generator that generates the initial file and the one which - // inserts into it must both run as part of a single invocation of protoc. - // Code generators are executed in the order in which they appear on the - // command line. - // - // If |insertion_point| is present, |name| must also be present. - optional string insertion_point = 2; - - // The file contents. - optional string content = 15; - } - repeated File file = 15; -} diff --git a/runtime/build.gradle.kts b/runtime/build.gradle.kts index fb61a2c7..1e342069 100644 --- a/runtime/build.gradle.kts +++ b/runtime/build.gradle.kts @@ -185,4 +185,4 @@ afterEvaluate { configurePbandkPom(project.description!!) } } -} \ No newline at end of file +}