First Commit
This commit is contained in:
287
src/main/java/nano/GetPortfolioComponentRequest.java
Normal file
287
src/main/java/nano/GetPortfolioComponentRequest.java
Normal file
@@ -0,0 +1,287 @@
|
||||
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 GetPortfolioComponentRequest {
|
||||
|
||||
/* compiled from: TbsSdkJava */
|
||||
public static final class GetPortfolioComponent_Request extends MessageNano {
|
||||
|
||||
private static volatile GetPortfolioComponent_Request[] _emptyArray;
|
||||
|
||||
private int bitField0_;
|
||||
|
||||
private int goodsid_;
|
||||
|
||||
private int pid_;
|
||||
|
||||
private int pos_;
|
||||
|
||||
private int req_;
|
||||
|
||||
private String token_;
|
||||
|
||||
private int uid_;
|
||||
|
||||
public GetPortfolioComponent_Request() {
|
||||
clear();
|
||||
}
|
||||
|
||||
public static GetPortfolioComponent_Request[] emptyArray() {
|
||||
if (_emptyArray == null) {
|
||||
synchronized (InternalNano.LAZY_INIT_LOCK) {
|
||||
try {
|
||||
if (_emptyArray == null) {
|
||||
_emptyArray = new GetPortfolioComponent_Request[0];
|
||||
}
|
||||
} catch (Throwable th) {
|
||||
throw th;
|
||||
}
|
||||
}
|
||||
}
|
||||
return _emptyArray;
|
||||
}
|
||||
|
||||
public static GetPortfolioComponent_Request parseFrom(byte[] bArr) throws InvalidProtocolBufferNanoException {
|
||||
return (GetPortfolioComponent_Request) MessageNano.mergeFrom(new GetPortfolioComponent_Request(), bArr);
|
||||
}
|
||||
|
||||
public GetPortfolioComponent_Request clear() {
|
||||
this.bitField0_ = 0;
|
||||
this.token_ = "";
|
||||
this.uid_ = 0;
|
||||
this.pid_ = 0;
|
||||
this.goodsid_ = 0;
|
||||
this.pos_ = 0;
|
||||
this.req_ = 0;
|
||||
this.cachedSize = -1;
|
||||
return this;
|
||||
}
|
||||
|
||||
public GetPortfolioComponent_Request clearGoodsid() {
|
||||
this.goodsid_ = 0;
|
||||
this.bitField0_ &= -9;
|
||||
return this;
|
||||
}
|
||||
|
||||
public GetPortfolioComponent_Request clearPid() {
|
||||
this.pid_ = 0;
|
||||
this.bitField0_ &= -5;
|
||||
return this;
|
||||
}
|
||||
|
||||
public GetPortfolioComponent_Request clearPos() {
|
||||
this.pos_ = 0;
|
||||
this.bitField0_ &= -17;
|
||||
return this;
|
||||
}
|
||||
|
||||
public GetPortfolioComponent_Request clearReq() {
|
||||
this.req_ = 0;
|
||||
this.bitField0_ &= -33;
|
||||
return this;
|
||||
}
|
||||
|
||||
public GetPortfolioComponent_Request clearToken() {
|
||||
this.token_ = "";
|
||||
this.bitField0_ &= -2;
|
||||
return this;
|
||||
}
|
||||
|
||||
public GetPortfolioComponent_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_);
|
||||
}
|
||||
if ((this.bitField0_ & 4) != 0) {
|
||||
computeSerializedSize += CodedOutputByteBufferNano.computeFixed32Size(3, this.pid_);
|
||||
}
|
||||
if ((this.bitField0_ & 8) != 0) {
|
||||
computeSerializedSize += CodedOutputByteBufferNano.computeUInt32Size(4, this.goodsid_);
|
||||
}
|
||||
if ((this.bitField0_ & 16) != 0) {
|
||||
computeSerializedSize += CodedOutputByteBufferNano.computeUInt32Size(5, this.pos_);
|
||||
}
|
||||
if ((this.bitField0_ & 32) != 0) {
|
||||
return computeSerializedSize + CodedOutputByteBufferNano.computeUInt32Size(6, this.req_);
|
||||
}
|
||||
return computeSerializedSize;
|
||||
}
|
||||
|
||||
public int getGoodsid() {
|
||||
return this.goodsid_;
|
||||
}
|
||||
|
||||
public int getPid() {
|
||||
return this.pid_;
|
||||
}
|
||||
|
||||
public int getPos() {
|
||||
return this.pos_;
|
||||
}
|
||||
|
||||
public int getReq() {
|
||||
return this.req_;
|
||||
}
|
||||
|
||||
public String getToken() {
|
||||
return this.token_;
|
||||
}
|
||||
|
||||
public int getUid() {
|
||||
return this.uid_;
|
||||
}
|
||||
|
||||
public boolean hasGoodsid() {
|
||||
if ((this.bitField0_ & 8) != 0) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public boolean hasPid() {
|
||||
if ((this.bitField0_ & 4) != 0) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public boolean hasPos() {
|
||||
if ((this.bitField0_ & 16) != 0) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public boolean hasReq() {
|
||||
if ((this.bitField0_ & 32) != 0) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
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 GetPortfolioComponent_Request setGoodsid(int i10) {
|
||||
this.goodsid_ = i10;
|
||||
this.bitField0_ |= 8;
|
||||
return this;
|
||||
}
|
||||
|
||||
public GetPortfolioComponent_Request setPid(int i10) {
|
||||
this.pid_ = i10;
|
||||
this.bitField0_ |= 4;
|
||||
return this;
|
||||
}
|
||||
|
||||
public GetPortfolioComponent_Request setPos(int i10) {
|
||||
this.pos_ = i10;
|
||||
this.bitField0_ |= 16;
|
||||
return this;
|
||||
}
|
||||
|
||||
public GetPortfolioComponent_Request setReq(int i10) {
|
||||
this.req_ = i10;
|
||||
this.bitField0_ |= 32;
|
||||
return this;
|
||||
}
|
||||
|
||||
public GetPortfolioComponent_Request setToken(String str) {
|
||||
str.getClass();
|
||||
this.token_ = str;
|
||||
this.bitField0_ |= 1;
|
||||
return this;
|
||||
}
|
||||
|
||||
public GetPortfolioComponent_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_);
|
||||
}
|
||||
if ((this.bitField0_ & 4) != 0) {
|
||||
codedOutputByteBufferNano.writeFixed32(3, this.pid_);
|
||||
}
|
||||
if ((this.bitField0_ & 8) != 0) {
|
||||
codedOutputByteBufferNano.writeUInt32(4, this.goodsid_);
|
||||
}
|
||||
if ((this.bitField0_ & 16) != 0) {
|
||||
codedOutputByteBufferNano.writeUInt32(5, this.pos_);
|
||||
}
|
||||
if ((this.bitField0_ & 32) != 0) {
|
||||
codedOutputByteBufferNano.writeUInt32(6, this.req_);
|
||||
}
|
||||
super.writeTo(codedOutputByteBufferNano);
|
||||
}
|
||||
|
||||
public static GetPortfolioComponent_Request parseFrom(CodedInputByteBufferNano codedInputByteBufferNano) throws IOException {
|
||||
return new GetPortfolioComponent_Request().mergeFrom(codedInputByteBufferNano);
|
||||
}
|
||||
|
||||
public GetPortfolioComponent_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 == 29) {
|
||||
this.pid_ = codedInputByteBufferNano.readFixed32();
|
||||
this.bitField0_ |= 4;
|
||||
} else if (readTag == 32) {
|
||||
this.goodsid_ = codedInputByteBufferNano.readUInt32();
|
||||
this.bitField0_ |= 8;
|
||||
} else if (readTag == 40) {
|
||||
this.pos_ = codedInputByteBufferNano.readUInt32();
|
||||
this.bitField0_ |= 16;
|
||||
} else if (readTag == 48) {
|
||||
this.req_ = codedInputByteBufferNano.readUInt32();
|
||||
this.bitField0_ |= 32;
|
||||
} else if (!WireFormatNano.parseUnknownField(codedInputByteBufferNano, readTag)) {
|
||||
return this;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user