skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clarity-protobuf Show documentation
Show all versions of clarity-protobuf Show documentation
Clarity is an open source replay parser for Dota 2 and CSGO 1 and 2 written in Java. This JAR contains the protobuf classes for clarity.
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: cstrike15_usermessages.proto
package skadistats.clarity.wire.csgo.s1.proto;
public final class CSGOS1UserMessages {
private CSGOS1UserMessages() {}
public static void registerAllExtensions(
com.google.protobuf.ExtensionRegistry registry) {
}
public interface CCSUsrMsg_SayTextOrBuilder extends
// @@protoc_insertion_point(interface_extends:CCSUsrMsg_SayText)
com.google.protobuf.MessageOrBuilder {
/**
* optional int32 ent_idx = 1;
*/
boolean hasEntIdx();
/**
* optional int32 ent_idx = 1;
*/
int getEntIdx();
/**
* optional string text = 2;
*/
boolean hasText();
/**
* optional string text = 2;
*/
java.lang.String getText();
/**
* optional string text = 2;
*/
com.google.protobuf.ByteString
getTextBytes();
/**
* optional bool chat = 3;
*/
boolean hasChat();
/**
* optional bool chat = 3;
*/
boolean getChat();
/**
* optional bool textallchat = 4;
*/
boolean hasTextallchat();
/**
* optional bool textallchat = 4;
*/
boolean getTextallchat();
}
/**
* Protobuf type {@code CCSUsrMsg_SayText}
*/
public static final class CCSUsrMsg_SayText extends
com.google.protobuf.GeneratedMessage implements
// @@protoc_insertion_point(message_implements:CCSUsrMsg_SayText)
CCSUsrMsg_SayTextOrBuilder {
// Use CCSUsrMsg_SayText.newBuilder() to construct.
private CCSUsrMsg_SayText(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private CCSUsrMsg_SayText(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final CCSUsrMsg_SayText defaultInstance;
public static CCSUsrMsg_SayText getDefaultInstance() {
return defaultInstance;
}
public CCSUsrMsg_SayText getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private CCSUsrMsg_SayText(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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;
default: {
if (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 8: {
bitField0_ |= 0x00000001;
entIdx_ = input.readInt32();
break;
}
case 18: {
com.google.protobuf.ByteString bs = input.readBytes();
bitField0_ |= 0x00000002;
text_ = bs;
break;
}
case 24: {
bitField0_ |= 0x00000004;
chat_ = input.readBool();
break;
}
case 32: {
bitField0_ |= 0x00000008;
textallchat_ = input.readBool();
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.internal_static_CCSUsrMsg_SayText_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.internal_static_CCSUsrMsg_SayText_fieldAccessorTable
.ensureFieldAccessorsInitialized(
skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText.class, skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public CCSUsrMsg_SayText parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new CCSUsrMsg_SayText(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
public static final int ENT_IDX_FIELD_NUMBER = 1;
private int entIdx_;
/**
* optional int32 ent_idx = 1;
*/
public boolean hasEntIdx() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional int32 ent_idx = 1;
*/
public int getEntIdx() {
return entIdx_;
}
public static final int TEXT_FIELD_NUMBER = 2;
private java.lang.Object text_;
/**
* optional string text = 2;
*/
public boolean hasText() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional string text = 2;
*/
public java.lang.String getText() {
java.lang.Object ref = text_;
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();
if (bs.isValidUtf8()) {
text_ = s;
}
return s;
}
}
/**
* optional string text = 2;
*/
public com.google.protobuf.ByteString
getTextBytes() {
java.lang.Object ref = text_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
text_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int CHAT_FIELD_NUMBER = 3;
private boolean chat_;
/**
* optional bool chat = 3;
*/
public boolean hasChat() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional bool chat = 3;
*/
public boolean getChat() {
return chat_;
}
public static final int TEXTALLCHAT_FIELD_NUMBER = 4;
private boolean textallchat_;
/**
* optional bool textallchat = 4;
*/
public boolean hasTextallchat() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional bool textallchat = 4;
*/
public boolean getTextallchat() {
return textallchat_;
}
private void initFields() {
entIdx_ = 0;
text_ = "";
chat_ = false;
textallchat_ = false;
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeInt32(1, entIdx_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeBytes(2, getTextBytes());
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
output.writeBool(3, chat_);
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
output.writeBool(4, textallchat_);
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(1, entIdx_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(2, getTextBytes());
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(3, chat_);
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(4, textallchat_);
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code CCSUsrMsg_SayText}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder implements
// @@protoc_insertion_point(builder_implements:CCSUsrMsg_SayText)
skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayTextOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.internal_static_CCSUsrMsg_SayText_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.internal_static_CCSUsrMsg_SayText_fieldAccessorTable
.ensureFieldAccessorsInitialized(
skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText.class, skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText.Builder.class);
}
// Construct using skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
entIdx_ = 0;
bitField0_ = (bitField0_ & ~0x00000001);
text_ = "";
bitField0_ = (bitField0_ & ~0x00000002);
chat_ = false;
bitField0_ = (bitField0_ & ~0x00000004);
textallchat_ = false;
bitField0_ = (bitField0_ & ~0x00000008);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.internal_static_CCSUsrMsg_SayText_descriptor;
}
public skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText getDefaultInstanceForType() {
return skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText.getDefaultInstance();
}
public skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText build() {
skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText buildPartial() {
skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText result = new skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.entIdx_ = entIdx_;
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
result.text_ = text_;
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
to_bitField0_ |= 0x00000004;
}
result.chat_ = chat_;
if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
to_bitField0_ |= 0x00000008;
}
result.textallchat_ = textallchat_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText) {
return mergeFrom((skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText other) {
if (other == skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText.getDefaultInstance()) return this;
if (other.hasEntIdx()) {
setEntIdx(other.getEntIdx());
}
if (other.hasText()) {
bitField0_ |= 0x00000002;
text_ = other.text_;
onChanged();
}
if (other.hasChat()) {
setChat(other.getChat());
}
if (other.hasTextallchat()) {
setTextallchat(other.getTextallchat());
}
this.mergeUnknownFields(other.getUnknownFields());
return this;
}
public final boolean isInitialized() {
return true;
}
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private int entIdx_ ;
/**
* optional int32 ent_idx = 1;
*/
public boolean hasEntIdx() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional int32 ent_idx = 1;
*/
public int getEntIdx() {
return entIdx_;
}
/**
* optional int32 ent_idx = 1;
*/
public Builder setEntIdx(int value) {
bitField0_ |= 0x00000001;
entIdx_ = value;
onChanged();
return this;
}
/**
* optional int32 ent_idx = 1;
*/
public Builder clearEntIdx() {
bitField0_ = (bitField0_ & ~0x00000001);
entIdx_ = 0;
onChanged();
return this;
}
private java.lang.Object text_ = "";
/**
* optional string text = 2;
*/
public boolean hasText() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional string text = 2;
*/
public java.lang.String getText() {
java.lang.Object ref = text_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
if (bs.isValidUtf8()) {
text_ = s;
}
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string text = 2;
*/
public com.google.protobuf.ByteString
getTextBytes() {
java.lang.Object ref = text_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
text_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string text = 2;
*/
public Builder setText(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000002;
text_ = value;
onChanged();
return this;
}
/**
* optional string text = 2;
*/
public Builder clearText() {
bitField0_ = (bitField0_ & ~0x00000002);
text_ = getDefaultInstance().getText();
onChanged();
return this;
}
/**
* optional string text = 2;
*/
public Builder setTextBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000002;
text_ = value;
onChanged();
return this;
}
private boolean chat_ ;
/**
* optional bool chat = 3;
*/
public boolean hasChat() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional bool chat = 3;
*/
public boolean getChat() {
return chat_;
}
/**
* optional bool chat = 3;
*/
public Builder setChat(boolean value) {
bitField0_ |= 0x00000004;
chat_ = value;
onChanged();
return this;
}
/**
* optional bool chat = 3;
*/
public Builder clearChat() {
bitField0_ = (bitField0_ & ~0x00000004);
chat_ = false;
onChanged();
return this;
}
private boolean textallchat_ ;
/**
* optional bool textallchat = 4;
*/
public boolean hasTextallchat() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional bool textallchat = 4;
*/
public boolean getTextallchat() {
return textallchat_;
}
/**
* optional bool textallchat = 4;
*/
public Builder setTextallchat(boolean value) {
bitField0_ |= 0x00000008;
textallchat_ = value;
onChanged();
return this;
}
/**
* optional bool textallchat = 4;
*/
public Builder clearTextallchat() {
bitField0_ = (bitField0_ & ~0x00000008);
textallchat_ = false;
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:CCSUsrMsg_SayText)
}
static {
defaultInstance = new CCSUsrMsg_SayText(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:CCSUsrMsg_SayText)
}
public interface CCSUsrMsg_SayText2OrBuilder extends
// @@protoc_insertion_point(interface_extends:CCSUsrMsg_SayText2)
com.google.protobuf.MessageOrBuilder {
/**
* optional int32 ent_idx = 1;
*/
boolean hasEntIdx();
/**
* optional int32 ent_idx = 1;
*/
int getEntIdx();
/**
* optional bool chat = 2;
*/
boolean hasChat();
/**
* optional bool chat = 2;
*/
boolean getChat();
/**
* optional string msg_name = 3;
*/
boolean hasMsgName();
/**
* optional string msg_name = 3;
*/
java.lang.String getMsgName();
/**
* optional string msg_name = 3;
*/
com.google.protobuf.ByteString
getMsgNameBytes();
/**
* repeated string params = 4;
*/
com.google.protobuf.ProtocolStringList
getParamsList();
/**
* repeated string params = 4;
*/
int getParamsCount();
/**
* repeated string params = 4;
*/
java.lang.String getParams(int index);
/**
* repeated string params = 4;
*/
com.google.protobuf.ByteString
getParamsBytes(int index);
/**
* optional bool textallchat = 5;
*/
boolean hasTextallchat();
/**
* optional bool textallchat = 5;
*/
boolean getTextallchat();
}
/**
* Protobuf type {@code CCSUsrMsg_SayText2}
*/
public static final class CCSUsrMsg_SayText2 extends
com.google.protobuf.GeneratedMessage implements
// @@protoc_insertion_point(message_implements:CCSUsrMsg_SayText2)
CCSUsrMsg_SayText2OrBuilder {
// Use CCSUsrMsg_SayText2.newBuilder() to construct.
private CCSUsrMsg_SayText2(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private CCSUsrMsg_SayText2(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final CCSUsrMsg_SayText2 defaultInstance;
public static CCSUsrMsg_SayText2 getDefaultInstance() {
return defaultInstance;
}
public CCSUsrMsg_SayText2 getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private CCSUsrMsg_SayText2(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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;
default: {
if (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 8: {
bitField0_ |= 0x00000001;
entIdx_ = input.readInt32();
break;
}
case 16: {
bitField0_ |= 0x00000002;
chat_ = input.readBool();
break;
}
case 26: {
com.google.protobuf.ByteString bs = input.readBytes();
bitField0_ |= 0x00000004;
msgName_ = bs;
break;
}
case 34: {
com.google.protobuf.ByteString bs = input.readBytes();
if (!((mutable_bitField0_ & 0x00000008) == 0x00000008)) {
params_ = new com.google.protobuf.LazyStringArrayList();
mutable_bitField0_ |= 0x00000008;
}
params_.add(bs);
break;
}
case 40: {
bitField0_ |= 0x00000008;
textallchat_ = input.readBool();
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000008) == 0x00000008)) {
params_ = params_.getUnmodifiableView();
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.internal_static_CCSUsrMsg_SayText2_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.internal_static_CCSUsrMsg_SayText2_fieldAccessorTable
.ensureFieldAccessorsInitialized(
skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText2.class, skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText2.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public CCSUsrMsg_SayText2 parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new CCSUsrMsg_SayText2(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
public static final int ENT_IDX_FIELD_NUMBER = 1;
private int entIdx_;
/**
* optional int32 ent_idx = 1;
*/
public boolean hasEntIdx() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional int32 ent_idx = 1;
*/
public int getEntIdx() {
return entIdx_;
}
public static final int CHAT_FIELD_NUMBER = 2;
private boolean chat_;
/**
* optional bool chat = 2;
*/
public boolean hasChat() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional bool chat = 2;
*/
public boolean getChat() {
return chat_;
}
public static final int MSG_NAME_FIELD_NUMBER = 3;
private java.lang.Object msgName_;
/**
* optional string msg_name = 3;
*/
public boolean hasMsgName() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional string msg_name = 3;
*/
public java.lang.String getMsgName() {
java.lang.Object ref = msgName_;
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();
if (bs.isValidUtf8()) {
msgName_ = s;
}
return s;
}
}
/**
* optional string msg_name = 3;
*/
public com.google.protobuf.ByteString
getMsgNameBytes() {
java.lang.Object ref = msgName_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
msgName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int PARAMS_FIELD_NUMBER = 4;
private com.google.protobuf.LazyStringList params_;
/**
* repeated string params = 4;
*/
public com.google.protobuf.ProtocolStringList
getParamsList() {
return params_;
}
/**
* repeated string params = 4;
*/
public int getParamsCount() {
return params_.size();
}
/**
* repeated string params = 4;
*/
public java.lang.String getParams(int index) {
return params_.get(index);
}
/**
* repeated string params = 4;
*/
public com.google.protobuf.ByteString
getParamsBytes(int index) {
return params_.getByteString(index);
}
public static final int TEXTALLCHAT_FIELD_NUMBER = 5;
private boolean textallchat_;
/**
* optional bool textallchat = 5;
*/
public boolean hasTextallchat() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional bool textallchat = 5;
*/
public boolean getTextallchat() {
return textallchat_;
}
private void initFields() {
entIdx_ = 0;
chat_ = false;
msgName_ = "";
params_ = com.google.protobuf.LazyStringArrayList.EMPTY;
textallchat_ = false;
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeInt32(1, entIdx_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeBool(2, chat_);
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
output.writeBytes(3, getMsgNameBytes());
}
for (int i = 0; i < params_.size(); i++) {
output.writeBytes(4, params_.getByteString(i));
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
output.writeBool(5, textallchat_);
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(1, entIdx_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(2, chat_);
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(3, getMsgNameBytes());
}
{
int dataSize = 0;
for (int i = 0; i < params_.size(); i++) {
dataSize += com.google.protobuf.CodedOutputStream
.computeBytesSizeNoTag(params_.getByteString(i));
}
size += dataSize;
size += 1 * getParamsList().size();
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(5, textallchat_);
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText2 parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText2 parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText2 parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText2 parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText2 parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText2 parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText2 parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText2 parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText2 parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText2 parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText2 prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code CCSUsrMsg_SayText2}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder implements
// @@protoc_insertion_point(builder_implements:CCSUsrMsg_SayText2)
skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText2OrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.internal_static_CCSUsrMsg_SayText2_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.internal_static_CCSUsrMsg_SayText2_fieldAccessorTable
.ensureFieldAccessorsInitialized(
skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText2.class, skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText2.Builder.class);
}
// Construct using skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText2.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
entIdx_ = 0;
bitField0_ = (bitField0_ & ~0x00000001);
chat_ = false;
bitField0_ = (bitField0_ & ~0x00000002);
msgName_ = "";
bitField0_ = (bitField0_ & ~0x00000004);
params_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000008);
textallchat_ = false;
bitField0_ = (bitField0_ & ~0x00000010);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.internal_static_CCSUsrMsg_SayText2_descriptor;
}
public skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText2 getDefaultInstanceForType() {
return skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText2.getDefaultInstance();
}
public skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText2 build() {
skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText2 result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText2 buildPartial() {
skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText2 result = new skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText2(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.entIdx_ = entIdx_;
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
result.chat_ = chat_;
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
to_bitField0_ |= 0x00000004;
}
result.msgName_ = msgName_;
if (((bitField0_ & 0x00000008) == 0x00000008)) {
params_ = params_.getUnmodifiableView();
bitField0_ = (bitField0_ & ~0x00000008);
}
result.params_ = params_;
if (((from_bitField0_ & 0x00000010) == 0x00000010)) {
to_bitField0_ |= 0x00000008;
}
result.textallchat_ = textallchat_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText2) {
return mergeFrom((skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText2)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText2 other) {
if (other == skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText2.getDefaultInstance()) return this;
if (other.hasEntIdx()) {
setEntIdx(other.getEntIdx());
}
if (other.hasChat()) {
setChat(other.getChat());
}
if (other.hasMsgName()) {
bitField0_ |= 0x00000004;
msgName_ = other.msgName_;
onChanged();
}
if (!other.params_.isEmpty()) {
if (params_.isEmpty()) {
params_ = other.params_;
bitField0_ = (bitField0_ & ~0x00000008);
} else {
ensureParamsIsMutable();
params_.addAll(other.params_);
}
onChanged();
}
if (other.hasTextallchat()) {
setTextallchat(other.getTextallchat());
}
this.mergeUnknownFields(other.getUnknownFields());
return this;
}
public final boolean isInitialized() {
return true;
}
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText2 parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_SayText2) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private int entIdx_ ;
/**
* optional int32 ent_idx = 1;
*/
public boolean hasEntIdx() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional int32 ent_idx = 1;
*/
public int getEntIdx() {
return entIdx_;
}
/**
* optional int32 ent_idx = 1;
*/
public Builder setEntIdx(int value) {
bitField0_ |= 0x00000001;
entIdx_ = value;
onChanged();
return this;
}
/**
* optional int32 ent_idx = 1;
*/
public Builder clearEntIdx() {
bitField0_ = (bitField0_ & ~0x00000001);
entIdx_ = 0;
onChanged();
return this;
}
private boolean chat_ ;
/**
* optional bool chat = 2;
*/
public boolean hasChat() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional bool chat = 2;
*/
public boolean getChat() {
return chat_;
}
/**
* optional bool chat = 2;
*/
public Builder setChat(boolean value) {
bitField0_ |= 0x00000002;
chat_ = value;
onChanged();
return this;
}
/**
* optional bool chat = 2;
*/
public Builder clearChat() {
bitField0_ = (bitField0_ & ~0x00000002);
chat_ = false;
onChanged();
return this;
}
private java.lang.Object msgName_ = "";
/**
* optional string msg_name = 3;
*/
public boolean hasMsgName() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional string msg_name = 3;
*/
public java.lang.String getMsgName() {
java.lang.Object ref = msgName_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
if (bs.isValidUtf8()) {
msgName_ = s;
}
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string msg_name = 3;
*/
public com.google.protobuf.ByteString
getMsgNameBytes() {
java.lang.Object ref = msgName_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
msgName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string msg_name = 3;
*/
public Builder setMsgName(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000004;
msgName_ = value;
onChanged();
return this;
}
/**
* optional string msg_name = 3;
*/
public Builder clearMsgName() {
bitField0_ = (bitField0_ & ~0x00000004);
msgName_ = getDefaultInstance().getMsgName();
onChanged();
return this;
}
/**
* optional string msg_name = 3;
*/
public Builder setMsgNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000004;
msgName_ = value;
onChanged();
return this;
}
private com.google.protobuf.LazyStringList params_ = com.google.protobuf.LazyStringArrayList.EMPTY;
private void ensureParamsIsMutable() {
if (!((bitField0_ & 0x00000008) == 0x00000008)) {
params_ = new com.google.protobuf.LazyStringArrayList(params_);
bitField0_ |= 0x00000008;
}
}
/**
* repeated string params = 4;
*/
public com.google.protobuf.ProtocolStringList
getParamsList() {
return params_.getUnmodifiableView();
}
/**
* repeated string params = 4;
*/
public int getParamsCount() {
return params_.size();
}
/**
* repeated string params = 4;
*/
public java.lang.String getParams(int index) {
return params_.get(index);
}
/**
* repeated string params = 4;
*/
public com.google.protobuf.ByteString
getParamsBytes(int index) {
return params_.getByteString(index);
}
/**
* repeated string params = 4;
*/
public Builder setParams(
int index, java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureParamsIsMutable();
params_.set(index, value);
onChanged();
return this;
}
/**
* repeated string params = 4;
*/
public Builder addParams(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureParamsIsMutable();
params_.add(value);
onChanged();
return this;
}
/**
* repeated string params = 4;
*/
public Builder addAllParams(
java.lang.Iterable values) {
ensureParamsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, params_);
onChanged();
return this;
}
/**
* repeated string params = 4;
*/
public Builder clearParams() {
params_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000008);
onChanged();
return this;
}
/**
* repeated string params = 4;
*/
public Builder addParamsBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
ensureParamsIsMutable();
params_.add(value);
onChanged();
return this;
}
private boolean textallchat_ ;
/**
* optional bool textallchat = 5;
*/
public boolean hasTextallchat() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
* optional bool textallchat = 5;
*/
public boolean getTextallchat() {
return textallchat_;
}
/**
* optional bool textallchat = 5;
*/
public Builder setTextallchat(boolean value) {
bitField0_ |= 0x00000010;
textallchat_ = value;
onChanged();
return this;
}
/**
* optional bool textallchat = 5;
*/
public Builder clearTextallchat() {
bitField0_ = (bitField0_ & ~0x00000010);
textallchat_ = false;
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:CCSUsrMsg_SayText2)
}
static {
defaultInstance = new CCSUsrMsg_SayText2(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:CCSUsrMsg_SayText2)
}
public interface CCSUsrMsg_TextMsgOrBuilder extends
// @@protoc_insertion_point(interface_extends:CCSUsrMsg_TextMsg)
com.google.protobuf.MessageOrBuilder {
/**
* optional int32 msg_dst = 1;
*/
boolean hasMsgDst();
/**
* optional int32 msg_dst = 1;
*/
int getMsgDst();
/**
* repeated string params = 3;
*/
com.google.protobuf.ProtocolStringList
getParamsList();
/**
* repeated string params = 3;
*/
int getParamsCount();
/**
* repeated string params = 3;
*/
java.lang.String getParams(int index);
/**
* repeated string params = 3;
*/
com.google.protobuf.ByteString
getParamsBytes(int index);
}
/**
* Protobuf type {@code CCSUsrMsg_TextMsg}
*/
public static final class CCSUsrMsg_TextMsg extends
com.google.protobuf.GeneratedMessage implements
// @@protoc_insertion_point(message_implements:CCSUsrMsg_TextMsg)
CCSUsrMsg_TextMsgOrBuilder {
// Use CCSUsrMsg_TextMsg.newBuilder() to construct.
private CCSUsrMsg_TextMsg(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private CCSUsrMsg_TextMsg(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final CCSUsrMsg_TextMsg defaultInstance;
public static CCSUsrMsg_TextMsg getDefaultInstance() {
return defaultInstance;
}
public CCSUsrMsg_TextMsg getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private CCSUsrMsg_TextMsg(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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;
default: {
if (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 8: {
bitField0_ |= 0x00000001;
msgDst_ = input.readInt32();
break;
}
case 26: {
com.google.protobuf.ByteString bs = input.readBytes();
if (!((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
params_ = new com.google.protobuf.LazyStringArrayList();
mutable_bitField0_ |= 0x00000002;
}
params_.add(bs);
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
params_ = params_.getUnmodifiableView();
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.internal_static_CCSUsrMsg_TextMsg_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.internal_static_CCSUsrMsg_TextMsg_fieldAccessorTable
.ensureFieldAccessorsInitialized(
skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_TextMsg.class, skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_TextMsg.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public CCSUsrMsg_TextMsg parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new CCSUsrMsg_TextMsg(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
public static final int MSG_DST_FIELD_NUMBER = 1;
private int msgDst_;
/**
* optional int32 msg_dst = 1;
*/
public boolean hasMsgDst() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional int32 msg_dst = 1;
*/
public int getMsgDst() {
return msgDst_;
}
public static final int PARAMS_FIELD_NUMBER = 3;
private com.google.protobuf.LazyStringList params_;
/**
* repeated string params = 3;
*/
public com.google.protobuf.ProtocolStringList
getParamsList() {
return params_;
}
/**
* repeated string params = 3;
*/
public int getParamsCount() {
return params_.size();
}
/**
* repeated string params = 3;
*/
public java.lang.String getParams(int index) {
return params_.get(index);
}
/**
* repeated string params = 3;
*/
public com.google.protobuf.ByteString
getParamsBytes(int index) {
return params_.getByteString(index);
}
private void initFields() {
msgDst_ = 0;
params_ = com.google.protobuf.LazyStringArrayList.EMPTY;
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeInt32(1, msgDst_);
}
for (int i = 0; i < params_.size(); i++) {
output.writeBytes(3, params_.getByteString(i));
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(1, msgDst_);
}
{
int dataSize = 0;
for (int i = 0; i < params_.size(); i++) {
dataSize += com.google.protobuf.CodedOutputStream
.computeBytesSizeNoTag(params_.getByteString(i));
}
size += dataSize;
size += 1 * getParamsList().size();
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_TextMsg parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_TextMsg parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_TextMsg parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_TextMsg parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_TextMsg parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_TextMsg parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_TextMsg parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_TextMsg parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_TextMsg parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_TextMsg parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_TextMsg prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code CCSUsrMsg_TextMsg}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder implements
// @@protoc_insertion_point(builder_implements:CCSUsrMsg_TextMsg)
skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_TextMsgOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.internal_static_CCSUsrMsg_TextMsg_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.internal_static_CCSUsrMsg_TextMsg_fieldAccessorTable
.ensureFieldAccessorsInitialized(
skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_TextMsg.class, skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_TextMsg.Builder.class);
}
// Construct using skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_TextMsg.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
msgDst_ = 0;
bitField0_ = (bitField0_ & ~0x00000001);
params_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.internal_static_CCSUsrMsg_TextMsg_descriptor;
}
public skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_TextMsg getDefaultInstanceForType() {
return skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_TextMsg.getDefaultInstance();
}
public skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_TextMsg build() {
skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_TextMsg result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_TextMsg buildPartial() {
skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_TextMsg result = new skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_TextMsg(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.msgDst_ = msgDst_;
if (((bitField0_ & 0x00000002) == 0x00000002)) {
params_ = params_.getUnmodifiableView();
bitField0_ = (bitField0_ & ~0x00000002);
}
result.params_ = params_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_TextMsg) {
return mergeFrom((skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_TextMsg)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_TextMsg other) {
if (other == skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_TextMsg.getDefaultInstance()) return this;
if (other.hasMsgDst()) {
setMsgDst(other.getMsgDst());
}
if (!other.params_.isEmpty()) {
if (params_.isEmpty()) {
params_ = other.params_;
bitField0_ = (bitField0_ & ~0x00000002);
} else {
ensureParamsIsMutable();
params_.addAll(other.params_);
}
onChanged();
}
this.mergeUnknownFields(other.getUnknownFields());
return this;
}
public final boolean isInitialized() {
return true;
}
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_TextMsg parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_TextMsg) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private int msgDst_ ;
/**
* optional int32 msg_dst = 1;
*/
public boolean hasMsgDst() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional int32 msg_dst = 1;
*/
public int getMsgDst() {
return msgDst_;
}
/**
* optional int32 msg_dst = 1;
*/
public Builder setMsgDst(int value) {
bitField0_ |= 0x00000001;
msgDst_ = value;
onChanged();
return this;
}
/**
* optional int32 msg_dst = 1;
*/
public Builder clearMsgDst() {
bitField0_ = (bitField0_ & ~0x00000001);
msgDst_ = 0;
onChanged();
return this;
}
private com.google.protobuf.LazyStringList params_ = com.google.protobuf.LazyStringArrayList.EMPTY;
private void ensureParamsIsMutable() {
if (!((bitField0_ & 0x00000002) == 0x00000002)) {
params_ = new com.google.protobuf.LazyStringArrayList(params_);
bitField0_ |= 0x00000002;
}
}
/**
* repeated string params = 3;
*/
public com.google.protobuf.ProtocolStringList
getParamsList() {
return params_.getUnmodifiableView();
}
/**
* repeated string params = 3;
*/
public int getParamsCount() {
return params_.size();
}
/**
* repeated string params = 3;
*/
public java.lang.String getParams(int index) {
return params_.get(index);
}
/**
* repeated string params = 3;
*/
public com.google.protobuf.ByteString
getParamsBytes(int index) {
return params_.getByteString(index);
}
/**
* repeated string params = 3;
*/
public Builder setParams(
int index, java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureParamsIsMutable();
params_.set(index, value);
onChanged();
return this;
}
/**
* repeated string params = 3;
*/
public Builder addParams(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureParamsIsMutable();
params_.add(value);
onChanged();
return this;
}
/**
* repeated string params = 3;
*/
public Builder addAllParams(
java.lang.Iterable values) {
ensureParamsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, params_);
onChanged();
return this;
}
/**
* repeated string params = 3;
*/
public Builder clearParams() {
params_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
return this;
}
/**
* repeated string params = 3;
*/
public Builder addParamsBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
ensureParamsIsMutable();
params_.add(value);
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:CCSUsrMsg_TextMsg)
}
static {
defaultInstance = new CCSUsrMsg_TextMsg(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:CCSUsrMsg_TextMsg)
}
public interface CCSUsrMsg_DisplayInventoryOrBuilder extends
// @@protoc_insertion_point(interface_extends:CCSUsrMsg_DisplayInventory)
com.google.protobuf.MessageOrBuilder {
/**
* optional bool display = 1;
*/
boolean hasDisplay();
/**
* optional bool display = 1;
*/
boolean getDisplay();
/**
* optional int32 user_id = 2;
*/
boolean hasUserId();
/**
* optional int32 user_id = 2;
*/
int getUserId();
}
/**
* Protobuf type {@code CCSUsrMsg_DisplayInventory}
*/
public static final class CCSUsrMsg_DisplayInventory extends
com.google.protobuf.GeneratedMessage implements
// @@protoc_insertion_point(message_implements:CCSUsrMsg_DisplayInventory)
CCSUsrMsg_DisplayInventoryOrBuilder {
// Use CCSUsrMsg_DisplayInventory.newBuilder() to construct.
private CCSUsrMsg_DisplayInventory(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private CCSUsrMsg_DisplayInventory(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final CCSUsrMsg_DisplayInventory defaultInstance;
public static CCSUsrMsg_DisplayInventory getDefaultInstance() {
return defaultInstance;
}
public CCSUsrMsg_DisplayInventory getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private CCSUsrMsg_DisplayInventory(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
initFields();
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;
default: {
if (!parseUnknownField(input, unknownFields,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 8: {
bitField0_ |= 0x00000001;
display_ = input.readBool();
break;
}
case 16: {
bitField0_ |= 0x00000002;
userId_ = input.readInt32();
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.internal_static_CCSUsrMsg_DisplayInventory_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.internal_static_CCSUsrMsg_DisplayInventory_fieldAccessorTable
.ensureFieldAccessorsInitialized(
skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_DisplayInventory.class, skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_DisplayInventory.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public CCSUsrMsg_DisplayInventory parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new CCSUsrMsg_DisplayInventory(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
public static final int DISPLAY_FIELD_NUMBER = 1;
private boolean display_;
/**
* optional bool display = 1;
*/
public boolean hasDisplay() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional bool display = 1;
*/
public boolean getDisplay() {
return display_;
}
public static final int USER_ID_FIELD_NUMBER = 2;
private int userId_;
/**
* optional int32 user_id = 2;
*/
public boolean hasUserId() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional int32 user_id = 2;
*/
public int getUserId() {
return userId_;
}
private void initFields() {
display_ = false;
userId_ = 0;
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeBool(1, display_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeInt32(2, userId_);
}
getUnknownFields().writeTo(output);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(1, display_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(2, userId_);
}
size += getUnknownFields().getSerializedSize();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_DisplayInventory parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_DisplayInventory parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_DisplayInventory parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_DisplayInventory parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_DisplayInventory parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_DisplayInventory parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_DisplayInventory parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_DisplayInventory parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_DisplayInventory parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_DisplayInventory parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_DisplayInventory prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code CCSUsrMsg_DisplayInventory}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder implements
// @@protoc_insertion_point(builder_implements:CCSUsrMsg_DisplayInventory)
skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_DisplayInventoryOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.internal_static_CCSUsrMsg_DisplayInventory_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.internal_static_CCSUsrMsg_DisplayInventory_fieldAccessorTable
.ensureFieldAccessorsInitialized(
skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_DisplayInventory.class, skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_DisplayInventory.Builder.class);
}
// Construct using skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_DisplayInventory.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
}
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
display_ = false;
bitField0_ = (bitField0_ & ~0x00000001);
userId_ = 0;
bitField0_ = (bitField0_ & ~0x00000002);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.internal_static_CCSUsrMsg_DisplayInventory_descriptor;
}
public skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_DisplayInventory getDefaultInstanceForType() {
return skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_DisplayInventory.getDefaultInstance();
}
public skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_DisplayInventory build() {
skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_DisplayInventory result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_DisplayInventory buildPartial() {
skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_DisplayInventory result = new skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_DisplayInventory(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.display_ = display_;
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
result.userId_ = userId_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_DisplayInventory) {
return mergeFrom((skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_DisplayInventory)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_DisplayInventory other) {
if (other == skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_DisplayInventory.getDefaultInstance()) return this;
if (other.hasDisplay()) {
setDisplay(other.getDisplay());
}
if (other.hasUserId()) {
setUserId(other.getUserId());
}
this.mergeUnknownFields(other.getUnknownFields());
return this;
}
public final boolean isInitialized() {
return true;
}
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_DisplayInventory parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (skadistats.clarity.wire.csgo.s1.proto.CSGOS1UserMessages.CCSUsrMsg_DisplayInventory) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private boolean display_ ;
/**
* optional bool display = 1;
*/
public boolean hasDisplay() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional bool display = 1;
*/
public boolean getDisplay() {
return display_;
}
/**
* optional bool display = 1;
*/
public Builder setDisplay(boolean value) {
bitField0_ |= 0x00000001;
display_ = value;
onChanged();
return this;
}
/**
* optional bool display = 1;
*/
public Builder clearDisplay() {
bitField0_ = (bitField0_ & ~0x00000001);
display_ = false;
onChanged();
return this;
}
private int userId_ ;
/**
* optional int32 user_id = 2;
*/
public boolean hasUserId() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional int32 user_id = 2;
*/
public int getUserId() {
return userId_;
}
/**
* optional int32 user_id = 2;
*/
public Builder setUserId(int value) {
bitField0_ |= 0x00000002;
userId_ = value;
onChanged();
return this;
}
/**
* optional int32 user_id = 2;
*/
public Builder clearUserId() {
bitField0_ = (bitField0_ & ~0x00000002);
userId_ = 0;
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:CCSUsrMsg_DisplayInventory)
}
static {
defaultInstance = new CCSUsrMsg_DisplayInventory(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:CCSUsrMsg_DisplayInventory)
}
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_CCSUsrMsg_SayText_descriptor;
private static
com.google.protobuf.GeneratedMessage.FieldAccessorTable
internal_static_CCSUsrMsg_SayText_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_CCSUsrMsg_SayText2_descriptor;
private static
com.google.protobuf.GeneratedMessage.FieldAccessorTable
internal_static_CCSUsrMsg_SayText2_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_CCSUsrMsg_TextMsg_descriptor;
private static
com.google.protobuf.GeneratedMessage.FieldAccessorTable
internal_static_CCSUsrMsg_TextMsg_fieldAccessorTable;
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_CCSUsrMsg_DisplayInventory_descriptor;
private static
com.google.protobuf.GeneratedMessage.FieldAccessorTable
internal_static_CCSUsrMsg_DisplayInventory_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\034cstrike15_usermessages.proto\"U\n\021CCSUsr" +
"Msg_SayText\022\017\n\007ent_idx\030\001 \001(\005\022\014\n\004text\030\002 \001" +
"(\t\022\014\n\004chat\030\003 \001(\010\022\023\n\013textallchat\030\004 \001(\010\"j\n" +
"\022CCSUsrMsg_SayText2\022\017\n\007ent_idx\030\001 \001(\005\022\014\n\004" +
"chat\030\002 \001(\010\022\020\n\010msg_name\030\003 \001(\t\022\016\n\006params\030\004" +
" \003(\t\022\023\n\013textallchat\030\005 \001(\010\"4\n\021CCSUsrMsg_T" +
"extMsg\022\017\n\007msg_dst\030\001 \001(\005\022\016\n\006params\030\003 \003(\t\"" +
">\n\032CCSUsrMsg_DisplayInventory\022\017\n\007display" +
"\030\001 \001(\010\022\017\n\007user_id\030\002 \001(\005B;\n%skadistats.cl" +
"arity.wire.csgo.s1.protoB\022CSGOS1UserMess",
"ages"
};
com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner =
new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() {
public com.google.protobuf.ExtensionRegistry assignDescriptors(
com.google.protobuf.Descriptors.FileDescriptor root) {
descriptor = root;
return null;
}
};
com.google.protobuf.Descriptors.FileDescriptor
.internalBuildGeneratedFileFrom(descriptorData,
new com.google.protobuf.Descriptors.FileDescriptor[] {
}, assigner);
internal_static_CCSUsrMsg_SayText_descriptor =
getDescriptor().getMessageTypes().get(0);
internal_static_CCSUsrMsg_SayText_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_CCSUsrMsg_SayText_descriptor,
new java.lang.String[] { "EntIdx", "Text", "Chat", "Textallchat", });
internal_static_CCSUsrMsg_SayText2_descriptor =
getDescriptor().getMessageTypes().get(1);
internal_static_CCSUsrMsg_SayText2_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_CCSUsrMsg_SayText2_descriptor,
new java.lang.String[] { "EntIdx", "Chat", "MsgName", "Params", "Textallchat", });
internal_static_CCSUsrMsg_TextMsg_descriptor =
getDescriptor().getMessageTypes().get(2);
internal_static_CCSUsrMsg_TextMsg_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_CCSUsrMsg_TextMsg_descriptor,
new java.lang.String[] { "MsgDst", "Params", });
internal_static_CCSUsrMsg_DisplayInventory_descriptor =
getDescriptor().getMessageTypes().get(3);
internal_static_CCSUsrMsg_DisplayInventory_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_CCSUsrMsg_DisplayInventory_descriptor,
new java.lang.String[] { "Display", "UserId", });
}
// @@protoc_insertion_point(outer_class_scope)
}