emu.grasscutter.net.proto.GadgetInteractRspOuterClass Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grasscutter Show documentation
Show all versions of grasscutter Show documentation
A server software reimplementation for an anime game.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: GadgetInteractRsp.proto
package emu.grasscutter.net.proto;
public final class GadgetInteractRspOuterClass {
private GadgetInteractRspOuterClass() {}
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 GadgetInteractRspOrBuilder extends
// @@protoc_insertion_point(interface_extends:GadgetInteractRsp)
com.google.protobuf.MessageOrBuilder {
/**
* int32 retcode = 1;
* @return The retcode.
*/
int getRetcode();
/**
* uint32 gadgetEntityId = 2;
* @return The gadgetEntityId.
*/
int getGadgetEntityId();
/**
* .InteractType interactType = 3;
* @return The enum numeric value on the wire for interactType.
*/
int getInteractTypeValue();
/**
* .InteractType interactType = 3;
* @return The interactType.
*/
emu.grasscutter.net.proto.InteractTypeOuterClass.InteractType getInteractType();
/**
* .InterOpType opType = 4;
* @return The enum numeric value on the wire for opType.
*/
int getOpTypeValue();
/**
* .InterOpType opType = 4;
* @return The opType.
*/
emu.grasscutter.net.proto.InterOpTypeOuterClass.InterOpType getOpType();
/**
* uint32 gadgetId = 5;
* @return The gadgetId.
*/
int getGadgetId();
}
/**
* Protobuf type {@code GadgetInteractRsp}
*/
public static final class GadgetInteractRsp extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:GadgetInteractRsp)
GadgetInteractRspOrBuilder {
private static final long serialVersionUID = 0L;
// Use GadgetInteractRsp.newBuilder() to construct.
private GadgetInteractRsp(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private GadgetInteractRsp() {
interactType_ = 0;
opType_ = 0;
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new GadgetInteractRsp();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private GadgetInteractRsp(
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: {
retcode_ = input.readInt32();
break;
}
case 16: {
gadgetEntityId_ = input.readUInt32();
break;
}
case 24: {
int rawValue = input.readEnum();
interactType_ = rawValue;
break;
}
case 32: {
int rawValue = input.readEnum();
opType_ = rawValue;
break;
}
case 40: {
gadgetId_ = 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 {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return emu.grasscutter.net.proto.GadgetInteractRspOuterClass.internal_static_GadgetInteractRsp_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return emu.grasscutter.net.proto.GadgetInteractRspOuterClass.internal_static_GadgetInteractRsp_fieldAccessorTable
.ensureFieldAccessorsInitialized(
emu.grasscutter.net.proto.GadgetInteractRspOuterClass.GadgetInteractRsp.class, emu.grasscutter.net.proto.GadgetInteractRspOuterClass.GadgetInteractRsp.Builder.class);
}
public static final int RETCODE_FIELD_NUMBER = 1;
private int retcode_;
/**
* int32 retcode = 1;
* @return The retcode.
*/
@java.lang.Override
public int getRetcode() {
return retcode_;
}
public static final int GADGETENTITYID_FIELD_NUMBER = 2;
private int gadgetEntityId_;
/**
* uint32 gadgetEntityId = 2;
* @return The gadgetEntityId.
*/
@java.lang.Override
public int getGadgetEntityId() {
return gadgetEntityId_;
}
public static final int INTERACTTYPE_FIELD_NUMBER = 3;
private int interactType_;
/**
* .InteractType interactType = 3;
* @return The enum numeric value on the wire for interactType.
*/
@java.lang.Override public int getInteractTypeValue() {
return interactType_;
}
/**
* .InteractType interactType = 3;
* @return The interactType.
*/
@java.lang.Override public emu.grasscutter.net.proto.InteractTypeOuterClass.InteractType getInteractType() {
@SuppressWarnings("deprecation")
emu.grasscutter.net.proto.InteractTypeOuterClass.InteractType result = emu.grasscutter.net.proto.InteractTypeOuterClass.InteractType.valueOf(interactType_);
return result == null ? emu.grasscutter.net.proto.InteractTypeOuterClass.InteractType.UNRECOGNIZED : result;
}
public static final int OPTYPE_FIELD_NUMBER = 4;
private int opType_;
/**
* .InterOpType opType = 4;
* @return The enum numeric value on the wire for opType.
*/
@java.lang.Override public int getOpTypeValue() {
return opType_;
}
/**
* .InterOpType opType = 4;
* @return The opType.
*/
@java.lang.Override public emu.grasscutter.net.proto.InterOpTypeOuterClass.InterOpType getOpType() {
@SuppressWarnings("deprecation")
emu.grasscutter.net.proto.InterOpTypeOuterClass.InterOpType result = emu.grasscutter.net.proto.InterOpTypeOuterClass.InterOpType.valueOf(opType_);
return result == null ? emu.grasscutter.net.proto.InterOpTypeOuterClass.InterOpType.UNRECOGNIZED : result;
}
public static final int GADGETID_FIELD_NUMBER = 5;
private int gadgetId_;
/**
* uint32 gadgetId = 5;
* @return The gadgetId.
*/
@java.lang.Override
public int getGadgetId() {
return gadgetId_;
}
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 (retcode_ != 0) {
output.writeInt32(1, retcode_);
}
if (gadgetEntityId_ != 0) {
output.writeUInt32(2, gadgetEntityId_);
}
if (interactType_ != emu.grasscutter.net.proto.InteractTypeOuterClass.InteractType.InteractNone.getNumber()) {
output.writeEnum(3, interactType_);
}
if (opType_ != emu.grasscutter.net.proto.InterOpTypeOuterClass.InterOpType.InterOpFinish.getNumber()) {
output.writeEnum(4, opType_);
}
if (gadgetId_ != 0) {
output.writeUInt32(5, gadgetId_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (retcode_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(1, retcode_);
}
if (gadgetEntityId_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeUInt32Size(2, gadgetEntityId_);
}
if (interactType_ != emu.grasscutter.net.proto.InteractTypeOuterClass.InteractType.InteractNone.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(3, interactType_);
}
if (opType_ != emu.grasscutter.net.proto.InterOpTypeOuterClass.InterOpType.InterOpFinish.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(4, opType_);
}
if (gadgetId_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeUInt32Size(5, gadgetId_);
}
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.GadgetInteractRspOuterClass.GadgetInteractRsp)) {
return super.equals(obj);
}
emu.grasscutter.net.proto.GadgetInteractRspOuterClass.GadgetInteractRsp other = (emu.grasscutter.net.proto.GadgetInteractRspOuterClass.GadgetInteractRsp) obj;
if (getRetcode()
!= other.getRetcode()) return false;
if (getGadgetEntityId()
!= other.getGadgetEntityId()) return false;
if (interactType_ != other.interactType_) return false;
if (opType_ != other.opType_) return false;
if (getGadgetId()
!= other.getGadgetId()) 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) + RETCODE_FIELD_NUMBER;
hash = (53 * hash) + getRetcode();
hash = (37 * hash) + GADGETENTITYID_FIELD_NUMBER;
hash = (53 * hash) + getGadgetEntityId();
hash = (37 * hash) + INTERACTTYPE_FIELD_NUMBER;
hash = (53 * hash) + interactType_;
hash = (37 * hash) + OPTYPE_FIELD_NUMBER;
hash = (53 * hash) + opType_;
hash = (37 * hash) + GADGETID_FIELD_NUMBER;
hash = (53 * hash) + getGadgetId();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static emu.grasscutter.net.proto.GadgetInteractRspOuterClass.GadgetInteractRsp parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static emu.grasscutter.net.proto.GadgetInteractRspOuterClass.GadgetInteractRsp 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.GadgetInteractRspOuterClass.GadgetInteractRsp parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static emu.grasscutter.net.proto.GadgetInteractRspOuterClass.GadgetInteractRsp 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.GadgetInteractRspOuterClass.GadgetInteractRsp parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static emu.grasscutter.net.proto.GadgetInteractRspOuterClass.GadgetInteractRsp parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static emu.grasscutter.net.proto.GadgetInteractRspOuterClass.GadgetInteractRsp parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static emu.grasscutter.net.proto.GadgetInteractRspOuterClass.GadgetInteractRsp 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.GadgetInteractRspOuterClass.GadgetInteractRsp parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static emu.grasscutter.net.proto.GadgetInteractRspOuterClass.GadgetInteractRsp 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.GadgetInteractRspOuterClass.GadgetInteractRsp parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static emu.grasscutter.net.proto.GadgetInteractRspOuterClass.GadgetInteractRsp 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.GadgetInteractRspOuterClass.GadgetInteractRsp 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;
}
/**
* Protobuf type {@code GadgetInteractRsp}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:GadgetInteractRsp)
emu.grasscutter.net.proto.GadgetInteractRspOuterClass.GadgetInteractRspOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return emu.grasscutter.net.proto.GadgetInteractRspOuterClass.internal_static_GadgetInteractRsp_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return emu.grasscutter.net.proto.GadgetInteractRspOuterClass.internal_static_GadgetInteractRsp_fieldAccessorTable
.ensureFieldAccessorsInitialized(
emu.grasscutter.net.proto.GadgetInteractRspOuterClass.GadgetInteractRsp.class, emu.grasscutter.net.proto.GadgetInteractRspOuterClass.GadgetInteractRsp.Builder.class);
}
// Construct using emu.grasscutter.net.proto.GadgetInteractRspOuterClass.GadgetInteractRsp.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@java.lang.Override
public Builder clear() {
super.clear();
retcode_ = 0;
gadgetEntityId_ = 0;
interactType_ = 0;
opType_ = 0;
gadgetId_ = 0;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return emu.grasscutter.net.proto.GadgetInteractRspOuterClass.internal_static_GadgetInteractRsp_descriptor;
}
@java.lang.Override
public emu.grasscutter.net.proto.GadgetInteractRspOuterClass.GadgetInteractRsp getDefaultInstanceForType() {
return emu.grasscutter.net.proto.GadgetInteractRspOuterClass.GadgetInteractRsp.getDefaultInstance();
}
@java.lang.Override
public emu.grasscutter.net.proto.GadgetInteractRspOuterClass.GadgetInteractRsp build() {
emu.grasscutter.net.proto.GadgetInteractRspOuterClass.GadgetInteractRsp result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public emu.grasscutter.net.proto.GadgetInteractRspOuterClass.GadgetInteractRsp buildPartial() {
emu.grasscutter.net.proto.GadgetInteractRspOuterClass.GadgetInteractRsp result = new emu.grasscutter.net.proto.GadgetInteractRspOuterClass.GadgetInteractRsp(this);
result.retcode_ = retcode_;
result.gadgetEntityId_ = gadgetEntityId_;
result.interactType_ = interactType_;
result.opType_ = opType_;
result.gadgetId_ = gadgetId_;
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.GadgetInteractRspOuterClass.GadgetInteractRsp) {
return mergeFrom((emu.grasscutter.net.proto.GadgetInteractRspOuterClass.GadgetInteractRsp)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(emu.grasscutter.net.proto.GadgetInteractRspOuterClass.GadgetInteractRsp other) {
if (other == emu.grasscutter.net.proto.GadgetInteractRspOuterClass.GadgetInteractRsp.getDefaultInstance()) return this;
if (other.getRetcode() != 0) {
setRetcode(other.getRetcode());
}
if (other.getGadgetEntityId() != 0) {
setGadgetEntityId(other.getGadgetEntityId());
}
if (other.interactType_ != 0) {
setInteractTypeValue(other.getInteractTypeValue());
}
if (other.opType_ != 0) {
setOpTypeValue(other.getOpTypeValue());
}
if (other.getGadgetId() != 0) {
setGadgetId(other.getGadgetId());
}
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.GadgetInteractRspOuterClass.GadgetInteractRsp parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (emu.grasscutter.net.proto.GadgetInteractRspOuterClass.GadgetInteractRsp) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int retcode_ ;
/**
* int32 retcode = 1;
* @return The retcode.
*/
@java.lang.Override
public int getRetcode() {
return retcode_;
}
/**
* int32 retcode = 1;
* @param value The retcode to set.
* @return This builder for chaining.
*/
public Builder setRetcode(int value) {
retcode_ = value;
onChanged();
return this;
}
/**
* int32 retcode = 1;
* @return This builder for chaining.
*/
public Builder clearRetcode() {
retcode_ = 0;
onChanged();
return this;
}
private int gadgetEntityId_ ;
/**
* uint32 gadgetEntityId = 2;
* @return The gadgetEntityId.
*/
@java.lang.Override
public int getGadgetEntityId() {
return gadgetEntityId_;
}
/**
* uint32 gadgetEntityId = 2;
* @param value The gadgetEntityId to set.
* @return This builder for chaining.
*/
public Builder setGadgetEntityId(int value) {
gadgetEntityId_ = value;
onChanged();
return this;
}
/**
* uint32 gadgetEntityId = 2;
* @return This builder for chaining.
*/
public Builder clearGadgetEntityId() {
gadgetEntityId_ = 0;
onChanged();
return this;
}
private int interactType_ = 0;
/**
* .InteractType interactType = 3;
* @return The enum numeric value on the wire for interactType.
*/
@java.lang.Override public int getInteractTypeValue() {
return interactType_;
}
/**
* .InteractType interactType = 3;
* @param value The enum numeric value on the wire for interactType to set.
* @return This builder for chaining.
*/
public Builder setInteractTypeValue(int value) {
interactType_ = value;
onChanged();
return this;
}
/**
* .InteractType interactType = 3;
* @return The interactType.
*/
@java.lang.Override
public emu.grasscutter.net.proto.InteractTypeOuterClass.InteractType getInteractType() {
@SuppressWarnings("deprecation")
emu.grasscutter.net.proto.InteractTypeOuterClass.InteractType result = emu.grasscutter.net.proto.InteractTypeOuterClass.InteractType.valueOf(interactType_);
return result == null ? emu.grasscutter.net.proto.InteractTypeOuterClass.InteractType.UNRECOGNIZED : result;
}
/**
* .InteractType interactType = 3;
* @param value The interactType to set.
* @return This builder for chaining.
*/
public Builder setInteractType(emu.grasscutter.net.proto.InteractTypeOuterClass.InteractType value) {
if (value == null) {
throw new NullPointerException();
}
interactType_ = value.getNumber();
onChanged();
return this;
}
/**
* .InteractType interactType = 3;
* @return This builder for chaining.
*/
public Builder clearInteractType() {
interactType_ = 0;
onChanged();
return this;
}
private int opType_ = 0;
/**
* .InterOpType opType = 4;
* @return The enum numeric value on the wire for opType.
*/
@java.lang.Override public int getOpTypeValue() {
return opType_;
}
/**
* .InterOpType opType = 4;
* @param value The enum numeric value on the wire for opType to set.
* @return This builder for chaining.
*/
public Builder setOpTypeValue(int value) {
opType_ = value;
onChanged();
return this;
}
/**
* .InterOpType opType = 4;
* @return The opType.
*/
@java.lang.Override
public emu.grasscutter.net.proto.InterOpTypeOuterClass.InterOpType getOpType() {
@SuppressWarnings("deprecation")
emu.grasscutter.net.proto.InterOpTypeOuterClass.InterOpType result = emu.grasscutter.net.proto.InterOpTypeOuterClass.InterOpType.valueOf(opType_);
return result == null ? emu.grasscutter.net.proto.InterOpTypeOuterClass.InterOpType.UNRECOGNIZED : result;
}
/**
* .InterOpType opType = 4;
* @param value The opType to set.
* @return This builder for chaining.
*/
public Builder setOpType(emu.grasscutter.net.proto.InterOpTypeOuterClass.InterOpType value) {
if (value == null) {
throw new NullPointerException();
}
opType_ = value.getNumber();
onChanged();
return this;
}
/**
* .InterOpType opType = 4;
* @return This builder for chaining.
*/
public Builder clearOpType() {
opType_ = 0;
onChanged();
return this;
}
private int gadgetId_ ;
/**
* uint32 gadgetId = 5;
* @return The gadgetId.
*/
@java.lang.Override
public int getGadgetId() {
return gadgetId_;
}
/**
* uint32 gadgetId = 5;
* @param value The gadgetId to set.
* @return This builder for chaining.
*/
public Builder setGadgetId(int value) {
gadgetId_ = value;
onChanged();
return this;
}
/**
* uint32 gadgetId = 5;
* @return This builder for chaining.
*/
public Builder clearGadgetId() {
gadgetId_ = 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:GadgetInteractRsp)
}
// @@protoc_insertion_point(class_scope:GadgetInteractRsp)
private static final emu.grasscutter.net.proto.GadgetInteractRspOuterClass.GadgetInteractRsp DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new emu.grasscutter.net.proto.GadgetInteractRspOuterClass.GadgetInteractRsp();
}
public static emu.grasscutter.net.proto.GadgetInteractRspOuterClass.GadgetInteractRsp getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public GadgetInteractRsp parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new GadgetInteractRsp(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public emu.grasscutter.net.proto.GadgetInteractRspOuterClass.GadgetInteractRsp getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_GadgetInteractRsp_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_GadgetInteractRsp_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\027GadgetInteractRsp.proto\032\021InterOpType.p" +
"roto\032\022InteractType.proto\"\221\001\n\021GadgetInter" +
"actRsp\022\017\n\007retcode\030\001 \001(\005\022\026\n\016gadgetEntityI" +
"d\030\002 \001(\r\022#\n\014interactType\030\003 \001(\0162\r.Interact" +
"Type\022\034\n\006opType\030\004 \001(\0162\014.InterOpType\022\020\n\010ga" +
"dgetId\030\005 \001(\rB\033\n\031emu.grasscutter.net.prot" +
"ob\006proto3"
};
descriptor = com.google.protobuf.Descriptors.FileDescriptor
.internalBuildGeneratedFileFrom(descriptorData,
new com.google.protobuf.Descriptors.FileDescriptor[] {
emu.grasscutter.net.proto.InterOpTypeOuterClass.getDescriptor(),
emu.grasscutter.net.proto.InteractTypeOuterClass.getDescriptor(),
});
internal_static_GadgetInteractRsp_descriptor =
getDescriptor().getMessageTypes().get(0);
internal_static_GadgetInteractRsp_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_GadgetInteractRsp_descriptor,
new java.lang.String[] { "Retcode", "GadgetEntityId", "InteractType", "OpType", "GadgetId", });
emu.grasscutter.net.proto.InterOpTypeOuterClass.getDescriptor();
emu.grasscutter.net.proto.InteractTypeOuterClass.getDescriptor();
}
// @@protoc_insertion_point(outer_class_scope)
}