- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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;
|
|
}
|