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

com.github.tkurz.sparqlmm.function.accessor.SpatialFragmentTest Maven / Gradle / Ivy

Go to download

SPARQL-MM is a multimedia-extension for SPARQL 1.1 (www.w3.org/TR/sparql11-query/‎) implemented for Sesame (http://www.openrdf.org/).

There is a newer version: 2.0
Show newest version
package com.github.tkurz.sparqlmm.function.accessor;

import com.github.tkurz.media.ontology.type.SpatialEntity;
import com.github.tkurz.sparqlmm.Constants;
import com.github.tkurz.sparqlmm.doc.FunctionDoc;
import com.github.tkurz.sparqlmm.utils.FunctionHelper;
import org.openrdf.model.Value;
import org.openrdf.model.ValueFactory;
import org.openrdf.query.algebra.evaluation.ValueExprEvaluationException;
import org.openrdf.query.algebra.evaluation.function.Function;

/**
 * ...
 * 

* Author: Thomas Kurz ([email protected]) */ @FunctionDoc(title = "SpatialFragment Test", properties = {SpatialEntity.class}, reference = FunctionDoc.Reference.spatial, description = "returns true is value is a spatial fragment.", type = FunctionDoc.Type.accessorFunction) public class SpatialFragmentTest implements Function { @Override public String getURI() { return Constants.NAMESPACE + "isSpatialFragment"; } @Override public Value evaluate(ValueFactory valueFactory, Value... values) throws ValueExprEvaluationException { if(values.length != 1) return FunctionHelper.BOOL_LITERAL_FALSE; try { return FunctionHelper.toSpatialEntity(values[0]) == null ? FunctionHelper.BOOL_LITERAL_FALSE : FunctionHelper.BOOL_LITERAL_TRUE; } catch (IllegalArgumentException e) { return FunctionHelper.BOOL_LITERAL_FALSE; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy