- 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
208 lines
8.7 KiB
Java
208 lines
8.7 KiB
Java
package androidx.datastore.preferences.protobuf;
|
|
|
|
import androidx.datastore.preferences.protobuf.GeneratedMessageLite;
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
import java.nio.ByteBuffer;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class BoolValue extends GeneratedMessageLite<BoolValue, Builder> implements BoolValueOrBuilder {
|
|
private static final BoolValue DEFAULT_INSTANCE;
|
|
private static volatile Parser<BoolValue> PARSER = null;
|
|
public static final int VALUE_FIELD_NUMBER = 1;
|
|
private boolean value_;
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void clearValue() {
|
|
this.value_ = false;
|
|
}
|
|
|
|
public static BoolValue getDefaultInstance() {
|
|
return DEFAULT_INSTANCE;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void setValue(boolean z) {
|
|
this.value_ = z;
|
|
}
|
|
|
|
@Override // androidx.datastore.preferences.protobuf.BoolValueOrBuilder
|
|
public boolean getValue() {
|
|
return this.value_;
|
|
}
|
|
|
|
private BoolValue() {
|
|
}
|
|
|
|
public static BoolValue parseFrom(ByteBuffer byteBuffer) throws InvalidProtocolBufferException {
|
|
return (BoolValue) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteBuffer);
|
|
}
|
|
|
|
public static BoolValue parseFrom(ByteBuffer byteBuffer, ExtensionRegistryLite extensionRegistryLite) throws InvalidProtocolBufferException {
|
|
return (BoolValue) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteBuffer, extensionRegistryLite);
|
|
}
|
|
|
|
public static BoolValue parseFrom(ByteString byteString) throws InvalidProtocolBufferException {
|
|
return (BoolValue) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteString);
|
|
}
|
|
|
|
public static BoolValue parseFrom(ByteString byteString, ExtensionRegistryLite extensionRegistryLite) throws InvalidProtocolBufferException {
|
|
return (BoolValue) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteString, extensionRegistryLite);
|
|
}
|
|
|
|
public static BoolValue parseFrom(byte[] bArr) throws InvalidProtocolBufferException {
|
|
return (BoolValue) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, bArr);
|
|
}
|
|
|
|
public static BoolValue parseFrom(byte[] bArr, ExtensionRegistryLite extensionRegistryLite) throws InvalidProtocolBufferException {
|
|
return (BoolValue) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, bArr, extensionRegistryLite);
|
|
}
|
|
|
|
public static BoolValue parseFrom(InputStream inputStream) throws IOException {
|
|
return (BoolValue) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, inputStream);
|
|
}
|
|
|
|
public static BoolValue parseFrom(InputStream inputStream, ExtensionRegistryLite extensionRegistryLite) throws IOException {
|
|
return (BoolValue) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, inputStream, extensionRegistryLite);
|
|
}
|
|
|
|
public static BoolValue parseDelimitedFrom(InputStream inputStream) throws IOException {
|
|
return (BoolValue) GeneratedMessageLite.parseDelimitedFrom(DEFAULT_INSTANCE, inputStream);
|
|
}
|
|
|
|
public static BoolValue parseDelimitedFrom(InputStream inputStream, ExtensionRegistryLite extensionRegistryLite) throws IOException {
|
|
return (BoolValue) GeneratedMessageLite.parseDelimitedFrom(DEFAULT_INSTANCE, inputStream, extensionRegistryLite);
|
|
}
|
|
|
|
public static BoolValue parseFrom(CodedInputStream codedInputStream) throws IOException {
|
|
return (BoolValue) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, codedInputStream);
|
|
}
|
|
|
|
public static BoolValue parseFrom(CodedInputStream codedInputStream, ExtensionRegistryLite extensionRegistryLite) throws IOException {
|
|
return (BoolValue) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, codedInputStream, extensionRegistryLite);
|
|
}
|
|
|
|
public static Builder newBuilder() {
|
|
return DEFAULT_INSTANCE.createBuilder();
|
|
}
|
|
|
|
public static Builder newBuilder(BoolValue boolValue) {
|
|
return DEFAULT_INSTANCE.createBuilder(boolValue);
|
|
}
|
|
|
|
public static final class Builder extends GeneratedMessageLite.Builder<BoolValue, Builder> implements BoolValueOrBuilder {
|
|
public /* synthetic */ Builder(AnonymousClass1 anonymousClass1) {
|
|
this();
|
|
}
|
|
|
|
private Builder() {
|
|
super(BoolValue.DEFAULT_INSTANCE);
|
|
}
|
|
|
|
@Override // androidx.datastore.preferences.protobuf.BoolValueOrBuilder
|
|
public boolean getValue() {
|
|
return ((BoolValue) this.instance).getValue();
|
|
}
|
|
|
|
public Builder setValue(boolean z) {
|
|
copyOnWrite();
|
|
((BoolValue) this.instance).setValue(z);
|
|
return this;
|
|
}
|
|
|
|
public Builder clearValue() {
|
|
copyOnWrite();
|
|
((BoolValue) this.instance).clearValue();
|
|
return this;
|
|
}
|
|
}
|
|
|
|
/* renamed from: androidx.datastore.preferences.protobuf.BoolValue$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 BoolValue();
|
|
case 2:
|
|
return new Builder(anonymousClass1);
|
|
case 3:
|
|
return GeneratedMessageLite.newMessageInfo(DEFAULT_INSTANCE, "\u0000\u0001\u0000\u0000\u0001\u0001\u0001\u0000\u0000\u0000\u0001\u0007", new Object[]{"value_"});
|
|
case 4:
|
|
return DEFAULT_INSTANCE;
|
|
case 5:
|
|
Parser<BoolValue> parser = PARSER;
|
|
if (parser == null) {
|
|
synchronized (BoolValue.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 {
|
|
BoolValue boolValue = new BoolValue();
|
|
DEFAULT_INSTANCE = boolValue;
|
|
GeneratedMessageLite.registerDefaultInstance(BoolValue.class, boolValue);
|
|
}
|
|
|
|
public static BoolValue of(boolean z) {
|
|
return newBuilder().setValue(z).build();
|
|
}
|
|
|
|
public static Parser<BoolValue> parser() {
|
|
return DEFAULT_INSTANCE.getParserForType();
|
|
}
|
|
}
|