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

org.swrlapi.drools.owl.dataranges.DRR Maven / Gradle / Ivy

There is a newer version: 2.1.2
Show newest version
package org.swrlapi.drools.owl.dataranges;

// TODO Datatype restriction data range are not implemented

import org.checkerframework.checker.nullness.qual.NonNull;

/**
 * Class representing an OWL datatype restriction data range
 *
 * @see org.semanticweb.owlapi.model.OWLDatatypeRestriction
 */
public class DRR implements DR
{
  private static final long serialVersionUID = 1L;

  @NonNull private final String drid;

  public DRR(@NonNull String drid)
  {
    this.drid = drid;
  }

  @NonNull @Override public String getdrid()
  {
    return this.drid;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy