- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
638 lines
22 KiB
Java
638 lines
22 KiB
Java
package com.google.protobuf;
|
|
|
|
import com.google.protobuf.EnumValue;
|
|
import com.google.protobuf.GeneratedMessageLite;
|
|
import com.google.protobuf.Internal;
|
|
import com.google.protobuf.Option;
|
|
import com.google.protobuf.SourceContext;
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
import java.nio.ByteBuffer;
|
|
import java.util.Collections;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class Enum extends GeneratedMessageLite<Enum, Builder> implements EnumOrBuilder {
|
|
private static final Enum DEFAULT_INSTANCE;
|
|
public static final int ENUMVALUE_FIELD_NUMBER = 2;
|
|
public static final int NAME_FIELD_NUMBER = 1;
|
|
public static final int OPTIONS_FIELD_NUMBER = 3;
|
|
private static volatile Parser<Enum> PARSER = null;
|
|
public static final int SOURCE_CONTEXT_FIELD_NUMBER = 4;
|
|
public static final int SYNTAX_FIELD_NUMBER = 5;
|
|
private SourceContext sourceContext_;
|
|
private int syntax_;
|
|
private String name_ = "";
|
|
private Internal.ProtobufList<EnumValue> enumvalue_ = GeneratedMessageLite.emptyProtobufList();
|
|
private Internal.ProtobufList<Option> options_ = GeneratedMessageLite.emptyProtobufList();
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void clearSourceContext() {
|
|
this.sourceContext_ = null;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void clearSyntax() {
|
|
this.syntax_ = 0;
|
|
}
|
|
|
|
public static Enum getDefaultInstance() {
|
|
return DEFAULT_INSTANCE;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void setSyntaxValue(int i) {
|
|
this.syntax_ = i;
|
|
}
|
|
|
|
@Override // com.google.protobuf.EnumOrBuilder
|
|
public List<EnumValue> getEnumvalueList() {
|
|
return this.enumvalue_;
|
|
}
|
|
|
|
public List<? extends EnumValueOrBuilder> getEnumvalueOrBuilderList() {
|
|
return this.enumvalue_;
|
|
}
|
|
|
|
@Override // com.google.protobuf.EnumOrBuilder
|
|
public String getName() {
|
|
return this.name_;
|
|
}
|
|
|
|
@Override // com.google.protobuf.EnumOrBuilder
|
|
public List<Option> getOptionsList() {
|
|
return this.options_;
|
|
}
|
|
|
|
public List<? extends OptionOrBuilder> getOptionsOrBuilderList() {
|
|
return this.options_;
|
|
}
|
|
|
|
@Override // com.google.protobuf.EnumOrBuilder
|
|
public int getSyntaxValue() {
|
|
return this.syntax_;
|
|
}
|
|
|
|
@Override // com.google.protobuf.EnumOrBuilder
|
|
public boolean hasSourceContext() {
|
|
return this.sourceContext_ != null;
|
|
}
|
|
|
|
private Enum() {
|
|
}
|
|
|
|
@Override // com.google.protobuf.EnumOrBuilder
|
|
public ByteString getNameBytes() {
|
|
return ByteString.copyFromUtf8(this.name_);
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void setName(String str) {
|
|
str.getClass();
|
|
this.name_ = str;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void clearName() {
|
|
this.name_ = getDefaultInstance().getName();
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void setNameBytes(ByteString byteString) {
|
|
AbstractMessageLite.checkByteStringIsUtf8(byteString);
|
|
this.name_ = byteString.toStringUtf8();
|
|
}
|
|
|
|
@Override // com.google.protobuf.EnumOrBuilder
|
|
public int getEnumvalueCount() {
|
|
return this.enumvalue_.size();
|
|
}
|
|
|
|
@Override // com.google.protobuf.EnumOrBuilder
|
|
public EnumValue getEnumvalue(int i) {
|
|
return this.enumvalue_.get(i);
|
|
}
|
|
|
|
public EnumValueOrBuilder getEnumvalueOrBuilder(int i) {
|
|
return this.enumvalue_.get(i);
|
|
}
|
|
|
|
private void ensureEnumvalueIsMutable() {
|
|
Internal.ProtobufList<EnumValue> protobufList = this.enumvalue_;
|
|
if (protobufList.isModifiable()) {
|
|
return;
|
|
}
|
|
this.enumvalue_ = GeneratedMessageLite.mutableCopy(protobufList);
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void setEnumvalue(int i, EnumValue enumValue) {
|
|
enumValue.getClass();
|
|
ensureEnumvalueIsMutable();
|
|
this.enumvalue_.set(i, enumValue);
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void addEnumvalue(EnumValue enumValue) {
|
|
enumValue.getClass();
|
|
ensureEnumvalueIsMutable();
|
|
this.enumvalue_.add(enumValue);
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void addEnumvalue(int i, EnumValue enumValue) {
|
|
enumValue.getClass();
|
|
ensureEnumvalueIsMutable();
|
|
this.enumvalue_.add(i, enumValue);
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void addAllEnumvalue(Iterable<? extends EnumValue> iterable) {
|
|
ensureEnumvalueIsMutable();
|
|
AbstractMessageLite.addAll((Iterable) iterable, (List) this.enumvalue_);
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void clearEnumvalue() {
|
|
this.enumvalue_ = GeneratedMessageLite.emptyProtobufList();
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void removeEnumvalue(int i) {
|
|
ensureEnumvalueIsMutable();
|
|
this.enumvalue_.remove(i);
|
|
}
|
|
|
|
@Override // com.google.protobuf.EnumOrBuilder
|
|
public int getOptionsCount() {
|
|
return this.options_.size();
|
|
}
|
|
|
|
@Override // com.google.protobuf.EnumOrBuilder
|
|
public Option getOptions(int i) {
|
|
return this.options_.get(i);
|
|
}
|
|
|
|
public OptionOrBuilder getOptionsOrBuilder(int i) {
|
|
return this.options_.get(i);
|
|
}
|
|
|
|
private void ensureOptionsIsMutable() {
|
|
Internal.ProtobufList<Option> protobufList = this.options_;
|
|
if (protobufList.isModifiable()) {
|
|
return;
|
|
}
|
|
this.options_ = GeneratedMessageLite.mutableCopy(protobufList);
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void setOptions(int i, Option option) {
|
|
option.getClass();
|
|
ensureOptionsIsMutable();
|
|
this.options_.set(i, option);
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void addOptions(Option option) {
|
|
option.getClass();
|
|
ensureOptionsIsMutable();
|
|
this.options_.add(option);
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void addOptions(int i, Option option) {
|
|
option.getClass();
|
|
ensureOptionsIsMutable();
|
|
this.options_.add(i, option);
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void addAllOptions(Iterable<? extends Option> iterable) {
|
|
ensureOptionsIsMutable();
|
|
AbstractMessageLite.addAll((Iterable) iterable, (List) this.options_);
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void clearOptions() {
|
|
this.options_ = GeneratedMessageLite.emptyProtobufList();
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void removeOptions(int i) {
|
|
ensureOptionsIsMutable();
|
|
this.options_.remove(i);
|
|
}
|
|
|
|
@Override // com.google.protobuf.EnumOrBuilder
|
|
public SourceContext getSourceContext() {
|
|
SourceContext sourceContext = this.sourceContext_;
|
|
return sourceContext == null ? SourceContext.getDefaultInstance() : sourceContext;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void setSourceContext(SourceContext sourceContext) {
|
|
sourceContext.getClass();
|
|
this.sourceContext_ = sourceContext;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void mergeSourceContext(SourceContext sourceContext) {
|
|
sourceContext.getClass();
|
|
SourceContext sourceContext2 = this.sourceContext_;
|
|
if (sourceContext2 == null || sourceContext2 == SourceContext.getDefaultInstance()) {
|
|
this.sourceContext_ = sourceContext;
|
|
} else {
|
|
this.sourceContext_ = SourceContext.newBuilder(this.sourceContext_).mergeFrom((SourceContext.Builder) sourceContext).buildPartial();
|
|
}
|
|
}
|
|
|
|
@Override // com.google.protobuf.EnumOrBuilder
|
|
public Syntax getSyntax() {
|
|
Syntax forNumber = Syntax.forNumber(this.syntax_);
|
|
return forNumber == null ? Syntax.UNRECOGNIZED : forNumber;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void setSyntax(Syntax syntax) {
|
|
this.syntax_ = syntax.getNumber();
|
|
}
|
|
|
|
public static Enum parseFrom(ByteBuffer byteBuffer) throws InvalidProtocolBufferException {
|
|
return (Enum) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteBuffer);
|
|
}
|
|
|
|
public static Enum parseFrom(ByteBuffer byteBuffer, ExtensionRegistryLite extensionRegistryLite) throws InvalidProtocolBufferException {
|
|
return (Enum) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteBuffer, extensionRegistryLite);
|
|
}
|
|
|
|
public static Enum parseFrom(ByteString byteString) throws InvalidProtocolBufferException {
|
|
return (Enum) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteString);
|
|
}
|
|
|
|
public static Enum parseFrom(ByteString byteString, ExtensionRegistryLite extensionRegistryLite) throws InvalidProtocolBufferException {
|
|
return (Enum) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteString, extensionRegistryLite);
|
|
}
|
|
|
|
public static Enum parseFrom(byte[] bArr) throws InvalidProtocolBufferException {
|
|
return (Enum) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, bArr);
|
|
}
|
|
|
|
public static Enum parseFrom(byte[] bArr, ExtensionRegistryLite extensionRegistryLite) throws InvalidProtocolBufferException {
|
|
return (Enum) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, bArr, extensionRegistryLite);
|
|
}
|
|
|
|
public static Enum parseFrom(InputStream inputStream) throws IOException {
|
|
return (Enum) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, inputStream);
|
|
}
|
|
|
|
public static Enum parseFrom(InputStream inputStream, ExtensionRegistryLite extensionRegistryLite) throws IOException {
|
|
return (Enum) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, inputStream, extensionRegistryLite);
|
|
}
|
|
|
|
public static Enum parseDelimitedFrom(InputStream inputStream) throws IOException {
|
|
return (Enum) GeneratedMessageLite.parseDelimitedFrom(DEFAULT_INSTANCE, inputStream);
|
|
}
|
|
|
|
public static Enum parseDelimitedFrom(InputStream inputStream, ExtensionRegistryLite extensionRegistryLite) throws IOException {
|
|
return (Enum) GeneratedMessageLite.parseDelimitedFrom(DEFAULT_INSTANCE, inputStream, extensionRegistryLite);
|
|
}
|
|
|
|
public static Enum parseFrom(CodedInputStream codedInputStream) throws IOException {
|
|
return (Enum) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, codedInputStream);
|
|
}
|
|
|
|
public static Enum parseFrom(CodedInputStream codedInputStream, ExtensionRegistryLite extensionRegistryLite) throws IOException {
|
|
return (Enum) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, codedInputStream, extensionRegistryLite);
|
|
}
|
|
|
|
public static Builder newBuilder() {
|
|
return DEFAULT_INSTANCE.createBuilder();
|
|
}
|
|
|
|
public static Builder newBuilder(Enum r1) {
|
|
return DEFAULT_INSTANCE.createBuilder(r1);
|
|
}
|
|
|
|
public static final class Builder extends GeneratedMessageLite.Builder<Enum, Builder> implements EnumOrBuilder {
|
|
public /* synthetic */ Builder(AnonymousClass1 anonymousClass1) {
|
|
this();
|
|
}
|
|
|
|
private Builder() {
|
|
super(Enum.DEFAULT_INSTANCE);
|
|
}
|
|
|
|
@Override // com.google.protobuf.EnumOrBuilder
|
|
public String getName() {
|
|
return ((Enum) this.instance).getName();
|
|
}
|
|
|
|
@Override // com.google.protobuf.EnumOrBuilder
|
|
public ByteString getNameBytes() {
|
|
return ((Enum) this.instance).getNameBytes();
|
|
}
|
|
|
|
public Builder setName(String str) {
|
|
copyOnWrite();
|
|
((Enum) this.instance).setName(str);
|
|
return this;
|
|
}
|
|
|
|
public Builder clearName() {
|
|
copyOnWrite();
|
|
((Enum) this.instance).clearName();
|
|
return this;
|
|
}
|
|
|
|
public Builder setNameBytes(ByteString byteString) {
|
|
copyOnWrite();
|
|
((Enum) this.instance).setNameBytes(byteString);
|
|
return this;
|
|
}
|
|
|
|
@Override // com.google.protobuf.EnumOrBuilder
|
|
public List<EnumValue> getEnumvalueList() {
|
|
return Collections.unmodifiableList(((Enum) this.instance).getEnumvalueList());
|
|
}
|
|
|
|
@Override // com.google.protobuf.EnumOrBuilder
|
|
public int getEnumvalueCount() {
|
|
return ((Enum) this.instance).getEnumvalueCount();
|
|
}
|
|
|
|
@Override // com.google.protobuf.EnumOrBuilder
|
|
public EnumValue getEnumvalue(int i) {
|
|
return ((Enum) this.instance).getEnumvalue(i);
|
|
}
|
|
|
|
public Builder setEnumvalue(int i, EnumValue enumValue) {
|
|
copyOnWrite();
|
|
((Enum) this.instance).setEnumvalue(i, enumValue);
|
|
return this;
|
|
}
|
|
|
|
public Builder setEnumvalue(int i, EnumValue.Builder builder) {
|
|
copyOnWrite();
|
|
((Enum) this.instance).setEnumvalue(i, builder.build());
|
|
return this;
|
|
}
|
|
|
|
public Builder addEnumvalue(EnumValue enumValue) {
|
|
copyOnWrite();
|
|
((Enum) this.instance).addEnumvalue(enumValue);
|
|
return this;
|
|
}
|
|
|
|
public Builder addEnumvalue(int i, EnumValue enumValue) {
|
|
copyOnWrite();
|
|
((Enum) this.instance).addEnumvalue(i, enumValue);
|
|
return this;
|
|
}
|
|
|
|
public Builder addEnumvalue(EnumValue.Builder builder) {
|
|
copyOnWrite();
|
|
((Enum) this.instance).addEnumvalue(builder.build());
|
|
return this;
|
|
}
|
|
|
|
public Builder addEnumvalue(int i, EnumValue.Builder builder) {
|
|
copyOnWrite();
|
|
((Enum) this.instance).addEnumvalue(i, builder.build());
|
|
return this;
|
|
}
|
|
|
|
public Builder addAllEnumvalue(Iterable<? extends EnumValue> iterable) {
|
|
copyOnWrite();
|
|
((Enum) this.instance).addAllEnumvalue(iterable);
|
|
return this;
|
|
}
|
|
|
|
public Builder clearEnumvalue() {
|
|
copyOnWrite();
|
|
((Enum) this.instance).clearEnumvalue();
|
|
return this;
|
|
}
|
|
|
|
public Builder removeEnumvalue(int i) {
|
|
copyOnWrite();
|
|
((Enum) this.instance).removeEnumvalue(i);
|
|
return this;
|
|
}
|
|
|
|
@Override // com.google.protobuf.EnumOrBuilder
|
|
public List<Option> getOptionsList() {
|
|
return Collections.unmodifiableList(((Enum) this.instance).getOptionsList());
|
|
}
|
|
|
|
@Override // com.google.protobuf.EnumOrBuilder
|
|
public int getOptionsCount() {
|
|
return ((Enum) this.instance).getOptionsCount();
|
|
}
|
|
|
|
@Override // com.google.protobuf.EnumOrBuilder
|
|
public Option getOptions(int i) {
|
|
return ((Enum) this.instance).getOptions(i);
|
|
}
|
|
|
|
public Builder setOptions(int i, Option option) {
|
|
copyOnWrite();
|
|
((Enum) this.instance).setOptions(i, option);
|
|
return this;
|
|
}
|
|
|
|
public Builder setOptions(int i, Option.Builder builder) {
|
|
copyOnWrite();
|
|
((Enum) this.instance).setOptions(i, builder.build());
|
|
return this;
|
|
}
|
|
|
|
public Builder addOptions(Option option) {
|
|
copyOnWrite();
|
|
((Enum) this.instance).addOptions(option);
|
|
return this;
|
|
}
|
|
|
|
public Builder addOptions(int i, Option option) {
|
|
copyOnWrite();
|
|
((Enum) this.instance).addOptions(i, option);
|
|
return this;
|
|
}
|
|
|
|
public Builder addOptions(Option.Builder builder) {
|
|
copyOnWrite();
|
|
((Enum) this.instance).addOptions(builder.build());
|
|
return this;
|
|
}
|
|
|
|
public Builder addOptions(int i, Option.Builder builder) {
|
|
copyOnWrite();
|
|
((Enum) this.instance).addOptions(i, builder.build());
|
|
return this;
|
|
}
|
|
|
|
public Builder addAllOptions(Iterable<? extends Option> iterable) {
|
|
copyOnWrite();
|
|
((Enum) this.instance).addAllOptions(iterable);
|
|
return this;
|
|
}
|
|
|
|
public Builder clearOptions() {
|
|
copyOnWrite();
|
|
((Enum) this.instance).clearOptions();
|
|
return this;
|
|
}
|
|
|
|
public Builder removeOptions(int i) {
|
|
copyOnWrite();
|
|
((Enum) this.instance).removeOptions(i);
|
|
return this;
|
|
}
|
|
|
|
@Override // com.google.protobuf.EnumOrBuilder
|
|
public boolean hasSourceContext() {
|
|
return ((Enum) this.instance).hasSourceContext();
|
|
}
|
|
|
|
@Override // com.google.protobuf.EnumOrBuilder
|
|
public SourceContext getSourceContext() {
|
|
return ((Enum) this.instance).getSourceContext();
|
|
}
|
|
|
|
public Builder setSourceContext(SourceContext sourceContext) {
|
|
copyOnWrite();
|
|
((Enum) this.instance).setSourceContext(sourceContext);
|
|
return this;
|
|
}
|
|
|
|
public Builder setSourceContext(SourceContext.Builder builder) {
|
|
copyOnWrite();
|
|
((Enum) this.instance).setSourceContext(builder.build());
|
|
return this;
|
|
}
|
|
|
|
public Builder mergeSourceContext(SourceContext sourceContext) {
|
|
copyOnWrite();
|
|
((Enum) this.instance).mergeSourceContext(sourceContext);
|
|
return this;
|
|
}
|
|
|
|
public Builder clearSourceContext() {
|
|
copyOnWrite();
|
|
((Enum) this.instance).clearSourceContext();
|
|
return this;
|
|
}
|
|
|
|
@Override // com.google.protobuf.EnumOrBuilder
|
|
public int getSyntaxValue() {
|
|
return ((Enum) this.instance).getSyntaxValue();
|
|
}
|
|
|
|
public Builder setSyntaxValue(int i) {
|
|
copyOnWrite();
|
|
((Enum) this.instance).setSyntaxValue(i);
|
|
return this;
|
|
}
|
|
|
|
@Override // com.google.protobuf.EnumOrBuilder
|
|
public Syntax getSyntax() {
|
|
return ((Enum) this.instance).getSyntax();
|
|
}
|
|
|
|
public Builder setSyntax(Syntax syntax) {
|
|
copyOnWrite();
|
|
((Enum) this.instance).setSyntax(syntax);
|
|
return this;
|
|
}
|
|
|
|
public Builder clearSyntax() {
|
|
copyOnWrite();
|
|
((Enum) this.instance).clearSyntax();
|
|
return this;
|
|
}
|
|
}
|
|
|
|
/* renamed from: com.google.protobuf.Enum$1, reason: invalid class name */
|
|
public static /* synthetic */ class AnonymousClass1 {
|
|
static final /* synthetic */ int[] $SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke;
|
|
|
|
static {
|
|
int[] iArr = new int[GeneratedMessageLite.MethodToInvoke.values().length];
|
|
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke = iArr;
|
|
try {
|
|
iArr[GeneratedMessageLite.MethodToInvoke.NEW_MUTABLE_INSTANCE.ordinal()] = 1;
|
|
} catch (NoSuchFieldError unused) {
|
|
}
|
|
try {
|
|
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.NEW_BUILDER.ordinal()] = 2;
|
|
} catch (NoSuchFieldError unused2) {
|
|
}
|
|
try {
|
|
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.BUILD_MESSAGE_INFO.ordinal()] = 3;
|
|
} catch (NoSuchFieldError unused3) {
|
|
}
|
|
try {
|
|
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.GET_DEFAULT_INSTANCE.ordinal()] = 4;
|
|
} catch (NoSuchFieldError unused4) {
|
|
}
|
|
try {
|
|
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.GET_PARSER.ordinal()] = 5;
|
|
} catch (NoSuchFieldError unused5) {
|
|
}
|
|
try {
|
|
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.GET_MEMOIZED_IS_INITIALIZED.ordinal()] = 6;
|
|
} catch (NoSuchFieldError unused6) {
|
|
}
|
|
try {
|
|
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.SET_MEMOIZED_IS_INITIALIZED.ordinal()] = 7;
|
|
} catch (NoSuchFieldError unused7) {
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override // com.google.protobuf.GeneratedMessageLite
|
|
public final Object dynamicMethod(GeneratedMessageLite.MethodToInvoke methodToInvoke, Object obj, Object obj2) {
|
|
AnonymousClass1 anonymousClass1 = null;
|
|
switch (AnonymousClass1.$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[methodToInvoke.ordinal()]) {
|
|
case 1:
|
|
return new Enum();
|
|
case 2:
|
|
return new Builder(anonymousClass1);
|
|
case 3:
|
|
return GeneratedMessageLite.newMessageInfo(DEFAULT_INSTANCE, "\u0000\u0005\u0000\u0000\u0001\u0005\u0005\u0000\u0002\u0000\u0001Ȉ\u0002\u001b\u0003\u001b\u0004\t\u0005\f", new Object[]{"name_", "enumvalue_", EnumValue.class, "options_", Option.class, "sourceContext_", "syntax_"});
|
|
case 4:
|
|
return DEFAULT_INSTANCE;
|
|
case 5:
|
|
Parser<Enum> parser = PARSER;
|
|
if (parser == null) {
|
|
synchronized (Enum.class) {
|
|
try {
|
|
parser = PARSER;
|
|
if (parser == null) {
|
|
parser = new GeneratedMessageLite.DefaultInstanceBasedParser<>(DEFAULT_INSTANCE);
|
|
PARSER = parser;
|
|
}
|
|
} finally {
|
|
}
|
|
}
|
|
}
|
|
return parser;
|
|
case 6:
|
|
return (byte) 1;
|
|
case 7:
|
|
return null;
|
|
default:
|
|
throw new UnsupportedOperationException();
|
|
}
|
|
}
|
|
|
|
static {
|
|
Enum r0 = new Enum();
|
|
DEFAULT_INSTANCE = r0;
|
|
GeneratedMessageLite.registerDefaultInstance(Enum.class, r0);
|
|
}
|
|
|
|
public static Parser<Enum> parser() {
|
|
return DEFAULT_INSTANCE.getParserForType();
|
|
}
|
|
}
|