1 package com.griddynamics.jagger.user.test.configurations.limits;
3 import com.griddynamics.jagger.user.test.configurations.limits.auxiliary.RefValue;
5 import java.util.Objects;
12 private Double refValue;
17 this.refValue = builder.refValue.value();
21 return new Builder(metricName, refValue);
29 Objects.requireNonNull(metricName);
30 Objects.requireNonNull(refValue);
32 this.metricName = metricName;
33 this.refValue = refValue;