mirror of
https://github.com/Melledy/Nebula.git
synced 2025-12-13 12:54:36 +01:00
1181 lines
33 KiB
Java
1181 lines
33 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 DailyInstanceSettle {
|
|
/**
|
|
* Protobuf type {@code DailyInstanceSettleReq}
|
|
*/
|
|
public static final class DailyInstanceSettleReq extends ProtoMessage<DailyInstanceSettleReq> implements Cloneable {
|
|
private static final long serialVersionUID = 0L;
|
|
|
|
/**
|
|
* <code>optional uint32 Star = 1;</code>
|
|
*/
|
|
private int star;
|
|
|
|
/**
|
|
* <code>optional .Events Events = 15;</code>
|
|
*/
|
|
private final Public.Events events = Public.Events.newInstance();
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
*/
|
|
private final RepeatedByte nextPackage = RepeatedByte.newEmptyInstance();
|
|
|
|
private DailyInstanceSettleReq() {
|
|
}
|
|
|
|
/**
|
|
* @return a new empty instance of {@code DailyInstanceSettleReq}
|
|
*/
|
|
public static DailyInstanceSettleReq newInstance() {
|
|
return new DailyInstanceSettleReq();
|
|
}
|
|
|
|
/**
|
|
* <code>optional uint32 Star = 1;</code>
|
|
* @return whether the star field is set
|
|
*/
|
|
public boolean hasStar() {
|
|
return (bitField0_ & 0x00000001) != 0;
|
|
}
|
|
|
|
/**
|
|
* <code>optional uint32 Star = 1;</code>
|
|
* @return this
|
|
*/
|
|
public DailyInstanceSettleReq clearStar() {
|
|
bitField0_ &= ~0x00000001;
|
|
star = 0;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional uint32 Star = 1;</code>
|
|
* @return the star
|
|
*/
|
|
public int getStar() {
|
|
return star;
|
|
}
|
|
|
|
/**
|
|
* <code>optional uint32 Star = 1;</code>
|
|
* @param value the star to set
|
|
* @return this
|
|
*/
|
|
public DailyInstanceSettleReq setStar(final int value) {
|
|
bitField0_ |= 0x00000001;
|
|
star = value;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional .Events Events = 15;</code>
|
|
* @return whether the events field is set
|
|
*/
|
|
public boolean hasEvents() {
|
|
return (bitField0_ & 0x00000002) != 0;
|
|
}
|
|
|
|
/**
|
|
* <code>optional .Events Events = 15;</code>
|
|
* @return this
|
|
*/
|
|
public DailyInstanceSettleReq clearEvents() {
|
|
bitField0_ &= ~0x00000002;
|
|
events.clear();
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional .Events Events = 15;</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 #getMutableEvents()} if you want to modify it.
|
|
*
|
|
* @return internal storage object for reading
|
|
*/
|
|
public Public.Events getEvents() {
|
|
return events;
|
|
}
|
|
|
|
/**
|
|
* <code>optional .Events Events = 15;</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.Events getMutableEvents() {
|
|
bitField0_ |= 0x00000002;
|
|
return events;
|
|
}
|
|
|
|
/**
|
|
* <code>optional .Events Events = 15;</code>
|
|
* @param value the events to set
|
|
* @return this
|
|
*/
|
|
public DailyInstanceSettleReq setEvents(final Public.Events value) {
|
|
bitField0_ |= 0x00000002;
|
|
events.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 DailyInstanceSettleReq 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 DailyInstanceSettleReq 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 DailyInstanceSettleReq 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 DailyInstanceSettleReq setNextPackage(final byte... values) {
|
|
bitField0_ |= 0x00000004;
|
|
nextPackage.copyFrom(values);
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public DailyInstanceSettleReq copyFrom(final DailyInstanceSettleReq other) {
|
|
cachedSize = other.cachedSize;
|
|
if ((bitField0_ | other.bitField0_) != 0) {
|
|
bitField0_ = other.bitField0_;
|
|
star = other.star;
|
|
events.copyFrom(other.events);
|
|
nextPackage.copyFrom(other.nextPackage);
|
|
}
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public DailyInstanceSettleReq mergeFrom(final DailyInstanceSettleReq other) {
|
|
if (other.isEmpty()) {
|
|
return this;
|
|
}
|
|
cachedSize = -1;
|
|
if (other.hasStar()) {
|
|
setStar(other.star);
|
|
}
|
|
if (other.hasEvents()) {
|
|
getMutableEvents().mergeFrom(other.events);
|
|
}
|
|
if (other.hasNextPackage()) {
|
|
getMutableNextPackage().copyFrom(other.nextPackage);
|
|
}
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public DailyInstanceSettleReq clear() {
|
|
if (isEmpty()) {
|
|
return this;
|
|
}
|
|
cachedSize = -1;
|
|
bitField0_ = 0;
|
|
star = 0;
|
|
events.clear();
|
|
nextPackage.clear();
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public DailyInstanceSettleReq clearQuick() {
|
|
if (isEmpty()) {
|
|
return this;
|
|
}
|
|
cachedSize = -1;
|
|
bitField0_ = 0;
|
|
events.clearQuick();
|
|
nextPackage.clear();
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(Object o) {
|
|
if (o == this) {
|
|
return true;
|
|
}
|
|
if (!(o instanceof DailyInstanceSettleReq)) {
|
|
return false;
|
|
}
|
|
DailyInstanceSettleReq other = (DailyInstanceSettleReq) o;
|
|
return bitField0_ == other.bitField0_
|
|
&& (!hasStar() || star == other.star)
|
|
&& (!hasEvents() || events.equals(other.events))
|
|
&& (!hasNextPackage() || nextPackage.equals(other.nextPackage));
|
|
}
|
|
|
|
@Override
|
|
public void writeTo(final ProtoSink output) throws IOException {
|
|
if ((bitField0_ & 0x00000001) != 0) {
|
|
output.writeRawByte((byte) 8);
|
|
output.writeUInt32NoTag(star);
|
|
}
|
|
if ((bitField0_ & 0x00000002) != 0) {
|
|
output.writeRawByte((byte) 122);
|
|
output.writeMessageNoTag(events);
|
|
}
|
|
if ((bitField0_ & 0x00000004) != 0) {
|
|
output.writeRawLittleEndian16((short) 32762);
|
|
output.writeBytesNoTag(nextPackage);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected int computeSerializedSize() {
|
|
int size = 0;
|
|
if ((bitField0_ & 0x00000001) != 0) {
|
|
size += 1 + ProtoSink.computeUInt32SizeNoTag(star);
|
|
}
|
|
if ((bitField0_ & 0x00000002) != 0) {
|
|
size += 1 + ProtoSink.computeMessageSizeNoTag(events);
|
|
}
|
|
if ((bitField0_ & 0x00000004) != 0) {
|
|
size += 2 + ProtoSink.computeBytesSizeNoTag(nextPackage);
|
|
}
|
|
return size;
|
|
}
|
|
|
|
@Override
|
|
@SuppressWarnings("fallthrough")
|
|
public DailyInstanceSettleReq mergeFrom(final ProtoSource input) throws IOException {
|
|
// Enabled Fall-Through Optimization (QuickBuffers)
|
|
int tag = input.readTag();
|
|
while (true) {
|
|
switch (tag) {
|
|
case 8: {
|
|
// star
|
|
star = input.readUInt32();
|
|
bitField0_ |= 0x00000001;
|
|
tag = input.readTag();
|
|
if (tag != 122) {
|
|
break;
|
|
}
|
|
}
|
|
case 122: {
|
|
// events
|
|
input.readMessage(events);
|
|
bitField0_ |= 0x00000002;
|
|
tag = input.readTag();
|
|
if (tag != 16378) {
|
|
break;
|
|
}
|
|
}
|
|
case 16378: {
|
|
// nextPackage
|
|
input.readBytes(nextPackage);
|
|
bitField0_ |= 0x00000004;
|
|
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.star, star);
|
|
}
|
|
if ((bitField0_ & 0x00000002) != 0) {
|
|
output.writeMessage(FieldNames.events, events);
|
|
}
|
|
if ((bitField0_ & 0x00000004) != 0) {
|
|
output.writeBytes(FieldNames.nextPackage, nextPackage);
|
|
}
|
|
output.endObject();
|
|
}
|
|
|
|
@Override
|
|
public DailyInstanceSettleReq mergeFrom(final JsonSource input) throws IOException {
|
|
if (!input.beginObject()) {
|
|
return this;
|
|
}
|
|
while (!input.isAtEnd()) {
|
|
switch (input.readFieldHash()) {
|
|
case 2587250: {
|
|
if (input.isAtField(FieldNames.star)) {
|
|
if (!input.trySkipNullValue()) {
|
|
star = input.readUInt32();
|
|
bitField0_ |= 0x00000001;
|
|
}
|
|
} else {
|
|
input.skipUnknownField();
|
|
}
|
|
break;
|
|
}
|
|
case 2087505209: {
|
|
if (input.isAtField(FieldNames.events)) {
|
|
if (!input.trySkipNullValue()) {
|
|
input.readMessage(events);
|
|
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;
|
|
}
|
|
default: {
|
|
input.skipUnknownField();
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
input.endObject();
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public DailyInstanceSettleReq clone() {
|
|
return new DailyInstanceSettleReq().copyFrom(this);
|
|
}
|
|
|
|
@Override
|
|
public boolean isEmpty() {
|
|
return ((bitField0_) == 0);
|
|
}
|
|
|
|
public static DailyInstanceSettleReq parseFrom(final byte[] data) throws
|
|
InvalidProtocolBufferException {
|
|
return ProtoMessage.mergeFrom(new DailyInstanceSettleReq(), data).checkInitialized();
|
|
}
|
|
|
|
public static DailyInstanceSettleReq parseFrom(final ProtoSource input) throws IOException {
|
|
return ProtoMessage.mergeFrom(new DailyInstanceSettleReq(), input).checkInitialized();
|
|
}
|
|
|
|
public static DailyInstanceSettleReq parseFrom(final JsonSource input) throws IOException {
|
|
return ProtoMessage.mergeFrom(new DailyInstanceSettleReq(), input).checkInitialized();
|
|
}
|
|
|
|
/**
|
|
* @return factory for creating DailyInstanceSettleReq messages
|
|
*/
|
|
public static MessageFactory<DailyInstanceSettleReq> getFactory() {
|
|
return DailyInstanceSettleReqFactory.INSTANCE;
|
|
}
|
|
|
|
private enum DailyInstanceSettleReqFactory implements MessageFactory<DailyInstanceSettleReq> {
|
|
INSTANCE;
|
|
|
|
@Override
|
|
public DailyInstanceSettleReq create() {
|
|
return DailyInstanceSettleReq.newInstance();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Contains name constants used for serializing JSON
|
|
*/
|
|
static class FieldNames {
|
|
static final FieldName star = FieldName.forField("Star");
|
|
|
|
static final FieldName events = FieldName.forField("Events");
|
|
|
|
static final FieldName nextPackage = FieldName.forField("NextPackage");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Protobuf type {@code DailyInstanceSettleResp}
|
|
*/
|
|
public static final class DailyInstanceSettleResp extends ProtoMessage<DailyInstanceSettleResp> implements Cloneable {
|
|
private static final long serialVersionUID = 0L;
|
|
|
|
/**
|
|
* <code>optional uint32 Exp = 3;</code>
|
|
*/
|
|
private int exp;
|
|
|
|
/**
|
|
* <code>optional .ChangeInfo Change = 15;</code>
|
|
*/
|
|
private final Public.ChangeInfo change = Public.ChangeInfo.newInstance();
|
|
|
|
/**
|
|
* <code>optional bytes NextPackage = 2047;</code>
|
|
*/
|
|
private final RepeatedByte nextPackage = RepeatedByte.newEmptyInstance();
|
|
|
|
/**
|
|
* <code>repeated .Item Select = 1;</code>
|
|
*/
|
|
private final RepeatedMessage<Public.Item> select = RepeatedMessage.newEmptyInstance(Public.Item.getFactory());
|
|
|
|
/**
|
|
* <code>repeated .Item First = 2;</code>
|
|
*/
|
|
private final RepeatedMessage<Public.Item> first = RepeatedMessage.newEmptyInstance(Public.Item.getFactory());
|
|
|
|
private DailyInstanceSettleResp() {
|
|
}
|
|
|
|
/**
|
|
* @return a new empty instance of {@code DailyInstanceSettleResp}
|
|
*/
|
|
public static DailyInstanceSettleResp newInstance() {
|
|
return new DailyInstanceSettleResp();
|
|
}
|
|
|
|
/**
|
|
* <code>optional uint32 Exp = 3;</code>
|
|
* @return whether the exp field is set
|
|
*/
|
|
public boolean hasExp() {
|
|
return (bitField0_ & 0x00000001) != 0;
|
|
}
|
|
|
|
/**
|
|
* <code>optional uint32 Exp = 3;</code>
|
|
* @return this
|
|
*/
|
|
public DailyInstanceSettleResp clearExp() {
|
|
bitField0_ &= ~0x00000001;
|
|
exp = 0;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional uint32 Exp = 3;</code>
|
|
* @return the exp
|
|
*/
|
|
public int getExp() {
|
|
return exp;
|
|
}
|
|
|
|
/**
|
|
* <code>optional uint32 Exp = 3;</code>
|
|
* @param value the exp to set
|
|
* @return this
|
|
*/
|
|
public DailyInstanceSettleResp setExp(final int value) {
|
|
bitField0_ |= 0x00000001;
|
|
exp = value;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional .ChangeInfo Change = 15;</code>
|
|
* @return whether the change field is set
|
|
*/
|
|
public boolean hasChange() {
|
|
return (bitField0_ & 0x00000002) != 0;
|
|
}
|
|
|
|
/**
|
|
* <code>optional .ChangeInfo Change = 15;</code>
|
|
* @return this
|
|
*/
|
|
public DailyInstanceSettleResp clearChange() {
|
|
bitField0_ &= ~0x00000002;
|
|
change.clear();
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>optional .ChangeInfo Change = 15;</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 = 15;</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 = 15;</code>
|
|
* @param value the change to set
|
|
* @return this
|
|
*/
|
|
public DailyInstanceSettleResp 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 DailyInstanceSettleResp 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 DailyInstanceSettleResp 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 DailyInstanceSettleResp 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 DailyInstanceSettleResp setNextPackage(final byte... values) {
|
|
bitField0_ |= 0x00000004;
|
|
nextPackage.copyFrom(values);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated .Item Select = 1;</code>
|
|
* @return whether the select field is set
|
|
*/
|
|
public boolean hasSelect() {
|
|
return (bitField0_ & 0x00000008) != 0;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated .Item Select = 1;</code>
|
|
* @return this
|
|
*/
|
|
public DailyInstanceSettleResp clearSelect() {
|
|
bitField0_ &= ~0x00000008;
|
|
select.clear();
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated .Item Select = 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 #getMutableSelect()} if you want to modify it.
|
|
*
|
|
* @return internal storage object for reading
|
|
*/
|
|
public RepeatedMessage<Public.Item> getSelect() {
|
|
return select;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated .Item Select = 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 RepeatedMessage<Public.Item> getMutableSelect() {
|
|
bitField0_ |= 0x00000008;
|
|
return select;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated .Item Select = 1;</code>
|
|
* @param value the select to add
|
|
* @return this
|
|
*/
|
|
public DailyInstanceSettleResp addSelect(final Public.Item value) {
|
|
bitField0_ |= 0x00000008;
|
|
select.add(value);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated .Item Select = 1;</code>
|
|
* @param values the select to add
|
|
* @return this
|
|
*/
|
|
public DailyInstanceSettleResp addAllSelect(final Public.Item... values) {
|
|
bitField0_ |= 0x00000008;
|
|
select.addAll(values);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated .Item First = 2;</code>
|
|
* @return whether the first field is set
|
|
*/
|
|
public boolean hasFirst() {
|
|
return (bitField0_ & 0x00000010) != 0;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated .Item First = 2;</code>
|
|
* @return this
|
|
*/
|
|
public DailyInstanceSettleResp clearFirst() {
|
|
bitField0_ &= ~0x00000010;
|
|
first.clear();
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated .Item First = 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 #getMutableFirst()} if you want to modify it.
|
|
*
|
|
* @return internal storage object for reading
|
|
*/
|
|
public RepeatedMessage<Public.Item> getFirst() {
|
|
return first;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated .Item First = 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.Item> getMutableFirst() {
|
|
bitField0_ |= 0x00000010;
|
|
return first;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated .Item First = 2;</code>
|
|
* @param value the first to add
|
|
* @return this
|
|
*/
|
|
public DailyInstanceSettleResp addFirst(final Public.Item value) {
|
|
bitField0_ |= 0x00000010;
|
|
first.add(value);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* <code>repeated .Item First = 2;</code>
|
|
* @param values the first to add
|
|
* @return this
|
|
*/
|
|
public DailyInstanceSettleResp addAllFirst(final Public.Item... values) {
|
|
bitField0_ |= 0x00000010;
|
|
first.addAll(values);
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public DailyInstanceSettleResp copyFrom(final DailyInstanceSettleResp other) {
|
|
cachedSize = other.cachedSize;
|
|
if ((bitField0_ | other.bitField0_) != 0) {
|
|
bitField0_ = other.bitField0_;
|
|
exp = other.exp;
|
|
change.copyFrom(other.change);
|
|
nextPackage.copyFrom(other.nextPackage);
|
|
select.copyFrom(other.select);
|
|
first.copyFrom(other.first);
|
|
}
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public DailyInstanceSettleResp mergeFrom(final DailyInstanceSettleResp other) {
|
|
if (other.isEmpty()) {
|
|
return this;
|
|
}
|
|
cachedSize = -1;
|
|
if (other.hasExp()) {
|
|
setExp(other.exp);
|
|
}
|
|
if (other.hasChange()) {
|
|
getMutableChange().mergeFrom(other.change);
|
|
}
|
|
if (other.hasNextPackage()) {
|
|
getMutableNextPackage().copyFrom(other.nextPackage);
|
|
}
|
|
if (other.hasSelect()) {
|
|
getMutableSelect().addAll(other.select);
|
|
}
|
|
if (other.hasFirst()) {
|
|
getMutableFirst().addAll(other.first);
|
|
}
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public DailyInstanceSettleResp clear() {
|
|
if (isEmpty()) {
|
|
return this;
|
|
}
|
|
cachedSize = -1;
|
|
bitField0_ = 0;
|
|
exp = 0;
|
|
change.clear();
|
|
nextPackage.clear();
|
|
select.clear();
|
|
first.clear();
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public DailyInstanceSettleResp clearQuick() {
|
|
if (isEmpty()) {
|
|
return this;
|
|
}
|
|
cachedSize = -1;
|
|
bitField0_ = 0;
|
|
change.clearQuick();
|
|
nextPackage.clear();
|
|
select.clearQuick();
|
|
first.clearQuick();
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(Object o) {
|
|
if (o == this) {
|
|
return true;
|
|
}
|
|
if (!(o instanceof DailyInstanceSettleResp)) {
|
|
return false;
|
|
}
|
|
DailyInstanceSettleResp other = (DailyInstanceSettleResp) o;
|
|
return bitField0_ == other.bitField0_
|
|
&& (!hasExp() || exp == other.exp)
|
|
&& (!hasChange() || change.equals(other.change))
|
|
&& (!hasNextPackage() || nextPackage.equals(other.nextPackage))
|
|
&& (!hasSelect() || select.equals(other.select))
|
|
&& (!hasFirst() || first.equals(other.first));
|
|
}
|
|
|
|
@Override
|
|
public void writeTo(final ProtoSink output) throws IOException {
|
|
if ((bitField0_ & 0x00000001) != 0) {
|
|
output.writeRawByte((byte) 24);
|
|
output.writeUInt32NoTag(exp);
|
|
}
|
|
if ((bitField0_ & 0x00000002) != 0) {
|
|
output.writeRawByte((byte) 122);
|
|
output.writeMessageNoTag(change);
|
|
}
|
|
if ((bitField0_ & 0x00000004) != 0) {
|
|
output.writeRawLittleEndian16((short) 32762);
|
|
output.writeBytesNoTag(nextPackage);
|
|
}
|
|
if ((bitField0_ & 0x00000008) != 0) {
|
|
for (int i = 0; i < select.length(); i++) {
|
|
output.writeRawByte((byte) 10);
|
|
output.writeMessageNoTag(select.get(i));
|
|
}
|
|
}
|
|
if ((bitField0_ & 0x00000010) != 0) {
|
|
for (int i = 0; i < first.length(); i++) {
|
|
output.writeRawByte((byte) 18);
|
|
output.writeMessageNoTag(first.get(i));
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected int computeSerializedSize() {
|
|
int size = 0;
|
|
if ((bitField0_ & 0x00000001) != 0) {
|
|
size += 1 + ProtoSink.computeUInt32SizeNoTag(exp);
|
|
}
|
|
if ((bitField0_ & 0x00000002) != 0) {
|
|
size += 1 + ProtoSink.computeMessageSizeNoTag(change);
|
|
}
|
|
if ((bitField0_ & 0x00000004) != 0) {
|
|
size += 2 + ProtoSink.computeBytesSizeNoTag(nextPackage);
|
|
}
|
|
if ((bitField0_ & 0x00000008) != 0) {
|
|
size += (1 * select.length()) + ProtoSink.computeRepeatedMessageSizeNoTag(select);
|
|
}
|
|
if ((bitField0_ & 0x00000010) != 0) {
|
|
size += (1 * first.length()) + ProtoSink.computeRepeatedMessageSizeNoTag(first);
|
|
}
|
|
return size;
|
|
}
|
|
|
|
@Override
|
|
@SuppressWarnings("fallthrough")
|
|
public DailyInstanceSettleResp mergeFrom(final ProtoSource input) throws IOException {
|
|
// Enabled Fall-Through Optimization (QuickBuffers)
|
|
int tag = input.readTag();
|
|
while (true) {
|
|
switch (tag) {
|
|
case 24: {
|
|
// exp
|
|
exp = input.readUInt32();
|
|
bitField0_ |= 0x00000001;
|
|
tag = input.readTag();
|
|
if (tag != 122) {
|
|
break;
|
|
}
|
|
}
|
|
case 122: {
|
|
// 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 != 10) {
|
|
break;
|
|
}
|
|
}
|
|
case 10: {
|
|
// select
|
|
tag = input.readRepeatedMessage(select, tag);
|
|
bitField0_ |= 0x00000008;
|
|
if (tag != 18) {
|
|
break;
|
|
}
|
|
}
|
|
case 18: {
|
|
// first
|
|
tag = input.readRepeatedMessage(first, tag);
|
|
bitField0_ |= 0x00000010;
|
|
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.exp, exp);
|
|
}
|
|
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.select, select);
|
|
}
|
|
if ((bitField0_ & 0x00000010) != 0) {
|
|
output.writeRepeatedMessage(FieldNames.first, first);
|
|
}
|
|
output.endObject();
|
|
}
|
|
|
|
@Override
|
|
public DailyInstanceSettleResp mergeFrom(final JsonSource input) throws IOException {
|
|
if (!input.beginObject()) {
|
|
return this;
|
|
}
|
|
while (!input.isAtEnd()) {
|
|
switch (input.readFieldHash()) {
|
|
case 70141: {
|
|
if (input.isAtField(FieldNames.exp)) {
|
|
if (!input.trySkipNullValue()) {
|
|
exp = input.readUInt32();
|
|
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 -1822154468: {
|
|
if (input.isAtField(FieldNames.select)) {
|
|
if (!input.trySkipNullValue()) {
|
|
input.readRepeatedMessage(select);
|
|
bitField0_ |= 0x00000008;
|
|
}
|
|
} else {
|
|
input.skipUnknownField();
|
|
}
|
|
break;
|
|
}
|
|
case 67887760: {
|
|
if (input.isAtField(FieldNames.first)) {
|
|
if (!input.trySkipNullValue()) {
|
|
input.readRepeatedMessage(first);
|
|
bitField0_ |= 0x00000010;
|
|
}
|
|
} else {
|
|
input.skipUnknownField();
|
|
}
|
|
break;
|
|
}
|
|
default: {
|
|
input.skipUnknownField();
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
input.endObject();
|
|
return this;
|
|
}
|
|
|
|
@Override
|
|
public DailyInstanceSettleResp clone() {
|
|
return new DailyInstanceSettleResp().copyFrom(this);
|
|
}
|
|
|
|
@Override
|
|
public boolean isEmpty() {
|
|
return ((bitField0_) == 0);
|
|
}
|
|
|
|
public static DailyInstanceSettleResp parseFrom(final byte[] data) throws
|
|
InvalidProtocolBufferException {
|
|
return ProtoMessage.mergeFrom(new DailyInstanceSettleResp(), data).checkInitialized();
|
|
}
|
|
|
|
public static DailyInstanceSettleResp parseFrom(final ProtoSource input) throws IOException {
|
|
return ProtoMessage.mergeFrom(new DailyInstanceSettleResp(), input).checkInitialized();
|
|
}
|
|
|
|
public static DailyInstanceSettleResp parseFrom(final JsonSource input) throws IOException {
|
|
return ProtoMessage.mergeFrom(new DailyInstanceSettleResp(), input).checkInitialized();
|
|
}
|
|
|
|
/**
|
|
* @return factory for creating DailyInstanceSettleResp messages
|
|
*/
|
|
public static MessageFactory<DailyInstanceSettleResp> getFactory() {
|
|
return DailyInstanceSettleRespFactory.INSTANCE;
|
|
}
|
|
|
|
private enum DailyInstanceSettleRespFactory implements MessageFactory<DailyInstanceSettleResp> {
|
|
INSTANCE;
|
|
|
|
@Override
|
|
public DailyInstanceSettleResp create() {
|
|
return DailyInstanceSettleResp.newInstance();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Contains name constants used for serializing JSON
|
|
*/
|
|
static class FieldNames {
|
|
static final FieldName exp = FieldName.forField("Exp");
|
|
|
|
static final FieldName change = FieldName.forField("Change");
|
|
|
|
static final FieldName nextPackage = FieldName.forField("NextPackage");
|
|
|
|
static final FieldName select = FieldName.forField("Select");
|
|
|
|
static final FieldName first = FieldName.forField("First");
|
|
}
|
|
}
|
|
}
|