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

edu.stanford.protege.webprotege.criteria.AutoValue_EntityIsNotCriteria Maven / Gradle / Ivy

There is a newer version: 0.9.2
Show newest version
package edu.stanford.protege.webprotege.criteria;

import com.fasterxml.jackson.annotation.JsonProperty;
import javax.annotation.Nonnull;
import javax.annotation.processing.Generated;
import org.semanticweb.owlapi.model.OWLEntity;

@Generated("com.google.auto.value.processor.AutoValueProcessor")
final class AutoValue_EntityIsNotCriteria extends EntityIsNotCriteria {

  private final OWLEntity entity;

  AutoValue_EntityIsNotCriteria(
      OWLEntity entity) {
    if (entity == null) {
      throw new NullPointerException("Null entity");
    }
    this.entity = entity;
  }

  @JsonProperty("term")
  @Nonnull
  @Override
  public OWLEntity getEntity() {
    return entity;
  }

  @Override
  public String toString() {
    return "EntityIsNotCriteria{"
        + "entity=" + entity
        + "}";
  }

  @Override
  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (o instanceof EntityIsNotCriteria) {
      EntityIsNotCriteria that = (EntityIsNotCriteria) o;
      return this.entity.equals(that.getEntity());
    }
    return false;
  }

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy