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

hydra.phantoms.Reference Maven / Gradle / Ivy

package hydra.phantoms;

import java.io.Serializable;

/**
 * A pure association with a phantom type
 */
public class Reference implements Serializable {
  public static final hydra.core.Name NAME = new hydra.core.Name("hydra/phantoms.Reference");
  
  public Reference () {
  
  }
  
  @Override
  public boolean equals(Object other) {
    if (!(other instanceof Reference)) {
      return false;
    }
    Reference o = (Reference) (other);
    return true;
  }
  
  @Override
  public int hashCode() {
    return 0;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy