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

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

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


package com.google.gerrit.server.change;

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

@Generated("com.google.auto.value.processor.AutoValueProcessor")
final class AutoValue_AccountPatchReviewStore_PatchSetWithReviewedFiles extends AccountPatchReviewStore.PatchSetWithReviewedFiles {

  private final PatchSet.Id patchSetId;

  private final ImmutableSet files;

  AutoValue_AccountPatchReviewStore_PatchSetWithReviewedFiles(
      PatchSet.Id patchSetId,
      ImmutableSet files) {
    if (patchSetId == null) {
      throw new NullPointerException("Null patchSetId");
    }
    this.patchSetId = patchSetId;
    if (files == null) {
      throw new NullPointerException("Null files");
    }
    this.files = files;
  }

  @Override
  PatchSet.Id patchSetId() {
    return patchSetId;
  }

  @Override
  ImmutableSet files() {
    return files;
  }

  @Override
  public String toString() {
    return "PatchSetWithReviewedFiles{"
         + "patchSetId=" + patchSetId + ", "
         + "files=" + files
        + "}";
  }

  @Override
  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (o instanceof AccountPatchReviewStore.PatchSetWithReviewedFiles) {
      AccountPatchReviewStore.PatchSetWithReviewedFiles that = (AccountPatchReviewStore.PatchSetWithReviewedFiles) o;
      return (this.patchSetId.equals(that.patchSetId()))
           && (this.files.equals(that.files()));
    }
    return false;
  }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy