Jagger
 All Classes Namespaces Files Functions Variables Enumerator Groups Pages
LowErrThresh.java
Go to the documentation of this file.
1 package com.griddynamics.jagger.user.test.configurations.limits.auxiliary;
2 
6 public class LowErrThresh {
7  private final Double value;
8 
9  private LowErrThresh(Double value) {
10  this.value = value;
11  }
12 
13  public static LowErrThresh of(Double value) {
14  return new LowErrThresh(value);
15  }
16 
17  public Double value() {
18  return value;
19  }
20 
21 
22  @Override
23  public String toString() {
24  return "LowErrThresh: " + value;
25  }
26 }