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

com.google.gerrit.server.notedb.AutoValue_IntBlob Maven / Gradle / Ivy

There is a newer version: 3.10.0
Show newest version


package com.google.gerrit.server.notedb;

import org.eclipse.jgit.lib.ObjectId;

// Generated by com.google.auto.value.processor.AutoValueProcessor
final class AutoValue_IntBlob extends IntBlob {

  private final ObjectId id;

  private final int value;

  AutoValue_IntBlob(
      ObjectId id,
      int value) {
    if (id == null) {
      throw new NullPointerException("Null id");
    }
    this.id = id;
    this.value = value;
  }

  @Override
  public ObjectId id() {
    return id;
  }

  @Override
  public int value() {
    return value;
  }

  @Override
  public String toString() {
    return "IntBlob{"
         + "id=" + id + ", "
         + "value=" + value
        + "}";
  }

  @Override
  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (o instanceof IntBlob) {
      IntBlob that = (IntBlob) o;
      return this.id.equals(that.id())
          && this.value == that.value();
    }
    return false;
  }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy