本文整理匯總了Java中org.apache.clerezza.commons.rdf.impl.utils.TripleImpl類的典型用法代碼示例。如果您正苦於以下問題:Java TripleImpl類的具體用法?Java TripleImpl怎麽用?Java TripleImpl使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
TripleImpl類屬於org.apache.clerezza.commons.rdf.impl.utils包,在下文中一共展示了TripleImpl類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: addRelevantDescription
import org.apache.clerezza.commons.rdf.impl.utils.TripleImpl; //導入依賴的package包/類
private void addRelevantDescription(GraphNode cgContent, Graph resultGraph, boolean withContent) {
Lock l = cgContent.readLock();
l.lock();
try {
Iterator<Literal> valueIter = cgContent.getLiterals(SIOC.content);
//if (!withContent) {
while (valueIter.hasNext()) {
final Literal valueLit = valueIter.next();
final String textualContent = valueLit.getLexicalForm();
final String preview = textualContent.substring(
0, Math.min(PREVIEW_LENGTH, textualContent.length()))
.replace('\n', ' ')
.replace("\r", "");
Language language = valueLit.getLanguage();
resultGraph.add(new TripleImpl((BlankNodeOrIRI) cgContent.getNode(), ECS.textPreview,
new PlainLiteralImpl(preview, language)));
}
//}
copyProperties(cgContent, resultGraph, DCTERMS.title, DCTERMS.abstract_,
RDFS.comment, DC.description, MEDIA_TITLE);
if (withContent) {
copyProperties(cgContent, resultGraph, SIOC.content);
}
} finally {
l.unlock();
}
}
示例2: copyProperties
import org.apache.clerezza.commons.rdf.impl.utils.TripleImpl; //導入依賴的package包/類
private void copyProperties(GraphNode fromNode, Graph toGraph, IRI... properties) {
for (IRI property : properties) {
Iterator<RDFTerm> objects = fromNode.getObjects(property);
while (objects.hasNext()) {
RDFTerm object = objects.next();
toGraph.add(new TripleImpl((BlankNodeOrIRI) fromNode.getNode(),
property, object));
}
}
}