// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: PlayerApplyEnterMpResultNotify.proto
package emu.grasscutter.net.proto;
public final class PlayerApplyEnterMpResultNotifyOuterClass {
private PlayerApplyEnterMpResultNotifyOuterClass() {}
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 PlayerApplyEnterMpResultNotifyOrBuilder extends
// @@protoc_insertion_point(interface_extends:PlayerApplyEnterMpResultNotify)
com.google.protobuf.MessageOrBuilder {
/**
* bool is_agreed = 2;
* @return The isAgreed.
*/
boolean getIsAgreed();
/**
* string target_nickname = 12;
* @return The targetNickname.
*/
java.lang.String getTargetNickname();
/**
* string target_nickname = 12;
* @return The bytes for targetNickname.
*/
com.google.protobuf.ByteString
getTargetNicknameBytes();
/**
* .PlayerApplyEnterMpResultNotify.Reason reason = 13;
* @return The enum numeric value on the wire for reason.
*/
int getReasonValue();
/**
* .PlayerApplyEnterMpResultNotify.Reason reason = 13;
* @return The reason.
*/
emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.Reason getReason();
/**
* uint32 target_uid = 1;
* @return The targetUid.
*/
int getTargetUid();
}
/**
*
* CmdId: 1807 * EnetChannelId: 0 * EnetIsReliable: false * IsAllowClient: true ** * Protobuf type {@code PlayerApplyEnterMpResultNotify} */ public static final class PlayerApplyEnterMpResultNotify extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:PlayerApplyEnterMpResultNotify) PlayerApplyEnterMpResultNotifyOrBuilder { private static final long serialVersionUID = 0L; // Use PlayerApplyEnterMpResultNotify.newBuilder() to construct. private PlayerApplyEnterMpResultNotify(com.google.protobuf.GeneratedMessageV3.Builder> builder) { super(builder); } private PlayerApplyEnterMpResultNotify() { targetNickname_ = ""; reason_ = 0; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new PlayerApplyEnterMpResultNotify(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private PlayerApplyEnterMpResultNotify( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { this(); if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } 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 8: { targetUid_ = input.readUInt32(); break; } case 16: { isAgreed_ = input.readBool(); break; } case 98: { java.lang.String s = input.readStringRequireUtf8(); targetNickname_ = s; break; } case 104: { int rawValue = input.readEnum(); reason_ = rawValue; 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 { this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.internal_static_PlayerApplyEnterMpResultNotify_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.internal_static_PlayerApplyEnterMpResultNotify_fieldAccessorTable .ensureFieldAccessorsInitialized( emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.class, emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.Builder.class); } /** * Protobuf enum {@code PlayerApplyEnterMpResultNotify.Reason} */ public enum Reason implements com.google.protobuf.ProtocolMessageEnum { /** *
REASON_PLAYER_JUDGE = 0;
*/
REASON_PLAYER_JUDGE(0),
/**
* REASON_SCENE_CANNOT_ENTER = 1;
*/
REASON_SCENE_CANNOT_ENTER(1),
/**
* REASON_PLAYER_CANNOT_ENTER_MP = 2;
*/
REASON_PLAYER_CANNOT_ENTER_MP(2),
/**
* REASON_SYSTEM_JUDGE = 3;
*/
REASON_SYSTEM_JUDGE(3),
/**
* REASON_ALLOW_ENTER_PLAYER_FULL = 4;
*/
REASON_ALLOW_ENTER_PLAYER_FULL(4),
/**
* REASON_WORLD_LEVEL_LOWER_THAN_HOST = 5;
*/
REASON_WORLD_LEVEL_LOWER_THAN_HOST(5),
/**
* REASON_HOST_IN_MATCH = 6;
*/
REASON_HOST_IN_MATCH(6),
/**
* REASON_PLAYER_IN_BLACKLIST = 7;
*/
REASON_PLAYER_IN_BLACKLIST(7),
/**
* REASON_PS_PLAYER_NOT_ACCEPT_OTHERS = 8;
*/
REASON_PS_PLAYER_NOT_ACCEPT_OTHERS(8),
/**
* REASON_HOST_IS_BLOCKED = 9;
*/
REASON_HOST_IS_BLOCKED(9),
/**
* REASON_OTHER_DATA_VERSION_NOT_LATEST = 10;
*/
REASON_OTHER_DATA_VERSION_NOT_LATEST(10),
/**
* REASON_DATA_VERSION_NOT_LATEST = 11;
*/
REASON_DATA_VERSION_NOT_LATEST(11),
/**
* REASON_PLAYER_NOT_IN_PLAYER_WORLD = 12;
*/
REASON_PLAYER_NOT_IN_PLAYER_WORLD(12),
/**
* REASON_MAX_PLAYER = 13;
*/
REASON_MAX_PLAYER(13),
UNRECOGNIZED(-1),
;
/**
* REASON_PLAYER_JUDGE = 0;
*/
public static final int REASON_PLAYER_JUDGE_VALUE = 0;
/**
* REASON_SCENE_CANNOT_ENTER = 1;
*/
public static final int REASON_SCENE_CANNOT_ENTER_VALUE = 1;
/**
* REASON_PLAYER_CANNOT_ENTER_MP = 2;
*/
public static final int REASON_PLAYER_CANNOT_ENTER_MP_VALUE = 2;
/**
* REASON_SYSTEM_JUDGE = 3;
*/
public static final int REASON_SYSTEM_JUDGE_VALUE = 3;
/**
* REASON_ALLOW_ENTER_PLAYER_FULL = 4;
*/
public static final int REASON_ALLOW_ENTER_PLAYER_FULL_VALUE = 4;
/**
* REASON_WORLD_LEVEL_LOWER_THAN_HOST = 5;
*/
public static final int REASON_WORLD_LEVEL_LOWER_THAN_HOST_VALUE = 5;
/**
* REASON_HOST_IN_MATCH = 6;
*/
public static final int REASON_HOST_IN_MATCH_VALUE = 6;
/**
* REASON_PLAYER_IN_BLACKLIST = 7;
*/
public static final int REASON_PLAYER_IN_BLACKLIST_VALUE = 7;
/**
* REASON_PS_PLAYER_NOT_ACCEPT_OTHERS = 8;
*/
public static final int REASON_PS_PLAYER_NOT_ACCEPT_OTHERS_VALUE = 8;
/**
* REASON_HOST_IS_BLOCKED = 9;
*/
public static final int REASON_HOST_IS_BLOCKED_VALUE = 9;
/**
* REASON_OTHER_DATA_VERSION_NOT_LATEST = 10;
*/
public static final int REASON_OTHER_DATA_VERSION_NOT_LATEST_VALUE = 10;
/**
* REASON_DATA_VERSION_NOT_LATEST = 11;
*/
public static final int REASON_DATA_VERSION_NOT_LATEST_VALUE = 11;
/**
* REASON_PLAYER_NOT_IN_PLAYER_WORLD = 12;
*/
public static final int REASON_PLAYER_NOT_IN_PLAYER_WORLD_VALUE = 12;
/**
* REASON_MAX_PLAYER = 13;
*/
public static final int REASON_MAX_PLAYER_VALUE = 13;
public final int getNumber() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalArgumentException(
"Can't get the number of an unknown enum value.");
}
return value;
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static Reason valueOf(int value) {
return forNumber(value);
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
*/
public static Reason forNumber(int value) {
switch (value) {
case 0: return REASON_PLAYER_JUDGE;
case 1: return REASON_SCENE_CANNOT_ENTER;
case 2: return REASON_PLAYER_CANNOT_ENTER_MP;
case 3: return REASON_SYSTEM_JUDGE;
case 4: return REASON_ALLOW_ENTER_PLAYER_FULL;
case 5: return REASON_WORLD_LEVEL_LOWER_THAN_HOST;
case 6: return REASON_HOST_IN_MATCH;
case 7: return REASON_PLAYER_IN_BLACKLIST;
case 8: return REASON_PS_PLAYER_NOT_ACCEPT_OTHERS;
case 9: return REASON_HOST_IS_BLOCKED;
case 10: return REASON_OTHER_DATA_VERSION_NOT_LATEST;
case 11: return REASON_DATA_VERSION_NOT_LATEST;
case 12: return REASON_PLAYER_NOT_IN_PLAYER_WORLD;
case 13: return REASON_MAX_PLAYER;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMapbool is_agreed = 2;
* @return The isAgreed.
*/
@java.lang.Override
public boolean getIsAgreed() {
return isAgreed_;
}
public static final int TARGET_NICKNAME_FIELD_NUMBER = 12;
private volatile java.lang.Object targetNickname_;
/**
* string target_nickname = 12;
* @return The targetNickname.
*/
@java.lang.Override
public java.lang.String getTargetNickname() {
java.lang.Object ref = targetNickname_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
targetNickname_ = s;
return s;
}
}
/**
* string target_nickname = 12;
* @return The bytes for targetNickname.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getTargetNicknameBytes() {
java.lang.Object ref = targetNickname_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
targetNickname_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int REASON_FIELD_NUMBER = 13;
private int reason_;
/**
* .PlayerApplyEnterMpResultNotify.Reason reason = 13;
* @return The enum numeric value on the wire for reason.
*/
@java.lang.Override public int getReasonValue() {
return reason_;
}
/**
* .PlayerApplyEnterMpResultNotify.Reason reason = 13;
* @return The reason.
*/
@java.lang.Override public emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.Reason getReason() {
@SuppressWarnings("deprecation")
emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.Reason result = emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.Reason.valueOf(reason_);
return result == null ? emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.Reason.UNRECOGNIZED : result;
}
public static final int TARGET_UID_FIELD_NUMBER = 1;
private int targetUid_;
/**
* uint32 target_uid = 1;
* @return The targetUid.
*/
@java.lang.Override
public int getTargetUid() {
return targetUid_;
}
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 (targetUid_ != 0) {
output.writeUInt32(1, targetUid_);
}
if (isAgreed_ != false) {
output.writeBool(2, isAgreed_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(targetNickname_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 12, targetNickname_);
}
if (reason_ != emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.Reason.REASON_PLAYER_JUDGE.getNumber()) {
output.writeEnum(13, reason_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (targetUid_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeUInt32Size(1, targetUid_);
}
if (isAgreed_ != false) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(2, isAgreed_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(targetNickname_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(12, targetNickname_);
}
if (reason_ != emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.Reason.REASON_PLAYER_JUDGE.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(13, reason_);
}
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.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify)) {
return super.equals(obj);
}
emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify other = (emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify) obj;
if (getIsAgreed()
!= other.getIsAgreed()) return false;
if (!getTargetNickname()
.equals(other.getTargetNickname())) return false;
if (reason_ != other.reason_) return false;
if (getTargetUid()
!= other.getTargetUid()) 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_AGREED_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
getIsAgreed());
hash = (37 * hash) + TARGET_NICKNAME_FIELD_NUMBER;
hash = (53 * hash) + getTargetNickname().hashCode();
hash = (37 * hash) + REASON_FIELD_NUMBER;
hash = (53 * hash) + reason_;
hash = (37 * hash) + TARGET_UID_FIELD_NUMBER;
hash = (53 * hash) + getTargetUid();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify 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.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify 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.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify 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.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify 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.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify 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.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify 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;
}
/**
* * CmdId: 1807 * EnetChannelId: 0 * EnetIsReliable: false * IsAllowClient: true ** * Protobuf type {@code PlayerApplyEnterMpResultNotify} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
bool is_agreed = 2;
* @return The isAgreed.
*/
@java.lang.Override
public boolean getIsAgreed() {
return isAgreed_;
}
/**
* bool is_agreed = 2;
* @param value The isAgreed to set.
* @return This builder for chaining.
*/
public Builder setIsAgreed(boolean value) {
isAgreed_ = value;
onChanged();
return this;
}
/**
* bool is_agreed = 2;
* @return This builder for chaining.
*/
public Builder clearIsAgreed() {
isAgreed_ = false;
onChanged();
return this;
}
private java.lang.Object targetNickname_ = "";
/**
* string target_nickname = 12;
* @return The targetNickname.
*/
public java.lang.String getTargetNickname() {
java.lang.Object ref = targetNickname_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
targetNickname_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string target_nickname = 12;
* @return The bytes for targetNickname.
*/
public com.google.protobuf.ByteString
getTargetNicknameBytes() {
java.lang.Object ref = targetNickname_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
targetNickname_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string target_nickname = 12;
* @param value The targetNickname to set.
* @return This builder for chaining.
*/
public Builder setTargetNickname(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
targetNickname_ = value;
onChanged();
return this;
}
/**
* string target_nickname = 12;
* @return This builder for chaining.
*/
public Builder clearTargetNickname() {
targetNickname_ = getDefaultInstance().getTargetNickname();
onChanged();
return this;
}
/**
* string target_nickname = 12;
* @param value The bytes for targetNickname to set.
* @return This builder for chaining.
*/
public Builder setTargetNicknameBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
targetNickname_ = value;
onChanged();
return this;
}
private int reason_ = 0;
/**
* .PlayerApplyEnterMpResultNotify.Reason reason = 13;
* @return The enum numeric value on the wire for reason.
*/
@java.lang.Override public int getReasonValue() {
return reason_;
}
/**
* .PlayerApplyEnterMpResultNotify.Reason reason = 13;
* @param value The enum numeric value on the wire for reason to set.
* @return This builder for chaining.
*/
public Builder setReasonValue(int value) {
reason_ = value;
onChanged();
return this;
}
/**
* .PlayerApplyEnterMpResultNotify.Reason reason = 13;
* @return The reason.
*/
@java.lang.Override
public emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.Reason getReason() {
@SuppressWarnings("deprecation")
emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.Reason result = emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.Reason.valueOf(reason_);
return result == null ? emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.Reason.UNRECOGNIZED : result;
}
/**
* .PlayerApplyEnterMpResultNotify.Reason reason = 13;
* @param value The reason to set.
* @return This builder for chaining.
*/
public Builder setReason(emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify.Reason value) {
if (value == null) {
throw new NullPointerException();
}
reason_ = value.getNumber();
onChanged();
return this;
}
/**
* .PlayerApplyEnterMpResultNotify.Reason reason = 13;
* @return This builder for chaining.
*/
public Builder clearReason() {
reason_ = 0;
onChanged();
return this;
}
private int targetUid_ ;
/**
* uint32 target_uid = 1;
* @return The targetUid.
*/
@java.lang.Override
public int getTargetUid() {
return targetUid_;
}
/**
* uint32 target_uid = 1;
* @param value The targetUid to set.
* @return This builder for chaining.
*/
public Builder setTargetUid(int value) {
targetUid_ = value;
onChanged();
return this;
}
/**
* uint32 target_uid = 1;
* @return This builder for chaining.
*/
public Builder clearTargetUid() {
targetUid_ = 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:PlayerApplyEnterMpResultNotify)
}
// @@protoc_insertion_point(class_scope:PlayerApplyEnterMpResultNotify)
private static final emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify();
}
public static emu.grasscutter.net.proto.PlayerApplyEnterMpResultNotifyOuterClass.PlayerApplyEnterMpResultNotify getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser