1 package com.griddynamics.jagger.user.test.configurations.limits;
3 import com.griddynamics.jagger.user.test.configurations.limits.auxiliary.JMetricName;
4 import com.griddynamics.jagger.user.test.configurations.limits.auxiliary.RefValue;
6 import java.util.Objects;
13 private Double refValue;
18 this.refValue = builder.refValue.value();
29 return new Builder(metricName, refValue);
48 Objects.requireNonNull(metricName);
49 Objects.requireNonNull(refValue);
51 this.metricName = metricName;
52 this.refValue = refValue;