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

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

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

import javax.annotation.Generated;
import javax.annotation.Nullable;

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

  private final UExpression condition;

  private final UStatement thenStatement;

  private final UStatement elseStatement;

  AutoValue_UIf(
      UExpression condition,
      UStatement thenStatement,
      @Nullable UStatement elseStatement) {
    if (condition == null) {
      throw new NullPointerException("Null condition");
    }
    this.condition = condition;
    if (thenStatement == null) {
      throw new NullPointerException("Null thenStatement");
    }
    this.thenStatement = thenStatement;
    this.elseStatement = elseStatement;
  }

  @Override
  public UExpression getCondition() {
    return condition;
  }

  @Override
  public UStatement getThenStatement() {
    return thenStatement;
  }

  @Nullable
  @Override
  public UStatement getElseStatement() {
    return elseStatement;
  }

  @Override
  public String toString() {
    return "UIf{"
         + "condition=" + condition + ", "
         + "thenStatement=" + thenStatement + ", "
         + "elseStatement=" + elseStatement
        + "}";
  }

  @Override
  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (o instanceof UIf) {
      UIf that = (UIf) o;
      return this.condition.equals(that.getCondition())
          && this.thenStatement.equals(that.getThenStatement())
          && (this.elseStatement == null ? that.getElseStatement() == null : this.elseStatement.equals(that.getElseStatement()));
    }
    return false;
  }

  @Override
  public int hashCode() {
    int h$ = 1;
    h$ *= 1000003;
    h$ ^= condition.hashCode();
    h$ *= 1000003;
    h$ ^= thenStatement.hashCode();
    h$ *= 1000003;
    h$ ^= (elseStatement == null) ? 0 : elseStatement.hashCode();
    return h$;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy