- 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
28 lines
719 B
Java
28 lines
719 B
Java
package com.google.protobuf;
|
|
|
|
import com.google.protobuf.ArrayDecoders;
|
|
import java.io.IOException;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public interface Schema {
|
|
boolean equals(Object obj, Object obj2);
|
|
|
|
int getSerializedSize(Object obj);
|
|
|
|
int hashCode(Object obj);
|
|
|
|
boolean isInitialized(Object obj);
|
|
|
|
void makeImmutable(Object obj);
|
|
|
|
void mergeFrom(Object obj, Reader reader, ExtensionRegistryLite extensionRegistryLite) throws IOException;
|
|
|
|
void mergeFrom(Object obj, Object obj2);
|
|
|
|
void mergeFrom(Object obj, byte[] bArr, int i, int i2, ArrayDecoders.Registers registers) throws IOException;
|
|
|
|
Object newInstance();
|
|
|
|
void writeTo(Object obj, Writer writer) throws IOException;
|
|
}
|