mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-05-08 21:15:54 +08:00
950 lines
35 KiB
Java
950 lines
35 KiB
Java
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
// source: SetWidgetSlotReq.proto
|
|
|
|
package emu.grasscutter.net.proto;
|
|
|
|
public final class SetWidgetSlotReqOuterClass {
|
|
private SetWidgetSlotReqOuterClass() {}
|
|
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 SetWidgetSlotReqOrBuilder extends
|
|
// @@protoc_insertion_point(interface_extends:SetWidgetSlotReq)
|
|
com.google.protobuf.MessageOrBuilder {
|
|
|
|
/**
|
|
* <code>repeated .WidgetSlotTag tag_list = 2;</code>
|
|
* @return A list containing the tagList.
|
|
*/
|
|
java.util.List<emu.grasscutter.net.proto.WidgetSlotTagOuterClass.WidgetSlotTag> getTagListList();
|
|
/**
|
|
* <code>repeated .WidgetSlotTag tag_list = 2;</code>
|
|
* @return The count of tagList.
|
|
*/
|
|
int getTagListCount();
|
|
/**
|
|
* <code>repeated .WidgetSlotTag tag_list = 2;</code>
|
|
* @param index The index of the element to return.
|
|
* @return The tagList at the given index.
|
|
*/
|
|
emu.grasscutter.net.proto.WidgetSlotTagOuterClass.WidgetSlotTag getTagList(int index);
|
|
/**
|
|
* <code>repeated .WidgetSlotTag tag_list = 2;</code>
|
|
* @return A list containing the enum numeric values on the wire for tagList.
|
|
*/
|
|
java.util.List<java.lang.Integer>
|
|
getTagListValueList();
|
|
/**
|
|
* <code>repeated .WidgetSlotTag tag_list = 2;</code>
|
|
* @param index The index of the value to return.
|
|
* @return The enum numeric value on the wire of tagList at the given index.
|
|
*/
|
|
int getTagListValue(int index);
|
|
|
|
/**
|
|
* <code>.WidgetSlotOp op = 12;</code>
|
|
* @return The enum numeric value on the wire for op.
|
|
*/
|
|
int getOpValue();
|
|
/**
|
|
* <code>.WidgetSlotOp op = 12;</code>
|
|
* @return The op.
|
|
*/
|
|
emu.grasscutter.net.proto.WidgetSlotOpOuterClass.WidgetSlotOp getOp();
|
|
|
|
/**
|
|
* <code>uint32 material_id = 8;</code>
|
|
* @return The materialId.
|
|
*/
|
|
int getMaterialId();
|
|
}
|
|
/**
|
|
* Protobuf type {@code SetWidgetSlotReq}
|
|
*/
|
|
public static final class SetWidgetSlotReq extends
|
|
com.google.protobuf.GeneratedMessageV3 implements
|
|
// @@protoc_insertion_point(message_implements:SetWidgetSlotReq)
|
|
SetWidgetSlotReqOrBuilder {
|
|
private static final long serialVersionUID = 0L;
|
|
// Use SetWidgetSlotReq.newBuilder() to construct.
|
|
private SetWidgetSlotReq(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {
|
|
super(builder);
|
|
}
|
|
private SetWidgetSlotReq() {
|
|
tagList_ = java.util.Collections.emptyList();
|
|
op_ = 0;
|
|
}
|
|
|
|
@java.lang.Override
|
|
@SuppressWarnings({"unused"})
|
|
protected java.lang.Object newInstance(
|
|
UnusedPrivateParameter unused) {
|
|
return new SetWidgetSlotReq();
|
|
}
|
|
|
|
@java.lang.Override
|
|
public final com.google.protobuf.UnknownFieldSet
|
|
getUnknownFields() {
|
|
return this.unknownFields;
|
|
}
|
|
private SetWidgetSlotReq(
|
|
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 16: {
|
|
int rawValue = input.readEnum();
|
|
if (!((mutable_bitField0_ & 0x00000001) != 0)) {
|
|
tagList_ = new java.util.ArrayList<java.lang.Integer>();
|
|
mutable_bitField0_ |= 0x00000001;
|
|
}
|
|
tagList_.add(rawValue);
|
|
break;
|
|
}
|
|
case 18: {
|
|
int length = input.readRawVarint32();
|
|
int oldLimit = input.pushLimit(length);
|
|
while(input.getBytesUntilLimit() > 0) {
|
|
int rawValue = input.readEnum();
|
|
if (!((mutable_bitField0_ & 0x00000001) != 0)) {
|
|
tagList_ = new java.util.ArrayList<java.lang.Integer>();
|
|
mutable_bitField0_ |= 0x00000001;
|
|
}
|
|
tagList_.add(rawValue);
|
|
}
|
|
input.popLimit(oldLimit);
|
|
break;
|
|
}
|
|
case 64: {
|
|
|
|
materialId_ = input.readUInt32();
|
|
break;
|
|
}
|
|
case 96: {
|
|
int rawValue = input.readEnum();
|
|
|
|
op_ = 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 {
|
|
if (((mutable_bitField0_ & 0x00000001) != 0)) {
|
|
tagList_ = java.util.Collections.unmodifiableList(tagList_);
|
|
}
|
|
this.unknownFields = unknownFields.build();
|
|
makeExtensionsImmutable();
|
|
}
|
|
}
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
getDescriptor() {
|
|
return emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.internal_static_SetWidgetSlotReq_descriptor;
|
|
}
|
|
|
|
@java.lang.Override
|
|
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
|
|
internalGetFieldAccessorTable() {
|
|
return emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.internal_static_SetWidgetSlotReq_fieldAccessorTable
|
|
.ensureFieldAccessorsInitialized(
|
|
emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.SetWidgetSlotReq.class, emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.SetWidgetSlotReq.Builder.class);
|
|
}
|
|
|
|
public static final int TAG_LIST_FIELD_NUMBER = 2;
|
|
private java.util.List<java.lang.Integer> tagList_;
|
|
private static final com.google.protobuf.Internal.ListAdapter.Converter<
|
|
java.lang.Integer, emu.grasscutter.net.proto.WidgetSlotTagOuterClass.WidgetSlotTag> tagList_converter_ =
|
|
new com.google.protobuf.Internal.ListAdapter.Converter<
|
|
java.lang.Integer, emu.grasscutter.net.proto.WidgetSlotTagOuterClass.WidgetSlotTag>() {
|
|
public emu.grasscutter.net.proto.WidgetSlotTagOuterClass.WidgetSlotTag convert(java.lang.Integer from) {
|
|
@SuppressWarnings("deprecation")
|
|
emu.grasscutter.net.proto.WidgetSlotTagOuterClass.WidgetSlotTag result = emu.grasscutter.net.proto.WidgetSlotTagOuterClass.WidgetSlotTag.valueOf(from);
|
|
return result == null ? emu.grasscutter.net.proto.WidgetSlotTagOuterClass.WidgetSlotTag.UNRECOGNIZED : result;
|
|
}
|
|
};
|
|
/**
|
|
* <code>repeated .WidgetSlotTag tag_list = 2;</code>
|
|
* @return A list containing the tagList.
|
|
*/
|
|
@java.lang.Override
|
|
public java.util.List<emu.grasscutter.net.proto.WidgetSlotTagOuterClass.WidgetSlotTag> getTagListList() {
|
|
return new com.google.protobuf.Internal.ListAdapter<
|
|
java.lang.Integer, emu.grasscutter.net.proto.WidgetSlotTagOuterClass.WidgetSlotTag>(tagList_, tagList_converter_);
|
|
}
|
|
/**
|
|
* <code>repeated .WidgetSlotTag tag_list = 2;</code>
|
|
* @return The count of tagList.
|
|
*/
|
|
@java.lang.Override
|
|
public int getTagListCount() {
|
|
return tagList_.size();
|
|
}
|
|
/**
|
|
* <code>repeated .WidgetSlotTag tag_list = 2;</code>
|
|
* @param index The index of the element to return.
|
|
* @return The tagList at the given index.
|
|
*/
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.WidgetSlotTagOuterClass.WidgetSlotTag getTagList(int index) {
|
|
return tagList_converter_.convert(tagList_.get(index));
|
|
}
|
|
/**
|
|
* <code>repeated .WidgetSlotTag tag_list = 2;</code>
|
|
* @return A list containing the enum numeric values on the wire for tagList.
|
|
*/
|
|
@java.lang.Override
|
|
public java.util.List<java.lang.Integer>
|
|
getTagListValueList() {
|
|
return tagList_;
|
|
}
|
|
/**
|
|
* <code>repeated .WidgetSlotTag tag_list = 2;</code>
|
|
* @param index The index of the value to return.
|
|
* @return The enum numeric value on the wire of tagList at the given index.
|
|
*/
|
|
@java.lang.Override
|
|
public int getTagListValue(int index) {
|
|
return tagList_.get(index);
|
|
}
|
|
private int tagListMemoizedSerializedSize;
|
|
|
|
public static final int OP_FIELD_NUMBER = 12;
|
|
private int op_;
|
|
/**
|
|
* <code>.WidgetSlotOp op = 12;</code>
|
|
* @return The enum numeric value on the wire for op.
|
|
*/
|
|
@java.lang.Override public int getOpValue() {
|
|
return op_;
|
|
}
|
|
/**
|
|
* <code>.WidgetSlotOp op = 12;</code>
|
|
* @return The op.
|
|
*/
|
|
@java.lang.Override public emu.grasscutter.net.proto.WidgetSlotOpOuterClass.WidgetSlotOp getOp() {
|
|
@SuppressWarnings("deprecation")
|
|
emu.grasscutter.net.proto.WidgetSlotOpOuterClass.WidgetSlotOp result = emu.grasscutter.net.proto.WidgetSlotOpOuterClass.WidgetSlotOp.valueOf(op_);
|
|
return result == null ? emu.grasscutter.net.proto.WidgetSlotOpOuterClass.WidgetSlotOp.UNRECOGNIZED : result;
|
|
}
|
|
|
|
public static final int MATERIAL_ID_FIELD_NUMBER = 8;
|
|
private int materialId_;
|
|
/**
|
|
* <code>uint32 material_id = 8;</code>
|
|
* @return The materialId.
|
|
*/
|
|
@java.lang.Override
|
|
public int getMaterialId() {
|
|
return materialId_;
|
|
}
|
|
|
|
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 (getTagListList().size() > 0) {
|
|
output.writeUInt32NoTag(18);
|
|
output.writeUInt32NoTag(tagListMemoizedSerializedSize);
|
|
}
|
|
for (int i = 0; i < tagList_.size(); i++) {
|
|
output.writeEnumNoTag(tagList_.get(i));
|
|
}
|
|
if (materialId_ != 0) {
|
|
output.writeUInt32(8, materialId_);
|
|
}
|
|
if (op_ != emu.grasscutter.net.proto.WidgetSlotOpOuterClass.WidgetSlotOp.WIDGET_SLOT_OP_ATTACH.getNumber()) {
|
|
output.writeEnum(12, op_);
|
|
}
|
|
unknownFields.writeTo(output);
|
|
}
|
|
|
|
@java.lang.Override
|
|
public int getSerializedSize() {
|
|
int size = memoizedSize;
|
|
if (size != -1) return size;
|
|
|
|
size = 0;
|
|
{
|
|
int dataSize = 0;
|
|
for (int i = 0; i < tagList_.size(); i++) {
|
|
dataSize += com.google.protobuf.CodedOutputStream
|
|
.computeEnumSizeNoTag(tagList_.get(i));
|
|
}
|
|
size += dataSize;
|
|
if (!getTagListList().isEmpty()) { size += 1;
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeUInt32SizeNoTag(dataSize);
|
|
}tagListMemoizedSerializedSize = dataSize;
|
|
}
|
|
if (materialId_ != 0) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeUInt32Size(8, materialId_);
|
|
}
|
|
if (op_ != emu.grasscutter.net.proto.WidgetSlotOpOuterClass.WidgetSlotOp.WIDGET_SLOT_OP_ATTACH.getNumber()) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeEnumSize(12, op_);
|
|
}
|
|
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.SetWidgetSlotReqOuterClass.SetWidgetSlotReq)) {
|
|
return super.equals(obj);
|
|
}
|
|
emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.SetWidgetSlotReq other = (emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.SetWidgetSlotReq) obj;
|
|
|
|
if (!tagList_.equals(other.tagList_)) return false;
|
|
if (op_ != other.op_) return false;
|
|
if (getMaterialId()
|
|
!= other.getMaterialId()) 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 (getTagListCount() > 0) {
|
|
hash = (37 * hash) + TAG_LIST_FIELD_NUMBER;
|
|
hash = (53 * hash) + tagList_.hashCode();
|
|
}
|
|
hash = (37 * hash) + OP_FIELD_NUMBER;
|
|
hash = (53 * hash) + op_;
|
|
hash = (37 * hash) + MATERIAL_ID_FIELD_NUMBER;
|
|
hash = (53 * hash) + getMaterialId();
|
|
hash = (29 * hash) + unknownFields.hashCode();
|
|
memoizedHashCode = hash;
|
|
return hash;
|
|
}
|
|
|
|
public static emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.SetWidgetSlotReq parseFrom(
|
|
java.nio.ByteBuffer data)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data);
|
|
}
|
|
public static emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.SetWidgetSlotReq 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.SetWidgetSlotReqOuterClass.SetWidgetSlotReq parseFrom(
|
|
com.google.protobuf.ByteString data)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data);
|
|
}
|
|
public static emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.SetWidgetSlotReq 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.SetWidgetSlotReqOuterClass.SetWidgetSlotReq parseFrom(byte[] data)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data);
|
|
}
|
|
public static emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.SetWidgetSlotReq parseFrom(
|
|
byte[] data,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data, extensionRegistry);
|
|
}
|
|
public static emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.SetWidgetSlotReq parseFrom(java.io.InputStream input)
|
|
throws java.io.IOException {
|
|
return com.google.protobuf.GeneratedMessageV3
|
|
.parseWithIOException(PARSER, input);
|
|
}
|
|
public static emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.SetWidgetSlotReq 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.SetWidgetSlotReqOuterClass.SetWidgetSlotReq parseDelimitedFrom(java.io.InputStream input)
|
|
throws java.io.IOException {
|
|
return com.google.protobuf.GeneratedMessageV3
|
|
.parseDelimitedWithIOException(PARSER, input);
|
|
}
|
|
public static emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.SetWidgetSlotReq 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.SetWidgetSlotReqOuterClass.SetWidgetSlotReq parseFrom(
|
|
com.google.protobuf.CodedInputStream input)
|
|
throws java.io.IOException {
|
|
return com.google.protobuf.GeneratedMessageV3
|
|
.parseWithIOException(PARSER, input);
|
|
}
|
|
public static emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.SetWidgetSlotReq 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.SetWidgetSlotReqOuterClass.SetWidgetSlotReq 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 SetWidgetSlotReq}
|
|
*/
|
|
public static final class Builder extends
|
|
com.google.protobuf.GeneratedMessageV3.Builder<Builder> implements
|
|
// @@protoc_insertion_point(builder_implements:SetWidgetSlotReq)
|
|
emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.SetWidgetSlotReqOrBuilder {
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
getDescriptor() {
|
|
return emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.internal_static_SetWidgetSlotReq_descriptor;
|
|
}
|
|
|
|
@java.lang.Override
|
|
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
|
|
internalGetFieldAccessorTable() {
|
|
return emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.internal_static_SetWidgetSlotReq_fieldAccessorTable
|
|
.ensureFieldAccessorsInitialized(
|
|
emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.SetWidgetSlotReq.class, emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.SetWidgetSlotReq.Builder.class);
|
|
}
|
|
|
|
// Construct using emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.SetWidgetSlotReq.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();
|
|
tagList_ = java.util.Collections.emptyList();
|
|
bitField0_ = (bitField0_ & ~0x00000001);
|
|
op_ = 0;
|
|
|
|
materialId_ = 0;
|
|
|
|
return this;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public com.google.protobuf.Descriptors.Descriptor
|
|
getDescriptorForType() {
|
|
return emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.internal_static_SetWidgetSlotReq_descriptor;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.SetWidgetSlotReq getDefaultInstanceForType() {
|
|
return emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.SetWidgetSlotReq.getDefaultInstance();
|
|
}
|
|
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.SetWidgetSlotReq build() {
|
|
emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.SetWidgetSlotReq result = buildPartial();
|
|
if (!result.isInitialized()) {
|
|
throw newUninitializedMessageException(result);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.SetWidgetSlotReq buildPartial() {
|
|
emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.SetWidgetSlotReq result = new emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.SetWidgetSlotReq(this);
|
|
int from_bitField0_ = bitField0_;
|
|
if (((bitField0_ & 0x00000001) != 0)) {
|
|
tagList_ = java.util.Collections.unmodifiableList(tagList_);
|
|
bitField0_ = (bitField0_ & ~0x00000001);
|
|
}
|
|
result.tagList_ = tagList_;
|
|
result.op_ = op_;
|
|
result.materialId_ = materialId_;
|
|
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.SetWidgetSlotReqOuterClass.SetWidgetSlotReq) {
|
|
return mergeFrom((emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.SetWidgetSlotReq)other);
|
|
} else {
|
|
super.mergeFrom(other);
|
|
return this;
|
|
}
|
|
}
|
|
|
|
public Builder mergeFrom(emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.SetWidgetSlotReq other) {
|
|
if (other == emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.SetWidgetSlotReq.getDefaultInstance()) return this;
|
|
if (!other.tagList_.isEmpty()) {
|
|
if (tagList_.isEmpty()) {
|
|
tagList_ = other.tagList_;
|
|
bitField0_ = (bitField0_ & ~0x00000001);
|
|
} else {
|
|
ensureTagListIsMutable();
|
|
tagList_.addAll(other.tagList_);
|
|
}
|
|
onChanged();
|
|
}
|
|
if (other.op_ != 0) {
|
|
setOpValue(other.getOpValue());
|
|
}
|
|
if (other.getMaterialId() != 0) {
|
|
setMaterialId(other.getMaterialId());
|
|
}
|
|
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.SetWidgetSlotReqOuterClass.SetWidgetSlotReq parsedMessage = null;
|
|
try {
|
|
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
|
|
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
|
|
parsedMessage = (emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.SetWidgetSlotReq) e.getUnfinishedMessage();
|
|
throw e.unwrapIOException();
|
|
} finally {
|
|
if (parsedMessage != null) {
|
|
mergeFrom(parsedMessage);
|
|
}
|
|
}
|
|
return this;
|
|
}
|
|
private int bitField0_;
|
|
|
|
private java.util.List<java.lang.Integer> tagList_ =
|
|
java.util.Collections.emptyList();
|
|
private void ensureTagListIsMutable() {
|
|
if (!((bitField0_ & 0x00000001) != 0)) {
|
|
tagList_ = new java.util.ArrayList<java.lang.Integer>(tagList_);
|
|
bitField0_ |= 0x00000001;
|
|
}
|
|
}
|
|
/**
|
|
* <code>repeated .WidgetSlotTag tag_list = 2;</code>
|
|
* @return A list containing the tagList.
|
|
*/
|
|
public java.util.List<emu.grasscutter.net.proto.WidgetSlotTagOuterClass.WidgetSlotTag> getTagListList() {
|
|
return new com.google.protobuf.Internal.ListAdapter<
|
|
java.lang.Integer, emu.grasscutter.net.proto.WidgetSlotTagOuterClass.WidgetSlotTag>(tagList_, tagList_converter_);
|
|
}
|
|
/**
|
|
* <code>repeated .WidgetSlotTag tag_list = 2;</code>
|
|
* @return The count of tagList.
|
|
*/
|
|
public int getTagListCount() {
|
|
return tagList_.size();
|
|
}
|
|
/**
|
|
* <code>repeated .WidgetSlotTag tag_list = 2;</code>
|
|
* @param index The index of the element to return.
|
|
* @return The tagList at the given index.
|
|
*/
|
|
public emu.grasscutter.net.proto.WidgetSlotTagOuterClass.WidgetSlotTag getTagList(int index) {
|
|
return tagList_converter_.convert(tagList_.get(index));
|
|
}
|
|
/**
|
|
* <code>repeated .WidgetSlotTag tag_list = 2;</code>
|
|
* @param index The index to set the value at.
|
|
* @param value The tagList to set.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder setTagList(
|
|
int index, emu.grasscutter.net.proto.WidgetSlotTagOuterClass.WidgetSlotTag value) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
ensureTagListIsMutable();
|
|
tagList_.set(index, value.getNumber());
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>repeated .WidgetSlotTag tag_list = 2;</code>
|
|
* @param value The tagList to add.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder addTagList(emu.grasscutter.net.proto.WidgetSlotTagOuterClass.WidgetSlotTag value) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
ensureTagListIsMutable();
|
|
tagList_.add(value.getNumber());
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>repeated .WidgetSlotTag tag_list = 2;</code>
|
|
* @param values The tagList to add.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder addAllTagList(
|
|
java.lang.Iterable<? extends emu.grasscutter.net.proto.WidgetSlotTagOuterClass.WidgetSlotTag> values) {
|
|
ensureTagListIsMutable();
|
|
for (emu.grasscutter.net.proto.WidgetSlotTagOuterClass.WidgetSlotTag value : values) {
|
|
tagList_.add(value.getNumber());
|
|
}
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>repeated .WidgetSlotTag tag_list = 2;</code>
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder clearTagList() {
|
|
tagList_ = java.util.Collections.emptyList();
|
|
bitField0_ = (bitField0_ & ~0x00000001);
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>repeated .WidgetSlotTag tag_list = 2;</code>
|
|
* @return A list containing the enum numeric values on the wire for tagList.
|
|
*/
|
|
public java.util.List<java.lang.Integer>
|
|
getTagListValueList() {
|
|
return java.util.Collections.unmodifiableList(tagList_);
|
|
}
|
|
/**
|
|
* <code>repeated .WidgetSlotTag tag_list = 2;</code>
|
|
* @param index The index of the value to return.
|
|
* @return The enum numeric value on the wire of tagList at the given index.
|
|
*/
|
|
public int getTagListValue(int index) {
|
|
return tagList_.get(index);
|
|
}
|
|
/**
|
|
* <code>repeated .WidgetSlotTag tag_list = 2;</code>
|
|
* @param index The index of the value to return.
|
|
* @return The enum numeric value on the wire of tagList at the given index.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder setTagListValue(
|
|
int index, int value) {
|
|
ensureTagListIsMutable();
|
|
tagList_.set(index, value);
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>repeated .WidgetSlotTag tag_list = 2;</code>
|
|
* @param value The enum numeric value on the wire for tagList to add.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder addTagListValue(int value) {
|
|
ensureTagListIsMutable();
|
|
tagList_.add(value);
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>repeated .WidgetSlotTag tag_list = 2;</code>
|
|
* @param values The enum numeric values on the wire for tagList to add.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder addAllTagListValue(
|
|
java.lang.Iterable<java.lang.Integer> values) {
|
|
ensureTagListIsMutable();
|
|
for (int value : values) {
|
|
tagList_.add(value);
|
|
}
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
private int op_ = 0;
|
|
/**
|
|
* <code>.WidgetSlotOp op = 12;</code>
|
|
* @return The enum numeric value on the wire for op.
|
|
*/
|
|
@java.lang.Override public int getOpValue() {
|
|
return op_;
|
|
}
|
|
/**
|
|
* <code>.WidgetSlotOp op = 12;</code>
|
|
* @param value The enum numeric value on the wire for op to set.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder setOpValue(int value) {
|
|
|
|
op_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>.WidgetSlotOp op = 12;</code>
|
|
* @return The op.
|
|
*/
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.WidgetSlotOpOuterClass.WidgetSlotOp getOp() {
|
|
@SuppressWarnings("deprecation")
|
|
emu.grasscutter.net.proto.WidgetSlotOpOuterClass.WidgetSlotOp result = emu.grasscutter.net.proto.WidgetSlotOpOuterClass.WidgetSlotOp.valueOf(op_);
|
|
return result == null ? emu.grasscutter.net.proto.WidgetSlotOpOuterClass.WidgetSlotOp.UNRECOGNIZED : result;
|
|
}
|
|
/**
|
|
* <code>.WidgetSlotOp op = 12;</code>
|
|
* @param value The op to set.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder setOp(emu.grasscutter.net.proto.WidgetSlotOpOuterClass.WidgetSlotOp value) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
|
|
op_ = value.getNumber();
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>.WidgetSlotOp op = 12;</code>
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder clearOp() {
|
|
|
|
op_ = 0;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
private int materialId_ ;
|
|
/**
|
|
* <code>uint32 material_id = 8;</code>
|
|
* @return The materialId.
|
|
*/
|
|
@java.lang.Override
|
|
public int getMaterialId() {
|
|
return materialId_;
|
|
}
|
|
/**
|
|
* <code>uint32 material_id = 8;</code>
|
|
* @param value The materialId to set.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder setMaterialId(int value) {
|
|
|
|
materialId_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>uint32 material_id = 8;</code>
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder clearMaterialId() {
|
|
|
|
materialId_ = 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:SetWidgetSlotReq)
|
|
}
|
|
|
|
// @@protoc_insertion_point(class_scope:SetWidgetSlotReq)
|
|
private static final emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.SetWidgetSlotReq DEFAULT_INSTANCE;
|
|
static {
|
|
DEFAULT_INSTANCE = new emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.SetWidgetSlotReq();
|
|
}
|
|
|
|
public static emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.SetWidgetSlotReq getDefaultInstance() {
|
|
return DEFAULT_INSTANCE;
|
|
}
|
|
|
|
private static final com.google.protobuf.Parser<SetWidgetSlotReq>
|
|
PARSER = new com.google.protobuf.AbstractParser<SetWidgetSlotReq>() {
|
|
@java.lang.Override
|
|
public SetWidgetSlotReq parsePartialFrom(
|
|
com.google.protobuf.CodedInputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return new SetWidgetSlotReq(input, extensionRegistry);
|
|
}
|
|
};
|
|
|
|
public static com.google.protobuf.Parser<SetWidgetSlotReq> parser() {
|
|
return PARSER;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public com.google.protobuf.Parser<SetWidgetSlotReq> getParserForType() {
|
|
return PARSER;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.SetWidgetSlotReqOuterClass.SetWidgetSlotReq getDefaultInstanceForType() {
|
|
return DEFAULT_INSTANCE;
|
|
}
|
|
|
|
}
|
|
|
|
private static final com.google.protobuf.Descriptors.Descriptor
|
|
internal_static_SetWidgetSlotReq_descriptor;
|
|
private static final
|
|
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
|
|
internal_static_SetWidgetSlotReq_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\026SetWidgetSlotReq.proto\032\023WidgetSlotTag." +
|
|
"proto\032\022WidgetSlotOp.proto\"d\n\020SetWidgetSl" +
|
|
"otReq\022 \n\010tag_list\030\002 \003(\0162\016.WidgetSlotTag\022" +
|
|
"\031\n\002op\030\014 \001(\0162\r.WidgetSlotOp\022\023\n\013material_i" +
|
|
"d\030\010 \001(\rB\033\n\031emu.grasscutter.net.protob\006pr" +
|
|
"oto3"
|
|
};
|
|
descriptor = com.google.protobuf.Descriptors.FileDescriptor
|
|
.internalBuildGeneratedFileFrom(descriptorData,
|
|
new com.google.protobuf.Descriptors.FileDescriptor[] {
|
|
emu.grasscutter.net.proto.WidgetSlotTagOuterClass.getDescriptor(),
|
|
emu.grasscutter.net.proto.WidgetSlotOpOuterClass.getDescriptor(),
|
|
});
|
|
internal_static_SetWidgetSlotReq_descriptor =
|
|
getDescriptor().getMessageTypes().get(0);
|
|
internal_static_SetWidgetSlotReq_fieldAccessorTable = new
|
|
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
|
|
internal_static_SetWidgetSlotReq_descriptor,
|
|
new java.lang.String[] { "TagList", "Op", "MaterialId", });
|
|
emu.grasscutter.net.proto.WidgetSlotTagOuterClass.getDescriptor();
|
|
emu.grasscutter.net.proto.WidgetSlotOpOuterClass.getDescriptor();
|
|
}
|
|
|
|
// @@protoc_insertion_point(outer_class_scope)
|
|
}
|