skadistats.clarity.wire.csgo.s2.proto.CSGOS2ClarityMessages 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: claritymessages.proto
package skadistats.clarity.wire.csgo.s2.proto;
public final class CSGOS2ClarityMessages {
private CSGOS2ClarityMessages() {}
public static void registerAllExtensions(
com.google.protobuf.ExtensionRegistry registry) {
}
public interface PlayerInfoOrBuilder extends
// @@protoc_insertion_point(interface_extends:PlayerInfo)
com.google.protobuf.MessageOrBuilder {
/**
* optional string name = 1;
*/
boolean hasName();
/**
* optional string name = 1;
*/
java.lang.String getName();
/**
* optional string name = 1;
*/
com.google.protobuf.ByteString
getNameBytes();
/**
* optional fixed64 xuid = 2;
*/
boolean hasXuid();
/**
* optional fixed64 xuid = 2;
*/
long getXuid();
/**
* optional int32 unknown1 = 3;
*/
boolean hasUnknown1();
/**
* optional int32 unknown1 = 3;
*/
int getUnknown1();
/**
* optional fixed64 unknown2 = 4;
*/
boolean hasUnknown2();
/**
* optional fixed64 unknown2 = 4;
*/
long getUnknown2();
/**
* optional bool fakePlayer = 5;
*/
boolean hasFakePlayer();
/**
* optional bool fakePlayer = 5;
*/
boolean getFakePlayer();
/**
* optional bool isHlTv = 6;
*/
boolean hasIsHlTv();
/**
* optional bool isHlTv = 6;
*/
boolean getIsHlTv();
}
/**
* Protobuf type {@code PlayerInfo}
*/
public static final class PlayerInfo extends
com.google.protobuf.GeneratedMessage implements
// @@protoc_insertion_point(message_implements:PlayerInfo)
PlayerInfoOrBuilder {
// Use PlayerInfo.newBuilder() to construct.
private PlayerInfo(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private PlayerInfo(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }
private static final PlayerInfo defaultInstance;
public static PlayerInfo getDefaultInstance() {
return defaultInstance;
}
public PlayerInfo getDefaultInstanceForType() {
return defaultInstance;
}
private final com.google.protobuf.UnknownFieldSet unknownFields;
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private PlayerInfo(
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 10: {
com.google.protobuf.ByteString bs = input.readBytes();
bitField0_ |= 0x00000001;
name_ = bs;
break;
}
case 17: {
bitField0_ |= 0x00000002;
xuid_ = input.readFixed64();
break;
}
case 24: {
bitField0_ |= 0x00000004;
unknown1_ = input.readInt32();
break;
}
case 33: {
bitField0_ |= 0x00000008;
unknown2_ = input.readFixed64();
break;
}
case 40: {
bitField0_ |= 0x00000010;
fakePlayer_ = input.readBool();
break;
}
case 48: {
bitField0_ |= 0x00000020;
isHlTv_ = 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.s2.proto.CSGOS2ClarityMessages.internal_static_PlayerInfo_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return skadistats.clarity.wire.csgo.s2.proto.CSGOS2ClarityMessages.internal_static_PlayerInfo_fieldAccessorTable
.ensureFieldAccessorsInitialized(
skadistats.clarity.wire.csgo.s2.proto.CSGOS2ClarityMessages.PlayerInfo.class, skadistats.clarity.wire.csgo.s2.proto.CSGOS2ClarityMessages.PlayerInfo.Builder.class);
}
public static com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
public PlayerInfo parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new PlayerInfo(input, extensionRegistry);
}
};
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
private int bitField0_;
public static final int NAME_FIELD_NUMBER = 1;
private java.lang.Object name_;
/**
* optional string name = 1;
*/
public boolean hasName() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional string name = 1;
*/
public java.lang.String getName() {
java.lang.Object ref = name_;
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()) {
name_ = s;
}
return s;
}
}
/**
* optional string name = 1;
*/
public com.google.protobuf.ByteString
getNameBytes() {
java.lang.Object ref = name_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
name_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int XUID_FIELD_NUMBER = 2;
private long xuid_;
/**
* optional fixed64 xuid = 2;
*/
public boolean hasXuid() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional fixed64 xuid = 2;
*/
public long getXuid() {
return xuid_;
}
public static final int UNKNOWN1_FIELD_NUMBER = 3;
private int unknown1_;
/**
* optional int32 unknown1 = 3;
*/
public boolean hasUnknown1() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional int32 unknown1 = 3;
*/
public int getUnknown1() {
return unknown1_;
}
public static final int UNKNOWN2_FIELD_NUMBER = 4;
private long unknown2_;
/**
* optional fixed64 unknown2 = 4;
*/
public boolean hasUnknown2() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional fixed64 unknown2 = 4;
*/
public long getUnknown2() {
return unknown2_;
}
public static final int FAKEPLAYER_FIELD_NUMBER = 5;
private boolean fakePlayer_;
/**
* optional bool fakePlayer = 5;
*/
public boolean hasFakePlayer() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
* optional bool fakePlayer = 5;
*/
public boolean getFakePlayer() {
return fakePlayer_;
}
public static final int ISHLTV_FIELD_NUMBER = 6;
private boolean isHlTv_;
/**
* optional bool isHlTv = 6;
*/
public boolean hasIsHlTv() {
return ((bitField0_ & 0x00000020) == 0x00000020);
}
/**
* optional bool isHlTv = 6;
*/
public boolean getIsHlTv() {
return isHlTv_;
}
private void initFields() {
name_ = "";
xuid_ = 0L;
unknown1_ = 0;
unknown2_ = 0L;
fakePlayer_ = false;
isHlTv_ = 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.writeBytes(1, getNameBytes());
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeFixed64(2, xuid_);
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
output.writeInt32(3, unknown1_);
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
output.writeFixed64(4, unknown2_);
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
output.writeBool(5, fakePlayer_);
}
if (((bitField0_ & 0x00000020) == 0x00000020)) {
output.writeBool(6, isHlTv_);
}
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
.computeBytesSize(1, getNameBytes());
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += com.google.protobuf.CodedOutputStream
.computeFixed64Size(2, xuid_);
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(3, unknown1_);
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
size += com.google.protobuf.CodedOutputStream
.computeFixed64Size(4, unknown2_);
}
if (((bitField0_ & 0x00000010) == 0x00000010)) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(5, fakePlayer_);
}
if (((bitField0_ & 0x00000020) == 0x00000020)) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(6, isHlTv_);
}
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.s2.proto.CSGOS2ClarityMessages.PlayerInfo parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static skadistats.clarity.wire.csgo.s2.proto.CSGOS2ClarityMessages.PlayerInfo 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.s2.proto.CSGOS2ClarityMessages.PlayerInfo parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static skadistats.clarity.wire.csgo.s2.proto.CSGOS2ClarityMessages.PlayerInfo parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static skadistats.clarity.wire.csgo.s2.proto.CSGOS2ClarityMessages.PlayerInfo parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static skadistats.clarity.wire.csgo.s2.proto.CSGOS2ClarityMessages.PlayerInfo 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.s2.proto.CSGOS2ClarityMessages.PlayerInfo parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static skadistats.clarity.wire.csgo.s2.proto.CSGOS2ClarityMessages.PlayerInfo 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.s2.proto.CSGOS2ClarityMessages.PlayerInfo parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static skadistats.clarity.wire.csgo.s2.proto.CSGOS2ClarityMessages.PlayerInfo 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.s2.proto.CSGOS2ClarityMessages.PlayerInfo 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 PlayerInfo}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder implements
// @@protoc_insertion_point(builder_implements:PlayerInfo)
skadistats.clarity.wire.csgo.s2.proto.CSGOS2ClarityMessages.PlayerInfoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return skadistats.clarity.wire.csgo.s2.proto.CSGOS2ClarityMessages.internal_static_PlayerInfo_descriptor;
}
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return skadistats.clarity.wire.csgo.s2.proto.CSGOS2ClarityMessages.internal_static_PlayerInfo_fieldAccessorTable
.ensureFieldAccessorsInitialized(
skadistats.clarity.wire.csgo.s2.proto.CSGOS2ClarityMessages.PlayerInfo.class, skadistats.clarity.wire.csgo.s2.proto.CSGOS2ClarityMessages.PlayerInfo.Builder.class);
}
// Construct using skadistats.clarity.wire.csgo.s2.proto.CSGOS2ClarityMessages.PlayerInfo.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();
name_ = "";
bitField0_ = (bitField0_ & ~0x00000001);
xuid_ = 0L;
bitField0_ = (bitField0_ & ~0x00000002);
unknown1_ = 0;
bitField0_ = (bitField0_ & ~0x00000004);
unknown2_ = 0L;
bitField0_ = (bitField0_ & ~0x00000008);
fakePlayer_ = false;
bitField0_ = (bitField0_ & ~0x00000010);
isHlTv_ = false;
bitField0_ = (bitField0_ & ~0x00000020);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return skadistats.clarity.wire.csgo.s2.proto.CSGOS2ClarityMessages.internal_static_PlayerInfo_descriptor;
}
public skadistats.clarity.wire.csgo.s2.proto.CSGOS2ClarityMessages.PlayerInfo getDefaultInstanceForType() {
return skadistats.clarity.wire.csgo.s2.proto.CSGOS2ClarityMessages.PlayerInfo.getDefaultInstance();
}
public skadistats.clarity.wire.csgo.s2.proto.CSGOS2ClarityMessages.PlayerInfo build() {
skadistats.clarity.wire.csgo.s2.proto.CSGOS2ClarityMessages.PlayerInfo result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public skadistats.clarity.wire.csgo.s2.proto.CSGOS2ClarityMessages.PlayerInfo buildPartial() {
skadistats.clarity.wire.csgo.s2.proto.CSGOS2ClarityMessages.PlayerInfo result = new skadistats.clarity.wire.csgo.s2.proto.CSGOS2ClarityMessages.PlayerInfo(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.name_ = name_;
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
result.xuid_ = xuid_;
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
to_bitField0_ |= 0x00000004;
}
result.unknown1_ = unknown1_;
if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
to_bitField0_ |= 0x00000008;
}
result.unknown2_ = unknown2_;
if (((from_bitField0_ & 0x00000010) == 0x00000010)) {
to_bitField0_ |= 0x00000010;
}
result.fakePlayer_ = fakePlayer_;
if (((from_bitField0_ & 0x00000020) == 0x00000020)) {
to_bitField0_ |= 0x00000020;
}
result.isHlTv_ = isHlTv_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof skadistats.clarity.wire.csgo.s2.proto.CSGOS2ClarityMessages.PlayerInfo) {
return mergeFrom((skadistats.clarity.wire.csgo.s2.proto.CSGOS2ClarityMessages.PlayerInfo)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(skadistats.clarity.wire.csgo.s2.proto.CSGOS2ClarityMessages.PlayerInfo other) {
if (other == skadistats.clarity.wire.csgo.s2.proto.CSGOS2ClarityMessages.PlayerInfo.getDefaultInstance()) return this;
if (other.hasName()) {
bitField0_ |= 0x00000001;
name_ = other.name_;
onChanged();
}
if (other.hasXuid()) {
setXuid(other.getXuid());
}
if (other.hasUnknown1()) {
setUnknown1(other.getUnknown1());
}
if (other.hasUnknown2()) {
setUnknown2(other.getUnknown2());
}
if (other.hasFakePlayer()) {
setFakePlayer(other.getFakePlayer());
}
if (other.hasIsHlTv()) {
setIsHlTv(other.getIsHlTv());
}
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.s2.proto.CSGOS2ClarityMessages.PlayerInfo parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (skadistats.clarity.wire.csgo.s2.proto.CSGOS2ClarityMessages.PlayerInfo) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private java.lang.Object name_ = "";
/**
* optional string name = 1;
*/
public boolean hasName() {
return ((bitField0_ & 0x00000001) == 0x00000001);
}
/**
* optional string name = 1;
*/
public java.lang.String getName() {
java.lang.Object ref = name_;
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()) {
name_ = s;
}
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* optional string name = 1;
*/
public com.google.protobuf.ByteString
getNameBytes() {
java.lang.Object ref = name_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
name_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* optional string name = 1;
*/
public Builder setName(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000001;
name_ = value;
onChanged();
return this;
}
/**
* optional string name = 1;
*/
public Builder clearName() {
bitField0_ = (bitField0_ & ~0x00000001);
name_ = getDefaultInstance().getName();
onChanged();
return this;
}
/**
* optional string name = 1;
*/
public Builder setNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000001;
name_ = value;
onChanged();
return this;
}
private long xuid_ ;
/**
* optional fixed64 xuid = 2;
*/
public boolean hasXuid() {
return ((bitField0_ & 0x00000002) == 0x00000002);
}
/**
* optional fixed64 xuid = 2;
*/
public long getXuid() {
return xuid_;
}
/**
* optional fixed64 xuid = 2;
*/
public Builder setXuid(long value) {
bitField0_ |= 0x00000002;
xuid_ = value;
onChanged();
return this;
}
/**
* optional fixed64 xuid = 2;
*/
public Builder clearXuid() {
bitField0_ = (bitField0_ & ~0x00000002);
xuid_ = 0L;
onChanged();
return this;
}
private int unknown1_ ;
/**
* optional int32 unknown1 = 3;
*/
public boolean hasUnknown1() {
return ((bitField0_ & 0x00000004) == 0x00000004);
}
/**
* optional int32 unknown1 = 3;
*/
public int getUnknown1() {
return unknown1_;
}
/**
* optional int32 unknown1 = 3;
*/
public Builder setUnknown1(int value) {
bitField0_ |= 0x00000004;
unknown1_ = value;
onChanged();
return this;
}
/**
* optional int32 unknown1 = 3;
*/
public Builder clearUnknown1() {
bitField0_ = (bitField0_ & ~0x00000004);
unknown1_ = 0;
onChanged();
return this;
}
private long unknown2_ ;
/**
* optional fixed64 unknown2 = 4;
*/
public boolean hasUnknown2() {
return ((bitField0_ & 0x00000008) == 0x00000008);
}
/**
* optional fixed64 unknown2 = 4;
*/
public long getUnknown2() {
return unknown2_;
}
/**
* optional fixed64 unknown2 = 4;
*/
public Builder setUnknown2(long value) {
bitField0_ |= 0x00000008;
unknown2_ = value;
onChanged();
return this;
}
/**
* optional fixed64 unknown2 = 4;
*/
public Builder clearUnknown2() {
bitField0_ = (bitField0_ & ~0x00000008);
unknown2_ = 0L;
onChanged();
return this;
}
private boolean fakePlayer_ ;
/**
* optional bool fakePlayer = 5;
*/
public boolean hasFakePlayer() {
return ((bitField0_ & 0x00000010) == 0x00000010);
}
/**
* optional bool fakePlayer = 5;
*/
public boolean getFakePlayer() {
return fakePlayer_;
}
/**
* optional bool fakePlayer = 5;
*/
public Builder setFakePlayer(boolean value) {
bitField0_ |= 0x00000010;
fakePlayer_ = value;
onChanged();
return this;
}
/**
* optional bool fakePlayer = 5;
*/
public Builder clearFakePlayer() {
bitField0_ = (bitField0_ & ~0x00000010);
fakePlayer_ = false;
onChanged();
return this;
}
private boolean isHlTv_ ;
/**
* optional bool isHlTv = 6;
*/
public boolean hasIsHlTv() {
return ((bitField0_ & 0x00000020) == 0x00000020);
}
/**
* optional bool isHlTv = 6;
*/
public boolean getIsHlTv() {
return isHlTv_;
}
/**
* optional bool isHlTv = 6;
*/
public Builder setIsHlTv(boolean value) {
bitField0_ |= 0x00000020;
isHlTv_ = value;
onChanged();
return this;
}
/**
* optional bool isHlTv = 6;
*/
public Builder clearIsHlTv() {
bitField0_ = (bitField0_ & ~0x00000020);
isHlTv_ = false;
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:PlayerInfo)
}
static {
defaultInstance = new PlayerInfo(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:PlayerInfo)
}
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_PlayerInfo_descriptor;
private static
com.google.protobuf.GeneratedMessage.FieldAccessorTable
internal_static_PlayerInfo_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\025claritymessages.proto\"p\n\nPlayerInfo\022\014\n" +
"\004name\030\001 \001(\t\022\014\n\004xuid\030\002 \001(\006\022\020\n\010unknown1\030\003 " +
"\001(\005\022\020\n\010unknown2\030\004 \001(\006\022\022\n\nfakePlayer\030\005 \001(" +
"\010\022\016\n\006isHlTv\030\006 \001(\010B>\n%skadistats.clarity." +
"wire.csgo.s2.protoB\025CSGOS2ClarityMessage" +
"s"
};
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_PlayerInfo_descriptor =
getDescriptor().getMessageTypes().get(0);
internal_static_PlayerInfo_fieldAccessorTable = new
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
internal_static_PlayerInfo_descriptor,
new java.lang.String[] { "Name", "Xuid", "Unknown1", "Unknown2", "FakePlayer", "IsHlTv", });
}
// @@protoc_insertion_point(outer_class_scope)
}