Package com.medm.devicekit
Enum Class DeviceSetting.Kind
- All Implemented Interfaces:
Serializable
,Comparable<DeviceSetting.Kind>
,Constable
- Enclosing class:
- DeviceSetting
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionDevice manufacturer.Encryption key for the device, should be a hex string without spaces.Erase all data from the device on adding or not.Turn HR monitoring on or off.Receive history data or realtime data.Is user an athlete.Keep history on the device or delete it after receiving.Measurement length.Spirometry test type.Spirometry turbine type.Receive stream data or spot values.User number on the device. -
Method Summary
Modifier and TypeMethodDescriptionstatic DeviceSetting.Kind
Returns the enum constant of this class with the specified name.static DeviceSetting.Kind[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
StreamOrSpot
Receive stream data or spot values. Possible values: Stream, Spot -
HistoryOrRealtime
Receive history data or realtime data. Possible values: History, Realtime -
MeasurementLength
Measurement length. Only present for Contec PM10 ECG. Possible values: 10 seconds, 15 seconds, 30 seconds -
UserNumber
User number on the device. Possible values: All users(Optional), User profile (1-8) -
EraseDataOnAdding
Erase all data from the device on adding or not. Possible values: Yes, No -
HeartRateMonitoring
Turn HR monitoring on or off. Possible values: Yes, No -
SpirometryTurbineType
Spirometry turbine type. Possible values: Reusable, Disposable -
SpirometryTestType
Spirometry test type. Possible values: FVC, VC, MVV -
KeepHistory
Keep history on the device or delete it after receiving. Possible values: Yes, No -
DeviceManufacturer
Device manufacturer. Only present for H3 System BA-400. Possible values: JnJ, BAYER, ABBOTT, NIPRO, ROSHE -
IsUserAthlete
Is user an athlete. Affects body composition calculation. Possible values: Yes, No -
EncryptionKey
Encryption key for the device, should be a hex string without spaces. Only present for Roche CoaguCheck
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-