- 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
611 lines
21 KiB
Java
611 lines
21 KiB
Java
package androidx.datastore.preferences.protobuf;
|
|
|
|
import androidx.datastore.preferences.protobuf.GeneratedMessageLite;
|
|
import androidx.datastore.preferences.protobuf.ListValue;
|
|
import androidx.datastore.preferences.protobuf.Struct;
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
import java.nio.ByteBuffer;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class Value extends GeneratedMessageLite<Value, Builder> implements ValueOrBuilder {
|
|
public static final int BOOL_VALUE_FIELD_NUMBER = 4;
|
|
private static final Value DEFAULT_INSTANCE;
|
|
public static final int LIST_VALUE_FIELD_NUMBER = 6;
|
|
public static final int NULL_VALUE_FIELD_NUMBER = 1;
|
|
public static final int NUMBER_VALUE_FIELD_NUMBER = 2;
|
|
private static volatile Parser<Value> PARSER = null;
|
|
public static final int STRING_VALUE_FIELD_NUMBER = 3;
|
|
public static final int STRUCT_VALUE_FIELD_NUMBER = 5;
|
|
private int kindCase_ = 0;
|
|
private Object kind_;
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void clearBoolValue() {
|
|
if (this.kindCase_ == 4) {
|
|
this.kindCase_ = 0;
|
|
this.kind_ = null;
|
|
}
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void clearKind() {
|
|
this.kindCase_ = 0;
|
|
this.kind_ = null;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void clearListValue() {
|
|
if (this.kindCase_ == 6) {
|
|
this.kindCase_ = 0;
|
|
this.kind_ = null;
|
|
}
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void clearNullValue() {
|
|
if (this.kindCase_ == 1) {
|
|
this.kindCase_ = 0;
|
|
this.kind_ = null;
|
|
}
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void clearNumberValue() {
|
|
if (this.kindCase_ == 2) {
|
|
this.kindCase_ = 0;
|
|
this.kind_ = null;
|
|
}
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void clearStringValue() {
|
|
if (this.kindCase_ == 3) {
|
|
this.kindCase_ = 0;
|
|
this.kind_ = null;
|
|
}
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void clearStructValue() {
|
|
if (this.kindCase_ == 5) {
|
|
this.kindCase_ = 0;
|
|
this.kind_ = null;
|
|
}
|
|
}
|
|
|
|
public static Value getDefaultInstance() {
|
|
return DEFAULT_INSTANCE;
|
|
}
|
|
|
|
@Override // androidx.datastore.preferences.protobuf.ValueOrBuilder
|
|
public boolean hasListValue() {
|
|
return this.kindCase_ == 6;
|
|
}
|
|
|
|
@Override // androidx.datastore.preferences.protobuf.ValueOrBuilder
|
|
public boolean hasStructValue() {
|
|
return this.kindCase_ == 5;
|
|
}
|
|
|
|
private Value() {
|
|
}
|
|
|
|
public enum KindCase {
|
|
NULL_VALUE(1),
|
|
NUMBER_VALUE(2),
|
|
STRING_VALUE(3),
|
|
BOOL_VALUE(4),
|
|
STRUCT_VALUE(5),
|
|
LIST_VALUE(6),
|
|
KIND_NOT_SET(0);
|
|
|
|
private final int value;
|
|
|
|
public static KindCase forNumber(int i) {
|
|
switch (i) {
|
|
case 0:
|
|
return KIND_NOT_SET;
|
|
case 1:
|
|
return NULL_VALUE;
|
|
case 2:
|
|
return NUMBER_VALUE;
|
|
case 3:
|
|
return STRING_VALUE;
|
|
case 4:
|
|
return BOOL_VALUE;
|
|
case 5:
|
|
return STRUCT_VALUE;
|
|
case 6:
|
|
return LIST_VALUE;
|
|
default:
|
|
return null;
|
|
}
|
|
}
|
|
|
|
public int getNumber() {
|
|
return this.value;
|
|
}
|
|
|
|
KindCase(int i) {
|
|
this.value = i;
|
|
}
|
|
|
|
@Deprecated
|
|
public static KindCase valueOf(int i) {
|
|
return forNumber(i);
|
|
}
|
|
}
|
|
|
|
@Override // androidx.datastore.preferences.protobuf.ValueOrBuilder
|
|
public KindCase getKindCase() {
|
|
return KindCase.forNumber(this.kindCase_);
|
|
}
|
|
|
|
@Override // androidx.datastore.preferences.protobuf.ValueOrBuilder
|
|
public int getNullValueValue() {
|
|
if (this.kindCase_ == 1) {
|
|
return ((Integer) this.kind_).intValue();
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
@Override // androidx.datastore.preferences.protobuf.ValueOrBuilder
|
|
public NullValue getNullValue() {
|
|
if (this.kindCase_ == 1) {
|
|
NullValue forNumber = NullValue.forNumber(((Integer) this.kind_).intValue());
|
|
return forNumber == null ? NullValue.UNRECOGNIZED : forNumber;
|
|
}
|
|
return NullValue.NULL_VALUE;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void setNullValueValue(int i) {
|
|
this.kindCase_ = 1;
|
|
this.kind_ = Integer.valueOf(i);
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void setNullValue(NullValue nullValue) {
|
|
nullValue.getClass();
|
|
this.kindCase_ = 1;
|
|
this.kind_ = Integer.valueOf(nullValue.getNumber());
|
|
}
|
|
|
|
@Override // androidx.datastore.preferences.protobuf.ValueOrBuilder
|
|
public double getNumberValue() {
|
|
if (this.kindCase_ == 2) {
|
|
return ((Double) this.kind_).doubleValue();
|
|
}
|
|
return 0.0d;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void setNumberValue(double d) {
|
|
this.kindCase_ = 2;
|
|
this.kind_ = Double.valueOf(d);
|
|
}
|
|
|
|
@Override // androidx.datastore.preferences.protobuf.ValueOrBuilder
|
|
public String getStringValue() {
|
|
return this.kindCase_ == 3 ? (String) this.kind_ : "";
|
|
}
|
|
|
|
@Override // androidx.datastore.preferences.protobuf.ValueOrBuilder
|
|
public ByteString getStringValueBytes() {
|
|
return ByteString.copyFromUtf8(this.kindCase_ == 3 ? (String) this.kind_ : "");
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void setStringValue(String str) {
|
|
str.getClass();
|
|
this.kindCase_ = 3;
|
|
this.kind_ = str;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void setStringValueBytes(ByteString byteString) {
|
|
byteString.getClass();
|
|
AbstractMessageLite.checkByteStringIsUtf8(byteString);
|
|
this.kindCase_ = 3;
|
|
this.kind_ = byteString.toStringUtf8();
|
|
}
|
|
|
|
@Override // androidx.datastore.preferences.protobuf.ValueOrBuilder
|
|
public boolean getBoolValue() {
|
|
if (this.kindCase_ == 4) {
|
|
return ((Boolean) this.kind_).booleanValue();
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void setBoolValue(boolean z) {
|
|
this.kindCase_ = 4;
|
|
this.kind_ = Boolean.valueOf(z);
|
|
}
|
|
|
|
@Override // androidx.datastore.preferences.protobuf.ValueOrBuilder
|
|
public Struct getStructValue() {
|
|
if (this.kindCase_ == 5) {
|
|
return (Struct) this.kind_;
|
|
}
|
|
return Struct.getDefaultInstance();
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void setStructValue(Struct struct) {
|
|
struct.getClass();
|
|
this.kind_ = struct;
|
|
this.kindCase_ = 5;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void setStructValue(Struct.Builder builder) {
|
|
this.kind_ = builder.build();
|
|
this.kindCase_ = 5;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void mergeStructValue(Struct struct) {
|
|
struct.getClass();
|
|
if (this.kindCase_ != 5 || this.kind_ == Struct.getDefaultInstance()) {
|
|
this.kind_ = struct;
|
|
} else {
|
|
this.kind_ = Struct.newBuilder((Struct) this.kind_).mergeFrom((Struct.Builder) struct).buildPartial();
|
|
}
|
|
this.kindCase_ = 5;
|
|
}
|
|
|
|
@Override // androidx.datastore.preferences.protobuf.ValueOrBuilder
|
|
public ListValue getListValue() {
|
|
if (this.kindCase_ == 6) {
|
|
return (ListValue) this.kind_;
|
|
}
|
|
return ListValue.getDefaultInstance();
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void setListValue(ListValue listValue) {
|
|
listValue.getClass();
|
|
this.kind_ = listValue;
|
|
this.kindCase_ = 6;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void setListValue(ListValue.Builder builder) {
|
|
this.kind_ = builder.build();
|
|
this.kindCase_ = 6;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void mergeListValue(ListValue listValue) {
|
|
listValue.getClass();
|
|
if (this.kindCase_ != 6 || this.kind_ == ListValue.getDefaultInstance()) {
|
|
this.kind_ = listValue;
|
|
} else {
|
|
this.kind_ = ListValue.newBuilder((ListValue) this.kind_).mergeFrom((ListValue.Builder) listValue).buildPartial();
|
|
}
|
|
this.kindCase_ = 6;
|
|
}
|
|
|
|
public static Value parseFrom(ByteBuffer byteBuffer) throws InvalidProtocolBufferException {
|
|
return (Value) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteBuffer);
|
|
}
|
|
|
|
public static Value parseFrom(ByteBuffer byteBuffer, ExtensionRegistryLite extensionRegistryLite) throws InvalidProtocolBufferException {
|
|
return (Value) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteBuffer, extensionRegistryLite);
|
|
}
|
|
|
|
public static Value parseFrom(ByteString byteString) throws InvalidProtocolBufferException {
|
|
return (Value) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteString);
|
|
}
|
|
|
|
public static Value parseFrom(ByteString byteString, ExtensionRegistryLite extensionRegistryLite) throws InvalidProtocolBufferException {
|
|
return (Value) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteString, extensionRegistryLite);
|
|
}
|
|
|
|
public static Value parseFrom(byte[] bArr) throws InvalidProtocolBufferException {
|
|
return (Value) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, bArr);
|
|
}
|
|
|
|
public static Value parseFrom(byte[] bArr, ExtensionRegistryLite extensionRegistryLite) throws InvalidProtocolBufferException {
|
|
return (Value) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, bArr, extensionRegistryLite);
|
|
}
|
|
|
|
public static Value parseFrom(InputStream inputStream) throws IOException {
|
|
return (Value) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, inputStream);
|
|
}
|
|
|
|
public static Value parseFrom(InputStream inputStream, ExtensionRegistryLite extensionRegistryLite) throws IOException {
|
|
return (Value) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, inputStream, extensionRegistryLite);
|
|
}
|
|
|
|
public static Value parseDelimitedFrom(InputStream inputStream) throws IOException {
|
|
return (Value) GeneratedMessageLite.parseDelimitedFrom(DEFAULT_INSTANCE, inputStream);
|
|
}
|
|
|
|
public static Value parseDelimitedFrom(InputStream inputStream, ExtensionRegistryLite extensionRegistryLite) throws IOException {
|
|
return (Value) GeneratedMessageLite.parseDelimitedFrom(DEFAULT_INSTANCE, inputStream, extensionRegistryLite);
|
|
}
|
|
|
|
public static Value parseFrom(CodedInputStream codedInputStream) throws IOException {
|
|
return (Value) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, codedInputStream);
|
|
}
|
|
|
|
public static Value parseFrom(CodedInputStream codedInputStream, ExtensionRegistryLite extensionRegistryLite) throws IOException {
|
|
return (Value) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, codedInputStream, extensionRegistryLite);
|
|
}
|
|
|
|
public static Builder newBuilder() {
|
|
return DEFAULT_INSTANCE.createBuilder();
|
|
}
|
|
|
|
public static Builder newBuilder(Value value) {
|
|
return DEFAULT_INSTANCE.createBuilder(value);
|
|
}
|
|
|
|
public static final class Builder extends GeneratedMessageLite.Builder<Value, Builder> implements ValueOrBuilder {
|
|
public /* synthetic */ Builder(AnonymousClass1 anonymousClass1) {
|
|
this();
|
|
}
|
|
|
|
private Builder() {
|
|
super(Value.DEFAULT_INSTANCE);
|
|
}
|
|
|
|
@Override // androidx.datastore.preferences.protobuf.ValueOrBuilder
|
|
public KindCase getKindCase() {
|
|
return ((Value) this.instance).getKindCase();
|
|
}
|
|
|
|
public Builder clearKind() {
|
|
copyOnWrite();
|
|
((Value) this.instance).clearKind();
|
|
return this;
|
|
}
|
|
|
|
@Override // androidx.datastore.preferences.protobuf.ValueOrBuilder
|
|
public int getNullValueValue() {
|
|
return ((Value) this.instance).getNullValueValue();
|
|
}
|
|
|
|
public Builder setNullValueValue(int i) {
|
|
copyOnWrite();
|
|
((Value) this.instance).setNullValueValue(i);
|
|
return this;
|
|
}
|
|
|
|
@Override // androidx.datastore.preferences.protobuf.ValueOrBuilder
|
|
public NullValue getNullValue() {
|
|
return ((Value) this.instance).getNullValue();
|
|
}
|
|
|
|
public Builder setNullValue(NullValue nullValue) {
|
|
copyOnWrite();
|
|
((Value) this.instance).setNullValue(nullValue);
|
|
return this;
|
|
}
|
|
|
|
public Builder clearNullValue() {
|
|
copyOnWrite();
|
|
((Value) this.instance).clearNullValue();
|
|
return this;
|
|
}
|
|
|
|
@Override // androidx.datastore.preferences.protobuf.ValueOrBuilder
|
|
public double getNumberValue() {
|
|
return ((Value) this.instance).getNumberValue();
|
|
}
|
|
|
|
public Builder setNumberValue(double d) {
|
|
copyOnWrite();
|
|
((Value) this.instance).setNumberValue(d);
|
|
return this;
|
|
}
|
|
|
|
public Builder clearNumberValue() {
|
|
copyOnWrite();
|
|
((Value) this.instance).clearNumberValue();
|
|
return this;
|
|
}
|
|
|
|
@Override // androidx.datastore.preferences.protobuf.ValueOrBuilder
|
|
public String getStringValue() {
|
|
return ((Value) this.instance).getStringValue();
|
|
}
|
|
|
|
@Override // androidx.datastore.preferences.protobuf.ValueOrBuilder
|
|
public ByteString getStringValueBytes() {
|
|
return ((Value) this.instance).getStringValueBytes();
|
|
}
|
|
|
|
public Builder setStringValue(String str) {
|
|
copyOnWrite();
|
|
((Value) this.instance).setStringValue(str);
|
|
return this;
|
|
}
|
|
|
|
public Builder clearStringValue() {
|
|
copyOnWrite();
|
|
((Value) this.instance).clearStringValue();
|
|
return this;
|
|
}
|
|
|
|
public Builder setStringValueBytes(ByteString byteString) {
|
|
copyOnWrite();
|
|
((Value) this.instance).setStringValueBytes(byteString);
|
|
return this;
|
|
}
|
|
|
|
@Override // androidx.datastore.preferences.protobuf.ValueOrBuilder
|
|
public boolean getBoolValue() {
|
|
return ((Value) this.instance).getBoolValue();
|
|
}
|
|
|
|
public Builder setBoolValue(boolean z) {
|
|
copyOnWrite();
|
|
((Value) this.instance).setBoolValue(z);
|
|
return this;
|
|
}
|
|
|
|
public Builder clearBoolValue() {
|
|
copyOnWrite();
|
|
((Value) this.instance).clearBoolValue();
|
|
return this;
|
|
}
|
|
|
|
@Override // androidx.datastore.preferences.protobuf.ValueOrBuilder
|
|
public boolean hasStructValue() {
|
|
return ((Value) this.instance).hasStructValue();
|
|
}
|
|
|
|
@Override // androidx.datastore.preferences.protobuf.ValueOrBuilder
|
|
public Struct getStructValue() {
|
|
return ((Value) this.instance).getStructValue();
|
|
}
|
|
|
|
public Builder setStructValue(Struct struct) {
|
|
copyOnWrite();
|
|
((Value) this.instance).setStructValue(struct);
|
|
return this;
|
|
}
|
|
|
|
public Builder setStructValue(Struct.Builder builder) {
|
|
copyOnWrite();
|
|
((Value) this.instance).setStructValue(builder);
|
|
return this;
|
|
}
|
|
|
|
public Builder mergeStructValue(Struct struct) {
|
|
copyOnWrite();
|
|
((Value) this.instance).mergeStructValue(struct);
|
|
return this;
|
|
}
|
|
|
|
public Builder clearStructValue() {
|
|
copyOnWrite();
|
|
((Value) this.instance).clearStructValue();
|
|
return this;
|
|
}
|
|
|
|
@Override // androidx.datastore.preferences.protobuf.ValueOrBuilder
|
|
public boolean hasListValue() {
|
|
return ((Value) this.instance).hasListValue();
|
|
}
|
|
|
|
@Override // androidx.datastore.preferences.protobuf.ValueOrBuilder
|
|
public ListValue getListValue() {
|
|
return ((Value) this.instance).getListValue();
|
|
}
|
|
|
|
public Builder setListValue(ListValue listValue) {
|
|
copyOnWrite();
|
|
((Value) this.instance).setListValue(listValue);
|
|
return this;
|
|
}
|
|
|
|
public Builder setListValue(ListValue.Builder builder) {
|
|
copyOnWrite();
|
|
((Value) this.instance).setListValue(builder);
|
|
return this;
|
|
}
|
|
|
|
public Builder mergeListValue(ListValue listValue) {
|
|
copyOnWrite();
|
|
((Value) this.instance).mergeListValue(listValue);
|
|
return this;
|
|
}
|
|
|
|
public Builder clearListValue() {
|
|
copyOnWrite();
|
|
((Value) this.instance).clearListValue();
|
|
return this;
|
|
}
|
|
}
|
|
|
|
/* renamed from: androidx.datastore.preferences.protobuf.Value$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 // androidx.datastore.preferences.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 Value();
|
|
case 2:
|
|
return new Builder(anonymousClass1);
|
|
case 3:
|
|
return GeneratedMessageLite.newMessageInfo(DEFAULT_INSTANCE, "\u0000\u0006\u0001\u0000\u0001\u0006\u0006\u0000\u0000\u0000\u0001?\u0000\u00023\u0000\u0003Ȼ\u0000\u0004:\u0000\u0005<\u0000\u0006<\u0000", new Object[]{"kind_", "kindCase_", Struct.class, ListValue.class});
|
|
case 4:
|
|
return DEFAULT_INSTANCE;
|
|
case 5:
|
|
Parser<Value> parser = PARSER;
|
|
if (parser == null) {
|
|
synchronized (Value.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 {
|
|
Value value = new Value();
|
|
DEFAULT_INSTANCE = value;
|
|
GeneratedMessageLite.registerDefaultInstance(Value.class, value);
|
|
}
|
|
|
|
public static Parser<Value> parser() {
|
|
return DEFAULT_INSTANCE.getParserForType();
|
|
}
|
|
}
|