Files
Grasscutter/src/generated/main/java/emu/grasscutter/net/proto/CoopDataNotifyOuterClass.java
T
2024-10-02 23:21:24 +08:00

1192 lines
43 KiB
Java

// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: CoopDataNotify.proto
package emu.grasscutter.net.proto;
public final class CoopDataNotifyOuterClass {
private CoopDataNotifyOuterClass() {}
public static void registerAllExtensions(
com.google.protobuf.ExtensionRegistryLite registry) {
}
public static void registerAllExtensions(
com.google.protobuf.ExtensionRegistry registry) {
registerAllExtensions(
(com.google.protobuf.ExtensionRegistryLite) registry);
}
public interface CoopDataNotifyOrBuilder extends
// @@protoc_insertion_point(interface_extends:CoopDataNotify)
com.google.protobuf.MessageOrBuilder {
/**
* <code>bool is_have_progress = 3;</code>
* @return The isHaveProgress.
*/
boolean getIsHaveProgress();
/**
* <code>repeated uint32 viewed_chapter_list = 6;</code>
* @return A list containing the viewedChapterList.
*/
java.util.List<java.lang.Integer> getViewedChapterListList();
/**
* <code>repeated uint32 viewed_chapter_list = 6;</code>
* @return The count of viewedChapterList.
*/
int getViewedChapterListCount();
/**
* <code>repeated uint32 viewed_chapter_list = 6;</code>
* @param index The index of the element to return.
* @return The viewedChapterList at the given index.
*/
int getViewedChapterList(int index);
/**
* <code>repeated .CoopChapter chapter_list = 8;</code>
*/
java.util.List<emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapter>
getChapterListList();
/**
* <code>repeated .CoopChapter chapter_list = 8;</code>
*/
emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapter getChapterList(int index);
/**
* <code>repeated .CoopChapter chapter_list = 8;</code>
*/
int getChapterListCount();
/**
* <code>repeated .CoopChapter chapter_list = 8;</code>
*/
java.util.List<? extends emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapterOrBuilder>
getChapterListOrBuilderList();
/**
* <code>repeated .CoopChapter chapter_list = 8;</code>
*/
emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapterOrBuilder getChapterListOrBuilder(
int index);
/**
* <code>uint32 cur_coop_point = 15;</code>
* @return The curCoopPoint.
*/
int getCurCoopPoint();
}
/**
* <pre>
* CmdId: 25237
* obf: GFEAHJACJIM
* </pre>
*
* Protobuf type {@code CoopDataNotify}
*/
public static final class CoopDataNotify extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:CoopDataNotify)
CoopDataNotifyOrBuilder {
private static final long serialVersionUID = 0L;
// Use CoopDataNotify.newBuilder() to construct.
private CoopDataNotify(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {
super(builder);
}
private CoopDataNotify() {
viewedChapterList_ = emptyIntList();
chapterList_ = java.util.Collections.emptyList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new CoopDataNotify();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private CoopDataNotify(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 24: {
isHaveProgress_ = input.readBool();
break;
}
case 48: {
if (!((mutable_bitField0_ & 0x00000001) != 0)) {
viewedChapterList_ = newIntList();
mutable_bitField0_ |= 0x00000001;
}
viewedChapterList_.addInt(input.readUInt32());
break;
}
case 50: {
int length = input.readRawVarint32();
int limit = input.pushLimit(length);
if (!((mutable_bitField0_ & 0x00000001) != 0) && input.getBytesUntilLimit() > 0) {
viewedChapterList_ = newIntList();
mutable_bitField0_ |= 0x00000001;
}
while (input.getBytesUntilLimit() > 0) {
viewedChapterList_.addInt(input.readUInt32());
}
input.popLimit(limit);
break;
}
case 66: {
if (!((mutable_bitField0_ & 0x00000002) != 0)) {
chapterList_ = new java.util.ArrayList<emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapter>();
mutable_bitField0_ |= 0x00000002;
}
chapterList_.add(
input.readMessage(emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapter.parser(), extensionRegistry));
break;
}
case 120: {
curCoopPoint_ = input.readUInt32();
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000001) != 0)) {
viewedChapterList_.makeImmutable(); // C
}
if (((mutable_bitField0_ & 0x00000002) != 0)) {
chapterList_ = java.util.Collections.unmodifiableList(chapterList_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return emu.grasscutter.net.proto.CoopDataNotifyOuterClass.internal_static_CoopDataNotify_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return emu.grasscutter.net.proto.CoopDataNotifyOuterClass.internal_static_CoopDataNotify_fieldAccessorTable
.ensureFieldAccessorsInitialized(
emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify.class, emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify.Builder.class);
}
public static final int IS_HAVE_PROGRESS_FIELD_NUMBER = 3;
private boolean isHaveProgress_;
/**
* <code>bool is_have_progress = 3;</code>
* @return The isHaveProgress.
*/
@java.lang.Override
public boolean getIsHaveProgress() {
return isHaveProgress_;
}
public static final int VIEWED_CHAPTER_LIST_FIELD_NUMBER = 6;
private com.google.protobuf.Internal.IntList viewedChapterList_;
/**
* <code>repeated uint32 viewed_chapter_list = 6;</code>
* @return A list containing the viewedChapterList.
*/
@java.lang.Override
public java.util.List<java.lang.Integer>
getViewedChapterListList() {
return viewedChapterList_;
}
/**
* <code>repeated uint32 viewed_chapter_list = 6;</code>
* @return The count of viewedChapterList.
*/
public int getViewedChapterListCount() {
return viewedChapterList_.size();
}
/**
* <code>repeated uint32 viewed_chapter_list = 6;</code>
* @param index The index of the element to return.
* @return The viewedChapterList at the given index.
*/
public int getViewedChapterList(int index) {
return viewedChapterList_.getInt(index);
}
private int viewedChapterListMemoizedSerializedSize = -1;
public static final int CHAPTER_LIST_FIELD_NUMBER = 8;
private java.util.List<emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapter> chapterList_;
/**
* <code>repeated .CoopChapter chapter_list = 8;</code>
*/
@java.lang.Override
public java.util.List<emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapter> getChapterListList() {
return chapterList_;
}
/**
* <code>repeated .CoopChapter chapter_list = 8;</code>
*/
@java.lang.Override
public java.util.List<? extends emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapterOrBuilder>
getChapterListOrBuilderList() {
return chapterList_;
}
/**
* <code>repeated .CoopChapter chapter_list = 8;</code>
*/
@java.lang.Override
public int getChapterListCount() {
return chapterList_.size();
}
/**
* <code>repeated .CoopChapter chapter_list = 8;</code>
*/
@java.lang.Override
public emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapter getChapterList(int index) {
return chapterList_.get(index);
}
/**
* <code>repeated .CoopChapter chapter_list = 8;</code>
*/
@java.lang.Override
public emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapterOrBuilder getChapterListOrBuilder(
int index) {
return chapterList_.get(index);
}
public static final int CUR_COOP_POINT_FIELD_NUMBER = 15;
private int curCoopPoint_;
/**
* <code>uint32 cur_coop_point = 15;</code>
* @return The curCoopPoint.
*/
@java.lang.Override
public int getCurCoopPoint() {
return curCoopPoint_;
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (isHaveProgress_ != false) {
output.writeBool(3, isHaveProgress_);
}
if (getViewedChapterListList().size() > 0) {
output.writeUInt32NoTag(50);
output.writeUInt32NoTag(viewedChapterListMemoizedSerializedSize);
}
for (int i = 0; i < viewedChapterList_.size(); i++) {
output.writeUInt32NoTag(viewedChapterList_.getInt(i));
}
for (int i = 0; i < chapterList_.size(); i++) {
output.writeMessage(8, chapterList_.get(i));
}
if (curCoopPoint_ != 0) {
output.writeUInt32(15, curCoopPoint_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (isHaveProgress_ != false) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(3, isHaveProgress_);
}
{
int dataSize = 0;
for (int i = 0; i < viewedChapterList_.size(); i++) {
dataSize += com.google.protobuf.CodedOutputStream
.computeUInt32SizeNoTag(viewedChapterList_.getInt(i));
}
size += dataSize;
if (!getViewedChapterListList().isEmpty()) {
size += 1;
size += com.google.protobuf.CodedOutputStream
.computeInt32SizeNoTag(dataSize);
}
viewedChapterListMemoizedSerializedSize = dataSize;
}
for (int i = 0; i < chapterList_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(8, chapterList_.get(i));
}
if (curCoopPoint_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeUInt32Size(15, curCoopPoint_);
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify)) {
return super.equals(obj);
}
emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify other = (emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify) obj;
if (getIsHaveProgress()
!= other.getIsHaveProgress()) return false;
if (!getViewedChapterListList()
.equals(other.getViewedChapterListList())) return false;
if (!getChapterListList()
.equals(other.getChapterListList())) return false;
if (getCurCoopPoint()
!= other.getCurCoopPoint()) return false;
if (!unknownFields.equals(other.unknownFields)) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + IS_HAVE_PROGRESS_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
getIsHaveProgress());
if (getViewedChapterListCount() > 0) {
hash = (37 * hash) + VIEWED_CHAPTER_LIST_FIELD_NUMBER;
hash = (53 * hash) + getViewedChapterListList().hashCode();
}
if (getChapterListCount() > 0) {
hash = (37 * hash) + CHAPTER_LIST_FIELD_NUMBER;
hash = (53 * hash) + getChapterListList().hashCode();
}
hash = (37 * hash) + CUR_COOP_POINT_FIELD_NUMBER;
hash = (53 * hash) + getCurCoopPoint();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* <pre>
* CmdId: 25237
* obf: GFEAHJACJIM
* </pre>
*
* Protobuf type {@code CoopDataNotify}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder<Builder> implements
// @@protoc_insertion_point(builder_implements:CoopDataNotify)
emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotifyOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return emu.grasscutter.net.proto.CoopDataNotifyOuterClass.internal_static_CoopDataNotify_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return emu.grasscutter.net.proto.CoopDataNotifyOuterClass.internal_static_CoopDataNotify_fieldAccessorTable
.ensureFieldAccessorsInitialized(
emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify.class, emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify.Builder.class);
}
// Construct using emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getChapterListFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
isHaveProgress_ = false;
viewedChapterList_ = emptyIntList();
bitField0_ = (bitField0_ & ~0x00000001);
if (chapterListBuilder_ == null) {
chapterList_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
} else {
chapterListBuilder_.clear();
}
curCoopPoint_ = 0;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return emu.grasscutter.net.proto.CoopDataNotifyOuterClass.internal_static_CoopDataNotify_descriptor;
}
@java.lang.Override
public emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify getDefaultInstanceForType() {
return emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify.getDefaultInstance();
}
@java.lang.Override
public emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify build() {
emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify buildPartial() {
emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify result = new emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify(this);
int from_bitField0_ = bitField0_;
result.isHaveProgress_ = isHaveProgress_;
if (((bitField0_ & 0x00000001) != 0)) {
viewedChapterList_.makeImmutable();
bitField0_ = (bitField0_ & ~0x00000001);
}
result.viewedChapterList_ = viewedChapterList_;
if (chapterListBuilder_ == null) {
if (((bitField0_ & 0x00000002) != 0)) {
chapterList_ = java.util.Collections.unmodifiableList(chapterList_);
bitField0_ = (bitField0_ & ~0x00000002);
}
result.chapterList_ = chapterList_;
} else {
result.chapterList_ = chapterListBuilder_.build();
}
result.curCoopPoint_ = curCoopPoint_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify) {
return mergeFrom((emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify other) {
if (other == emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify.getDefaultInstance()) return this;
if (other.getIsHaveProgress() != false) {
setIsHaveProgress(other.getIsHaveProgress());
}
if (!other.viewedChapterList_.isEmpty()) {
if (viewedChapterList_.isEmpty()) {
viewedChapterList_ = other.viewedChapterList_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureViewedChapterListIsMutable();
viewedChapterList_.addAll(other.viewedChapterList_);
}
onChanged();
}
if (chapterListBuilder_ == null) {
if (!other.chapterList_.isEmpty()) {
if (chapterList_.isEmpty()) {
chapterList_ = other.chapterList_;
bitField0_ = (bitField0_ & ~0x00000002);
} else {
ensureChapterListIsMutable();
chapterList_.addAll(other.chapterList_);
}
onChanged();
}
} else {
if (!other.chapterList_.isEmpty()) {
if (chapterListBuilder_.isEmpty()) {
chapterListBuilder_.dispose();
chapterListBuilder_ = null;
chapterList_ = other.chapterList_;
bitField0_ = (bitField0_ & ~0x00000002);
chapterListBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getChapterListFieldBuilder() : null;
} else {
chapterListBuilder_.addAllMessages(other.chapterList_);
}
}
}
if (other.getCurCoopPoint() != 0) {
setCurCoopPoint(other.getCurCoopPoint());
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private boolean isHaveProgress_ ;
/**
* <code>bool is_have_progress = 3;</code>
* @return The isHaveProgress.
*/
@java.lang.Override
public boolean getIsHaveProgress() {
return isHaveProgress_;
}
/**
* <code>bool is_have_progress = 3;</code>
* @param value The isHaveProgress to set.
* @return This builder for chaining.
*/
public Builder setIsHaveProgress(boolean value) {
isHaveProgress_ = value;
onChanged();
return this;
}
/**
* <code>bool is_have_progress = 3;</code>
* @return This builder for chaining.
*/
public Builder clearIsHaveProgress() {
isHaveProgress_ = false;
onChanged();
return this;
}
private com.google.protobuf.Internal.IntList viewedChapterList_ = emptyIntList();
private void ensureViewedChapterListIsMutable() {
if (!((bitField0_ & 0x00000001) != 0)) {
viewedChapterList_ = mutableCopy(viewedChapterList_);
bitField0_ |= 0x00000001;
}
}
/**
* <code>repeated uint32 viewed_chapter_list = 6;</code>
* @return A list containing the viewedChapterList.
*/
public java.util.List<java.lang.Integer>
getViewedChapterListList() {
return ((bitField0_ & 0x00000001) != 0) ?
java.util.Collections.unmodifiableList(viewedChapterList_) : viewedChapterList_;
}
/**
* <code>repeated uint32 viewed_chapter_list = 6;</code>
* @return The count of viewedChapterList.
*/
public int getViewedChapterListCount() {
return viewedChapterList_.size();
}
/**
* <code>repeated uint32 viewed_chapter_list = 6;</code>
* @param index The index of the element to return.
* @return The viewedChapterList at the given index.
*/
public int getViewedChapterList(int index) {
return viewedChapterList_.getInt(index);
}
/**
* <code>repeated uint32 viewed_chapter_list = 6;</code>
* @param index The index to set the value at.
* @param value The viewedChapterList to set.
* @return This builder for chaining.
*/
public Builder setViewedChapterList(
int index, int value) {
ensureViewedChapterListIsMutable();
viewedChapterList_.setInt(index, value);
onChanged();
return this;
}
/**
* <code>repeated uint32 viewed_chapter_list = 6;</code>
* @param value The viewedChapterList to add.
* @return This builder for chaining.
*/
public Builder addViewedChapterList(int value) {
ensureViewedChapterListIsMutable();
viewedChapterList_.addInt(value);
onChanged();
return this;
}
/**
* <code>repeated uint32 viewed_chapter_list = 6;</code>
* @param values The viewedChapterList to add.
* @return This builder for chaining.
*/
public Builder addAllViewedChapterList(
java.lang.Iterable<? extends java.lang.Integer> values) {
ensureViewedChapterListIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, viewedChapterList_);
onChanged();
return this;
}
/**
* <code>repeated uint32 viewed_chapter_list = 6;</code>
* @return This builder for chaining.
*/
public Builder clearViewedChapterList() {
viewedChapterList_ = emptyIntList();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
private java.util.List<emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapter> chapterList_ =
java.util.Collections.emptyList();
private void ensureChapterListIsMutable() {
if (!((bitField0_ & 0x00000002) != 0)) {
chapterList_ = new java.util.ArrayList<emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapter>(chapterList_);
bitField0_ |= 0x00000002;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapter, emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapter.Builder, emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapterOrBuilder> chapterListBuilder_;
/**
* <code>repeated .CoopChapter chapter_list = 8;</code>
*/
public java.util.List<emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapter> getChapterListList() {
if (chapterListBuilder_ == null) {
return java.util.Collections.unmodifiableList(chapterList_);
} else {
return chapterListBuilder_.getMessageList();
}
}
/**
* <code>repeated .CoopChapter chapter_list = 8;</code>
*/
public int getChapterListCount() {
if (chapterListBuilder_ == null) {
return chapterList_.size();
} else {
return chapterListBuilder_.getCount();
}
}
/**
* <code>repeated .CoopChapter chapter_list = 8;</code>
*/
public emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapter getChapterList(int index) {
if (chapterListBuilder_ == null) {
return chapterList_.get(index);
} else {
return chapterListBuilder_.getMessage(index);
}
}
/**
* <code>repeated .CoopChapter chapter_list = 8;</code>
*/
public Builder setChapterList(
int index, emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapter value) {
if (chapterListBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureChapterListIsMutable();
chapterList_.set(index, value);
onChanged();
} else {
chapterListBuilder_.setMessage(index, value);
}
return this;
}
/**
* <code>repeated .CoopChapter chapter_list = 8;</code>
*/
public Builder setChapterList(
int index, emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapter.Builder builderForValue) {
if (chapterListBuilder_ == null) {
ensureChapterListIsMutable();
chapterList_.set(index, builderForValue.build());
onChanged();
} else {
chapterListBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
* <code>repeated .CoopChapter chapter_list = 8;</code>
*/
public Builder addChapterList(emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapter value) {
if (chapterListBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureChapterListIsMutable();
chapterList_.add(value);
onChanged();
} else {
chapterListBuilder_.addMessage(value);
}
return this;
}
/**
* <code>repeated .CoopChapter chapter_list = 8;</code>
*/
public Builder addChapterList(
int index, emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapter value) {
if (chapterListBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureChapterListIsMutable();
chapterList_.add(index, value);
onChanged();
} else {
chapterListBuilder_.addMessage(index, value);
}
return this;
}
/**
* <code>repeated .CoopChapter chapter_list = 8;</code>
*/
public Builder addChapterList(
emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapter.Builder builderForValue) {
if (chapterListBuilder_ == null) {
ensureChapterListIsMutable();
chapterList_.add(builderForValue.build());
onChanged();
} else {
chapterListBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
* <code>repeated .CoopChapter chapter_list = 8;</code>
*/
public Builder addChapterList(
int index, emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapter.Builder builderForValue) {
if (chapterListBuilder_ == null) {
ensureChapterListIsMutable();
chapterList_.add(index, builderForValue.build());
onChanged();
} else {
chapterListBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
* <code>repeated .CoopChapter chapter_list = 8;</code>
*/
public Builder addAllChapterList(
java.lang.Iterable<? extends emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapter> values) {
if (chapterListBuilder_ == null) {
ensureChapterListIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, chapterList_);
onChanged();
} else {
chapterListBuilder_.addAllMessages(values);
}
return this;
}
/**
* <code>repeated .CoopChapter chapter_list = 8;</code>
*/
public Builder clearChapterList() {
if (chapterListBuilder_ == null) {
chapterList_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
} else {
chapterListBuilder_.clear();
}
return this;
}
/**
* <code>repeated .CoopChapter chapter_list = 8;</code>
*/
public Builder removeChapterList(int index) {
if (chapterListBuilder_ == null) {
ensureChapterListIsMutable();
chapterList_.remove(index);
onChanged();
} else {
chapterListBuilder_.remove(index);
}
return this;
}
/**
* <code>repeated .CoopChapter chapter_list = 8;</code>
*/
public emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapter.Builder getChapterListBuilder(
int index) {
return getChapterListFieldBuilder().getBuilder(index);
}
/**
* <code>repeated .CoopChapter chapter_list = 8;</code>
*/
public emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapterOrBuilder getChapterListOrBuilder(
int index) {
if (chapterListBuilder_ == null) {
return chapterList_.get(index); } else {
return chapterListBuilder_.getMessageOrBuilder(index);
}
}
/**
* <code>repeated .CoopChapter chapter_list = 8;</code>
*/
public java.util.List<? extends emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapterOrBuilder>
getChapterListOrBuilderList() {
if (chapterListBuilder_ != null) {
return chapterListBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(chapterList_);
}
}
/**
* <code>repeated .CoopChapter chapter_list = 8;</code>
*/
public emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapter.Builder addChapterListBuilder() {
return getChapterListFieldBuilder().addBuilder(
emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapter.getDefaultInstance());
}
/**
* <code>repeated .CoopChapter chapter_list = 8;</code>
*/
public emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapter.Builder addChapterListBuilder(
int index) {
return getChapterListFieldBuilder().addBuilder(
index, emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapter.getDefaultInstance());
}
/**
* <code>repeated .CoopChapter chapter_list = 8;</code>
*/
public java.util.List<emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapter.Builder>
getChapterListBuilderList() {
return getChapterListFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapter, emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapter.Builder, emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapterOrBuilder>
getChapterListFieldBuilder() {
if (chapterListBuilder_ == null) {
chapterListBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapter, emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapter.Builder, emu.grasscutter.net.proto.CoopChapterOuterClass.CoopChapterOrBuilder>(
chapterList_,
((bitField0_ & 0x00000002) != 0),
getParentForChildren(),
isClean());
chapterList_ = null;
}
return chapterListBuilder_;
}
private int curCoopPoint_ ;
/**
* <code>uint32 cur_coop_point = 15;</code>
* @return The curCoopPoint.
*/
@java.lang.Override
public int getCurCoopPoint() {
return curCoopPoint_;
}
/**
* <code>uint32 cur_coop_point = 15;</code>
* @param value The curCoopPoint to set.
* @return This builder for chaining.
*/
public Builder setCurCoopPoint(int value) {
curCoopPoint_ = value;
onChanged();
return this;
}
/**
* <code>uint32 cur_coop_point = 15;</code>
* @return This builder for chaining.
*/
public Builder clearCurCoopPoint() {
curCoopPoint_ = 0;
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:CoopDataNotify)
}
// @@protoc_insertion_point(class_scope:CoopDataNotify)
private static final emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify();
}
public static emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser<CoopDataNotify>
PARSER = new com.google.protobuf.AbstractParser<CoopDataNotify>() {
@java.lang.Override
public CoopDataNotify parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new CoopDataNotify(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser<CoopDataNotify> parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser<CoopDataNotify> getParserForType() {
return PARSER;
}
@java.lang.Override
public emu.grasscutter.net.proto.CoopDataNotifyOuterClass.CoopDataNotify getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_CoopDataNotify_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_CoopDataNotify_fieldAccessorTable;
public static com.google.protobuf.Descriptors.FileDescriptor
getDescriptor() {
return descriptor;
}
private static com.google.protobuf.Descriptors.FileDescriptor
descriptor;
static {
java.lang.String[] descriptorData = {
"\n\024CoopDataNotify.proto\032\021CoopChapter.prot" +
"o\"\203\001\n\016CoopDataNotify\022\030\n\020is_have_progress" +
"\030\003 \001(\010\022\033\n\023viewed_chapter_list\030\006 \003(\r\022\"\n\014c" +
"hapter_list\030\010 \003(\0132\014.CoopChapter\022\026\n\016cur_c" +
"oop_point\030\017 \001(\rB\033\n\031emu.grasscutter.net.p" +
"rotob\006proto3"
};
descriptor = com.google.protobuf.Descriptors.FileDescriptor
.internalBuildGeneratedFileFrom(descriptorData,
new com.google.protobuf.Descriptors.FileDescriptor[] {
emu.grasscutter.net.proto.CoopChapterOuterClass.getDescriptor(),
});
internal_static_CoopDataNotify_descriptor =
getDescriptor().getMessageTypes().get(0);
internal_static_CoopDataNotify_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_CoopDataNotify_descriptor,
new java.lang.String[] { "IsHaveProgress", "ViewedChapterList", "ChapterList", "CurCoopPoint", });
emu.grasscutter.net.proto.CoopChapterOuterClass.getDescriptor();
}
// @@protoc_insertion_point(outer_class_scope)
}