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

dagger.internal.codegen.validation.$AutoValue_ModelBindingGraphConverter_BindingGraphImpl Maven / Gradle / Ivy

The newest version!
package dagger.internal.codegen.validation;

import com.google.common.graph.ImmutableNetwork;
import dagger.model.BindingGraph;

// Generated by com.google.auto.value.processor.AutoValueProcessor
abstract class $AutoValue_ModelBindingGraphConverter_BindingGraphImpl extends ModelBindingGraphConverter.BindingGraphImpl {

  private final ImmutableNetwork network;

  private final boolean isFullBindingGraph;

  $AutoValue_ModelBindingGraphConverter_BindingGraphImpl(
      ImmutableNetwork network,
      boolean isFullBindingGraph) {
    if (network == null) {
      throw new NullPointerException("Null network");
    }
    this.network = network;
    this.isFullBindingGraph = isFullBindingGraph;
  }

  @Override
  public ImmutableNetwork network() {
    return network;
  }

  @Override
  public boolean isFullBindingGraph() {
    return isFullBindingGraph;
  }

  @Override
  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (o instanceof ModelBindingGraphConverter.BindingGraphImpl) {
      ModelBindingGraphConverter.BindingGraphImpl that = (ModelBindingGraphConverter.BindingGraphImpl) o;
      return this.network.equals(that.network())
          && this.isFullBindingGraph == that.isFullBindingGraph();
    }
    return false;
  }

  @Override
  public int hashCode() {
    int h$ = 1;
    h$ *= 1000003;
    h$ ^= network.hashCode();
    h$ *= 1000003;
    h$ ^= isFullBindingGraph ? 1231 : 1237;
    return h$;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy