X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;f=org.argeo.util%2Fsrc%2Forg%2Fargeo%2Futil%2FThroughput.java;h=266ddbc5885c0f0f75cdcdd9774a59acb96244e4;hb=986233dff943b24e545caecaa4658639c36172eb;hp=b8741a3eff28c864c250920f9f306d7ba1bbb7d4;hpb=0b15752581b8fffd1913478240b63327781ec32a;p=lgpl%2Fargeo-commons.git diff --git a/org.argeo.util/src/org/argeo/util/Throughput.java b/org.argeo.util/src/org/argeo/util/Throughput.java index b8741a3ef..266ddbc58 100644 --- a/org.argeo.util/src/org/argeo/util/Throughput.java +++ b/org.argeo.util/src/org/argeo/util/Throughput.java @@ -4,9 +4,9 @@ import java.text.NumberFormat; import java.text.ParseException; import java.util.Locale; +/** A throughput, that is, a value per unit of time. */ public class Throughput { - private final static NumberFormat usNumberFormat = NumberFormat - .getInstance(Locale.US); + private final static NumberFormat usNumberFormat = NumberFormat.getInstance(Locale.US); public enum Unit { s, m, h, d @@ -30,7 +30,7 @@ public class Throughput { else if (unit.equals(Unit.d)) value = ((double) count * 24d * 60d * 60d * 1000d) / periodMs; else - throw new UtilsException("Unsupported unit " + unit); + throw new IllegalArgumentException("Unsupported unit " + unit); this.unit = unit; } @@ -41,15 +41,14 @@ public class Throughput { public Throughput(String def) { int index = def.indexOf('/'); if (def.length() < 3 || index <= 0 || index != def.length() - 2) - throw new UtilsException(def + " no a proper throughput definition" - + " (should be /, e.g. 3.54/s or 1500/h"); + throw new IllegalArgumentException( + def + " no a proper throughput definition" + " (should be /, e.g. 3.54/s or 1500/h"); String valueStr = def.substring(0, index); String unitStr = def.substring(index + 1); try { this.value = usNumberFormat.parse(valueStr).doubleValue(); } catch (ParseException e) { - throw new UtilsException("Cannot parse " + valueStr - + " as a number.", e); + throw new IllegalArgumentException("Cannot parse " + valueStr + " as a number.", e); } this.unit = Unit.valueOf(unitStr); } @@ -64,7 +63,7 @@ public class Throughput { else if (unit.equals(Unit.d)) return Math.round((24d * 60d * 60d * 1000d) / value); else - throw new UtilsException("Unsupported unit " + unit); + throw new IllegalArgumentException("Unsupported unit " + unit); } @Override