Package org.swrlapi.factory
Interface SQWRLResultValueFactory
-
- All Known Implementing Classes:
DefaultSQWRLResultValueFactory
public interface SQWRLResultValueFactory
A factory for creatingSQWRLResultValue
objects.- See Also:
SQWRLResultValue
-
-
Method Summary
-
-
-
Method Detail
-
getClassValue
@NonNull SQWRLClassResultValue getClassValue(@NonNull SWRLClassBuiltInArgument classArgument)
-
getClassValue
@NonNull SQWRLClassResultValue getClassValue(@NonNull org.semanticweb.owlapi.model.IRI classIRI)
-
getClassExpressionValue
@NonNull SQWRLClassExpressionResultValue getClassExpressionValue(@NonNull SWRLClassExpressionBuiltInArgument classExpressionArgument)
-
getNamedIndividualValue
@NonNull SQWRLNamedIndividualResultValue getNamedIndividualValue(@NonNull SWRLNamedIndividualBuiltInArgument individualArgument)
-
getNamedIndividualValue
@NonNull SQWRLNamedIndividualResultValue getNamedIndividualValue(@NonNull org.semanticweb.owlapi.model.IRI individualIRI)
-
getObjectPropertyValue
@NonNull SQWRLObjectPropertyResultValue getObjectPropertyValue(SWRLObjectPropertyBuiltInArgument objectPropertyArgument)
-
getObjectPropertyValue
@NonNull SQWRLObjectPropertyResultValue getObjectPropertyValue(@NonNull org.semanticweb.owlapi.model.IRI propertyIRI)
-
getObjectPropertyExpressionValue
@NonNull SQWRLObjectPropertyExpressionResultValue getObjectPropertyExpressionValue(SWRLObjectPropertyExpressionBuiltInArgument objectPropertyExpressionArgument)
-
getDataPropertyValue
@NonNull SQWRLDataPropertyResultValue getDataPropertyValue(@NonNull SWRLDataPropertyBuiltInArgument dataPropertyArgument)
-
getDataPropertyValue
@NonNull SQWRLDataPropertyResultValue getDataPropertyValue(@NonNull org.semanticweb.owlapi.model.IRI propertyIRI)
-
getDataPropertyExpressionValue
@NonNull SQWRLDataPropertyExpressionResultValue getDataPropertyExpressionValue(SWRLDataPropertyExpressionBuiltInArgument dataPropertyExpressionArgument)
-
getAnnotationPropertyValue
@NonNull SQWRLAnnotationPropertyResultValue getAnnotationPropertyValue(SWRLAnnotationPropertyBuiltInArgument dataPropertyArgument)
-
getAnnotationPropertyValue
@NonNull SQWRLAnnotationPropertyResultValue getAnnotationPropertyValue(org.semanticweb.owlapi.model.IRI propertyIRI)
-
getDatatypeValue
@NonNull SQWRLDatatypeResultValue getDatatypeValue(SWRLDatatypeBuiltInArgument datatypeArgument)
-
getDatatypeValue
@NonNull SQWRLDatatypeResultValue getDatatypeValue(org.semanticweb.owlapi.model.IRI propertyIRI)
-
getLiteralValue
@NonNull SQWRLLiteralResultValue getLiteralValue(byte b)
-
getLiteralValue
@NonNull SQWRLLiteralResultValue getLiteralValue(short s)
-
getLiteralValue
@NonNull SQWRLLiteralResultValue getLiteralValue(int i)
-
getLiteralValue
@NonNull SQWRLLiteralResultValue getLiteralValue(long l)
-
getLiteralValue
@NonNull SQWRLLiteralResultValue getLiteralValue(float f)
-
getLiteralValue
@NonNull SQWRLLiteralResultValue getLiteralValue(double d)
-
getLiteralValue
@NonNull SQWRLLiteralResultValue getLiteralValue(@NonNull java.math.BigInteger i)
-
getLiteralValue
@NonNull SQWRLLiteralResultValue getLiteralValue(@NonNull java.math.BigDecimal d)
-
getLiteralValue
@NonNull SQWRLLiteralResultValue getLiteralValue(@NonNull java.lang.String s)
-
getLiteralValue
@NonNull SQWRLLiteralResultValue getLiteralValue(boolean b)
-
getLiteralValue
@NonNull SQWRLLiteralResultValue getLiteralValue(@NonNull java.net.URI uri)
-
getLiteralValue
@NonNull SQWRLLiteralResultValue getLiteralValue(@NonNull XSDTime time)
-
getLiteralValue
@NonNull SQWRLLiteralResultValue getLiteralValue(@NonNull XSDDate date)
-
getLiteralValue
@NonNull SQWRLLiteralResultValue getLiteralValue(@NonNull XSDDateTime dateTime)
-
getLiteralValue
@NonNull SQWRLLiteralResultValue getLiteralValue(@NonNull XSDDuration duration)
-
getLiteralValue
@NonNull SQWRLLiteralResultValue getLiteralValue(@NonNull org.semanticweb.owlapi.model.OWLLiteral literal)
-
createLeastNarrowNumericLiteralValue
@NonNull SQWRLLiteralResultValue createLeastNarrowNumericLiteralValue(double value, @NonNull java.util.List<@NonNull SQWRLLiteralResultValue> inputResultValues)
-
-