public boolean equals()

in dotTrace-server/src/main/java/jetbrains/buildServer/dotTrace/server/ThresholdValue.java [74:83]


  public boolean equals(final Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;

    final ThresholdValue that = (ThresholdValue)o;

    if (getType() != that.getType()) return false;
    return getValue().equals(that.getValue());

  }