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

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

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

import com.fasterxml.jackson.annotation.JsonProperty;
import javax.annotation.Generated;
import javax.annotation.Nullable;
import org.joda.time.DateTime;

@Generated("com.google.auto.value.processor.AutoValueProcessor")
abstract class $AutoValue_IndexRangeSummary extends IndexRangeSummary {

  private final String indexName;

  private final DateTime begin;

  private final DateTime end;

  private final DateTime calculatedAt;

  private final int calculationTookMs;

  $AutoValue_IndexRangeSummary(
      String indexName,
      DateTime begin,
      DateTime end,
      @Nullable DateTime calculatedAt,
      int calculationTookMs) {
    if (indexName == null) {
      throw new NullPointerException("Null indexName");
    }
    this.indexName = indexName;
    if (begin == null) {
      throw new NullPointerException("Null begin");
    }
    this.begin = begin;
    if (end == null) {
      throw new NullPointerException("Null end");
    }
    this.end = end;
    this.calculatedAt = calculatedAt;
    this.calculationTookMs = calculationTookMs;
  }

  @JsonProperty("index_name")
  @Override
  public String indexName() {
    return indexName;
  }

  @JsonProperty("begin")
  @Override
  public DateTime begin() {
    return begin;
  }

  @JsonProperty("end")
  @Override
  public DateTime end() {
    return end;
  }

  @Nullable
  @JsonProperty("calculated_at")
  @Override
  public DateTime calculatedAt() {
    return calculatedAt;
  }

  @JsonProperty("took_ms")
  @Override
  public int calculationTookMs() {
    return calculationTookMs;
  }

  @Override
  public String toString() {
    return "IndexRangeSummary{"
        + "indexName=" + indexName + ", "
        + "begin=" + begin + ", "
        + "end=" + end + ", "
        + "calculatedAt=" + calculatedAt + ", "
        + "calculationTookMs=" + calculationTookMs
        + "}";
  }

  @Override
  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (o instanceof IndexRangeSummary) {
      IndexRangeSummary that = (IndexRangeSummary) o;
      return this.indexName.equals(that.indexName())
          && this.begin.equals(that.begin())
          && this.end.equals(that.end())
          && (this.calculatedAt == null ? that.calculatedAt() == null : this.calculatedAt.equals(that.calculatedAt()))
          && this.calculationTookMs == that.calculationTookMs();
    }
    return false;
  }

  @Override
  public int hashCode() {
    int h$ = 1;
    h$ *= 1000003;
    h$ ^= indexName.hashCode();
    h$ *= 1000003;
    h$ ^= begin.hashCode();
    h$ *= 1000003;
    h$ ^= end.hashCode();
    h$ *= 1000003;
    h$ ^= (calculatedAt == null) ? 0 : calculatedAt.hashCode();
    h$ *= 1000003;
    h$ ^= calculationTookMs;
    return h$;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy