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

com.google.gerrit.server.git.AutoValue_InsertedObject Maven / Gradle / Ivy

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


package com.google.gerrit.server.git;

import com.google.protobuf.ByteString;
import javax.annotation.Generated;
import org.eclipse.jgit.lib.ObjectId;

@Generated("com.google.auto.value.processor.AutoValueProcessor")
final class AutoValue_InsertedObject extends InsertedObject {

  private final ObjectId id;

  private final int type;

  private final ByteString data;

  AutoValue_InsertedObject(
      ObjectId id,
      int type,
      ByteString data) {
    if (id == null) {
      throw new NullPointerException("Null id");
    }
    this.id = id;
    this.type = type;
    if (data == null) {
      throw new NullPointerException("Null data");
    }
    this.data = data;
  }

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

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

  @Override
  public ByteString data() {
    return data;
  }

  @Override
  public String toString() {
    return "InsertedObject{"
         + "id=" + id + ", "
         + "type=" + type + ", "
         + "data=" + data
        + "}";
  }

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy