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

com.google.gerrit.server.change.AutoValue_ConsistencyChecker_Result Maven / Gradle / Ivy

There is a newer version: 3.10.0-rc4
Show newest version


package com.google.gerrit.server.change;

import com.google.gerrit.common.Nullable;
import com.google.gerrit.extensions.common.ProblemInfo;
import com.google.gerrit.reviewdb.client.Change;
import java.util.List;
import javax.annotation.Generated;

@Generated("com.google.auto.value.processor.AutoValueProcessor")
final class AutoValue_ConsistencyChecker_Result extends ConsistencyChecker.Result {

  private final Change.Id id;

  private final Change change;

  private final List problems;

  AutoValue_ConsistencyChecker_Result(
      Change.Id id,
      @Nullable Change change,
      List problems) {
    if (id == null) {
      throw new NullPointerException("Null id");
    }
    this.id = id;
    this.change = change;
    if (problems == null) {
      throw new NullPointerException("Null problems");
    }
    this.problems = problems;
  }

  @Override
  public Change.Id id() {
    return id;
  }

  @Nullable
  @Override
  public Change change() {
    return change;
  }

  @Override
  public List problems() {
    return problems;
  }

  @Override
  public String toString() {
    return "Result{"
         + "id=" + id + ", "
         + "change=" + change + ", "
         + "problems=" + problems
        + "}";
  }

  @Override
  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (o instanceof ConsistencyChecker.Result) {
      ConsistencyChecker.Result that = (ConsistencyChecker.Result) o;
      return (this.id.equals(that.id()))
           && ((this.change == null) ? (that.change() == null) : this.change.equals(that.change()))
           && (this.problems.equals(that.problems()));
    }
    return false;
  }

  @Override
  public int hashCode() {
    int h$ = 1;
    h$ *= 1000003;
    h$ ^= id.hashCode();
    h$ *= 1000003;
    h$ ^= (change == null) ? 0 : change.hashCode();
    h$ *= 1000003;
    h$ ^= problems.hashCode();
    return h$;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy