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