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

com.google.gerrit.server.submit.AutoValue_LocalMergeSuperSetComputation_QueryKey Maven / Gradle / Ivy

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


package com.google.gerrit.server.submit;

import com.google.common.collect.ImmutableSet;
import com.google.gerrit.reviewdb.client.Branch;
import javax.annotation.Generated;

@Generated("com.google.auto.value.processor.AutoValueProcessor")
final class AutoValue_LocalMergeSuperSetComputation_QueryKey extends LocalMergeSuperSetComputation.QueryKey {

  private final Branch.NameKey branch;

  private final ImmutableSet hashes;

  AutoValue_LocalMergeSuperSetComputation_QueryKey(
      Branch.NameKey branch,
      ImmutableSet hashes) {
    if (branch == null) {
      throw new NullPointerException("Null branch");
    }
    this.branch = branch;
    if (hashes == null) {
      throw new NullPointerException("Null hashes");
    }
    this.hashes = hashes;
  }

  @Override
  Branch.NameKey branch() {
    return branch;
  }

  @Override
  ImmutableSet hashes() {
    return hashes;
  }

  @Override
  public String toString() {
    return "QueryKey{"
         + "branch=" + branch + ", "
         + "hashes=" + hashes
        + "}";
  }

  @Override
  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (o instanceof LocalMergeSuperSetComputation.QueryKey) {
      LocalMergeSuperSetComputation.QueryKey that = (LocalMergeSuperSetComputation.QueryKey) o;
      return (this.branch.equals(that.branch()))
           && (this.hashes.equals(that.hashes()));
    }
    return false;
  }

  @Override
  public int hashCode() {
    int h$ = 1;
    h$ *= 1000003;
    h$ ^= branch.hashCode();
    h$ *= 1000003;
    h$ ^= hashes.hashCode();
    return h$;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy