mirror of
https://github.com/Melledy/Nebula.git
synced 2025-12-16 06:15:20 +01:00
1047 lines
28 KiB
Java
1047 lines
28 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 DiscStrengthen {
|
|
/**
|
|
* Protobuf type {@code DiscStrengthenReq}
|
|
*/
|
|
public static final class DiscStrengthenReq extends ProtoMessage<DiscStrengthenReq> implements Cloneable {
|
|
private static final long serialVersionUID = 0L;
|
|
|
|
/**
|
|
* <code>optional uint32 Id = 1;</code>
|
|
*/
|
|
private int id;
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
*/
|
|
private final RepeatedByte nextPackage = RepeatedByte.newEmptyInstance();
|
|
|
|
/**
|
|
* <code>repeated .ItemInfo Items = 2;</code>
|
|
*/
|
|
private final RepeatedMessage<Public.ItemInfo> items = RepeatedMessage.newEmptyInstance(Public.ItemInfo.getFactory());
|
|
|
|
private DiscStrengthenReq() {
|
|
}
|
|
|
|
/**
|
|
* @return a new empty instance of {@code DiscStrengthenReq}
|
|
*/
|
|
public static DiscStrengthenReq newInstance() {
|
|
return new DiscStrengthenReq();
|
|
}
|
|
|
|
/**
|
|
* <code>optional uint32 Id = 1;</code>
|
|
* @return whether the id field is set
|
|
*/
|
|
public boolean hasId() {
|
|
return (bitField0_ & 0x00000001) != 0;
|
|
}
|
|
|
|
/**
|
|
* <code>optional uint32 Id = 1;</code>
|
|
* @return this
|
|
*/
|
|
public DiscStrengthenReq clearId() {
|
|
bitField0_ &= ~0x00000001;
|
|
id = 0;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional uint32 Id = 1;</code>
|
|
* @return the id
|
|
*/
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
|
|
/**
|
|
* <code>optional uint32 Id = 1;</code>
|
|
* @param value the id to set
|
|
* @return this
|
|
*/
|
|
public DiscStrengthenReq setId(final int value) {
|
|
bitField0_ |= 0x00000001;
|
|
id = 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 DiscStrengthenReq 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 DiscStrengthenReq 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 DiscStrengthenReq 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 DiscStrengthenReq setNextPackage(final byte... values) {
|
|
bitField0_ |= 0x00000002;
|
|
nextPackage.copyFrom(values);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated .ItemInfo Items = 2;</code>
|
|
* @return whether the items field is set
|
|
*/
|
|
public boolean hasItems() {
|
|
return (bitField0_ & 0x00000004) != 0;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated .ItemInfo Items = 2;</code>
|
|
* @return this
|
|
*/
|
|
public DiscStrengthenReq clearItems() {
|
|
bitField0_ &= ~0x00000004;
|
|
items.clear();
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated .ItemInfo 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.ItemInfo> getItems() {
|
|
return items;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated .ItemInfo 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.ItemInfo> getMutableItems() {
|
|
bitField0_ |= 0x00000004;
|
|
return items;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated .ItemInfo Items = 2;</code>
|
|
* @param value the items to add
|
|
* @return this
|
|
*/
|
|
public DiscStrengthenReq addItems(final Public.ItemInfo value) {
|
|
bitField0_ |= 0x00000004;
|
|
items.add(value);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated .ItemInfo Items = 2;</code>
|
|
* @param values the items to add
|
|
* @return this
|
|
*/
|
|
public DiscStrengthenReq addAllItems(final Public.ItemInfo... values) {
|
|
bitField0_ |= 0x00000004;
|
|
items.addAll(values);
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public DiscStrengthenReq copyFrom(final DiscStrengthenReq other) {
|
|
cachedSize = other.cachedSize;
|
|
if ((bitField0_ | other.bitField0_) != 0) {
|
|
bitField0_ = other.bitField0_;
|
|
id = other.id;
|
|
nextPackage.copyFrom(other.nextPackage);
|
|
items.copyFrom(other.items);
|
|
}
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public DiscStrengthenReq mergeFrom(final DiscStrengthenReq other) {
|
|
if (other.isEmpty()) {
|
|
return this;
|
|
}
|
|
cachedSize = -1;
|
|
if (other.hasId()) {
|
|
setId(other.id);
|
|
}
|
|
if (other.hasNextPackage()) {
|
|
getMutableNextPackage().copyFrom(other.nextPackage);
|
|
}
|
|
if (other.hasItems()) {
|
|
getMutableItems().addAll(other.items);
|
|
}
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public DiscStrengthenReq clear() {
|
|
if (isEmpty()) {
|
|
return this;
|
|
}
|
|
cachedSize = -1;
|
|
bitField0_ = 0;
|
|
id = 0;
|
|
nextPackage.clear();
|
|
items.clear();
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public DiscStrengthenReq 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 DiscStrengthenReq)) {
|
|
return false;
|
|
}
|
|
DiscStrengthenReq other = (DiscStrengthenReq) o;
|
|
return bitField0_ == other.bitField0_
|
|
&& (!hasId() || id == other.id)
|
|
&& (!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(id);
|
|
}
|
|
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(id);
|
|
}
|
|
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 DiscStrengthenReq mergeFrom(final ProtoSource input) throws IOException {
|
|
// Enabled Fall-Through Optimization (QuickBuffers)
|
|
int tag = input.readTag();
|
|
while (true) {
|
|
switch (tag) {
|
|
case 8: {
|
|
// id
|
|
id = 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.id, id);
|
|
}
|
|
if ((bitField0_ & 0x00000002) != 0) {
|
|
output.writeBytes(FieldNames.nextPackage, nextPackage);
|
|
}
|
|
if ((bitField0_ & 0x00000004) != 0) {
|
|
output.writeRepeatedMessage(FieldNames.items, items);
|
|
}
|
|
output.endObject();
|
|
}
|
|
|
|
@Override
|
|
public DiscStrengthenReq mergeFrom(final JsonSource input) throws IOException {
|
|
if (!input.beginObject()) {
|
|
return this;
|
|
}
|
|
while (!input.isAtEnd()) {
|
|
switch (input.readFieldHash()) {
|
|
case 2363: {
|
|
if (input.isAtField(FieldNames.id)) {
|
|
if (!input.trySkipNullValue()) {
|
|
id = 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 DiscStrengthenReq clone() {
|
|
return new DiscStrengthenReq().copyFrom(this);
|
|
}
|
|
|
|
@Override
|
|
public boolean isEmpty() {
|
|
return ((bitField0_) == 0);
|
|
}
|
|
|
|
public static DiscStrengthenReq parseFrom(final byte[] data) throws
|
|
InvalidProtocolBufferException {
|
|
return ProtoMessage.mergeFrom(new DiscStrengthenReq(), data).checkInitialized();
|
|
}
|
|
|
|
public static DiscStrengthenReq parseFrom(final ProtoSource input) throws IOException {
|
|
return ProtoMessage.mergeFrom(new DiscStrengthenReq(), input).checkInitialized();
|
|
}
|
|
|
|
public static DiscStrengthenReq parseFrom(final JsonSource input) throws IOException {
|
|
return ProtoMessage.mergeFrom(new DiscStrengthenReq(), input).checkInitialized();
|
|
}
|
|
|
|
/**
|
|
* @return factory for creating DiscStrengthenReq messages
|
|
*/
|
|
public static MessageFactory<DiscStrengthenReq> getFactory() {
|
|
return DiscStrengthenReqFactory.INSTANCE;
|
|
}
|
|
|
|
private enum DiscStrengthenReqFactory implements MessageFactory<DiscStrengthenReq> {
|
|
INSTANCE;
|
|
|
|
@Override
|
|
public DiscStrengthenReq create() {
|
|
return DiscStrengthenReq.newInstance();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Contains name constants used for serializing JSON
|
|
*/
|
|
static class FieldNames {
|
|
static final FieldName id = FieldName.forField("Id");
|
|
|
|
static final FieldName nextPackage = FieldName.forField("NextPackage");
|
|
|
|
static final FieldName items = FieldName.forField("Items");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Protobuf type {@code DiscStrengthenResp}
|
|
*/
|
|
public static final class DiscStrengthenResp extends ProtoMessage<DiscStrengthenResp> implements Cloneable {
|
|
private static final long serialVersionUID = 0L;
|
|
|
|
/**
|
|
* <code>optional uint32 Level = 1;</code>
|
|
*/
|
|
private int level;
|
|
|
|
/**
|
|
* <code>optional uint32 Exp = 2;</code>
|
|
*/
|
|
private int exp;
|
|
|
|
/**
|
|
* <code>optional .ChangeInfo Change = 3;</code>
|
|
*/
|
|
private final Public.ChangeInfo change = Public.ChangeInfo.newInstance();
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
*/
|
|
private final RepeatedByte nextPackage = RepeatedByte.newEmptyInstance();
|
|
|
|
private DiscStrengthenResp() {
|
|
}
|
|
|
|
/**
|
|
* @return a new empty instance of {@code DiscStrengthenResp}
|
|
*/
|
|
public static DiscStrengthenResp newInstance() {
|
|
return new DiscStrengthenResp();
|
|
}
|
|
|
|
/**
|
|
* <code>optional uint32 Level = 1;</code>
|
|
* @return whether the level field is set
|
|
*/
|
|
public boolean hasLevel() {
|
|
return (bitField0_ & 0x00000001) != 0;
|
|
}
|
|
|
|
/**
|
|
* <code>optional uint32 Level = 1;</code>
|
|
* @return this
|
|
*/
|
|
public DiscStrengthenResp clearLevel() {
|
|
bitField0_ &= ~0x00000001;
|
|
level = 0;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional uint32 Level = 1;</code>
|
|
* @return the level
|
|
*/
|
|
public int getLevel() {
|
|
return level;
|
|
}
|
|
|
|
/**
|
|
* <code>optional uint32 Level = 1;</code>
|
|
* @param value the level to set
|
|
* @return this
|
|
*/
|
|
public DiscStrengthenResp setLevel(final int value) {
|
|
bitField0_ |= 0x00000001;
|
|
level = value;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional uint32 Exp = 2;</code>
|
|
* @return whether the exp field is set
|
|
*/
|
|
public boolean hasExp() {
|
|
return (bitField0_ & 0x00000002) != 0;
|
|
}
|
|
|
|
/**
|
|
* <code>optional uint32 Exp = 2;</code>
|
|
* @return this
|
|
*/
|
|
public DiscStrengthenResp clearExp() {
|
|
bitField0_ &= ~0x00000002;
|
|
exp = 0;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional uint32 Exp = 2;</code>
|
|
* @return the exp
|
|
*/
|
|
public int getExp() {
|
|
return exp;
|
|
}
|
|
|
|
/**
|
|
* <code>optional uint32 Exp = 2;</code>
|
|
* @param value the exp to set
|
|
* @return this
|
|
*/
|
|
public DiscStrengthenResp setExp(final int value) {
|
|
bitField0_ |= 0x00000002;
|
|
exp = value;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional .ChangeInfo Change = 3;</code>
|
|
* @return whether the change field is set
|
|
*/
|
|
public boolean hasChange() {
|
|
return (bitField0_ & 0x00000004) != 0;
|
|
}
|
|
|
|
/**
|
|
* <code>optional .ChangeInfo Change = 3;</code>
|
|
* @return this
|
|
*/
|
|
public DiscStrengthenResp clearChange() {
|
|
bitField0_ &= ~0x00000004;
|
|
change.clear();
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional .ChangeInfo Change = 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 #getMutableChange()} if you want to modify it.
|
|
*
|
|
* @return internal storage object for reading
|
|
*/
|
|
public Public.ChangeInfo getChange() {
|
|
return change;
|
|
}
|
|
|
|
/**
|
|
* <code>optional .ChangeInfo Change = 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 Public.ChangeInfo getMutableChange() {
|
|
bitField0_ |= 0x00000004;
|
|
return change;
|
|
}
|
|
|
|
/**
|
|
* <code>optional .ChangeInfo Change = 3;</code>
|
|
* @param value the change to set
|
|
* @return this
|
|
*/
|
|
public DiscStrengthenResp setChange(final Public.ChangeInfo value) {
|
|
bitField0_ |= 0x00000004;
|
|
change.copyFrom(value);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
* @return whether the nextPackage field is set
|
|
*/
|
|
public boolean hasNextPackage() {
|
|
return (bitField0_ & 0x00000008) != 0;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
* @return this
|
|
*/
|
|
public DiscStrengthenResp clearNextPackage() {
|
|
bitField0_ &= ~0x00000008;
|
|
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_ |= 0x00000008;
|
|
return nextPackage;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
* @param value the nextPackage to add
|
|
* @return this
|
|
*/
|
|
public DiscStrengthenResp addNextPackage(final byte value) {
|
|
bitField0_ |= 0x00000008;
|
|
nextPackage.add(value);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
* @param values the nextPackage to add
|
|
* @return this
|
|
*/
|
|
public DiscStrengthenResp addAllNextPackage(final byte... values) {
|
|
bitField0_ |= 0x00000008;
|
|
nextPackage.addAll(values);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
* @param values the nextPackage to set
|
|
* @return this
|
|
*/
|
|
public DiscStrengthenResp setNextPackage(final byte... values) {
|
|
bitField0_ |= 0x00000008;
|
|
nextPackage.copyFrom(values);
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public DiscStrengthenResp copyFrom(final DiscStrengthenResp other) {
|
|
cachedSize = other.cachedSize;
|
|
if ((bitField0_ | other.bitField0_) != 0) {
|
|
bitField0_ = other.bitField0_;
|
|
level = other.level;
|
|
exp = other.exp;
|
|
change.copyFrom(other.change);
|
|
nextPackage.copyFrom(other.nextPackage);
|
|
}
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public DiscStrengthenResp mergeFrom(final DiscStrengthenResp other) {
|
|
if (other.isEmpty()) {
|
|
return this;
|
|
}
|
|
cachedSize = -1;
|
|
if (other.hasLevel()) {
|
|
setLevel(other.level);
|
|
}
|
|
if (other.hasExp()) {
|
|
setExp(other.exp);
|
|
}
|
|
if (other.hasChange()) {
|
|
getMutableChange().mergeFrom(other.change);
|
|
}
|
|
if (other.hasNextPackage()) {
|
|
getMutableNextPackage().copyFrom(other.nextPackage);
|
|
}
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public DiscStrengthenResp clear() {
|
|
if (isEmpty()) {
|
|
return this;
|
|
}
|
|
cachedSize = -1;
|
|
bitField0_ = 0;
|
|
level = 0;
|
|
exp = 0;
|
|
change.clear();
|
|
nextPackage.clear();
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public DiscStrengthenResp clearQuick() {
|
|
if (isEmpty()) {
|
|
return this;
|
|
}
|
|
cachedSize = -1;
|
|
bitField0_ = 0;
|
|
change.clearQuick();
|
|
nextPackage.clear();
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(Object o) {
|
|
if (o == this) {
|
|
return true;
|
|
}
|
|
if (!(o instanceof DiscStrengthenResp)) {
|
|
return false;
|
|
}
|
|
DiscStrengthenResp other = (DiscStrengthenResp) o;
|
|
return bitField0_ == other.bitField0_
|
|
&& (!hasLevel() || level == other.level)
|
|
&& (!hasExp() || exp == other.exp)
|
|
&& (!hasChange() || change.equals(other.change))
|
|
&& (!hasNextPackage() || nextPackage.equals(other.nextPackage));
|
|
}
|
|
|
|
@Override
|
|
public void writeTo(final ProtoSink output) throws IOException {
|
|
if ((bitField0_ & 0x00000001) != 0) {
|
|
output.writeRawByte((byte) 8);
|
|
output.writeUInt32NoTag(level);
|
|
}
|
|
if ((bitField0_ & 0x00000002) != 0) {
|
|
output.writeRawByte((byte) 16);
|
|
output.writeUInt32NoTag(exp);
|
|
}
|
|
if ((bitField0_ & 0x00000004) != 0) {
|
|
output.writeRawByte((byte) 26);
|
|
output.writeMessageNoTag(change);
|
|
}
|
|
if ((bitField0_ & 0x00000008) != 0) {
|
|
output.writeRawLittleEndian16((short) 32762);
|
|
output.writeBytesNoTag(nextPackage);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected int computeSerializedSize() {
|
|
int size = 0;
|
|
if ((bitField0_ & 0x00000001) != 0) {
|
|
size += 1 + ProtoSink.computeUInt32SizeNoTag(level);
|
|
}
|
|
if ((bitField0_ & 0x00000002) != 0) {
|
|
size += 1 + ProtoSink.computeUInt32SizeNoTag(exp);
|
|
}
|
|
if ((bitField0_ & 0x00000004) != 0) {
|
|
size += 1 + ProtoSink.computeMessageSizeNoTag(change);
|
|
}
|
|
if ((bitField0_ & 0x00000008) != 0) {
|
|
size += 2 + ProtoSink.computeBytesSizeNoTag(nextPackage);
|
|
}
|
|
return size;
|
|
}
|
|
|
|
@Override
|
|
@SuppressWarnings("fallthrough")
|
|
public DiscStrengthenResp mergeFrom(final ProtoSource input) throws IOException {
|
|
// Enabled Fall-Through Optimization (QuickBuffers)
|
|
int tag = input.readTag();
|
|
while (true) {
|
|
switch (tag) {
|
|
case 8: {
|
|
// level
|
|
level = input.readUInt32();
|
|
bitField0_ |= 0x00000001;
|
|
tag = input.readTag();
|
|
if (tag != 16) {
|
|
break;
|
|
}
|
|
}
|
|
case 16: {
|
|
// exp
|
|
exp = input.readUInt32();
|
|
bitField0_ |= 0x00000002;
|
|
tag = input.readTag();
|
|
if (tag != 26) {
|
|
break;
|
|
}
|
|
}
|
|
case 26: {
|
|
// change
|
|
input.readMessage(change);
|
|
bitField0_ |= 0x00000004;
|
|
tag = input.readTag();
|
|
if (tag != 16378) {
|
|
break;
|
|
}
|
|
}
|
|
case 16378: {
|
|
// nextPackage
|
|
input.readBytes(nextPackage);
|
|
bitField0_ |= 0x00000008;
|
|
tag = input.readTag();
|
|
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.level, level);
|
|
}
|
|
if ((bitField0_ & 0x00000002) != 0) {
|
|
output.writeUInt32(FieldNames.exp, exp);
|
|
}
|
|
if ((bitField0_ & 0x00000004) != 0) {
|
|
output.writeMessage(FieldNames.change, change);
|
|
}
|
|
if ((bitField0_ & 0x00000008) != 0) {
|
|
output.writeBytes(FieldNames.nextPackage, nextPackage);
|
|
}
|
|
output.endObject();
|
|
}
|
|
|
|
@Override
|
|
public DiscStrengthenResp mergeFrom(final JsonSource input) throws IOException {
|
|
if (!input.beginObject()) {
|
|
return this;
|
|
}
|
|
while (!input.isAtEnd()) {
|
|
switch (input.readFieldHash()) {
|
|
case 73313124: {
|
|
if (input.isAtField(FieldNames.level)) {
|
|
if (!input.trySkipNullValue()) {
|
|
level = input.readUInt32();
|
|
bitField0_ |= 0x00000001;
|
|
}
|
|
} else {
|
|
input.skipUnknownField();
|
|
}
|
|
break;
|
|
}
|
|
case 70141: {
|
|
if (input.isAtField(FieldNames.exp)) {
|
|
if (!input.trySkipNullValue()) {
|
|
exp = input.readUInt32();
|
|
bitField0_ |= 0x00000002;
|
|
}
|
|
} else {
|
|
input.skipUnknownField();
|
|
}
|
|
break;
|
|
}
|
|
case 2017198032: {
|
|
if (input.isAtField(FieldNames.change)) {
|
|
if (!input.trySkipNullValue()) {
|
|
input.readMessage(change);
|
|
bitField0_ |= 0x00000004;
|
|
}
|
|
} else {
|
|
input.skipUnknownField();
|
|
}
|
|
break;
|
|
}
|
|
case -2082324045: {
|
|
if (input.isAtField(FieldNames.nextPackage)) {
|
|
if (!input.trySkipNullValue()) {
|
|
input.readBytes(nextPackage);
|
|
bitField0_ |= 0x00000008;
|
|
}
|
|
} else {
|
|
input.skipUnknownField();
|
|
}
|
|
break;
|
|
}
|
|
default: {
|
|
input.skipUnknownField();
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
input.endObject();
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public DiscStrengthenResp clone() {
|
|
return new DiscStrengthenResp().copyFrom(this);
|
|
}
|
|
|
|
@Override
|
|
public boolean isEmpty() {
|
|
return ((bitField0_) == 0);
|
|
}
|
|
|
|
public static DiscStrengthenResp parseFrom(final byte[] data) throws
|
|
InvalidProtocolBufferException {
|
|
return ProtoMessage.mergeFrom(new DiscStrengthenResp(), data).checkInitialized();
|
|
}
|
|
|
|
public static DiscStrengthenResp parseFrom(final ProtoSource input) throws IOException {
|
|
return ProtoMessage.mergeFrom(new DiscStrengthenResp(), input).checkInitialized();
|
|
}
|
|
|
|
public static DiscStrengthenResp parseFrom(final JsonSource input) throws IOException {
|
|
return ProtoMessage.mergeFrom(new DiscStrengthenResp(), input).checkInitialized();
|
|
}
|
|
|
|
/**
|
|
* @return factory for creating DiscStrengthenResp messages
|
|
*/
|
|
public static MessageFactory<DiscStrengthenResp> getFactory() {
|
|
return DiscStrengthenRespFactory.INSTANCE;
|
|
}
|
|
|
|
private enum DiscStrengthenRespFactory implements MessageFactory<DiscStrengthenResp> {
|
|
INSTANCE;
|
|
|
|
@Override
|
|
public DiscStrengthenResp create() {
|
|
return DiscStrengthenResp.newInstance();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Contains name constants used for serializing JSON
|
|
*/
|
|
static class FieldNames {
|
|
static final FieldName level = FieldName.forField("Level");
|
|
|
|
static final FieldName exp = FieldName.forField("Exp");
|
|
|
|
static final FieldName change = FieldName.forField("Change");
|
|
|
|
static final FieldName nextPackage = FieldName.forField("NextPackage");
|
|
}
|
|
}
|
|
}
|