
com.franz.agraph.jena.AGNodeFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of agraph-java-client Show documentation
Show all versions of agraph-java-client Show documentation
Java client API for Franz AllegroGraph
/******************************************************************************
** Copyright (c) 2008-2016 Franz Inc.
** All rights reserved. This program and the accompanying materials
** are made available under the terms of the Eclipse Public License v1.0
** which accompanies this distribution, and is available at
** http://www.eclipse.org/legal/epl-v10.html
******************************************************************************/
package com.franz.agraph.jena;
import org.openrdf.model.BNode;
import org.openrdf.model.Literal;
import org.openrdf.model.Statement;
import org.openrdf.model.URI;
import org.openrdf.model.Value;
import com.hp.hpl.jena.graph.Node;
import com.hp.hpl.jena.graph.Triple;
import com.hp.hpl.jena.rdf.model.AnonId;
/**
*
* A utility class for creating Jena Nodes and Triples
* from Sesame Values and Statements.
*
*/
public class AGNodeFactory {
public static Triple asTriple(Statement st) {
Node s = asNode(st.getSubject());
Node p = asNode(st.getPredicate());
Node o = asNode(st.getObject());
return new Triple(s,p,o);
}
public static Node asNode(Value v) {
Node node = null;
if (v==null) {
node = Node.ANY; // TODO or Node.NULL or null?
} else if (v instanceof URI) {
node = Node.createURI(v.stringValue());
} else if (v instanceof BNode) {
node = Node.createAnon(new AnonId(v.stringValue()));
} else if (v instanceof Literal) {
Literal lit = (Literal)v;
URI datatype = lit.getDatatype();
String lang = lit.getLanguage();
if (lang!=null) {
node = Node.createLiteral(lit.getLabel(), lang, null);
} else if (datatype!=null) {
node = Node.createLiteral(lit.getLabel(), null, Node.getType(datatype.toString()));
} else {
node = Node.createLiteral(lit.stringValue());
}
} else {
throw new IllegalArgumentException("Cannot create Node from Value: " + v);
}
return node;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy