Files
emo-grab/src/main/java/nano/CardSummaryRequest.java
Administrator 6a5e13974c First Commit
2025-05-12 12:04:42 +08:00

200 lines
6.8 KiB
Java

package nano;
import com.google.protobuf.nano.CodedInputByteBufferNano;
import com.google.protobuf.nano.CodedOutputByteBufferNano;
import com.google.protobuf.nano.InternalNano;
import com.google.protobuf.nano.InvalidProtocolBufferNanoException;
import com.google.protobuf.nano.MessageNano;
import com.google.protobuf.nano.WireFormatNano;
import java.io.IOException;
/* compiled from: TbsSdkJava */
public interface CardSummaryRequest {
/* compiled from: TbsSdkJava */
public static final class CardSummary_Request extends MessageNano {
private static volatile CardSummary_Request[] _emptyArray;
private int bitField0_;
public String[] model;
private String token_;
private int uid_;
public CardSummary_Request() {
clear();
}
public static CardSummary_Request[] emptyArray() {
if (_emptyArray == null) {
synchronized (InternalNano.LAZY_INIT_LOCK) {
try {
if (_emptyArray == null) {
_emptyArray = new CardSummary_Request[0];
}
} catch (Throwable th) {
throw th;
}
}
}
return _emptyArray;
}
public static CardSummary_Request parseFrom(byte[] bArr) throws InvalidProtocolBufferNanoException {
return (CardSummary_Request) MessageNano.mergeFrom(new CardSummary_Request(), bArr);
}
public CardSummary_Request clear() {
this.bitField0_ = 0;
this.token_ = "";
this.uid_ = 0;
this.model = WireFormatNano.EMPTY_STRING_ARRAY;
this.cachedSize = -1;
return this;
}
public CardSummary_Request clearToken() {
this.token_ = "";
this.bitField0_ &= -2;
return this;
}
public CardSummary_Request clearUid() {
this.uid_ = 0;
this.bitField0_ &= -3;
return this;
}
/* access modifiers changed from: protected */
public int computeSerializedSize() {
int computeSerializedSize = super.computeSerializedSize();
if ((this.bitField0_ & 1) != 0) {
computeSerializedSize += CodedOutputByteBufferNano.computeStringSize(1, this.token_);
}
if ((this.bitField0_ & 2) != 0) {
computeSerializedSize += CodedOutputByteBufferNano.computeUInt32Size(2, this.uid_);
}
String[] strArr = this.model;
if (strArr == null || strArr.length <= 0) {
return computeSerializedSize;
}
int i10 = 0;
int i11 = 0;
int i12 = 0;
while (true) {
String[] strArr2 = this.model;
if (i10 >= strArr2.length) {
return computeSerializedSize + i11 + i12;
}
String str = strArr2[i10];
if (str != null) {
i12++;
i11 += CodedOutputByteBufferNano.computeStringSizeNoTag(str);
}
i10++;
}
}
public String getToken() {
return this.token_;
}
public int getUid() {
return this.uid_;
}
public boolean hasToken() {
if ((this.bitField0_ & 1) != 0) {
return true;
}
return false;
}
public boolean hasUid() {
if ((this.bitField0_ & 2) != 0) {
return true;
}
return false;
}
public CardSummary_Request setToken(String str) {
str.getClass();
this.token_ = str;
this.bitField0_ |= 1;
return this;
}
public CardSummary_Request setUid(int i10) {
this.uid_ = i10;
this.bitField0_ |= 2;
return this;
}
public void writeTo(CodedOutputByteBufferNano codedOutputByteBufferNano) throws IOException {
if ((this.bitField0_ & 1) != 0) {
codedOutputByteBufferNano.writeString(1, this.token_);
}
if ((this.bitField0_ & 2) != 0) {
codedOutputByteBufferNano.writeUInt32(2, this.uid_);
}
String[] strArr = this.model;
if (strArr != null && strArr.length > 0) {
int i10 = 0;
while (true) {
String[] strArr2 = this.model;
if (i10 >= strArr2.length) {
break;
}
String str = strArr2[i10];
if (str != null) {
codedOutputByteBufferNano.writeString(3, str);
}
i10++;
}
}
super.writeTo(codedOutputByteBufferNano);
}
public static CardSummary_Request parseFrom(CodedInputByteBufferNano codedInputByteBufferNano) throws IOException {
return new CardSummary_Request().mergeFrom(codedInputByteBufferNano);
}
public CardSummary_Request mergeFrom(CodedInputByteBufferNano codedInputByteBufferNano) throws IOException {
while (true) {
int readTag = codedInputByteBufferNano.readTag();
if (readTag == 0) {
return this;
}
if (readTag == 10) {
this.token_ = codedInputByteBufferNano.readString();
this.bitField0_ |= 1;
} else if (readTag == 16) {
this.uid_ = codedInputByteBufferNano.readUInt32();
this.bitField0_ |= 2;
} else if (readTag == 26) {
int repeatedFieldArrayLength = WireFormatNano.getRepeatedFieldArrayLength(codedInputByteBufferNano, 26);
String[] strArr = this.model;
int length = strArr == null ? 0 : strArr.length;
int i10 = repeatedFieldArrayLength + length;
String[] strArr2 = new String[i10];
if (length != 0) {
System.arraycopy(strArr, 0, strArr2, 0, length);
}
while (length < i10 - 1) {
strArr2[length] = codedInputByteBufferNano.readString();
codedInputByteBufferNano.readTag();
length++;
}
strArr2[length] = codedInputByteBufferNano.readString();
this.model = strArr2;
} else if (!WireFormatNano.parseUnknownField(codedInputByteBufferNano, readTag)) {
return this;
}
}
}
}
}