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

com.google.testing.compile.AutoValue_TreeDiffer_MethodSignature Maven / Gradle / Ivy


package com.google.testing.compile;

import com.google.common.base.Equivalence;
import com.google.common.collect.ImmutableList;
import javax.annotation.Generated;
import javax.lang.model.type.TypeMirror;

@Generated("com.google.auto.value.processor.AutoValueProcessor")
 final class AutoValue_TreeDiffer_MethodSignature extends TreeDiffer.MethodSignature {

  private final String name;
  private final ImmutableList> parameterTypes;

  AutoValue_TreeDiffer_MethodSignature(
      String name,
      ImmutableList> parameterTypes) {
    if (name == null) {
      throw new NullPointerException("Null name");
    }
    this.name = name;
    if (parameterTypes == null) {
      throw new NullPointerException("Null parameterTypes");
    }
    this.parameterTypes = parameterTypes;
  }

  @Override
  String name() {
    return name;
  }

  @Override
  ImmutableList> parameterTypes() {
    return parameterTypes;
  }

  @Override
  public String toString() {
    return "MethodSignature{"
         + "name=" + name + ", "
         + "parameterTypes=" + parameterTypes
        + "}";
  }

  @Override
  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (o instanceof TreeDiffer.MethodSignature) {
      TreeDiffer.MethodSignature that = (TreeDiffer.MethodSignature) o;
      return (this.name.equals(that.name()))
           && (this.parameterTypes.equals(that.parameterTypes()));
    }
    return false;
  }

  @Override
  public int hashCode() {
    int h = 1;
    h *= 1000003;
    h ^= this.name.hashCode();
    h *= 1000003;
    h ^= this.parameterTypes.hashCode();
    return h;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy