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

com.google.gerrit.entities.AutoValue_PatchSetApproval Maven / Gradle / Ivy

There is a newer version: 3.10.0-rc6
Show newest version
package com.google.gerrit.entities;

import java.time.Instant;
import java.util.Optional;
import javax.annotation.processing.Generated;

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

  private final PatchSetApproval.Key key;

  private final Optional uuid;

  private final short value;

  private final Instant granted;

  private final Optional tag;

  private final Account.Id realAccountId;

  private final boolean postSubmit;

  private final boolean copied;

  private AutoValue_PatchSetApproval(
      PatchSetApproval.Key key,
      Optional uuid,
      short value,
      Instant granted,
      Optional tag,
      Account.Id realAccountId,
      boolean postSubmit,
      boolean copied) {
    this.key = key;
    this.uuid = uuid;
    this.value = value;
    this.granted = granted;
    this.tag = tag;
    this.realAccountId = realAccountId;
    this.postSubmit = postSubmit;
    this.copied = copied;
  }

  @Override
  public PatchSetApproval.Key key() {
    return key;
  }

  @Override
  public Optional uuid() {
    return uuid;
  }

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

  @Override
  public Instant granted() {
    return granted;
  }

  @Override
  public Optional tag() {
    return tag;
  }

  @Override
  public Account.Id realAccountId() {
    return realAccountId;
  }

  @Override
  public boolean postSubmit() {
    return postSubmit;
  }

  @Override
  public boolean copied() {
    return copied;
  }

  @Override
  public String toString() {
    return "PatchSetApproval{"
        + "key=" + key + ", "
        + "uuid=" + uuid + ", "
        + "value=" + value + ", "
        + "granted=" + granted + ", "
        + "tag=" + tag + ", "
        + "realAccountId=" + realAccountId + ", "
        + "postSubmit=" + postSubmit + ", "
        + "copied=" + copied
        + "}";
  }

  @Override
  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (o instanceof PatchSetApproval) {
      PatchSetApproval that = (PatchSetApproval) o;
      return this.key.equals(that.key())
          && this.uuid.equals(that.uuid())
          && this.value == that.value()
          && this.granted.equals(that.granted())
          && this.tag.equals(that.tag())
          && this.realAccountId.equals(that.realAccountId())
          && this.postSubmit == that.postSubmit()
          && this.copied == that.copied();
    }
    return false;
  }

  @Override
  public int hashCode() {
    int h$ = 1;
    h$ *= 1000003;
    h$ ^= key.hashCode();
    h$ *= 1000003;
    h$ ^= uuid.hashCode();
    h$ *= 1000003;
    h$ ^= value;
    h$ *= 1000003;
    h$ ^= granted.hashCode();
    h$ *= 1000003;
    h$ ^= tag.hashCode();
    h$ *= 1000003;
    h$ ^= realAccountId.hashCode();
    h$ *= 1000003;
    h$ ^= postSubmit ? 1231 : 1237;
    h$ *= 1000003;
    h$ ^= copied ? 1231 : 1237;
    return h$;
  }

  @Override
  public PatchSetApproval.Builder toBuilder() {
    return new Builder(this);
  }

  static final class Builder extends PatchSetApproval.Builder {
    private PatchSetApproval.Key key;
    private Optional uuid = Optional.empty();
    private Short value;
    private Instant granted;
    private Optional tag = Optional.empty();
    private Account.Id realAccountId;
    private Boolean postSubmit;
    private Boolean copied;
    Builder() {
    }
    private Builder(PatchSetApproval source) {
      this.key = source.key();
      this.uuid = source.uuid();
      this.value = source.value();
      this.granted = source.granted();
      this.tag = source.tag();
      this.realAccountId = source.realAccountId();
      this.postSubmit = source.postSubmit();
      this.copied = source.copied();
    }
    @Override
    public PatchSetApproval.Builder key(PatchSetApproval.Key key) {
      if (key == null) {
        throw new NullPointerException("Null key");
      }
      this.key = key;
      return this;
    }
    @Override
    public PatchSetApproval.Key key() {
      if (key == null) {
        throw new IllegalStateException("Property \"key\" has not been set");
      }
      return key;
    }
    @Override
    public PatchSetApproval.Builder uuid(Optional uuid) {
      if (uuid == null) {
        throw new NullPointerException("Null uuid");
      }
      this.uuid = uuid;
      return this;
    }
    @Override
    public PatchSetApproval.Builder uuid(PatchSetApproval.UUID uuid) {
      this.uuid = Optional.of(uuid);
      return this;
    }
    @Override
    public PatchSetApproval.Builder value(short value) {
      this.value = value;
      return this;
    }
    @Override
    public PatchSetApproval.Builder granted(Instant granted) {
      if (granted == null) {
        throw new NullPointerException("Null granted");
      }
      this.granted = granted;
      return this;
    }
    @Override
    public PatchSetApproval.Builder tag(String tag) {
      this.tag = Optional.of(tag);
      return this;
    }
    @Override
    public PatchSetApproval.Builder tag(Optional tag) {
      if (tag == null) {
        throw new NullPointerException("Null tag");
      }
      this.tag = tag;
      return this;
    }
    @Override
    public PatchSetApproval.Builder realAccountId(Account.Id realAccountId) {
      if (realAccountId == null) {
        throw new NullPointerException("Null realAccountId");
      }
      this.realAccountId = realAccountId;
      return this;
    }
    @Override
    Optional realAccountId() {
      if (realAccountId == null) {
        return Optional.empty();
      } else {
        return Optional.of(realAccountId);
      }
    }
    @Override
    public PatchSetApproval.Builder postSubmit(boolean postSubmit) {
      this.postSubmit = postSubmit;
      return this;
    }
    @Override
    public PatchSetApproval.Builder copied(boolean copied) {
      this.copied = copied;
      return this;
    }
    @Override
    PatchSetApproval autoBuild() {
      String missing = "";
      if (this.key == null) {
        missing += " key";
      }
      if (this.value == null) {
        missing += " value";
      }
      if (this.granted == null) {
        missing += " granted";
      }
      if (this.realAccountId == null) {
        missing += " realAccountId";
      }
      if (this.postSubmit == null) {
        missing += " postSubmit";
      }
      if (this.copied == null) {
        missing += " copied";
      }
      if (!missing.isEmpty()) {
        throw new IllegalStateException("Missing required properties:" + missing);
      }
      return new AutoValue_PatchSetApproval(
          this.key,
          this.uuid,
          this.value,
          this.granted,
          this.tag,
          this.realAccountId,
          this.postSubmit,
          this.copied);
    }
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy