com.google.gerrit.entities.$AutoValue_Address Maven / Gradle / Ivy
package com.google.gerrit.entities;
import com.google.gerrit.common.Nullable;
import javax.annotation.processing.Generated;
@Generated("com.google.auto.value.processor.AutoValueProcessor")
abstract class $AutoValue_Address extends Address {
  @Nullable
  private final String name;
  private final String email;
  $AutoValue_Address(
      @Nullable String name,
      String email) {
    this.name = name;
    if (email == null) {
      throw new NullPointerException("Null email");
    }
    this.email = email;
  }
  @Nullable
  @Override
  public String name() {
    return name;
  }
  @Override
  public String email() {
    return email;
  }
}
    © 2015 - 2025 Weber Informatics LLC | Privacy Policy