All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.graylog2.rest.models.system.indexer.responses.$AutoValue_IndexStats_TimeAndTotalStats Maven / Gradle / Ivy

There is a newer version: 6.0.2
Show newest version
package org.graylog2.rest.models.system.indexer.responses;

import com.fasterxml.jackson.annotation.JsonProperty;
import javax.annotation.Generated;

@Generated("com.google.auto.value.processor.AutoValueProcessor")
abstract class $AutoValue_IndexStats_TimeAndTotalStats extends IndexStats.TimeAndTotalStats {

  private final long total;

  private final long timeSeconds;

  $AutoValue_IndexStats_TimeAndTotalStats(
      long total,
      long timeSeconds) {
    this.total = total;
    this.timeSeconds = timeSeconds;
  }

  @JsonProperty("total")
  @Override
  public long total() {
    return total;
  }

  @JsonProperty("time_seconds")
  @Override
  public long timeSeconds() {
    return timeSeconds;
  }

  @Override
  public String toString() {
    return "TimeAndTotalStats{"
        + "total=" + total + ", "
        + "timeSeconds=" + timeSeconds
        + "}";
  }

  @Override
  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (o instanceof IndexStats.TimeAndTotalStats) {
      IndexStats.TimeAndTotalStats that = (IndexStats.TimeAndTotalStats) o;
      return this.total == that.total()
          && this.timeSeconds == that.timeSeconds();
    }
    return false;
  }

  @Override
  public int hashCode() {
    int h$ = 1;
    h$ *= 1000003;
    h$ ^= (int) ((total >>> 32) ^ total);
    h$ *= 1000003;
    h$ ^= (int) ((timeSeconds >>> 32) ^ timeSeconds);
    return h$;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy