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

com.google.errorprone.refaster.AutoValue_UMethodType Maven / Gradle / Ivy

There is a newer version: 2.27.1
Show newest version
package com.google.errorprone.refaster;

import com.google.common.collect.ImmutableList;
import javax.annotation.Generated;

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

  private final UType returnType;

  private final ImmutableList parameterTypes;

  AutoValue_UMethodType(
      UType returnType,
      ImmutableList parameterTypes) {
    if (returnType == null) {
      throw new NullPointerException("Null returnType");
    }
    this.returnType = returnType;
    if (parameterTypes == null) {
      throw new NullPointerException("Null parameterTypes");
    }
    this.parameterTypes = parameterTypes;
  }

  @Override
  public UType getReturnType() {
    return returnType;
  }

  @Override
  public ImmutableList getParameterTypes() {
    return parameterTypes;
  }

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

  @Override
  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (o instanceof UMethodType) {
      UMethodType that = (UMethodType) o;
      return this.returnType.equals(that.getReturnType())
          && this.parameterTypes.equals(that.getParameterTypes());
    }
    return false;
  }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy