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

hydra.langs.xml.schema.Integer_ Maven / Gradle / Ivy

package hydra.langs.xml.schema;

import java.io.Serializable;

public class Integer_ implements Serializable {
  public static final hydra.core.Name NAME = new hydra.core.Name("hydra/langs/xml/schema.Integer");
  
  public final java.math.BigInteger value;
  
  public Integer_ (java.math.BigInteger value) {
    this.value = value;
  }
  
  @Override
  public boolean equals(Object other) {
    if (!(other instanceof Integer_)) {
      return false;
    }
    Integer_ o = (Integer_) (other);
    return value.equals(o.value);
  }
  
  @Override
  public int hashCode() {
    return 2 * value.hashCode();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy