POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: POGOProtos/Settings/Master/Pokemon/EncounterAttributes.proto
package POGOProtos.Settings.Master.Pokemon;
public final class EncounterAttributesOuterClass {
private EncounterAttributesOuterClass() {}
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 EncounterAttributesOrBuilder extends
// @@protoc_insertion_point(interface_extends:POGOProtos.Settings.Master.Pokemon.EncounterAttributes)
com.google.protobuf.MessageOrBuilder {
/**
* float base_capture_rate = 1;
*/
float getBaseCaptureRate();
/**
* float base_flee_rate = 2;
*/
float getBaseFleeRate();
/**
* float collision_radius_m = 3;
*/
float getCollisionRadiusM();
/**
* float collision_height_m = 4;
*/
float getCollisionHeightM();
/**
* float collision_head_radius_m = 5;
*/
float getCollisionHeadRadiusM();
/**
* .POGOProtos.Enums.PokemonMovementType movement_type = 6;
*/
int getMovementTypeValue();
/**
* .POGOProtos.Enums.PokemonMovementType movement_type = 6;
*/
POGOProtos.Enums.PokemonMovementTypeOuterClass.PokemonMovementType getMovementType();
/**
* float movement_timer_s = 7;
*/
float getMovementTimerS();
/**
* float jump_time_s = 8;
*/
float getJumpTimeS();
/**
* float attack_timer_s = 9;
*/
float getAttackTimerS();
/**
* int32 bonus_candy_capture_reward = 10;
*/
int getBonusCandyCaptureReward();
/**
* int32 bonus_stardust_capture_reward = 11;
*/
int getBonusStardustCaptureReward();
/**
* float attack_probability = 12;
*/
float getAttackProbability();
/**
* float dodge_probability = 13;
*/
float getDodgeProbability();
/**
* float dodge_duration_s = 14;
*/
float getDodgeDurationS();
/**
* float dodge_distance = 15;
*/
float getDodgeDistance();
/**
* float camera_distance = 16;
*/
float getCameraDistance();
/**
* float min_pokemon_action_frequency_s = 17;
*/
float getMinPokemonActionFrequencyS();
/**
* float max_pokemon_action_frequency_s = 18;
*/
float getMaxPokemonActionFrequencyS();
}
/**
* Protobuf type {@code POGOProtos.Settings.Master.Pokemon.EncounterAttributes}
*/
public static final class EncounterAttributes extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:POGOProtos.Settings.Master.Pokemon.EncounterAttributes)
EncounterAttributesOrBuilder {
private static final long serialVersionUID = 0L;
// Use EncounterAttributes.newBuilder() to construct.
private EncounterAttributes(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private EncounterAttributes() {
baseCaptureRate_ = 0F;
baseFleeRate_ = 0F;
collisionRadiusM_ = 0F;
collisionHeightM_ = 0F;
collisionHeadRadiusM_ = 0F;
movementType_ = 0;
movementTimerS_ = 0F;
jumpTimeS_ = 0F;
attackTimerS_ = 0F;
bonusCandyCaptureReward_ = 0;
bonusStardustCaptureReward_ = 0;
attackProbability_ = 0F;
dodgeProbability_ = 0F;
dodgeDurationS_ = 0F;
dodgeDistance_ = 0F;
cameraDistance_ = 0F;
minPokemonActionFrequencyS_ = 0F;
maxPokemonActionFrequencyS_ = 0F;
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private EncounterAttributes(
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 13: {
baseCaptureRate_ = input.readFloat();
break;
}
case 21: {
baseFleeRate_ = input.readFloat();
break;
}
case 29: {
collisionRadiusM_ = input.readFloat();
break;
}
case 37: {
collisionHeightM_ = input.readFloat();
break;
}
case 45: {
collisionHeadRadiusM_ = input.readFloat();
break;
}
case 48: {
int rawValue = input.readEnum();
movementType_ = rawValue;
break;
}
case 61: {
movementTimerS_ = input.readFloat();
break;
}
case 69: {
jumpTimeS_ = input.readFloat();
break;
}
case 77: {
attackTimerS_ = input.readFloat();
break;
}
case 80: {
bonusCandyCaptureReward_ = input.readInt32();
break;
}
case 88: {
bonusStardustCaptureReward_ = input.readInt32();
break;
}
case 101: {
attackProbability_ = input.readFloat();
break;
}
case 109: {
dodgeProbability_ = input.readFloat();
break;
}
case 117: {
dodgeDurationS_ = input.readFloat();
break;
}
case 125: {
dodgeDistance_ = input.readFloat();
break;
}
case 133: {
cameraDistance_ = input.readFloat();
break;
}
case 141: {
minPokemonActionFrequencyS_ = input.readFloat();
break;
}
case 149: {
maxPokemonActionFrequencyS_ = 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.Settings.Master.Pokemon.EncounterAttributesOuterClass.internal_static_POGOProtos_Settings_Master_Pokemon_EncounterAttributes_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.internal_static_POGOProtos_Settings_Master_Pokemon_EncounterAttributes_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes.class, POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes.Builder.class);
}
public static final int BASE_CAPTURE_RATE_FIELD_NUMBER = 1;
private float baseCaptureRate_;
/**
* float base_capture_rate = 1;
*/
public float getBaseCaptureRate() {
return baseCaptureRate_;
}
public static final int BASE_FLEE_RATE_FIELD_NUMBER = 2;
private float baseFleeRate_;
/**
* float base_flee_rate = 2;
*/
public float getBaseFleeRate() {
return baseFleeRate_;
}
public static final int COLLISION_RADIUS_M_FIELD_NUMBER = 3;
private float collisionRadiusM_;
/**
* float collision_radius_m = 3;
*/
public float getCollisionRadiusM() {
return collisionRadiusM_;
}
public static final int COLLISION_HEIGHT_M_FIELD_NUMBER = 4;
private float collisionHeightM_;
/**
* float collision_height_m = 4;
*/
public float getCollisionHeightM() {
return collisionHeightM_;
}
public static final int COLLISION_HEAD_RADIUS_M_FIELD_NUMBER = 5;
private float collisionHeadRadiusM_;
/**
* float collision_head_radius_m = 5;
*/
public float getCollisionHeadRadiusM() {
return collisionHeadRadiusM_;
}
public static final int MOVEMENT_TYPE_FIELD_NUMBER = 6;
private int movementType_;
/**
* .POGOProtos.Enums.PokemonMovementType movement_type = 6;
*/
public int getMovementTypeValue() {
return movementType_;
}
/**
* .POGOProtos.Enums.PokemonMovementType movement_type = 6;
*/
public POGOProtos.Enums.PokemonMovementTypeOuterClass.PokemonMovementType getMovementType() {
@SuppressWarnings("deprecation")
POGOProtos.Enums.PokemonMovementTypeOuterClass.PokemonMovementType result = POGOProtos.Enums.PokemonMovementTypeOuterClass.PokemonMovementType.valueOf(movementType_);
return result == null ? POGOProtos.Enums.PokemonMovementTypeOuterClass.PokemonMovementType.UNRECOGNIZED : result;
}
public static final int MOVEMENT_TIMER_S_FIELD_NUMBER = 7;
private float movementTimerS_;
/**
* float movement_timer_s = 7;
*/
public float getMovementTimerS() {
return movementTimerS_;
}
public static final int JUMP_TIME_S_FIELD_NUMBER = 8;
private float jumpTimeS_;
/**
* float jump_time_s = 8;
*/
public float getJumpTimeS() {
return jumpTimeS_;
}
public static final int ATTACK_TIMER_S_FIELD_NUMBER = 9;
private float attackTimerS_;
/**
* float attack_timer_s = 9;
*/
public float getAttackTimerS() {
return attackTimerS_;
}
public static final int BONUS_CANDY_CAPTURE_REWARD_FIELD_NUMBER = 10;
private int bonusCandyCaptureReward_;
/**
* int32 bonus_candy_capture_reward = 10;
*/
public int getBonusCandyCaptureReward() {
return bonusCandyCaptureReward_;
}
public static final int BONUS_STARDUST_CAPTURE_REWARD_FIELD_NUMBER = 11;
private int bonusStardustCaptureReward_;
/**
* int32 bonus_stardust_capture_reward = 11;
*/
public int getBonusStardustCaptureReward() {
return bonusStardustCaptureReward_;
}
public static final int ATTACK_PROBABILITY_FIELD_NUMBER = 12;
private float attackProbability_;
/**
* float attack_probability = 12;
*/
public float getAttackProbability() {
return attackProbability_;
}
public static final int DODGE_PROBABILITY_FIELD_NUMBER = 13;
private float dodgeProbability_;
/**
* float dodge_probability = 13;
*/
public float getDodgeProbability() {
return dodgeProbability_;
}
public static final int DODGE_DURATION_S_FIELD_NUMBER = 14;
private float dodgeDurationS_;
/**
* float dodge_duration_s = 14;
*/
public float getDodgeDurationS() {
return dodgeDurationS_;
}
public static final int DODGE_DISTANCE_FIELD_NUMBER = 15;
private float dodgeDistance_;
/**
* float dodge_distance = 15;
*/
public float getDodgeDistance() {
return dodgeDistance_;
}
public static final int CAMERA_DISTANCE_FIELD_NUMBER = 16;
private float cameraDistance_;
/**
* float camera_distance = 16;
*/
public float getCameraDistance() {
return cameraDistance_;
}
public static final int MIN_POKEMON_ACTION_FREQUENCY_S_FIELD_NUMBER = 17;
private float minPokemonActionFrequencyS_;
/**
* float min_pokemon_action_frequency_s = 17;
*/
public float getMinPokemonActionFrequencyS() {
return minPokemonActionFrequencyS_;
}
public static final int MAX_POKEMON_ACTION_FREQUENCY_S_FIELD_NUMBER = 18;
private float maxPokemonActionFrequencyS_;
/**
* float max_pokemon_action_frequency_s = 18;
*/
public float getMaxPokemonActionFrequencyS() {
return maxPokemonActionFrequencyS_;
}
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 (baseCaptureRate_ != 0F) {
output.writeFloat(1, baseCaptureRate_);
}
if (baseFleeRate_ != 0F) {
output.writeFloat(2, baseFleeRate_);
}
if (collisionRadiusM_ != 0F) {
output.writeFloat(3, collisionRadiusM_);
}
if (collisionHeightM_ != 0F) {
output.writeFloat(4, collisionHeightM_);
}
if (collisionHeadRadiusM_ != 0F) {
output.writeFloat(5, collisionHeadRadiusM_);
}
if (movementType_ != POGOProtos.Enums.PokemonMovementTypeOuterClass.PokemonMovementType.MOVEMENT_STATIC.getNumber()) {
output.writeEnum(6, movementType_);
}
if (movementTimerS_ != 0F) {
output.writeFloat(7, movementTimerS_);
}
if (jumpTimeS_ != 0F) {
output.writeFloat(8, jumpTimeS_);
}
if (attackTimerS_ != 0F) {
output.writeFloat(9, attackTimerS_);
}
if (bonusCandyCaptureReward_ != 0) {
output.writeInt32(10, bonusCandyCaptureReward_);
}
if (bonusStardustCaptureReward_ != 0) {
output.writeInt32(11, bonusStardustCaptureReward_);
}
if (attackProbability_ != 0F) {
output.writeFloat(12, attackProbability_);
}
if (dodgeProbability_ != 0F) {
output.writeFloat(13, dodgeProbability_);
}
if (dodgeDurationS_ != 0F) {
output.writeFloat(14, dodgeDurationS_);
}
if (dodgeDistance_ != 0F) {
output.writeFloat(15, dodgeDistance_);
}
if (cameraDistance_ != 0F) {
output.writeFloat(16, cameraDistance_);
}
if (minPokemonActionFrequencyS_ != 0F) {
output.writeFloat(17, minPokemonActionFrequencyS_);
}
if (maxPokemonActionFrequencyS_ != 0F) {
output.writeFloat(18, maxPokemonActionFrequencyS_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (baseCaptureRate_ != 0F) {
size += com.google.protobuf.CodedOutputStream
.computeFloatSize(1, baseCaptureRate_);
}
if (baseFleeRate_ != 0F) {
size += com.google.protobuf.CodedOutputStream
.computeFloatSize(2, baseFleeRate_);
}
if (collisionRadiusM_ != 0F) {
size += com.google.protobuf.CodedOutputStream
.computeFloatSize(3, collisionRadiusM_);
}
if (collisionHeightM_ != 0F) {
size += com.google.protobuf.CodedOutputStream
.computeFloatSize(4, collisionHeightM_);
}
if (collisionHeadRadiusM_ != 0F) {
size += com.google.protobuf.CodedOutputStream
.computeFloatSize(5, collisionHeadRadiusM_);
}
if (movementType_ != POGOProtos.Enums.PokemonMovementTypeOuterClass.PokemonMovementType.MOVEMENT_STATIC.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(6, movementType_);
}
if (movementTimerS_ != 0F) {
size += com.google.protobuf.CodedOutputStream
.computeFloatSize(7, movementTimerS_);
}
if (jumpTimeS_ != 0F) {
size += com.google.protobuf.CodedOutputStream
.computeFloatSize(8, jumpTimeS_);
}
if (attackTimerS_ != 0F) {
size += com.google.protobuf.CodedOutputStream
.computeFloatSize(9, attackTimerS_);
}
if (bonusCandyCaptureReward_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(10, bonusCandyCaptureReward_);
}
if (bonusStardustCaptureReward_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(11, bonusStardustCaptureReward_);
}
if (attackProbability_ != 0F) {
size += com.google.protobuf.CodedOutputStream
.computeFloatSize(12, attackProbability_);
}
if (dodgeProbability_ != 0F) {
size += com.google.protobuf.CodedOutputStream
.computeFloatSize(13, dodgeProbability_);
}
if (dodgeDurationS_ != 0F) {
size += com.google.protobuf.CodedOutputStream
.computeFloatSize(14, dodgeDurationS_);
}
if (dodgeDistance_ != 0F) {
size += com.google.protobuf.CodedOutputStream
.computeFloatSize(15, dodgeDistance_);
}
if (cameraDistance_ != 0F) {
size += com.google.protobuf.CodedOutputStream
.computeFloatSize(16, cameraDistance_);
}
if (minPokemonActionFrequencyS_ != 0F) {
size += com.google.protobuf.CodedOutputStream
.computeFloatSize(17, minPokemonActionFrequencyS_);
}
if (maxPokemonActionFrequencyS_ != 0F) {
size += com.google.protobuf.CodedOutputStream
.computeFloatSize(18, maxPokemonActionFrequencyS_);
}
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.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes)) {
return super.equals(obj);
}
POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes other = (POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes) obj;
boolean result = true;
result = result && (
java.lang.Float.floatToIntBits(getBaseCaptureRate())
== java.lang.Float.floatToIntBits(
other.getBaseCaptureRate()));
result = result && (
java.lang.Float.floatToIntBits(getBaseFleeRate())
== java.lang.Float.floatToIntBits(
other.getBaseFleeRate()));
result = result && (
java.lang.Float.floatToIntBits(getCollisionRadiusM())
== java.lang.Float.floatToIntBits(
other.getCollisionRadiusM()));
result = result && (
java.lang.Float.floatToIntBits(getCollisionHeightM())
== java.lang.Float.floatToIntBits(
other.getCollisionHeightM()));
result = result && (
java.lang.Float.floatToIntBits(getCollisionHeadRadiusM())
== java.lang.Float.floatToIntBits(
other.getCollisionHeadRadiusM()));
result = result && movementType_ == other.movementType_;
result = result && (
java.lang.Float.floatToIntBits(getMovementTimerS())
== java.lang.Float.floatToIntBits(
other.getMovementTimerS()));
result = result && (
java.lang.Float.floatToIntBits(getJumpTimeS())
== java.lang.Float.floatToIntBits(
other.getJumpTimeS()));
result = result && (
java.lang.Float.floatToIntBits(getAttackTimerS())
== java.lang.Float.floatToIntBits(
other.getAttackTimerS()));
result = result && (getBonusCandyCaptureReward()
== other.getBonusCandyCaptureReward());
result = result && (getBonusStardustCaptureReward()
== other.getBonusStardustCaptureReward());
result = result && (
java.lang.Float.floatToIntBits(getAttackProbability())
== java.lang.Float.floatToIntBits(
other.getAttackProbability()));
result = result && (
java.lang.Float.floatToIntBits(getDodgeProbability())
== java.lang.Float.floatToIntBits(
other.getDodgeProbability()));
result = result && (
java.lang.Float.floatToIntBits(getDodgeDurationS())
== java.lang.Float.floatToIntBits(
other.getDodgeDurationS()));
result = result && (
java.lang.Float.floatToIntBits(getDodgeDistance())
== java.lang.Float.floatToIntBits(
other.getDodgeDistance()));
result = result && (
java.lang.Float.floatToIntBits(getCameraDistance())
== java.lang.Float.floatToIntBits(
other.getCameraDistance()));
result = result && (
java.lang.Float.floatToIntBits(getMinPokemonActionFrequencyS())
== java.lang.Float.floatToIntBits(
other.getMinPokemonActionFrequencyS()));
result = result && (
java.lang.Float.floatToIntBits(getMaxPokemonActionFrequencyS())
== java.lang.Float.floatToIntBits(
other.getMaxPokemonActionFrequencyS()));
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) + BASE_CAPTURE_RATE_FIELD_NUMBER;
hash = (53 * hash) + java.lang.Float.floatToIntBits(
getBaseCaptureRate());
hash = (37 * hash) + BASE_FLEE_RATE_FIELD_NUMBER;
hash = (53 * hash) + java.lang.Float.floatToIntBits(
getBaseFleeRate());
hash = (37 * hash) + COLLISION_RADIUS_M_FIELD_NUMBER;
hash = (53 * hash) + java.lang.Float.floatToIntBits(
getCollisionRadiusM());
hash = (37 * hash) + COLLISION_HEIGHT_M_FIELD_NUMBER;
hash = (53 * hash) + java.lang.Float.floatToIntBits(
getCollisionHeightM());
hash = (37 * hash) + COLLISION_HEAD_RADIUS_M_FIELD_NUMBER;
hash = (53 * hash) + java.lang.Float.floatToIntBits(
getCollisionHeadRadiusM());
hash = (37 * hash) + MOVEMENT_TYPE_FIELD_NUMBER;
hash = (53 * hash) + movementType_;
hash = (37 * hash) + MOVEMENT_TIMER_S_FIELD_NUMBER;
hash = (53 * hash) + java.lang.Float.floatToIntBits(
getMovementTimerS());
hash = (37 * hash) + JUMP_TIME_S_FIELD_NUMBER;
hash = (53 * hash) + java.lang.Float.floatToIntBits(
getJumpTimeS());
hash = (37 * hash) + ATTACK_TIMER_S_FIELD_NUMBER;
hash = (53 * hash) + java.lang.Float.floatToIntBits(
getAttackTimerS());
hash = (37 * hash) + BONUS_CANDY_CAPTURE_REWARD_FIELD_NUMBER;
hash = (53 * hash) + getBonusCandyCaptureReward();
hash = (37 * hash) + BONUS_STARDUST_CAPTURE_REWARD_FIELD_NUMBER;
hash = (53 * hash) + getBonusStardustCaptureReward();
hash = (37 * hash) + ATTACK_PROBABILITY_FIELD_NUMBER;
hash = (53 * hash) + java.lang.Float.floatToIntBits(
getAttackProbability());
hash = (37 * hash) + DODGE_PROBABILITY_FIELD_NUMBER;
hash = (53 * hash) + java.lang.Float.floatToIntBits(
getDodgeProbability());
hash = (37 * hash) + DODGE_DURATION_S_FIELD_NUMBER;
hash = (53 * hash) + java.lang.Float.floatToIntBits(
getDodgeDurationS());
hash = (37 * hash) + DODGE_DISTANCE_FIELD_NUMBER;
hash = (53 * hash) + java.lang.Float.floatToIntBits(
getDodgeDistance());
hash = (37 * hash) + CAMERA_DISTANCE_FIELD_NUMBER;
hash = (53 * hash) + java.lang.Float.floatToIntBits(
getCameraDistance());
hash = (37 * hash) + MIN_POKEMON_ACTION_FREQUENCY_S_FIELD_NUMBER;
hash = (53 * hash) + java.lang.Float.floatToIntBits(
getMinPokemonActionFrequencyS());
hash = (37 * hash) + MAX_POKEMON_ACTION_FREQUENCY_S_FIELD_NUMBER;
hash = (53 * hash) + java.lang.Float.floatToIntBits(
getMaxPokemonActionFrequencyS());
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes 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.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes 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.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes 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.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes 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.Settings.Master.Pokemon.EncounterAttributes}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:POGOProtos.Settings.Master.Pokemon.EncounterAttributes)
POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributesOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.internal_static_POGOProtos_Settings_Master_Pokemon_EncounterAttributes_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.internal_static_POGOProtos_Settings_Master_Pokemon_EncounterAttributes_fieldAccessorTable
.ensureFieldAccessorsInitialized(
POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes.class, POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes.Builder.class);
}
// Construct using POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes.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();
baseCaptureRate_ = 0F;
baseFleeRate_ = 0F;
collisionRadiusM_ = 0F;
collisionHeightM_ = 0F;
collisionHeadRadiusM_ = 0F;
movementType_ = 0;
movementTimerS_ = 0F;
jumpTimeS_ = 0F;
attackTimerS_ = 0F;
bonusCandyCaptureReward_ = 0;
bonusStardustCaptureReward_ = 0;
attackProbability_ = 0F;
dodgeProbability_ = 0F;
dodgeDurationS_ = 0F;
dodgeDistance_ = 0F;
cameraDistance_ = 0F;
minPokemonActionFrequencyS_ = 0F;
maxPokemonActionFrequencyS_ = 0F;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.internal_static_POGOProtos_Settings_Master_Pokemon_EncounterAttributes_descriptor;
}
@java.lang.Override
public POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes getDefaultInstanceForType() {
return POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes.getDefaultInstance();
}
@java.lang.Override
public POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes build() {
POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes buildPartial() {
POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes result = new POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes(this);
result.baseCaptureRate_ = baseCaptureRate_;
result.baseFleeRate_ = baseFleeRate_;
result.collisionRadiusM_ = collisionRadiusM_;
result.collisionHeightM_ = collisionHeightM_;
result.collisionHeadRadiusM_ = collisionHeadRadiusM_;
result.movementType_ = movementType_;
result.movementTimerS_ = movementTimerS_;
result.jumpTimeS_ = jumpTimeS_;
result.attackTimerS_ = attackTimerS_;
result.bonusCandyCaptureReward_ = bonusCandyCaptureReward_;
result.bonusStardustCaptureReward_ = bonusStardustCaptureReward_;
result.attackProbability_ = attackProbability_;
result.dodgeProbability_ = dodgeProbability_;
result.dodgeDurationS_ = dodgeDurationS_;
result.dodgeDistance_ = dodgeDistance_;
result.cameraDistance_ = cameraDistance_;
result.minPokemonActionFrequencyS_ = minPokemonActionFrequencyS_;
result.maxPokemonActionFrequencyS_ = maxPokemonActionFrequencyS_;
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.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes) {
return mergeFrom((POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes other) {
if (other == POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes.getDefaultInstance()) return this;
if (other.getBaseCaptureRate() != 0F) {
setBaseCaptureRate(other.getBaseCaptureRate());
}
if (other.getBaseFleeRate() != 0F) {
setBaseFleeRate(other.getBaseFleeRate());
}
if (other.getCollisionRadiusM() != 0F) {
setCollisionRadiusM(other.getCollisionRadiusM());
}
if (other.getCollisionHeightM() != 0F) {
setCollisionHeightM(other.getCollisionHeightM());
}
if (other.getCollisionHeadRadiusM() != 0F) {
setCollisionHeadRadiusM(other.getCollisionHeadRadiusM());
}
if (other.movementType_ != 0) {
setMovementTypeValue(other.getMovementTypeValue());
}
if (other.getMovementTimerS() != 0F) {
setMovementTimerS(other.getMovementTimerS());
}
if (other.getJumpTimeS() != 0F) {
setJumpTimeS(other.getJumpTimeS());
}
if (other.getAttackTimerS() != 0F) {
setAttackTimerS(other.getAttackTimerS());
}
if (other.getBonusCandyCaptureReward() != 0) {
setBonusCandyCaptureReward(other.getBonusCandyCaptureReward());
}
if (other.getBonusStardustCaptureReward() != 0) {
setBonusStardustCaptureReward(other.getBonusStardustCaptureReward());
}
if (other.getAttackProbability() != 0F) {
setAttackProbability(other.getAttackProbability());
}
if (other.getDodgeProbability() != 0F) {
setDodgeProbability(other.getDodgeProbability());
}
if (other.getDodgeDurationS() != 0F) {
setDodgeDurationS(other.getDodgeDurationS());
}
if (other.getDodgeDistance() != 0F) {
setDodgeDistance(other.getDodgeDistance());
}
if (other.getCameraDistance() != 0F) {
setCameraDistance(other.getCameraDistance());
}
if (other.getMinPokemonActionFrequencyS() != 0F) {
setMinPokemonActionFrequencyS(other.getMinPokemonActionFrequencyS());
}
if (other.getMaxPokemonActionFrequencyS() != 0F) {
setMaxPokemonActionFrequencyS(other.getMaxPokemonActionFrequencyS());
}
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.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private float baseCaptureRate_ ;
/**
* float base_capture_rate = 1;
*/
public float getBaseCaptureRate() {
return baseCaptureRate_;
}
/**
* float base_capture_rate = 1;
*/
public Builder setBaseCaptureRate(float value) {
baseCaptureRate_ = value;
onChanged();
return this;
}
/**
* float base_capture_rate = 1;
*/
public Builder clearBaseCaptureRate() {
baseCaptureRate_ = 0F;
onChanged();
return this;
}
private float baseFleeRate_ ;
/**
* float base_flee_rate = 2;
*/
public float getBaseFleeRate() {
return baseFleeRate_;
}
/**
* float base_flee_rate = 2;
*/
public Builder setBaseFleeRate(float value) {
baseFleeRate_ = value;
onChanged();
return this;
}
/**
* float base_flee_rate = 2;
*/
public Builder clearBaseFleeRate() {
baseFleeRate_ = 0F;
onChanged();
return this;
}
private float collisionRadiusM_ ;
/**
* float collision_radius_m = 3;
*/
public float getCollisionRadiusM() {
return collisionRadiusM_;
}
/**
* float collision_radius_m = 3;
*/
public Builder setCollisionRadiusM(float value) {
collisionRadiusM_ = value;
onChanged();
return this;
}
/**
* float collision_radius_m = 3;
*/
public Builder clearCollisionRadiusM() {
collisionRadiusM_ = 0F;
onChanged();
return this;
}
private float collisionHeightM_ ;
/**
* float collision_height_m = 4;
*/
public float getCollisionHeightM() {
return collisionHeightM_;
}
/**
* float collision_height_m = 4;
*/
public Builder setCollisionHeightM(float value) {
collisionHeightM_ = value;
onChanged();
return this;
}
/**
* float collision_height_m = 4;
*/
public Builder clearCollisionHeightM() {
collisionHeightM_ = 0F;
onChanged();
return this;
}
private float collisionHeadRadiusM_ ;
/**
* float collision_head_radius_m = 5;
*/
public float getCollisionHeadRadiusM() {
return collisionHeadRadiusM_;
}
/**
* float collision_head_radius_m = 5;
*/
public Builder setCollisionHeadRadiusM(float value) {
collisionHeadRadiusM_ = value;
onChanged();
return this;
}
/**
* float collision_head_radius_m = 5;
*/
public Builder clearCollisionHeadRadiusM() {
collisionHeadRadiusM_ = 0F;
onChanged();
return this;
}
private int movementType_ = 0;
/**
* .POGOProtos.Enums.PokemonMovementType movement_type = 6;
*/
public int getMovementTypeValue() {
return movementType_;
}
/**
* .POGOProtos.Enums.PokemonMovementType movement_type = 6;
*/
public Builder setMovementTypeValue(int value) {
movementType_ = value;
onChanged();
return this;
}
/**
* .POGOProtos.Enums.PokemonMovementType movement_type = 6;
*/
public POGOProtos.Enums.PokemonMovementTypeOuterClass.PokemonMovementType getMovementType() {
@SuppressWarnings("deprecation")
POGOProtos.Enums.PokemonMovementTypeOuterClass.PokemonMovementType result = POGOProtos.Enums.PokemonMovementTypeOuterClass.PokemonMovementType.valueOf(movementType_);
return result == null ? POGOProtos.Enums.PokemonMovementTypeOuterClass.PokemonMovementType.UNRECOGNIZED : result;
}
/**
* .POGOProtos.Enums.PokemonMovementType movement_type = 6;
*/
public Builder setMovementType(POGOProtos.Enums.PokemonMovementTypeOuterClass.PokemonMovementType value) {
if (value == null) {
throw new NullPointerException();
}
movementType_ = value.getNumber();
onChanged();
return this;
}
/**
* .POGOProtos.Enums.PokemonMovementType movement_type = 6;
*/
public Builder clearMovementType() {
movementType_ = 0;
onChanged();
return this;
}
private float movementTimerS_ ;
/**
* float movement_timer_s = 7;
*/
public float getMovementTimerS() {
return movementTimerS_;
}
/**
* float movement_timer_s = 7;
*/
public Builder setMovementTimerS(float value) {
movementTimerS_ = value;
onChanged();
return this;
}
/**
* float movement_timer_s = 7;
*/
public Builder clearMovementTimerS() {
movementTimerS_ = 0F;
onChanged();
return this;
}
private float jumpTimeS_ ;
/**
* float jump_time_s = 8;
*/
public float getJumpTimeS() {
return jumpTimeS_;
}
/**
* float jump_time_s = 8;
*/
public Builder setJumpTimeS(float value) {
jumpTimeS_ = value;
onChanged();
return this;
}
/**
* float jump_time_s = 8;
*/
public Builder clearJumpTimeS() {
jumpTimeS_ = 0F;
onChanged();
return this;
}
private float attackTimerS_ ;
/**
* float attack_timer_s = 9;
*/
public float getAttackTimerS() {
return attackTimerS_;
}
/**
* float attack_timer_s = 9;
*/
public Builder setAttackTimerS(float value) {
attackTimerS_ = value;
onChanged();
return this;
}
/**
* float attack_timer_s = 9;
*/
public Builder clearAttackTimerS() {
attackTimerS_ = 0F;
onChanged();
return this;
}
private int bonusCandyCaptureReward_ ;
/**
* int32 bonus_candy_capture_reward = 10;
*/
public int getBonusCandyCaptureReward() {
return bonusCandyCaptureReward_;
}
/**
* int32 bonus_candy_capture_reward = 10;
*/
public Builder setBonusCandyCaptureReward(int value) {
bonusCandyCaptureReward_ = value;
onChanged();
return this;
}
/**
* int32 bonus_candy_capture_reward = 10;
*/
public Builder clearBonusCandyCaptureReward() {
bonusCandyCaptureReward_ = 0;
onChanged();
return this;
}
private int bonusStardustCaptureReward_ ;
/**
* int32 bonus_stardust_capture_reward = 11;
*/
public int getBonusStardustCaptureReward() {
return bonusStardustCaptureReward_;
}
/**
* int32 bonus_stardust_capture_reward = 11;
*/
public Builder setBonusStardustCaptureReward(int value) {
bonusStardustCaptureReward_ = value;
onChanged();
return this;
}
/**
* int32 bonus_stardust_capture_reward = 11;
*/
public Builder clearBonusStardustCaptureReward() {
bonusStardustCaptureReward_ = 0;
onChanged();
return this;
}
private float attackProbability_ ;
/**
* float attack_probability = 12;
*/
public float getAttackProbability() {
return attackProbability_;
}
/**
* float attack_probability = 12;
*/
public Builder setAttackProbability(float value) {
attackProbability_ = value;
onChanged();
return this;
}
/**
* float attack_probability = 12;
*/
public Builder clearAttackProbability() {
attackProbability_ = 0F;
onChanged();
return this;
}
private float dodgeProbability_ ;
/**
* float dodge_probability = 13;
*/
public float getDodgeProbability() {
return dodgeProbability_;
}
/**
* float dodge_probability = 13;
*/
public Builder setDodgeProbability(float value) {
dodgeProbability_ = value;
onChanged();
return this;
}
/**
* float dodge_probability = 13;
*/
public Builder clearDodgeProbability() {
dodgeProbability_ = 0F;
onChanged();
return this;
}
private float dodgeDurationS_ ;
/**
* float dodge_duration_s = 14;
*/
public float getDodgeDurationS() {
return dodgeDurationS_;
}
/**
* float dodge_duration_s = 14;
*/
public Builder setDodgeDurationS(float value) {
dodgeDurationS_ = value;
onChanged();
return this;
}
/**
* float dodge_duration_s = 14;
*/
public Builder clearDodgeDurationS() {
dodgeDurationS_ = 0F;
onChanged();
return this;
}
private float dodgeDistance_ ;
/**
* float dodge_distance = 15;
*/
public float getDodgeDistance() {
return dodgeDistance_;
}
/**
* float dodge_distance = 15;
*/
public Builder setDodgeDistance(float value) {
dodgeDistance_ = value;
onChanged();
return this;
}
/**
* float dodge_distance = 15;
*/
public Builder clearDodgeDistance() {
dodgeDistance_ = 0F;
onChanged();
return this;
}
private float cameraDistance_ ;
/**
* float camera_distance = 16;
*/
public float getCameraDistance() {
return cameraDistance_;
}
/**
* float camera_distance = 16;
*/
public Builder setCameraDistance(float value) {
cameraDistance_ = value;
onChanged();
return this;
}
/**
* float camera_distance = 16;
*/
public Builder clearCameraDistance() {
cameraDistance_ = 0F;
onChanged();
return this;
}
private float minPokemonActionFrequencyS_ ;
/**
* float min_pokemon_action_frequency_s = 17;
*/
public float getMinPokemonActionFrequencyS() {
return minPokemonActionFrequencyS_;
}
/**
* float min_pokemon_action_frequency_s = 17;
*/
public Builder setMinPokemonActionFrequencyS(float value) {
minPokemonActionFrequencyS_ = value;
onChanged();
return this;
}
/**
* float min_pokemon_action_frequency_s = 17;
*/
public Builder clearMinPokemonActionFrequencyS() {
minPokemonActionFrequencyS_ = 0F;
onChanged();
return this;
}
private float maxPokemonActionFrequencyS_ ;
/**
* float max_pokemon_action_frequency_s = 18;
*/
public float getMaxPokemonActionFrequencyS() {
return maxPokemonActionFrequencyS_;
}
/**
* float max_pokemon_action_frequency_s = 18;
*/
public Builder setMaxPokemonActionFrequencyS(float value) {
maxPokemonActionFrequencyS_ = value;
onChanged();
return this;
}
/**
* float max_pokemon_action_frequency_s = 18;
*/
public Builder clearMaxPokemonActionFrequencyS() {
maxPokemonActionFrequencyS_ = 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.Settings.Master.Pokemon.EncounterAttributes)
}
// @@protoc_insertion_point(class_scope:POGOProtos.Settings.Master.Pokemon.EncounterAttributes)
private static final POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes();
}
public static POGOProtos.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public EncounterAttributes parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new EncounterAttributes(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.Settings.Master.Pokemon.EncounterAttributesOuterClass.EncounterAttributes getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
private static final com.google.protobuf.Descriptors.Descriptor
internal_static_POGOProtos_Settings_Master_Pokemon_EncounterAttributes_descriptor;
private static final
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internal_static_POGOProtos_Settings_Master_Pokemon_EncounterAttributes_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 © 2015 - 2025 Weber Informatics LLC | Privacy Policy