mirror of
https://github.com/Melledy/Nebula.git
synced 2025-12-16 06:15:20 +01:00
1101 lines
31 KiB
Java
1101 lines
31 KiB
Java
// Code generated by protocol buffer compiler. Do not edit!
|
|
package emu.nebula.proto;
|
|
|
|
import java.io.IOException;
|
|
import us.hebi.quickbuf.FieldName;
|
|
import us.hebi.quickbuf.InvalidProtocolBufferException;
|
|
import us.hebi.quickbuf.JsonSink;
|
|
import us.hebi.quickbuf.JsonSource;
|
|
import us.hebi.quickbuf.MessageFactory;
|
|
import us.hebi.quickbuf.ProtoMessage;
|
|
import us.hebi.quickbuf.ProtoSink;
|
|
import us.hebi.quickbuf.ProtoSource;
|
|
import us.hebi.quickbuf.RepeatedByte;
|
|
import us.hebi.quickbuf.RepeatedMessage;
|
|
|
|
public final class CharDatingGiftSend {
|
|
/**
|
|
* Protobuf type {@code CharDatingGiftSendReq}
|
|
*/
|
|
public static final class CharDatingGiftSendReq extends ProtoMessage<CharDatingGiftSendReq> implements Cloneable {
|
|
private static final long serialVersionUID = 0L;
|
|
|
|
/**
|
|
* <code>optional uint32 CharId = 1;</code>
|
|
*/
|
|
private int charId;
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
*/
|
|
private final RepeatedByte nextPackage = RepeatedByte.newEmptyInstance();
|
|
|
|
/**
|
|
* <code>repeated .ItemTpl Items = 2;</code>
|
|
*/
|
|
private final RepeatedMessage<Public.ItemTpl> items = RepeatedMessage.newEmptyInstance(Public.ItemTpl.getFactory());
|
|
|
|
private CharDatingGiftSendReq() {
|
|
}
|
|
|
|
/**
|
|
* @return a new empty instance of {@code CharDatingGiftSendReq}
|
|
*/
|
|
public static CharDatingGiftSendReq newInstance() {
|
|
return new CharDatingGiftSendReq();
|
|
}
|
|
|
|
/**
|
|
* <code>optional uint32 CharId = 1;</code>
|
|
* @return whether the charId field is set
|
|
*/
|
|
public boolean hasCharId() {
|
|
return (bitField0_ & 0x00000001) != 0;
|
|
}
|
|
|
|
/**
|
|
* <code>optional uint32 CharId = 1;</code>
|
|
* @return this
|
|
*/
|
|
public CharDatingGiftSendReq clearCharId() {
|
|
bitField0_ &= ~0x00000001;
|
|
charId = 0;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional uint32 CharId = 1;</code>
|
|
* @return the charId
|
|
*/
|
|
public int getCharId() {
|
|
return charId;
|
|
}
|
|
|
|
/**
|
|
* <code>optional uint32 CharId = 1;</code>
|
|
* @param value the charId to set
|
|
* @return this
|
|
*/
|
|
public CharDatingGiftSendReq setCharId(final int value) {
|
|
bitField0_ |= 0x00000001;
|
|
charId = value;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
* @return whether the nextPackage field is set
|
|
*/
|
|
public boolean hasNextPackage() {
|
|
return (bitField0_ & 0x00000002) != 0;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
* @return this
|
|
*/
|
|
public CharDatingGiftSendReq clearNextPackage() {
|
|
bitField0_ &= ~0x00000002;
|
|
nextPackage.clear();
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
*
|
|
* This method returns the internal storage object without modifying any has state.
|
|
* The returned object should not be modified and be treated as read-only.
|
|
*
|
|
* Use {@link #getMutableNextPackage()} if you want to modify it.
|
|
*
|
|
* @return internal storage object for reading
|
|
*/
|
|
public RepeatedByte getNextPackage() {
|
|
return nextPackage;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
*
|
|
* This method returns the internal storage object and sets the corresponding
|
|
* has state. The returned object will become part of this message and its
|
|
* contents may be modified as long as the has state is not cleared.
|
|
*
|
|
* @return internal storage object for modifications
|
|
*/
|
|
public RepeatedByte getMutableNextPackage() {
|
|
bitField0_ |= 0x00000002;
|
|
return nextPackage;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
* @param value the nextPackage to add
|
|
* @return this
|
|
*/
|
|
public CharDatingGiftSendReq addNextPackage(final byte value) {
|
|
bitField0_ |= 0x00000002;
|
|
nextPackage.add(value);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
* @param values the nextPackage to add
|
|
* @return this
|
|
*/
|
|
public CharDatingGiftSendReq addAllNextPackage(final byte... values) {
|
|
bitField0_ |= 0x00000002;
|
|
nextPackage.addAll(values);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
* @param values the nextPackage to set
|
|
* @return this
|
|
*/
|
|
public CharDatingGiftSendReq setNextPackage(final byte... values) {
|
|
bitField0_ |= 0x00000002;
|
|
nextPackage.copyFrom(values);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated .ItemTpl Items = 2;</code>
|
|
* @return whether the items field is set
|
|
*/
|
|
public boolean hasItems() {
|
|
return (bitField0_ & 0x00000004) != 0;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated .ItemTpl Items = 2;</code>
|
|
* @return this
|
|
*/
|
|
public CharDatingGiftSendReq clearItems() {
|
|
bitField0_ &= ~0x00000004;
|
|
items.clear();
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated .ItemTpl Items = 2;</code>
|
|
*
|
|
* This method returns the internal storage object without modifying any has state.
|
|
* The returned object should not be modified and be treated as read-only.
|
|
*
|
|
* Use {@link #getMutableItems()} if you want to modify it.
|
|
*
|
|
* @return internal storage object for reading
|
|
*/
|
|
public RepeatedMessage<Public.ItemTpl> getItems() {
|
|
return items;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated .ItemTpl Items = 2;</code>
|
|
*
|
|
* This method returns the internal storage object and sets the corresponding
|
|
* has state. The returned object will become part of this message and its
|
|
* contents may be modified as long as the has state is not cleared.
|
|
*
|
|
* @return internal storage object for modifications
|
|
*/
|
|
public RepeatedMessage<Public.ItemTpl> getMutableItems() {
|
|
bitField0_ |= 0x00000004;
|
|
return items;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated .ItemTpl Items = 2;</code>
|
|
* @param value the items to add
|
|
* @return this
|
|
*/
|
|
public CharDatingGiftSendReq addItems(final Public.ItemTpl value) {
|
|
bitField0_ |= 0x00000004;
|
|
items.add(value);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated .ItemTpl Items = 2;</code>
|
|
* @param values the items to add
|
|
* @return this
|
|
*/
|
|
public CharDatingGiftSendReq addAllItems(final Public.ItemTpl... values) {
|
|
bitField0_ |= 0x00000004;
|
|
items.addAll(values);
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public CharDatingGiftSendReq copyFrom(final CharDatingGiftSendReq other) {
|
|
cachedSize = other.cachedSize;
|
|
if ((bitField0_ | other.bitField0_) != 0) {
|
|
bitField0_ = other.bitField0_;
|
|
charId = other.charId;
|
|
nextPackage.copyFrom(other.nextPackage);
|
|
items.copyFrom(other.items);
|
|
}
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public CharDatingGiftSendReq mergeFrom(final CharDatingGiftSendReq other) {
|
|
if (other.isEmpty()) {
|
|
return this;
|
|
}
|
|
cachedSize = -1;
|
|
if (other.hasCharId()) {
|
|
setCharId(other.charId);
|
|
}
|
|
if (other.hasNextPackage()) {
|
|
getMutableNextPackage().copyFrom(other.nextPackage);
|
|
}
|
|
if (other.hasItems()) {
|
|
getMutableItems().addAll(other.items);
|
|
}
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public CharDatingGiftSendReq clear() {
|
|
if (isEmpty()) {
|
|
return this;
|
|
}
|
|
cachedSize = -1;
|
|
bitField0_ = 0;
|
|
charId = 0;
|
|
nextPackage.clear();
|
|
items.clear();
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public CharDatingGiftSendReq clearQuick() {
|
|
if (isEmpty()) {
|
|
return this;
|
|
}
|
|
cachedSize = -1;
|
|
bitField0_ = 0;
|
|
nextPackage.clear();
|
|
items.clearQuick();
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(Object o) {
|
|
if (o == this) {
|
|
return true;
|
|
}
|
|
if (!(o instanceof CharDatingGiftSendReq)) {
|
|
return false;
|
|
}
|
|
CharDatingGiftSendReq other = (CharDatingGiftSendReq) o;
|
|
return bitField0_ == other.bitField0_
|
|
&& (!hasCharId() || charId == other.charId)
|
|
&& (!hasNextPackage() || nextPackage.equals(other.nextPackage))
|
|
&& (!hasItems() || items.equals(other.items));
|
|
}
|
|
|
|
@Override
|
|
public void writeTo(final ProtoSink output) throws IOException {
|
|
if ((bitField0_ & 0x00000001) != 0) {
|
|
output.writeRawByte((byte) 8);
|
|
output.writeUInt32NoTag(charId);
|
|
}
|
|
if ((bitField0_ & 0x00000002) != 0) {
|
|
output.writeRawLittleEndian16((short) 32762);
|
|
output.writeBytesNoTag(nextPackage);
|
|
}
|
|
if ((bitField0_ & 0x00000004) != 0) {
|
|
for (int i = 0; i < items.length(); i++) {
|
|
output.writeRawByte((byte) 18);
|
|
output.writeMessageNoTag(items.get(i));
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected int computeSerializedSize() {
|
|
int size = 0;
|
|
if ((bitField0_ & 0x00000001) != 0) {
|
|
size += 1 + ProtoSink.computeUInt32SizeNoTag(charId);
|
|
}
|
|
if ((bitField0_ & 0x00000002) != 0) {
|
|
size += 2 + ProtoSink.computeBytesSizeNoTag(nextPackage);
|
|
}
|
|
if ((bitField0_ & 0x00000004) != 0) {
|
|
size += (1 * items.length()) + ProtoSink.computeRepeatedMessageSizeNoTag(items);
|
|
}
|
|
return size;
|
|
}
|
|
|
|
@Override
|
|
@SuppressWarnings("fallthrough")
|
|
public CharDatingGiftSendReq mergeFrom(final ProtoSource input) throws IOException {
|
|
// Enabled Fall-Through Optimization (QuickBuffers)
|
|
int tag = input.readTag();
|
|
while (true) {
|
|
switch (tag) {
|
|
case 8: {
|
|
// charId
|
|
charId = input.readUInt32();
|
|
bitField0_ |= 0x00000001;
|
|
tag = input.readTag();
|
|
if (tag != 16378) {
|
|
break;
|
|
}
|
|
}
|
|
case 16378: {
|
|
// nextPackage
|
|
input.readBytes(nextPackage);
|
|
bitField0_ |= 0x00000002;
|
|
tag = input.readTag();
|
|
if (tag != 18) {
|
|
break;
|
|
}
|
|
}
|
|
case 18: {
|
|
// items
|
|
tag = input.readRepeatedMessage(items, tag);
|
|
bitField0_ |= 0x00000004;
|
|
if (tag != 0) {
|
|
break;
|
|
}
|
|
}
|
|
case 0: {
|
|
return this;
|
|
}
|
|
default: {
|
|
if (!input.skipField(tag)) {
|
|
return this;
|
|
}
|
|
tag = input.readTag();
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void writeTo(final JsonSink output) throws IOException {
|
|
output.beginObject();
|
|
if ((bitField0_ & 0x00000001) != 0) {
|
|
output.writeUInt32(FieldNames.charId, charId);
|
|
}
|
|
if ((bitField0_ & 0x00000002) != 0) {
|
|
output.writeBytes(FieldNames.nextPackage, nextPackage);
|
|
}
|
|
if ((bitField0_ & 0x00000004) != 0) {
|
|
output.writeRepeatedMessage(FieldNames.items, items);
|
|
}
|
|
output.endObject();
|
|
}
|
|
|
|
@Override
|
|
public CharDatingGiftSendReq mergeFrom(final JsonSource input) throws IOException {
|
|
if (!input.beginObject()) {
|
|
return this;
|
|
}
|
|
while (!input.isAtEnd()) {
|
|
switch (input.readFieldHash()) {
|
|
case 2017200945: {
|
|
if (input.isAtField(FieldNames.charId)) {
|
|
if (!input.trySkipNullValue()) {
|
|
charId = input.readUInt32();
|
|
bitField0_ |= 0x00000001;
|
|
}
|
|
} else {
|
|
input.skipUnknownField();
|
|
}
|
|
break;
|
|
}
|
|
case -2082324045: {
|
|
if (input.isAtField(FieldNames.nextPackage)) {
|
|
if (!input.trySkipNullValue()) {
|
|
input.readBytes(nextPackage);
|
|
bitField0_ |= 0x00000002;
|
|
}
|
|
} else {
|
|
input.skipUnknownField();
|
|
}
|
|
break;
|
|
}
|
|
case 70973344: {
|
|
if (input.isAtField(FieldNames.items)) {
|
|
if (!input.trySkipNullValue()) {
|
|
input.readRepeatedMessage(items);
|
|
bitField0_ |= 0x00000004;
|
|
}
|
|
} else {
|
|
input.skipUnknownField();
|
|
}
|
|
break;
|
|
}
|
|
default: {
|
|
input.skipUnknownField();
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
input.endObject();
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public CharDatingGiftSendReq clone() {
|
|
return new CharDatingGiftSendReq().copyFrom(this);
|
|
}
|
|
|
|
@Override
|
|
public boolean isEmpty() {
|
|
return ((bitField0_) == 0);
|
|
}
|
|
|
|
public static CharDatingGiftSendReq parseFrom(final byte[] data) throws
|
|
InvalidProtocolBufferException {
|
|
return ProtoMessage.mergeFrom(new CharDatingGiftSendReq(), data).checkInitialized();
|
|
}
|
|
|
|
public static CharDatingGiftSendReq parseFrom(final ProtoSource input) throws IOException {
|
|
return ProtoMessage.mergeFrom(new CharDatingGiftSendReq(), input).checkInitialized();
|
|
}
|
|
|
|
public static CharDatingGiftSendReq parseFrom(final JsonSource input) throws IOException {
|
|
return ProtoMessage.mergeFrom(new CharDatingGiftSendReq(), input).checkInitialized();
|
|
}
|
|
|
|
/**
|
|
* @return factory for creating CharDatingGiftSendReq messages
|
|
*/
|
|
public static MessageFactory<CharDatingGiftSendReq> getFactory() {
|
|
return CharDatingGiftSendReqFactory.INSTANCE;
|
|
}
|
|
|
|
private enum CharDatingGiftSendReqFactory implements MessageFactory<CharDatingGiftSendReq> {
|
|
INSTANCE;
|
|
|
|
@Override
|
|
public CharDatingGiftSendReq create() {
|
|
return CharDatingGiftSendReq.newInstance();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Contains name constants used for serializing JSON
|
|
*/
|
|
static class FieldNames {
|
|
static final FieldName charId = FieldName.forField("CharId");
|
|
|
|
static final FieldName nextPackage = FieldName.forField("NextPackage");
|
|
|
|
static final FieldName items = FieldName.forField("Items");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Protobuf type {@code CharDatingGiftSendResp}
|
|
*/
|
|
public static final class CharDatingGiftSendResp extends ProtoMessage<CharDatingGiftSendResp> implements Cloneable {
|
|
private static final long serialVersionUID = 0L;
|
|
|
|
/**
|
|
* <code>optional .AffinityInfo Info = 1;</code>
|
|
*/
|
|
private final Public.AffinityInfo info = Public.AffinityInfo.newInstance();
|
|
|
|
/**
|
|
* <code>optional .ChangeInfo Change = 2;</code>
|
|
*/
|
|
private final Public.ChangeInfo change = Public.ChangeInfo.newInstance();
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
*/
|
|
private final RepeatedByte nextPackage = RepeatedByte.newEmptyInstance();
|
|
|
|
/**
|
|
* <code>repeated .ItemTpl Show = 3;</code>
|
|
*/
|
|
private final RepeatedMessage<Public.ItemTpl> show = RepeatedMessage.newEmptyInstance(Public.ItemTpl.getFactory());
|
|
|
|
private CharDatingGiftSendResp() {
|
|
}
|
|
|
|
/**
|
|
* @return a new empty instance of {@code CharDatingGiftSendResp}
|
|
*/
|
|
public static CharDatingGiftSendResp newInstance() {
|
|
return new CharDatingGiftSendResp();
|
|
}
|
|
|
|
/**
|
|
* <code>optional .AffinityInfo Info = 1;</code>
|
|
* @return whether the info field is set
|
|
*/
|
|
public boolean hasInfo() {
|
|
return (bitField0_ & 0x00000001) != 0;
|
|
}
|
|
|
|
/**
|
|
* <code>optional .AffinityInfo Info = 1;</code>
|
|
* @return this
|
|
*/
|
|
public CharDatingGiftSendResp clearInfo() {
|
|
bitField0_ &= ~0x00000001;
|
|
info.clear();
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional .AffinityInfo Info = 1;</code>
|
|
*
|
|
* This method returns the internal storage object without modifying any has state.
|
|
* The returned object should not be modified and be treated as read-only.
|
|
*
|
|
* Use {@link #getMutableInfo()} if you want to modify it.
|
|
*
|
|
* @return internal storage object for reading
|
|
*/
|
|
public Public.AffinityInfo getInfo() {
|
|
return info;
|
|
}
|
|
|
|
/**
|
|
* <code>optional .AffinityInfo Info = 1;</code>
|
|
*
|
|
* This method returns the internal storage object and sets the corresponding
|
|
* has state. The returned object will become part of this message and its
|
|
* contents may be modified as long as the has state is not cleared.
|
|
*
|
|
* @return internal storage object for modifications
|
|
*/
|
|
public Public.AffinityInfo getMutableInfo() {
|
|
bitField0_ |= 0x00000001;
|
|
return info;
|
|
}
|
|
|
|
/**
|
|
* <code>optional .AffinityInfo Info = 1;</code>
|
|
* @param value the info to set
|
|
* @return this
|
|
*/
|
|
public CharDatingGiftSendResp setInfo(final Public.AffinityInfo value) {
|
|
bitField0_ |= 0x00000001;
|
|
info.copyFrom(value);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional .ChangeInfo Change = 2;</code>
|
|
* @return whether the change field is set
|
|
*/
|
|
public boolean hasChange() {
|
|
return (bitField0_ & 0x00000002) != 0;
|
|
}
|
|
|
|
/**
|
|
* <code>optional .ChangeInfo Change = 2;</code>
|
|
* @return this
|
|
*/
|
|
public CharDatingGiftSendResp clearChange() {
|
|
bitField0_ &= ~0x00000002;
|
|
change.clear();
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional .ChangeInfo Change = 2;</code>
|
|
*
|
|
* This method returns the internal storage object without modifying any has state.
|
|
* The returned object should not be modified and be treated as read-only.
|
|
*
|
|
* Use {@link #getMutableChange()} if you want to modify it.
|
|
*
|
|
* @return internal storage object for reading
|
|
*/
|
|
public Public.ChangeInfo getChange() {
|
|
return change;
|
|
}
|
|
|
|
/**
|
|
* <code>optional .ChangeInfo Change = 2;</code>
|
|
*
|
|
* This method returns the internal storage object and sets the corresponding
|
|
* has state. The returned object will become part of this message and its
|
|
* contents may be modified as long as the has state is not cleared.
|
|
*
|
|
* @return internal storage object for modifications
|
|
*/
|
|
public Public.ChangeInfo getMutableChange() {
|
|
bitField0_ |= 0x00000002;
|
|
return change;
|
|
}
|
|
|
|
/**
|
|
* <code>optional .ChangeInfo Change = 2;</code>
|
|
* @param value the change to set
|
|
* @return this
|
|
*/
|
|
public CharDatingGiftSendResp setChange(final Public.ChangeInfo value) {
|
|
bitField0_ |= 0x00000002;
|
|
change.copyFrom(value);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
* @return whether the nextPackage field is set
|
|
*/
|
|
public boolean hasNextPackage() {
|
|
return (bitField0_ & 0x00000004) != 0;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
* @return this
|
|
*/
|
|
public CharDatingGiftSendResp clearNextPackage() {
|
|
bitField0_ &= ~0x00000004;
|
|
nextPackage.clear();
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
*
|
|
* This method returns the internal storage object without modifying any has state.
|
|
* The returned object should not be modified and be treated as read-only.
|
|
*
|
|
* Use {@link #getMutableNextPackage()} if you want to modify it.
|
|
*
|
|
* @return internal storage object for reading
|
|
*/
|
|
public RepeatedByte getNextPackage() {
|
|
return nextPackage;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
*
|
|
* This method returns the internal storage object and sets the corresponding
|
|
* has state. The returned object will become part of this message and its
|
|
* contents may be modified as long as the has state is not cleared.
|
|
*
|
|
* @return internal storage object for modifications
|
|
*/
|
|
public RepeatedByte getMutableNextPackage() {
|
|
bitField0_ |= 0x00000004;
|
|
return nextPackage;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
* @param value the nextPackage to add
|
|
* @return this
|
|
*/
|
|
public CharDatingGiftSendResp addNextPackage(final byte value) {
|
|
bitField0_ |= 0x00000004;
|
|
nextPackage.add(value);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
* @param values the nextPackage to add
|
|
* @return this
|
|
*/
|
|
public CharDatingGiftSendResp addAllNextPackage(final byte... values) {
|
|
bitField0_ |= 0x00000004;
|
|
nextPackage.addAll(values);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
* @param values the nextPackage to set
|
|
* @return this
|
|
*/
|
|
public CharDatingGiftSendResp setNextPackage(final byte... values) {
|
|
bitField0_ |= 0x00000004;
|
|
nextPackage.copyFrom(values);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated .ItemTpl Show = 3;</code>
|
|
* @return whether the show field is set
|
|
*/
|
|
public boolean hasShow() {
|
|
return (bitField0_ & 0x00000008) != 0;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated .ItemTpl Show = 3;</code>
|
|
* @return this
|
|
*/
|
|
public CharDatingGiftSendResp clearShow() {
|
|
bitField0_ &= ~0x00000008;
|
|
show.clear();
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated .ItemTpl Show = 3;</code>
|
|
*
|
|
* This method returns the internal storage object without modifying any has state.
|
|
* The returned object should not be modified and be treated as read-only.
|
|
*
|
|
* Use {@link #getMutableShow()} if you want to modify it.
|
|
*
|
|
* @return internal storage object for reading
|
|
*/
|
|
public RepeatedMessage<Public.ItemTpl> getShow() {
|
|
return show;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated .ItemTpl Show = 3;</code>
|
|
*
|
|
* This method returns the internal storage object and sets the corresponding
|
|
* has state. The returned object will become part of this message and its
|
|
* contents may be modified as long as the has state is not cleared.
|
|
*
|
|
* @return internal storage object for modifications
|
|
*/
|
|
public RepeatedMessage<Public.ItemTpl> getMutableShow() {
|
|
bitField0_ |= 0x00000008;
|
|
return show;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated .ItemTpl Show = 3;</code>
|
|
* @param value the show to add
|
|
* @return this
|
|
*/
|
|
public CharDatingGiftSendResp addShow(final Public.ItemTpl value) {
|
|
bitField0_ |= 0x00000008;
|
|
show.add(value);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated .ItemTpl Show = 3;</code>
|
|
* @param values the show to add
|
|
* @return this
|
|
*/
|
|
public CharDatingGiftSendResp addAllShow(final Public.ItemTpl... values) {
|
|
bitField0_ |= 0x00000008;
|
|
show.addAll(values);
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public CharDatingGiftSendResp copyFrom(final CharDatingGiftSendResp other) {
|
|
cachedSize = other.cachedSize;
|
|
if ((bitField0_ | other.bitField0_) != 0) {
|
|
bitField0_ = other.bitField0_;
|
|
info.copyFrom(other.info);
|
|
change.copyFrom(other.change);
|
|
nextPackage.copyFrom(other.nextPackage);
|
|
show.copyFrom(other.show);
|
|
}
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public CharDatingGiftSendResp mergeFrom(final CharDatingGiftSendResp other) {
|
|
if (other.isEmpty()) {
|
|
return this;
|
|
}
|
|
cachedSize = -1;
|
|
if (other.hasInfo()) {
|
|
getMutableInfo().mergeFrom(other.info);
|
|
}
|
|
if (other.hasChange()) {
|
|
getMutableChange().mergeFrom(other.change);
|
|
}
|
|
if (other.hasNextPackage()) {
|
|
getMutableNextPackage().copyFrom(other.nextPackage);
|
|
}
|
|
if (other.hasShow()) {
|
|
getMutableShow().addAll(other.show);
|
|
}
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public CharDatingGiftSendResp clear() {
|
|
if (isEmpty()) {
|
|
return this;
|
|
}
|
|
cachedSize = -1;
|
|
bitField0_ = 0;
|
|
info.clear();
|
|
change.clear();
|
|
nextPackage.clear();
|
|
show.clear();
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public CharDatingGiftSendResp clearQuick() {
|
|
if (isEmpty()) {
|
|
return this;
|
|
}
|
|
cachedSize = -1;
|
|
bitField0_ = 0;
|
|
info.clearQuick();
|
|
change.clearQuick();
|
|
nextPackage.clear();
|
|
show.clearQuick();
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(Object o) {
|
|
if (o == this) {
|
|
return true;
|
|
}
|
|
if (!(o instanceof CharDatingGiftSendResp)) {
|
|
return false;
|
|
}
|
|
CharDatingGiftSendResp other = (CharDatingGiftSendResp) o;
|
|
return bitField0_ == other.bitField0_
|
|
&& (!hasInfo() || info.equals(other.info))
|
|
&& (!hasChange() || change.equals(other.change))
|
|
&& (!hasNextPackage() || nextPackage.equals(other.nextPackage))
|
|
&& (!hasShow() || show.equals(other.show));
|
|
}
|
|
|
|
@Override
|
|
public void writeTo(final ProtoSink output) throws IOException {
|
|
if ((bitField0_ & 0x00000001) != 0) {
|
|
output.writeRawByte((byte) 10);
|
|
output.writeMessageNoTag(info);
|
|
}
|
|
if ((bitField0_ & 0x00000002) != 0) {
|
|
output.writeRawByte((byte) 18);
|
|
output.writeMessageNoTag(change);
|
|
}
|
|
if ((bitField0_ & 0x00000004) != 0) {
|
|
output.writeRawLittleEndian16((short) 32762);
|
|
output.writeBytesNoTag(nextPackage);
|
|
}
|
|
if ((bitField0_ & 0x00000008) != 0) {
|
|
for (int i = 0; i < show.length(); i++) {
|
|
output.writeRawByte((byte) 26);
|
|
output.writeMessageNoTag(show.get(i));
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected int computeSerializedSize() {
|
|
int size = 0;
|
|
if ((bitField0_ & 0x00000001) != 0) {
|
|
size += 1 + ProtoSink.computeMessageSizeNoTag(info);
|
|
}
|
|
if ((bitField0_ & 0x00000002) != 0) {
|
|
size += 1 + ProtoSink.computeMessageSizeNoTag(change);
|
|
}
|
|
if ((bitField0_ & 0x00000004) != 0) {
|
|
size += 2 + ProtoSink.computeBytesSizeNoTag(nextPackage);
|
|
}
|
|
if ((bitField0_ & 0x00000008) != 0) {
|
|
size += (1 * show.length()) + ProtoSink.computeRepeatedMessageSizeNoTag(show);
|
|
}
|
|
return size;
|
|
}
|
|
|
|
@Override
|
|
@SuppressWarnings("fallthrough")
|
|
public CharDatingGiftSendResp mergeFrom(final ProtoSource input) throws IOException {
|
|
// Enabled Fall-Through Optimization (QuickBuffers)
|
|
int tag = input.readTag();
|
|
while (true) {
|
|
switch (tag) {
|
|
case 10: {
|
|
// info
|
|
input.readMessage(info);
|
|
bitField0_ |= 0x00000001;
|
|
tag = input.readTag();
|
|
if (tag != 18) {
|
|
break;
|
|
}
|
|
}
|
|
case 18: {
|
|
// change
|
|
input.readMessage(change);
|
|
bitField0_ |= 0x00000002;
|
|
tag = input.readTag();
|
|
if (tag != 16378) {
|
|
break;
|
|
}
|
|
}
|
|
case 16378: {
|
|
// nextPackage
|
|
input.readBytes(nextPackage);
|
|
bitField0_ |= 0x00000004;
|
|
tag = input.readTag();
|
|
if (tag != 26) {
|
|
break;
|
|
}
|
|
}
|
|
case 26: {
|
|
// show
|
|
tag = input.readRepeatedMessage(show, tag);
|
|
bitField0_ |= 0x00000008;
|
|
if (tag != 0) {
|
|
break;
|
|
}
|
|
}
|
|
case 0: {
|
|
return this;
|
|
}
|
|
default: {
|
|
if (!input.skipField(tag)) {
|
|
return this;
|
|
}
|
|
tag = input.readTag();
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void writeTo(final JsonSink output) throws IOException {
|
|
output.beginObject();
|
|
if ((bitField0_ & 0x00000001) != 0) {
|
|
output.writeMessage(FieldNames.info, info);
|
|
}
|
|
if ((bitField0_ & 0x00000002) != 0) {
|
|
output.writeMessage(FieldNames.change, change);
|
|
}
|
|
if ((bitField0_ & 0x00000004) != 0) {
|
|
output.writeBytes(FieldNames.nextPackage, nextPackage);
|
|
}
|
|
if ((bitField0_ & 0x00000008) != 0) {
|
|
output.writeRepeatedMessage(FieldNames.show, show);
|
|
}
|
|
output.endObject();
|
|
}
|
|
|
|
@Override
|
|
public CharDatingGiftSendResp mergeFrom(final JsonSource input) throws IOException {
|
|
if (!input.beginObject()) {
|
|
return this;
|
|
}
|
|
while (!input.isAtEnd()) {
|
|
switch (input.readFieldHash()) {
|
|
case 2283726: {
|
|
if (input.isAtField(FieldNames.info)) {
|
|
if (!input.trySkipNullValue()) {
|
|
input.readMessage(info);
|
|
bitField0_ |= 0x00000001;
|
|
}
|
|
} else {
|
|
input.skipUnknownField();
|
|
}
|
|
break;
|
|
}
|
|
case 2017198032: {
|
|
if (input.isAtField(FieldNames.change)) {
|
|
if (!input.trySkipNullValue()) {
|
|
input.readMessage(change);
|
|
bitField0_ |= 0x00000002;
|
|
}
|
|
} else {
|
|
input.skipUnknownField();
|
|
}
|
|
break;
|
|
}
|
|
case -2082324045: {
|
|
if (input.isAtField(FieldNames.nextPackage)) {
|
|
if (!input.trySkipNullValue()) {
|
|
input.readBytes(nextPackage);
|
|
bitField0_ |= 0x00000004;
|
|
}
|
|
} else {
|
|
input.skipUnknownField();
|
|
}
|
|
break;
|
|
}
|
|
case 2576157: {
|
|
if (input.isAtField(FieldNames.show)) {
|
|
if (!input.trySkipNullValue()) {
|
|
input.readRepeatedMessage(show);
|
|
bitField0_ |= 0x00000008;
|
|
}
|
|
} else {
|
|
input.skipUnknownField();
|
|
}
|
|
break;
|
|
}
|
|
default: {
|
|
input.skipUnknownField();
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
input.endObject();
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public CharDatingGiftSendResp clone() {
|
|
return new CharDatingGiftSendResp().copyFrom(this);
|
|
}
|
|
|
|
@Override
|
|
public boolean isEmpty() {
|
|
return ((bitField0_) == 0);
|
|
}
|
|
|
|
public static CharDatingGiftSendResp parseFrom(final byte[] data) throws
|
|
InvalidProtocolBufferException {
|
|
return ProtoMessage.mergeFrom(new CharDatingGiftSendResp(), data).checkInitialized();
|
|
}
|
|
|
|
public static CharDatingGiftSendResp parseFrom(final ProtoSource input) throws IOException {
|
|
return ProtoMessage.mergeFrom(new CharDatingGiftSendResp(), input).checkInitialized();
|
|
}
|
|
|
|
public static CharDatingGiftSendResp parseFrom(final JsonSource input) throws IOException {
|
|
return ProtoMessage.mergeFrom(new CharDatingGiftSendResp(), input).checkInitialized();
|
|
}
|
|
|
|
/**
|
|
* @return factory for creating CharDatingGiftSendResp messages
|
|
*/
|
|
public static MessageFactory<CharDatingGiftSendResp> getFactory() {
|
|
return CharDatingGiftSendRespFactory.INSTANCE;
|
|
}
|
|
|
|
private enum CharDatingGiftSendRespFactory implements MessageFactory<CharDatingGiftSendResp> {
|
|
INSTANCE;
|
|
|
|
@Override
|
|
public CharDatingGiftSendResp create() {
|
|
return CharDatingGiftSendResp.newInstance();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Contains name constants used for serializing JSON
|
|
*/
|
|
static class FieldNames {
|
|
static final FieldName info = FieldName.forField("Info");
|
|
|
|
static final FieldName change = FieldName.forField("Change");
|
|
|
|
static final FieldName nextPackage = FieldName.forField("NextPackage");
|
|
|
|
static final FieldName show = FieldName.forField("Show");
|
|
}
|
|
}
|
|
}
|