POGOProtos.Map.Pokemon.LobbyPokemonOuterClass Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: POGOProtos/Map/Pokemon/LobbyPokemon.proto
package POGOProtos.Map.Pokemon;
public final class LobbyPokemonOuterClass {
private LobbyPokemonOuterClass() {}
public static void registerAllExtensions(
com.google.protobuf.ExtensionRegistryLite registry) {
}
public static void registerAllExtensions(
com.google.protobuf.ExtensionRegistry registry) {
registerAllExtensions(
(com.google.protobuf.ExtensionRegistryLite) registry);
}
public interface LobbyPokemonOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Map.Pokemon.LobbyPokemon)
com.google.protobuf.MessageOrBuilder {
/**
* int64 id = 1;
*/
long getId();
/**
* .POGOProtos.Enums.PokemonId pokedex_id = 2;
*/
int getPokedexIdValue();
/**
* .POGOProtos.Enums.PokemonId pokedex_id = 2;
*/
POGOProtos.Enums.PokemonIdOuterClass.PokemonId getPokedexId();
/**
* int32 cp = 3;
*/
int getCp();
/**
* float percent_health = 4;
*/
float getPercentHealth();
}
/**
* Protobuf type {@code POGOProtos.Map.Pokemon.LobbyPokemon}
*/
public static final class LobbyPokemon extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Map.Pokemon.LobbyPokemon)
LobbyPokemonOrBuilder {
private static final long serialVersionUID = 0L;
// Use LobbyPokemon.newBuilder() to construct.
private LobbyPokemon(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private LobbyPokemon() {
id_ = 0L;
pokedexId_ = 0;
cp_ = 0;
percentHealth_ = 0F;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private LobbyPokemon(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 8: {
id_ = input.readInt64();
break;
}
case 16: {
int rawValue = input.readEnum();
pokedexId_ = rawValue;
break;
}
case 24: {
cp_ = input.readInt32();
break;
}
case 37: {
percentHealth_ = input.readFloat();
break;
}
default: {
if (!parseUnknownFieldProto3(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.internal_static_POGOProtos_Map_Pokemon_LobbyPokemon_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.internal_static_POGOProtos_Map_Pokemon_LobbyPokemon_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon.class, POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon.Builder.class);
}
public static final int ID_FIELD_NUMBER = 1;
private long id_;
/**
* int64 id = 1;
*/
public long getId() {
return id_;
}
public static final int POKEDEX_ID_FIELD_NUMBER = 2;
private int pokedexId_;
/**
* .POGOProtos.Enums.PokemonId pokedex_id = 2;
*/
public int getPokedexIdValue() {
return pokedexId_;
}
/**
* .POGOProtos.Enums.PokemonId pokedex_id = 2;
*/
public POGOProtos.Enums.PokemonIdOuterClass.PokemonId getPokedexId() {
@SuppressWarnings("deprecation")
POGOProtos.Enums.PokemonIdOuterClass.PokemonId result = POGOProtos.Enums.PokemonIdOuterClass.PokemonId.valueOf(pokedexId_);
return result == null ? POGOProtos.Enums.PokemonIdOuterClass.PokemonId.UNRECOGNIZED : result;
}
public static final int CP_FIELD_NUMBER = 3;
private int cp_;
/**
* int32 cp = 3;
*/
public int getCp() {
return cp_;
}
public static final int PERCENT_HEALTH_FIELD_NUMBER = 4;
private float percentHealth_;
/**
* float percent_health = 4;
*/
public float getPercentHealth() {
return percentHealth_;
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (id_ != 0L) {
output.writeInt64(1, id_);
}
if (pokedexId_ != POGOProtos.Enums.PokemonIdOuterClass.PokemonId.MISSINGNO.getNumber()) {
output.writeEnum(2, pokedexId_);
}
if (cp_ != 0) {
output.writeInt32(3, cp_);
}
if (percentHealth_ != 0F) {
output.writeFloat(4, percentHealth_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (id_ != 0L) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(1, id_);
}
if (pokedexId_ != POGOProtos.Enums.PokemonIdOuterClass.PokemonId.MISSINGNO.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(2, pokedexId_);
}
if (cp_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(3, cp_);
}
if (percentHealth_ != 0F) {
size += com.google.protobuf.CodedOutputStream
.computeFloatSize(4, percentHealth_);
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon)) {
return super.equals(obj);
}
POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon other = (POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon) obj;
boolean result = true;
result = result && (getId()
== other.getId());
result = result && pokedexId_ == other.pokedexId_;
result = result && (getCp()
== other.getCp());
result = result && (
java.lang.Float.floatToIntBits(getPercentHealth())
== java.lang.Float.floatToIntBits(
other.getPercentHealth()));
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + ID_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
getId());
hash = (37 * hash) + POKEDEX_ID_FIELD_NUMBER;
hash = (53 * hash) + pokedexId_;
hash = (37 * hash) + CP_FIELD_NUMBER;
hash = (53 * hash) + getCp();
hash = (37 * hash) + PERCENT_HEALTH_FIELD_NUMBER;
hash = (53 * hash) + java.lang.Float.floatToIntBits(
getPercentHealth());
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code POGOProtos.Map.Pokemon.LobbyPokemon}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Map.Pokemon.LobbyPokemon)
POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemonOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.internal_static_POGOProtos_Map_Pokemon_LobbyPokemon_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.internal_static_POGOProtos_Map_Pokemon_LobbyPokemon_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon.class, POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon.Builder.class);
}
// Construct using POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@java.lang.Override
public Builder clear() {
super.clear();
id_ = 0L;
pokedexId_ = 0;
cp_ = 0;
percentHealth_ = 0F;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.internal_static_POGOProtos_Map_Pokemon_LobbyPokemon_descriptor;
}
@java.lang.Override
public POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon getDefaultInstanceForType() {
return POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon build() {
POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon buildPartial() {
POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon result = new POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon(this);
result.id_ = id_;
result.pokedexId_ = pokedexId_;
result.cp_ = cp_;
result.percentHealth_ = percentHealth_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return (Builder) super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon) {
return mergeFrom((POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon other) {
if (other == POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon.getDefaultInstance()) return this;
if (other.getId() != 0L) {
setId(other.getId());
}
if (other.pokedexId_ != 0) {
setPokedexIdValue(other.getPokedexIdValue());
}
if (other.getCp() != 0) {
setCp(other.getCp());
}
if (other.getPercentHealth() != 0F) {
setPercentHealth(other.getPercentHealth());
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private long id_ ;
/**
* int64 id = 1;
*/
public long getId() {
return id_;
}
/**
* int64 id = 1;
*/
public Builder setId(long value) {
id_ = value;
onChanged();
return this;
}
/**
* int64 id = 1;
*/
public Builder clearId() {
id_ = 0L;
onChanged();
return this;
}
private int pokedexId_ = 0;
/**
* .POGOProtos.Enums.PokemonId pokedex_id = 2;
*/
public int getPokedexIdValue() {
return pokedexId_;
}
/**
* .POGOProtos.Enums.PokemonId pokedex_id = 2;
*/
public Builder setPokedexIdValue(int value) {
pokedexId_ = value;
onChanged();
return this;
}
/**
* .POGOProtos.Enums.PokemonId pokedex_id = 2;
*/
public POGOProtos.Enums.PokemonIdOuterClass.PokemonId getPokedexId() {
@SuppressWarnings("deprecation")
POGOProtos.Enums.PokemonIdOuterClass.PokemonId result = POGOProtos.Enums.PokemonIdOuterClass.PokemonId.valueOf(pokedexId_);
return result == null ? POGOProtos.Enums.PokemonIdOuterClass.PokemonId.UNRECOGNIZED : result;
}
/**
* .POGOProtos.Enums.PokemonId pokedex_id = 2;
*/
public Builder setPokedexId(POGOProtos.Enums.PokemonIdOuterClass.PokemonId value) {
if (value == null) {
throw new NullPointerException();
}
pokedexId_ = value.getNumber();
onChanged();
return this;
}
/**
* .POGOProtos.Enums.PokemonId pokedex_id = 2;
*/
public Builder clearPokedexId() {
pokedexId_ = 0;
onChanged();
return this;
}
private int cp_ ;
/**
* int32 cp = 3;
*/
public int getCp() {
return cp_;
}
/**
* int32 cp = 3;
*/
public Builder setCp(int value) {
cp_ = value;
onChanged();
return this;
}
/**
* int32 cp = 3;
*/
public Builder clearCp() {
cp_ = 0;
onChanged();
return this;
}
private float percentHealth_ ;
/**
* float percent_health = 4;
*/
public float getPercentHealth() {
return percentHealth_;
}
/**
* float percent_health = 4;
*/
public Builder setPercentHealth(float value) {
percentHealth_ = value;
onChanged();
return this;
}
/**
* float percent_health = 4;
*/
public Builder clearPercentHealth() {
percentHealth_ = 0F;
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:POGOProtos.Map.Pokemon.LobbyPokemon)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Map.Pokemon.LobbyPokemon)
private static final POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon();
}
public static POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public LobbyPokemon parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new LobbyPokemon(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public POGOProtos.Map.Pokemon.LobbyPokemonOuterClass.LobbyPokemon getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Map_Pokemon_LobbyPokemon_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Map_Pokemon_LobbyPokemon_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)POGOProtos/Map/Pokemon/LobbyPokemon.pr" +
"oto\022\026POGOProtos.Map.Pokemon\032 POGOProtos/" +
"Enums/PokemonId.proto\"o\n\014LobbyPokemon\022\n\n" +
"\002id\030\001 \001(\003\022/\n\npokedex_id\030\002 \001(\0162\033.POGOProt" +
"os.Enums.PokemonId\022\n\n\002cp\030\003 \001(\005\022\026\n\016percen" +
"t_health\030\004 \001(\002b\006proto3"
};
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[] {
POGOProtos.Enums.PokemonIdOuterClass.getDescriptor(),
}, assigner);
internal_static_POGOProtos_Map_Pokemon_LobbyPokemon_descriptor =
getDescriptor().getMessageTypes().get(0);
internal_static_POGOProtos_Map_Pokemon_LobbyPokemon_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_POGOProtos_Map_Pokemon_LobbyPokemon_descriptor,
new java.lang.String[] { "Id", "PokedexId", "Cp", "PercentHealth", });
POGOProtos.Enums.PokemonIdOuterClass.getDescriptor();
}
// @@protoc_insertion_point(outer_class_scope)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy