1
0
mirror of https://github.com/oliexdev/openScale.git synced 2025-08-06 16:56:55 +02:00

update body metrics dates and author

This commit is contained in:
OliE
2017-11-12 13:50:41 +01:00
parent fc6c8138cb
commit e54a6a376e
5 changed files with 8 additions and 8 deletions

View File

@@ -21,7 +21,7 @@ import com.health.openscale.core.datatypes.ScaleUser;
public class BFDeurenberg extends EstimatedFatMetric {
@Override
public String getName() {
return "Deurenberg et. al (1998)";
return "Deurenberg (1992)";
}
@Override

View File

@@ -18,10 +18,10 @@ package com.health.openscale.core.bodymetric;
import com.health.openscale.core.datatypes.ScaleData;
import com.health.openscale.core.datatypes.ScaleUser;
public class BFBJoN extends EstimatedFatMetric {
public class BFDeurenbergII extends EstimatedFatMetric {
@Override
public String getName() {
return "British Journal of Nutrition (1991)";
return "Deurenberg et. al (1991)";
}
@Override

View File

@@ -19,14 +19,14 @@ import com.health.openscale.core.datatypes.ScaleData;
import com.health.openscale.core.datatypes.ScaleUser;
public abstract class EstimatedFatMetric {
public enum FORMULA { BF_DEURENBERG, BF_BJoN, BF_EDDY, BF_GALLAGHER, BF_GALLAGHER_ASIAN };
public enum FORMULA { BF_DEURENBERG, BF_DEURENBERG_II, BF_EDDY, BF_GALLAGHER, BF_GALLAGHER_ASIAN };
public static EstimatedFatMetric getEstimatedMetric( FORMULA metric) {
switch (metric) {
case BF_DEURENBERG:
return new BFDeurenberg();
case BF_BJoN:
return new BFBJoN();
case BF_DEURENBERG_II:
return new BFDeurenbergII();
case BF_EDDY:
return new BFEddy();
case BF_GALLAGHER:

View File

@@ -21,7 +21,7 @@ import com.health.openscale.core.datatypes.ScaleUser;
public class TBWBehnke extends EstimatedWaterMetric {
@Override
public String getName() {
return "Behnke et. al (1963)";
return "Behnke (1963)";
}
@Override

View File

@@ -21,7 +21,7 @@ import com.health.openscale.core.datatypes.ScaleUser;
public class TBWLeeSongKim extends EstimatedWaterMetric {
@Override
public String getName() {
return "Lee, Song, Kim, Lee et. al (1999)";
return "Lee, Song, Kim, Lee et. al (2001)";
}
@Override