org.swrlapi.drools.owl.dataranges.DRR Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swrlapi-drools-engine Show documentation
Show all versions of swrlapi-drools-engine Show documentation
Drools implementation of SWRLAPI-based SWRL rule engine
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