- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.openrdf.query.algebra.ZeroLengthPath.getSubjectVar()
方法的一些代码示例,展示了ZeroLengthPath.getSubjectVar()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZeroLengthPath.getSubjectVar()
方法的具体详情如下:
包路径:org.openrdf.query.algebra.ZeroLengthPath
类名称:ZeroLengthPath
方法名:getSubjectVar
暂无
代码示例来源:origin: org.openrdf.sesame/sesame-queryalgebra-evaluation
public CloseableIteration<BindingSet, QueryEvaluationException> evaluate(ZeroLengthPath zlp,
final BindingSet bindings)
throws QueryEvaluationException
{
final Var subjectVar = zlp.getSubjectVar();
final Var objVar = zlp.getObjectVar();
final Var contextVar = zlp.getContextVar();
Value subj = null;
try {
subj = evaluate(subjectVar, bindings);
}
catch (QueryEvaluationException e) {
}
Value obj = null;
try {
obj = evaluate(objVar, bindings);
}
catch (QueryEvaluationException e) {
}
if (subj != null && obj != null) {
if (!subj.equals(obj)) {
return new EmptyIteration<BindingSet, QueryEvaluationException>();
}
}
return getZeroLengthPathIterator(bindings, subjectVar, objVar, contextVar, subj, obj);
}
代码示例来源:origin: org.openrdf.sesame/sesame-queryalgebra-model
@Override
public boolean equals(Object other) {
if (other instanceof ZeroLengthPath) {
ZeroLengthPath o = (ZeroLengthPath)other;
return subjectVar.equals(o.getSubjectVar())
&& objectVar.equals(o.getObjectVar()) && nullEquals(contextVar, o.getContextVar())
&& scope.equals(o.getScope());
}
return false;
}
代码示例来源:origin: org.openrdf.sesame/sesame-queryalgebra-evaluation
@Override
public void meet(ZeroLengthPath node) {
Var subjVar = node.getSubjectVar();
Var objVar = node.getObjectVar();
if((subjVar != null && subjVar.hasValue()) || (objVar != null && objVar.hasValue())) {
// subj = obj
cardinality = 1.0;
}
else {
// actual cardinality = count(union(subjs, objs))
// but cost is equivalent to ?s ?p ?o ?c (impl scans all statements)
// so due to the lower actual cardinality we value it in preference to a fully unbound statement pattern.
cardinality = getSubjectCardinality(subjVar) * getObjectCardinality(objVar) * getContextCardinality(node.getContextVar());
}
}
代码示例来源:origin: org.openrdf.sesame/sesame-queryalgebra-model
@Override
public ZeroLengthPath clone() {
ZeroLengthPath clone = (ZeroLengthPath)super.clone();
clone.setSubjectVar(getSubjectVar().clone());
clone.setObjectVar(getObjectVar().clone());
if (getContextVar() != null) {
clone.setContextVar(getContextVar().clone());
}
return clone;
}
}
代码示例来源:origin: eu.fbk.knowledgestore/ks-server
@Override
public void meet(final Union n) {
final TupleExpr l = n.getLeftArg();
final TupleExpr r = n.getRightArg();
final ZeroLengthPath p = l instanceof ZeroLengthPath ? (ZeroLengthPath) l
: r instanceof ZeroLengthPath ? (ZeroLengthPath) r : null;
if (p == null) {
emit(l, !(l instanceof Union)).emit(" UNION ").emit(r, !(r instanceof Union));
} else {
final Var s = p.getSubjectVar();
final Var o = p.getObjectVar();
final Var c = p.getContextVar();
if (c != null) {
emit("GRAPH ").emit(c).emit(" ").openBrace();
}
emit(s).emit(" ").emitPropertyPath(n, s, o).emit(" ").emit(o);
if (c != null) {
closeBrace();
}
}
}
代码示例来源:origin: eu.fbk.rdfpro/rdfpro-rules
@Override
public void meet(final Union n) {
final TupleExpr l = n.getLeftArg();
final TupleExpr r = n.getRightArg();
final ZeroLengthPath p = l instanceof ZeroLengthPath ? (ZeroLengthPath) l
: r instanceof ZeroLengthPath ? (ZeroLengthPath) r : null;
if (p == null) {
emit(l, !(l instanceof Union)).emit(" UNION ").emit(r, !(r instanceof Union));
} else {
final Var s = p.getSubjectVar();
final Var o = p.getObjectVar();
final Var c = p.getContextVar();
if (c != null) {
emit("GRAPH ").emit(c).emit(" ").openBrace();
}
emit(s).emit(" ").emitPropertyPath(n, s, o).emit(" ").emit(o);
if (c != null) {
closeBrace();
}
}
}
本文整理了Java中org.openrdf.query.algebra.ZeroLengthPath.getSubjectVar()方法的一些代码示例,展示了ZeroLengthPath.getSub
本文整理了Java中org.eclipse.rdf4j.query.algebra.ZeroLengthPath.getSubjectVar()方法的一些代码示例,展示了ZeroLengthPath.
我是一名优秀的程序员,十分优秀!