public int hashCode()

in ffwd-client/src/main/java/com/spotify/ffwd/v1/Metric.java [226:244]


  public int hashCode() {
    final int PRIME = 59;
    int result = 1;
    final long $has = this.has;
    result = result * PRIME + (int) ($has >>> 32 ^ $has);
    final long $time = this.time;
    result = result * PRIME + (int) ($time >>> 32 ^ $time);
    final Object $key = this.key;
    result = result * PRIME + ($key == null ? 43 : $key.hashCode());
    final Object $value = this.value;
    result = result * PRIME + ($value == null ? 43 : $value.hashCode());
    final Object $host = this.host;
    result = result * PRIME + ($host == null ? 43 : $host.hashCode());
    final Object $tags = this.tags;
    result = result * PRIME + ($tags == null ? 43 : $tags.hashCode());
    final Object $attributes = this.attributes;
    result = result * PRIME + ($attributes == null ? 43 : $attributes.hashCode());
    return result;
  }