- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
65 lines
2.1 KiB
Java
65 lines
2.1 KiB
Java
package com.google.protobuf;
|
|
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
import java.io.OutputStream;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public interface MessageLite extends MessageLiteOrBuilder {
|
|
|
|
public interface Builder extends MessageLiteOrBuilder, Cloneable {
|
|
MessageLite build();
|
|
|
|
MessageLite buildPartial();
|
|
|
|
Builder clear();
|
|
|
|
/* renamed from: clone */
|
|
Builder mo856clone();
|
|
|
|
boolean mergeDelimitedFrom(InputStream inputStream) throws IOException;
|
|
|
|
boolean mergeDelimitedFrom(InputStream inputStream, ExtensionRegistryLite extensionRegistryLite) throws IOException;
|
|
|
|
Builder mergeFrom(ByteString byteString) throws InvalidProtocolBufferException;
|
|
|
|
Builder mergeFrom(ByteString byteString, ExtensionRegistryLite extensionRegistryLite) throws InvalidProtocolBufferException;
|
|
|
|
Builder mergeFrom(CodedInputStream codedInputStream) throws IOException;
|
|
|
|
Builder mergeFrom(CodedInputStream codedInputStream, ExtensionRegistryLite extensionRegistryLite) throws IOException;
|
|
|
|
Builder mergeFrom(MessageLite messageLite);
|
|
|
|
Builder mergeFrom(InputStream inputStream) throws IOException;
|
|
|
|
Builder mergeFrom(InputStream inputStream, ExtensionRegistryLite extensionRegistryLite) throws IOException;
|
|
|
|
Builder mergeFrom(byte[] bArr) throws InvalidProtocolBufferException;
|
|
|
|
Builder mergeFrom(byte[] bArr, int i, int i2) throws InvalidProtocolBufferException;
|
|
|
|
Builder mergeFrom(byte[] bArr, int i, int i2, ExtensionRegistryLite extensionRegistryLite) throws InvalidProtocolBufferException;
|
|
|
|
Builder mergeFrom(byte[] bArr, ExtensionRegistryLite extensionRegistryLite) throws InvalidProtocolBufferException;
|
|
}
|
|
|
|
Parser<? extends MessageLite> getParserForType();
|
|
|
|
int getSerializedSize();
|
|
|
|
Builder newBuilderForType();
|
|
|
|
Builder toBuilder();
|
|
|
|
byte[] toByteArray();
|
|
|
|
ByteString toByteString();
|
|
|
|
void writeDelimitedTo(OutputStream outputStream) throws IOException;
|
|
|
|
void writeTo(CodedOutputStream codedOutputStream) throws IOException;
|
|
|
|
void writeTo(OutputStream outputStream) throws IOException;
|
|
}
|