Files
rr3-apk/decompiled-community/sources/androidx/datastore/preferences/protobuf/Reader.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- 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
2026-02-18 15:48:36 -08:00

111 lines
3.4 KiB
Java

package androidx.datastore.preferences.protobuf;
import androidx.datastore.preferences.protobuf.MapEntryLite;
import java.io.IOException;
import java.util.List;
import java.util.Map;
/* loaded from: classes.dex */
interface Reader {
public static final int READ_DONE = Integer.MAX_VALUE;
public static final int TAG_UNKNOWN = 0;
int getFieldNumber() throws IOException;
int getTag();
boolean readBool() throws IOException;
void readBoolList(List<Boolean> list) throws IOException;
ByteString readBytes() throws IOException;
void readBytesList(List<ByteString> list) throws IOException;
double readDouble() throws IOException;
void readDoubleList(List<Double> list) throws IOException;
int readEnum() throws IOException;
void readEnumList(List<Integer> list) throws IOException;
int readFixed32() throws IOException;
void readFixed32List(List<Integer> list) throws IOException;
long readFixed64() throws IOException;
void readFixed64List(List<Long> list) throws IOException;
float readFloat() throws IOException;
void readFloatList(List<Float> list) throws IOException;
@Deprecated
<T> T readGroup(Class<T> cls, ExtensionRegistryLite extensionRegistryLite) throws IOException;
@Deprecated
<T> T readGroupBySchemaWithCheck(Schema<T> schema, ExtensionRegistryLite extensionRegistryLite) throws IOException;
@Deprecated
<T> void readGroupList(List<T> list, Schema<T> schema, ExtensionRegistryLite extensionRegistryLite) throws IOException;
@Deprecated
<T> void readGroupList(List<T> list, Class<T> cls, ExtensionRegistryLite extensionRegistryLite) throws IOException;
int readInt32() throws IOException;
void readInt32List(List<Integer> list) throws IOException;
long readInt64() throws IOException;
void readInt64List(List<Long> list) throws IOException;
<K, V> void readMap(Map<K, V> map, MapEntryLite.Metadata<K, V> metadata, ExtensionRegistryLite extensionRegistryLite) throws IOException;
<T> T readMessage(Class<T> cls, ExtensionRegistryLite extensionRegistryLite) throws IOException;
<T> T readMessageBySchemaWithCheck(Schema<T> schema, ExtensionRegistryLite extensionRegistryLite) throws IOException;
<T> void readMessageList(List<T> list, Schema<T> schema, ExtensionRegistryLite extensionRegistryLite) throws IOException;
<T> void readMessageList(List<T> list, Class<T> cls, ExtensionRegistryLite extensionRegistryLite) throws IOException;
int readSFixed32() throws IOException;
void readSFixed32List(List<Integer> list) throws IOException;
long readSFixed64() throws IOException;
void readSFixed64List(List<Long> list) throws IOException;
int readSInt32() throws IOException;
void readSInt32List(List<Integer> list) throws IOException;
long readSInt64() throws IOException;
void readSInt64List(List<Long> list) throws IOException;
String readString() throws IOException;
void readStringList(List<String> list) throws IOException;
void readStringListRequireUtf8(List<String> list) throws IOException;
String readStringRequireUtf8() throws IOException;
int readUInt32() throws IOException;
void readUInt32List(List<Integer> list) throws IOException;
long readUInt64() throws IOException;
void readUInt64List(List<Long> list) throws IOException;
boolean shouldDiscardUnknownFields();
boolean skipField() throws IOException;
}