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

com.google.errorprone.refaster.AutoValue_UContinue 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_UContinue extends UContinue {

  private final StringName label;

  AutoValue_UContinue(
      @Nullable StringName label) {
    this.label = label;
  }

  @Nullable
  @Override
  public StringName getLabel() {
    return label;
  }

  @Override
  public String toString() {
    return "UContinue{"
         + "label=" + label
        + "}";
  }

  @Override
  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (o instanceof UContinue) {
      UContinue that = (UContinue) o;
      return (this.label == null ? that.getLabel() == null : this.label.equals(that.getLabel()));
    }
    return false;
  }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy