t.21.120.2.source-code.HrZoneMesg Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fit Show documentation
Show all versions of fit Show documentation
The Official Garmin FIT SDK
/////////////////////////////////////////////////////////////////////////////////////////////
// Copyright 2023 Garmin International, Inc.
// Licensed under the Flexible and Interoperable Data Transfer (FIT) Protocol License; you
// may not use this file except in compliance with the Flexible and Interoperable Data
// Transfer (FIT) Protocol License.
/////////////////////////////////////////////////////////////////////////////////////////////
// ****WARNING**** This file is auto-generated! Do NOT edit this file.
// Profile Version = 21.120Release
// Tag = production/release/21.120.00-0-g2d77811
/////////////////////////////////////////////////////////////////////////////////////////////
package com.garmin.fit;
public class HrZoneMesg extends Mesg {
public static final int MessageIndexFieldNum = 254;
public static final int HighBpmFieldNum = 1;
public static final int NameFieldNum = 2;
protected static final Mesg hrZoneMesg;
static {
// hr_zone
hrZoneMesg = new Mesg("hr_zone", MesgNum.HR_ZONE);
hrZoneMesg.addField(new Field("message_index", MessageIndexFieldNum, 132, 1, 0, "", false, Profile.Type.MESSAGE_INDEX));
hrZoneMesg.addField(new Field("high_bpm", HighBpmFieldNum, 2, 1, 0, "bpm", false, Profile.Type.UINT8));
hrZoneMesg.addField(new Field("name", NameFieldNum, 7, 1, 0, "", false, Profile.Type.STRING));
}
public HrZoneMesg() {
super(Factory.createMesg(MesgNum.HR_ZONE));
}
public HrZoneMesg(final Mesg mesg) {
super(mesg);
}
/**
* Get message_index field
*
* @return message_index
*/
public Integer getMessageIndex() {
return getFieldIntegerValue(254, 0, Fit.SUBFIELD_INDEX_MAIN_FIELD);
}
/**
* Set message_index field
*
* @param messageIndex The new messageIndex value to be set
*/
public void setMessageIndex(Integer messageIndex) {
setFieldValue(254, 0, messageIndex, Fit.SUBFIELD_INDEX_MAIN_FIELD);
}
/**
* Get high_bpm field
* Units: bpm
*
* @return high_bpm
*/
public Short getHighBpm() {
return getFieldShortValue(1, 0, Fit.SUBFIELD_INDEX_MAIN_FIELD);
}
/**
* Set high_bpm field
* Units: bpm
*
* @param highBpm The new highBpm value to be set
*/
public void setHighBpm(Short highBpm) {
setFieldValue(1, 0, highBpm, Fit.SUBFIELD_INDEX_MAIN_FIELD);
}
/**
* Get name field
*
* @return name
*/
public String getName() {
return getFieldStringValue(2, 0, Fit.SUBFIELD_INDEX_MAIN_FIELD);
}
/**
* Set name field
*
* @param name The new name value to be set
*/
public void setName(String name) {
setFieldValue(2, 0, name, Fit.SUBFIELD_INDEX_MAIN_FIELD);
}
}