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

com.google.errorprone.refaster.AutoValue_ULambda 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 com.sun.tools.javac.tree.JCTree;
import javax.annotation.processing.Generated;

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

  private final JCTree.JCLambda.ParameterKind parameterKind;

  private final ImmutableList getParameters;

  private final UTree getBody;

  AutoValue_ULambda(
      JCTree.JCLambda.ParameterKind parameterKind,
      ImmutableList getParameters,
      UTree getBody) {
    if (parameterKind == null) {
      throw new NullPointerException("Null parameterKind");
    }
    this.parameterKind = parameterKind;
    if (getParameters == null) {
      throw new NullPointerException("Null getParameters");
    }
    this.getParameters = getParameters;
    if (getBody == null) {
      throw new NullPointerException("Null getBody");
    }
    this.getBody = getBody;
  }

  @Override
  JCTree.JCLambda.ParameterKind parameterKind() {
    return parameterKind;
  }

  @Override
  public ImmutableList getParameters() {
    return getParameters;
  }

  @Override
  public UTree getBody() {
    return getBody;
  }

  @Override
  public String toString() {
    return "ULambda{"
        + "parameterKind=" + parameterKind + ", "
        + "getParameters=" + getParameters + ", "
        + "getBody=" + getBody
        + "}";
  }

  @Override
  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (o instanceof ULambda) {
      ULambda that = (ULambda) o;
      return this.parameterKind.equals(that.parameterKind())
          && this.getParameters.equals(that.getParameters())
          && this.getBody.equals(that.getBody());
    }
    return false;
  }

  @Override
  public int hashCode() {
    int h$ = 1;
    h$ *= 1000003;
    h$ ^= parameterKind.hashCode();
    h$ *= 1000003;
    h$ ^= getParameters.hashCode();
    h$ *= 1000003;
    h$ ^= getBody.hashCode();
    return h$;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy