mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-06-05 02:53:35 +08:00
1137 lines
42 KiB
Java
1137 lines
42 KiB
Java
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
// source: FleurFairBossSettleInfo.proto
|
|
|
|
package emu.grasscutter.net.proto;
|
|
|
|
public final class FleurFairBossSettleInfoOuterClass {
|
|
private FleurFairBossSettleInfoOuterClass() {}
|
|
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 FleurFairBossSettleInfoOrBuilder extends
|
|
// @@protoc_insertion_point(interface_extends:FleurFairBossSettleInfo)
|
|
com.google.protobuf.MessageOrBuilder {
|
|
|
|
/**
|
|
* <code>repeated .FleurFairPlayerStatInfo stat_info_list = 7;</code>
|
|
*/
|
|
java.util.List<emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfo>
|
|
getStatInfoListList();
|
|
/**
|
|
* <code>repeated .FleurFairPlayerStatInfo stat_info_list = 7;</code>
|
|
*/
|
|
emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfo getStatInfoList(int index);
|
|
/**
|
|
* <code>repeated .FleurFairPlayerStatInfo stat_info_list = 7;</code>
|
|
*/
|
|
int getStatInfoListCount();
|
|
/**
|
|
* <code>repeated .FleurFairPlayerStatInfo stat_info_list = 7;</code>
|
|
*/
|
|
java.util.List<? extends emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfoOrBuilder>
|
|
getStatInfoListOrBuilderList();
|
|
/**
|
|
* <code>repeated .FleurFairPlayerStatInfo stat_info_list = 7;</code>
|
|
*/
|
|
emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfoOrBuilder getStatInfoListOrBuilder(
|
|
int index);
|
|
|
|
/**
|
|
* <code>uint32 energy = 8;</code>
|
|
* @return The energy.
|
|
*/
|
|
int getEnergy();
|
|
|
|
/**
|
|
* <code>uint32 reward_token_num = 10;</code>
|
|
* @return The rewardTokenNum.
|
|
*/
|
|
int getRewardTokenNum();
|
|
|
|
/**
|
|
* <code>bool is_success = 5;</code>
|
|
* @return The isSuccess.
|
|
*/
|
|
boolean getIsSuccess();
|
|
|
|
/**
|
|
* <code>uint32 cost_time = 6;</code>
|
|
* @return The costTime.
|
|
*/
|
|
int getCostTime();
|
|
}
|
|
/**
|
|
* <pre>
|
|
* Obf: BCMAOMLGLBJ
|
|
* </pre>
|
|
*
|
|
* Protobuf type {@code FleurFairBossSettleInfo}
|
|
*/
|
|
public static final class FleurFairBossSettleInfo extends
|
|
com.google.protobuf.GeneratedMessageV3 implements
|
|
// @@protoc_insertion_point(message_implements:FleurFairBossSettleInfo)
|
|
FleurFairBossSettleInfoOrBuilder {
|
|
private static final long serialVersionUID = 0L;
|
|
// Use FleurFairBossSettleInfo.newBuilder() to construct.
|
|
private FleurFairBossSettleInfo(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {
|
|
super(builder);
|
|
}
|
|
private FleurFairBossSettleInfo() {
|
|
statInfoList_ = java.util.Collections.emptyList();
|
|
}
|
|
|
|
@java.lang.Override
|
|
@SuppressWarnings({"unused"})
|
|
protected java.lang.Object newInstance(
|
|
UnusedPrivateParameter unused) {
|
|
return new FleurFairBossSettleInfo();
|
|
}
|
|
|
|
@java.lang.Override
|
|
public final com.google.protobuf.UnknownFieldSet
|
|
getUnknownFields() {
|
|
return this.unknownFields;
|
|
}
|
|
private FleurFairBossSettleInfo(
|
|
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 40: {
|
|
|
|
isSuccess_ = input.readBool();
|
|
break;
|
|
}
|
|
case 48: {
|
|
|
|
costTime_ = input.readUInt32();
|
|
break;
|
|
}
|
|
case 58: {
|
|
if (!((mutable_bitField0_ & 0x00000001) != 0)) {
|
|
statInfoList_ = new java.util.ArrayList<emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfo>();
|
|
mutable_bitField0_ |= 0x00000001;
|
|
}
|
|
statInfoList_.add(
|
|
input.readMessage(emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfo.parser(), extensionRegistry));
|
|
break;
|
|
}
|
|
case 64: {
|
|
|
|
energy_ = input.readUInt32();
|
|
break;
|
|
}
|
|
case 80: {
|
|
|
|
rewardTokenNum_ = 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)) {
|
|
statInfoList_ = java.util.Collections.unmodifiableList(statInfoList_);
|
|
}
|
|
this.unknownFields = unknownFields.build();
|
|
makeExtensionsImmutable();
|
|
}
|
|
}
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
getDescriptor() {
|
|
return emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.internal_static_FleurFairBossSettleInfo_descriptor;
|
|
}
|
|
|
|
@java.lang.Override
|
|
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
|
|
internalGetFieldAccessorTable() {
|
|
return emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.internal_static_FleurFairBossSettleInfo_fieldAccessorTable
|
|
.ensureFieldAccessorsInitialized(
|
|
emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo.class, emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo.Builder.class);
|
|
}
|
|
|
|
public static final int STAT_INFO_LIST_FIELD_NUMBER = 7;
|
|
private java.util.List<emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfo> statInfoList_;
|
|
/**
|
|
* <code>repeated .FleurFairPlayerStatInfo stat_info_list = 7;</code>
|
|
*/
|
|
@java.lang.Override
|
|
public java.util.List<emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfo> getStatInfoListList() {
|
|
return statInfoList_;
|
|
}
|
|
/**
|
|
* <code>repeated .FleurFairPlayerStatInfo stat_info_list = 7;</code>
|
|
*/
|
|
@java.lang.Override
|
|
public java.util.List<? extends emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfoOrBuilder>
|
|
getStatInfoListOrBuilderList() {
|
|
return statInfoList_;
|
|
}
|
|
/**
|
|
* <code>repeated .FleurFairPlayerStatInfo stat_info_list = 7;</code>
|
|
*/
|
|
@java.lang.Override
|
|
public int getStatInfoListCount() {
|
|
return statInfoList_.size();
|
|
}
|
|
/**
|
|
* <code>repeated .FleurFairPlayerStatInfo stat_info_list = 7;</code>
|
|
*/
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfo getStatInfoList(int index) {
|
|
return statInfoList_.get(index);
|
|
}
|
|
/**
|
|
* <code>repeated .FleurFairPlayerStatInfo stat_info_list = 7;</code>
|
|
*/
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfoOrBuilder getStatInfoListOrBuilder(
|
|
int index) {
|
|
return statInfoList_.get(index);
|
|
}
|
|
|
|
public static final int ENERGY_FIELD_NUMBER = 8;
|
|
private int energy_;
|
|
/**
|
|
* <code>uint32 energy = 8;</code>
|
|
* @return The energy.
|
|
*/
|
|
@java.lang.Override
|
|
public int getEnergy() {
|
|
return energy_;
|
|
}
|
|
|
|
public static final int REWARD_TOKEN_NUM_FIELD_NUMBER = 10;
|
|
private int rewardTokenNum_;
|
|
/**
|
|
* <code>uint32 reward_token_num = 10;</code>
|
|
* @return The rewardTokenNum.
|
|
*/
|
|
@java.lang.Override
|
|
public int getRewardTokenNum() {
|
|
return rewardTokenNum_;
|
|
}
|
|
|
|
public static final int IS_SUCCESS_FIELD_NUMBER = 5;
|
|
private boolean isSuccess_;
|
|
/**
|
|
* <code>bool is_success = 5;</code>
|
|
* @return The isSuccess.
|
|
*/
|
|
@java.lang.Override
|
|
public boolean getIsSuccess() {
|
|
return isSuccess_;
|
|
}
|
|
|
|
public static final int COST_TIME_FIELD_NUMBER = 6;
|
|
private int costTime_;
|
|
/**
|
|
* <code>uint32 cost_time = 6;</code>
|
|
* @return The costTime.
|
|
*/
|
|
@java.lang.Override
|
|
public int getCostTime() {
|
|
return costTime_;
|
|
}
|
|
|
|
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 {
|
|
if (isSuccess_ != false) {
|
|
output.writeBool(5, isSuccess_);
|
|
}
|
|
if (costTime_ != 0) {
|
|
output.writeUInt32(6, costTime_);
|
|
}
|
|
for (int i = 0; i < statInfoList_.size(); i++) {
|
|
output.writeMessage(7, statInfoList_.get(i));
|
|
}
|
|
if (energy_ != 0) {
|
|
output.writeUInt32(8, energy_);
|
|
}
|
|
if (rewardTokenNum_ != 0) {
|
|
output.writeUInt32(10, rewardTokenNum_);
|
|
}
|
|
unknownFields.writeTo(output);
|
|
}
|
|
|
|
@java.lang.Override
|
|
public int getSerializedSize() {
|
|
int size = memoizedSize;
|
|
if (size != -1) return size;
|
|
|
|
size = 0;
|
|
if (isSuccess_ != false) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeBoolSize(5, isSuccess_);
|
|
}
|
|
if (costTime_ != 0) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeUInt32Size(6, costTime_);
|
|
}
|
|
for (int i = 0; i < statInfoList_.size(); i++) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeMessageSize(7, statInfoList_.get(i));
|
|
}
|
|
if (energy_ != 0) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeUInt32Size(8, energy_);
|
|
}
|
|
if (rewardTokenNum_ != 0) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeUInt32Size(10, rewardTokenNum_);
|
|
}
|
|
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.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo)) {
|
|
return super.equals(obj);
|
|
}
|
|
emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo other = (emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo) obj;
|
|
|
|
if (!getStatInfoListList()
|
|
.equals(other.getStatInfoListList())) return false;
|
|
if (getEnergy()
|
|
!= other.getEnergy()) return false;
|
|
if (getRewardTokenNum()
|
|
!= other.getRewardTokenNum()) return false;
|
|
if (getIsSuccess()
|
|
!= other.getIsSuccess()) return false;
|
|
if (getCostTime()
|
|
!= other.getCostTime()) 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();
|
|
if (getStatInfoListCount() > 0) {
|
|
hash = (37 * hash) + STAT_INFO_LIST_FIELD_NUMBER;
|
|
hash = (53 * hash) + getStatInfoListList().hashCode();
|
|
}
|
|
hash = (37 * hash) + ENERGY_FIELD_NUMBER;
|
|
hash = (53 * hash) + getEnergy();
|
|
hash = (37 * hash) + REWARD_TOKEN_NUM_FIELD_NUMBER;
|
|
hash = (53 * hash) + getRewardTokenNum();
|
|
hash = (37 * hash) + IS_SUCCESS_FIELD_NUMBER;
|
|
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
|
|
getIsSuccess());
|
|
hash = (37 * hash) + COST_TIME_FIELD_NUMBER;
|
|
hash = (53 * hash) + getCostTime();
|
|
hash = (29 * hash) + unknownFields.hashCode();
|
|
memoizedHashCode = hash;
|
|
return hash;
|
|
}
|
|
|
|
public static emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo parseFrom(
|
|
java.nio.ByteBuffer data)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data);
|
|
}
|
|
public static emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo 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.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo parseFrom(
|
|
com.google.protobuf.ByteString data)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data);
|
|
}
|
|
public static emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo 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.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo parseFrom(byte[] data)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data);
|
|
}
|
|
public static emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo parseFrom(
|
|
byte[] data,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data, extensionRegistry);
|
|
}
|
|
public static emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo parseFrom(java.io.InputStream input)
|
|
throws java.io.IOException {
|
|
return com.google.protobuf.GeneratedMessageV3
|
|
.parseWithIOException(PARSER, input);
|
|
}
|
|
public static emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo 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.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo parseDelimitedFrom(java.io.InputStream input)
|
|
throws java.io.IOException {
|
|
return com.google.protobuf.GeneratedMessageV3
|
|
.parseDelimitedWithIOException(PARSER, input);
|
|
}
|
|
public static emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo 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.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo parseFrom(
|
|
com.google.protobuf.CodedInputStream input)
|
|
throws java.io.IOException {
|
|
return com.google.protobuf.GeneratedMessageV3
|
|
.parseWithIOException(PARSER, input);
|
|
}
|
|
public static emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo 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.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo 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>
|
|
* Obf: BCMAOMLGLBJ
|
|
* </pre>
|
|
*
|
|
* Protobuf type {@code FleurFairBossSettleInfo}
|
|
*/
|
|
public static final class Builder extends
|
|
com.google.protobuf.GeneratedMessageV3.Builder<Builder> implements
|
|
// @@protoc_insertion_point(builder_implements:FleurFairBossSettleInfo)
|
|
emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfoOrBuilder {
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
getDescriptor() {
|
|
return emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.internal_static_FleurFairBossSettleInfo_descriptor;
|
|
}
|
|
|
|
@java.lang.Override
|
|
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
|
|
internalGetFieldAccessorTable() {
|
|
return emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.internal_static_FleurFairBossSettleInfo_fieldAccessorTable
|
|
.ensureFieldAccessorsInitialized(
|
|
emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo.class, emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo.Builder.class);
|
|
}
|
|
|
|
// Construct using emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo.newBuilder()
|
|
private Builder() {
|
|
maybeForceBuilderInitialization();
|
|
}
|
|
|
|
private Builder(
|
|
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
|
|
super(parent);
|
|
maybeForceBuilderInitialization();
|
|
}
|
|
private void maybeForceBuilderInitialization() {
|
|
if (com.google.protobuf.GeneratedMessageV3
|
|
.alwaysUseFieldBuilders) {
|
|
getStatInfoListFieldBuilder();
|
|
}
|
|
}
|
|
@java.lang.Override
|
|
public Builder clear() {
|
|
super.clear();
|
|
if (statInfoListBuilder_ == null) {
|
|
statInfoList_ = java.util.Collections.emptyList();
|
|
bitField0_ = (bitField0_ & ~0x00000001);
|
|
} else {
|
|
statInfoListBuilder_.clear();
|
|
}
|
|
energy_ = 0;
|
|
|
|
rewardTokenNum_ = 0;
|
|
|
|
isSuccess_ = false;
|
|
|
|
costTime_ = 0;
|
|
|
|
return this;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public com.google.protobuf.Descriptors.Descriptor
|
|
getDescriptorForType() {
|
|
return emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.internal_static_FleurFairBossSettleInfo_descriptor;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo getDefaultInstanceForType() {
|
|
return emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo.getDefaultInstance();
|
|
}
|
|
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo build() {
|
|
emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo result = buildPartial();
|
|
if (!result.isInitialized()) {
|
|
throw newUninitializedMessageException(result);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo buildPartial() {
|
|
emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo result = new emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo(this);
|
|
int from_bitField0_ = bitField0_;
|
|
if (statInfoListBuilder_ == null) {
|
|
if (((bitField0_ & 0x00000001) != 0)) {
|
|
statInfoList_ = java.util.Collections.unmodifiableList(statInfoList_);
|
|
bitField0_ = (bitField0_ & ~0x00000001);
|
|
}
|
|
result.statInfoList_ = statInfoList_;
|
|
} else {
|
|
result.statInfoList_ = statInfoListBuilder_.build();
|
|
}
|
|
result.energy_ = energy_;
|
|
result.rewardTokenNum_ = rewardTokenNum_;
|
|
result.isSuccess_ = isSuccess_;
|
|
result.costTime_ = costTime_;
|
|
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.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo) {
|
|
return mergeFrom((emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo)other);
|
|
} else {
|
|
super.mergeFrom(other);
|
|
return this;
|
|
}
|
|
}
|
|
|
|
public Builder mergeFrom(emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo other) {
|
|
if (other == emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo.getDefaultInstance()) return this;
|
|
if (statInfoListBuilder_ == null) {
|
|
if (!other.statInfoList_.isEmpty()) {
|
|
if (statInfoList_.isEmpty()) {
|
|
statInfoList_ = other.statInfoList_;
|
|
bitField0_ = (bitField0_ & ~0x00000001);
|
|
} else {
|
|
ensureStatInfoListIsMutable();
|
|
statInfoList_.addAll(other.statInfoList_);
|
|
}
|
|
onChanged();
|
|
}
|
|
} else {
|
|
if (!other.statInfoList_.isEmpty()) {
|
|
if (statInfoListBuilder_.isEmpty()) {
|
|
statInfoListBuilder_.dispose();
|
|
statInfoListBuilder_ = null;
|
|
statInfoList_ = other.statInfoList_;
|
|
bitField0_ = (bitField0_ & ~0x00000001);
|
|
statInfoListBuilder_ =
|
|
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
|
|
getStatInfoListFieldBuilder() : null;
|
|
} else {
|
|
statInfoListBuilder_.addAllMessages(other.statInfoList_);
|
|
}
|
|
}
|
|
}
|
|
if (other.getEnergy() != 0) {
|
|
setEnergy(other.getEnergy());
|
|
}
|
|
if (other.getRewardTokenNum() != 0) {
|
|
setRewardTokenNum(other.getRewardTokenNum());
|
|
}
|
|
if (other.getIsSuccess() != false) {
|
|
setIsSuccess(other.getIsSuccess());
|
|
}
|
|
if (other.getCostTime() != 0) {
|
|
setCostTime(other.getCostTime());
|
|
}
|
|
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.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo parsedMessage = null;
|
|
try {
|
|
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
|
|
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
|
|
parsedMessage = (emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo) e.getUnfinishedMessage();
|
|
throw e.unwrapIOException();
|
|
} finally {
|
|
if (parsedMessage != null) {
|
|
mergeFrom(parsedMessage);
|
|
}
|
|
}
|
|
return this;
|
|
}
|
|
private int bitField0_;
|
|
|
|
private java.util.List<emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfo> statInfoList_ =
|
|
java.util.Collections.emptyList();
|
|
private void ensureStatInfoListIsMutable() {
|
|
if (!((bitField0_ & 0x00000001) != 0)) {
|
|
statInfoList_ = new java.util.ArrayList<emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfo>(statInfoList_);
|
|
bitField0_ |= 0x00000001;
|
|
}
|
|
}
|
|
|
|
private com.google.protobuf.RepeatedFieldBuilderV3<
|
|
emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfo, emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfo.Builder, emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfoOrBuilder> statInfoListBuilder_;
|
|
|
|
/**
|
|
* <code>repeated .FleurFairPlayerStatInfo stat_info_list = 7;</code>
|
|
*/
|
|
public java.util.List<emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfo> getStatInfoListList() {
|
|
if (statInfoListBuilder_ == null) {
|
|
return java.util.Collections.unmodifiableList(statInfoList_);
|
|
} else {
|
|
return statInfoListBuilder_.getMessageList();
|
|
}
|
|
}
|
|
/**
|
|
* <code>repeated .FleurFairPlayerStatInfo stat_info_list = 7;</code>
|
|
*/
|
|
public int getStatInfoListCount() {
|
|
if (statInfoListBuilder_ == null) {
|
|
return statInfoList_.size();
|
|
} else {
|
|
return statInfoListBuilder_.getCount();
|
|
}
|
|
}
|
|
/**
|
|
* <code>repeated .FleurFairPlayerStatInfo stat_info_list = 7;</code>
|
|
*/
|
|
public emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfo getStatInfoList(int index) {
|
|
if (statInfoListBuilder_ == null) {
|
|
return statInfoList_.get(index);
|
|
} else {
|
|
return statInfoListBuilder_.getMessage(index);
|
|
}
|
|
}
|
|
/**
|
|
* <code>repeated .FleurFairPlayerStatInfo stat_info_list = 7;</code>
|
|
*/
|
|
public Builder setStatInfoList(
|
|
int index, emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfo value) {
|
|
if (statInfoListBuilder_ == null) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
ensureStatInfoListIsMutable();
|
|
statInfoList_.set(index, value);
|
|
onChanged();
|
|
} else {
|
|
statInfoListBuilder_.setMessage(index, value);
|
|
}
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>repeated .FleurFairPlayerStatInfo stat_info_list = 7;</code>
|
|
*/
|
|
public Builder setStatInfoList(
|
|
int index, emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfo.Builder builderForValue) {
|
|
if (statInfoListBuilder_ == null) {
|
|
ensureStatInfoListIsMutable();
|
|
statInfoList_.set(index, builderForValue.build());
|
|
onChanged();
|
|
} else {
|
|
statInfoListBuilder_.setMessage(index, builderForValue.build());
|
|
}
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>repeated .FleurFairPlayerStatInfo stat_info_list = 7;</code>
|
|
*/
|
|
public Builder addStatInfoList(emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfo value) {
|
|
if (statInfoListBuilder_ == null) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
ensureStatInfoListIsMutable();
|
|
statInfoList_.add(value);
|
|
onChanged();
|
|
} else {
|
|
statInfoListBuilder_.addMessage(value);
|
|
}
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>repeated .FleurFairPlayerStatInfo stat_info_list = 7;</code>
|
|
*/
|
|
public Builder addStatInfoList(
|
|
int index, emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfo value) {
|
|
if (statInfoListBuilder_ == null) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
ensureStatInfoListIsMutable();
|
|
statInfoList_.add(index, value);
|
|
onChanged();
|
|
} else {
|
|
statInfoListBuilder_.addMessage(index, value);
|
|
}
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>repeated .FleurFairPlayerStatInfo stat_info_list = 7;</code>
|
|
*/
|
|
public Builder addStatInfoList(
|
|
emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfo.Builder builderForValue) {
|
|
if (statInfoListBuilder_ == null) {
|
|
ensureStatInfoListIsMutable();
|
|
statInfoList_.add(builderForValue.build());
|
|
onChanged();
|
|
} else {
|
|
statInfoListBuilder_.addMessage(builderForValue.build());
|
|
}
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>repeated .FleurFairPlayerStatInfo stat_info_list = 7;</code>
|
|
*/
|
|
public Builder addStatInfoList(
|
|
int index, emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfo.Builder builderForValue) {
|
|
if (statInfoListBuilder_ == null) {
|
|
ensureStatInfoListIsMutable();
|
|
statInfoList_.add(index, builderForValue.build());
|
|
onChanged();
|
|
} else {
|
|
statInfoListBuilder_.addMessage(index, builderForValue.build());
|
|
}
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>repeated .FleurFairPlayerStatInfo stat_info_list = 7;</code>
|
|
*/
|
|
public Builder addAllStatInfoList(
|
|
java.lang.Iterable<? extends emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfo> values) {
|
|
if (statInfoListBuilder_ == null) {
|
|
ensureStatInfoListIsMutable();
|
|
com.google.protobuf.AbstractMessageLite.Builder.addAll(
|
|
values, statInfoList_);
|
|
onChanged();
|
|
} else {
|
|
statInfoListBuilder_.addAllMessages(values);
|
|
}
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>repeated .FleurFairPlayerStatInfo stat_info_list = 7;</code>
|
|
*/
|
|
public Builder clearStatInfoList() {
|
|
if (statInfoListBuilder_ == null) {
|
|
statInfoList_ = java.util.Collections.emptyList();
|
|
bitField0_ = (bitField0_ & ~0x00000001);
|
|
onChanged();
|
|
} else {
|
|
statInfoListBuilder_.clear();
|
|
}
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>repeated .FleurFairPlayerStatInfo stat_info_list = 7;</code>
|
|
*/
|
|
public Builder removeStatInfoList(int index) {
|
|
if (statInfoListBuilder_ == null) {
|
|
ensureStatInfoListIsMutable();
|
|
statInfoList_.remove(index);
|
|
onChanged();
|
|
} else {
|
|
statInfoListBuilder_.remove(index);
|
|
}
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>repeated .FleurFairPlayerStatInfo stat_info_list = 7;</code>
|
|
*/
|
|
public emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfo.Builder getStatInfoListBuilder(
|
|
int index) {
|
|
return getStatInfoListFieldBuilder().getBuilder(index);
|
|
}
|
|
/**
|
|
* <code>repeated .FleurFairPlayerStatInfo stat_info_list = 7;</code>
|
|
*/
|
|
public emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfoOrBuilder getStatInfoListOrBuilder(
|
|
int index) {
|
|
if (statInfoListBuilder_ == null) {
|
|
return statInfoList_.get(index); } else {
|
|
return statInfoListBuilder_.getMessageOrBuilder(index);
|
|
}
|
|
}
|
|
/**
|
|
* <code>repeated .FleurFairPlayerStatInfo stat_info_list = 7;</code>
|
|
*/
|
|
public java.util.List<? extends emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfoOrBuilder>
|
|
getStatInfoListOrBuilderList() {
|
|
if (statInfoListBuilder_ != null) {
|
|
return statInfoListBuilder_.getMessageOrBuilderList();
|
|
} else {
|
|
return java.util.Collections.unmodifiableList(statInfoList_);
|
|
}
|
|
}
|
|
/**
|
|
* <code>repeated .FleurFairPlayerStatInfo stat_info_list = 7;</code>
|
|
*/
|
|
public emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfo.Builder addStatInfoListBuilder() {
|
|
return getStatInfoListFieldBuilder().addBuilder(
|
|
emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfo.getDefaultInstance());
|
|
}
|
|
/**
|
|
* <code>repeated .FleurFairPlayerStatInfo stat_info_list = 7;</code>
|
|
*/
|
|
public emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfo.Builder addStatInfoListBuilder(
|
|
int index) {
|
|
return getStatInfoListFieldBuilder().addBuilder(
|
|
index, emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfo.getDefaultInstance());
|
|
}
|
|
/**
|
|
* <code>repeated .FleurFairPlayerStatInfo stat_info_list = 7;</code>
|
|
*/
|
|
public java.util.List<emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfo.Builder>
|
|
getStatInfoListBuilderList() {
|
|
return getStatInfoListFieldBuilder().getBuilderList();
|
|
}
|
|
private com.google.protobuf.RepeatedFieldBuilderV3<
|
|
emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfo, emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfo.Builder, emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfoOrBuilder>
|
|
getStatInfoListFieldBuilder() {
|
|
if (statInfoListBuilder_ == null) {
|
|
statInfoListBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
|
|
emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfo, emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfo.Builder, emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.FleurFairPlayerStatInfoOrBuilder>(
|
|
statInfoList_,
|
|
((bitField0_ & 0x00000001) != 0),
|
|
getParentForChildren(),
|
|
isClean());
|
|
statInfoList_ = null;
|
|
}
|
|
return statInfoListBuilder_;
|
|
}
|
|
|
|
private int energy_ ;
|
|
/**
|
|
* <code>uint32 energy = 8;</code>
|
|
* @return The energy.
|
|
*/
|
|
@java.lang.Override
|
|
public int getEnergy() {
|
|
return energy_;
|
|
}
|
|
/**
|
|
* <code>uint32 energy = 8;</code>
|
|
* @param value The energy to set.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder setEnergy(int value) {
|
|
|
|
energy_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>uint32 energy = 8;</code>
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder clearEnergy() {
|
|
|
|
energy_ = 0;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
private int rewardTokenNum_ ;
|
|
/**
|
|
* <code>uint32 reward_token_num = 10;</code>
|
|
* @return The rewardTokenNum.
|
|
*/
|
|
@java.lang.Override
|
|
public int getRewardTokenNum() {
|
|
return rewardTokenNum_;
|
|
}
|
|
/**
|
|
* <code>uint32 reward_token_num = 10;</code>
|
|
* @param value The rewardTokenNum to set.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder setRewardTokenNum(int value) {
|
|
|
|
rewardTokenNum_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>uint32 reward_token_num = 10;</code>
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder clearRewardTokenNum() {
|
|
|
|
rewardTokenNum_ = 0;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
private boolean isSuccess_ ;
|
|
/**
|
|
* <code>bool is_success = 5;</code>
|
|
* @return The isSuccess.
|
|
*/
|
|
@java.lang.Override
|
|
public boolean getIsSuccess() {
|
|
return isSuccess_;
|
|
}
|
|
/**
|
|
* <code>bool is_success = 5;</code>
|
|
* @param value The isSuccess to set.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder setIsSuccess(boolean value) {
|
|
|
|
isSuccess_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>bool is_success = 5;</code>
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder clearIsSuccess() {
|
|
|
|
isSuccess_ = false;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
private int costTime_ ;
|
|
/**
|
|
* <code>uint32 cost_time = 6;</code>
|
|
* @return The costTime.
|
|
*/
|
|
@java.lang.Override
|
|
public int getCostTime() {
|
|
return costTime_;
|
|
}
|
|
/**
|
|
* <code>uint32 cost_time = 6;</code>
|
|
* @param value The costTime to set.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder setCostTime(int value) {
|
|
|
|
costTime_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>uint32 cost_time = 6;</code>
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder clearCostTime() {
|
|
|
|
costTime_ = 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:FleurFairBossSettleInfo)
|
|
}
|
|
|
|
// @@protoc_insertion_point(class_scope:FleurFairBossSettleInfo)
|
|
private static final emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo DEFAULT_INSTANCE;
|
|
static {
|
|
DEFAULT_INSTANCE = new emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo();
|
|
}
|
|
|
|
public static emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo getDefaultInstance() {
|
|
return DEFAULT_INSTANCE;
|
|
}
|
|
|
|
private static final com.google.protobuf.Parser<FleurFairBossSettleInfo>
|
|
PARSER = new com.google.protobuf.AbstractParser<FleurFairBossSettleInfo>() {
|
|
@java.lang.Override
|
|
public FleurFairBossSettleInfo parsePartialFrom(
|
|
com.google.protobuf.CodedInputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return new FleurFairBossSettleInfo(input, extensionRegistry);
|
|
}
|
|
};
|
|
|
|
public static com.google.protobuf.Parser<FleurFairBossSettleInfo> parser() {
|
|
return PARSER;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public com.google.protobuf.Parser<FleurFairBossSettleInfo> getParserForType() {
|
|
return PARSER;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.FleurFairBossSettleInfoOuterClass.FleurFairBossSettleInfo getDefaultInstanceForType() {
|
|
return DEFAULT_INSTANCE;
|
|
}
|
|
|
|
}
|
|
|
|
private static final com.google.protobuf.Descriptors.Descriptor
|
|
internal_static_FleurFairBossSettleInfo_descriptor;
|
|
private static final
|
|
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
|
|
internal_static_FleurFairBossSettleInfo_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\035FleurFairBossSettleInfo.proto\032\035FleurFa" +
|
|
"irPlayerStatInfo.proto\"\234\001\n\027FleurFairBoss" +
|
|
"SettleInfo\0220\n\016stat_info_list\030\007 \003(\0132\030.Fle" +
|
|
"urFairPlayerStatInfo\022\016\n\006energy\030\010 \001(\r\022\030\n\020" +
|
|
"reward_token_num\030\n \001(\r\022\022\n\nis_success\030\005 \001" +
|
|
"(\010\022\021\n\tcost_time\030\006 \001(\rB\033\n\031emu.grasscutter" +
|
|
".net.protob\006proto3"
|
|
};
|
|
descriptor = com.google.protobuf.Descriptors.FileDescriptor
|
|
.internalBuildGeneratedFileFrom(descriptorData,
|
|
new com.google.protobuf.Descriptors.FileDescriptor[] {
|
|
emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.getDescriptor(),
|
|
});
|
|
internal_static_FleurFairBossSettleInfo_descriptor =
|
|
getDescriptor().getMessageTypes().get(0);
|
|
internal_static_FleurFairBossSettleInfo_fieldAccessorTable = new
|
|
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
|
|
internal_static_FleurFairBossSettleInfo_descriptor,
|
|
new java.lang.String[] { "StatInfoList", "Energy", "RewardTokenNum", "IsSuccess", "CostTime", });
|
|
emu.grasscutter.net.proto.FleurFairPlayerStatInfoOuterClass.getDescriptor();
|
|
}
|
|
|
|
// @@protoc_insertion_point(outer_class_scope)
|
|
}
|