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

com.github.rinde.rinsim.geom.io.AutoValue_DotGraphIO_MADataSup Maven / Gradle / Ivy

The newest version!

package com.github.rinde.rinsim.geom.io;

import javax.annotation.Generated;

@Generated("com.google.auto.value.processor.AutoValueProcessor")
 final class AutoValue_DotGraphIO_MADataSup extends DotGraphIO.MADataSup {

  private final String path;

  AutoValue_DotGraphIO_MADataSup(
      String path) {
    if (path == null) {
      throw new NullPointerException("Null path");
    }
    this.path = path;
  }

  @Override
  String path() {
    return path;
  }

  @Override
  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (o instanceof DotGraphIO.MADataSup) {
      DotGraphIO.MADataSup that = (DotGraphIO.MADataSup) o;
      return (this.path.equals(that.path()));
    }
    return false;
  }

  @Override
  public int hashCode() {
    int h = 1;
    h *= 1000003;
    h ^= this.path.hashCode();
    return h;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy