本文整理了Java中com.hp.hpl.jena.query.Query.setOffset
方法的一些代码示例,展示了Query.setOffset
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.setOffset
方法的具体详情如下:
包路径:com.hp.hpl.jena.query.Query
类名称:Query
方法名:setOffset
暂无
代码示例来源:origin: org.apache.clerezza.ext/org.apache.jena.jena-arq
final public void OffsetClause() throws ParseException {
Token t ;
jj_consume_token(OFFSET);
t = jj_consume_token(INTEGER);
getQuery().setOffset(integerValue(t.image)) ;
}
代码示例来源:origin: org.apache.clerezza.ext/org.apache.jena.jena-arq
final public void OffsetClause() throws ParseException {
Token t ;
jj_consume_token(OFFSET);
t = jj_consume_token(INTEGER);
getQuery().setOffset(integerValue(t.image)) ;
}
代码示例来源:origin: org.apache.clerezza.ext/org.apache.jena.jena-arq
final public void OffsetClause() throws ParseException {
Token t ;
jj_consume_token(OFFSET);
t = jj_consume_token(INTEGER);
getQuery().setOffset(integerValue(t.image)) ;
}
代码示例来源:origin: com.hp.hpl.jena/arq
final public void OffsetClause() throws ParseException {
Token t ;
jj_consume_token(OFFSET);
t = jj_consume_token(INTEGER);
getQuery().setOffset(integerValue(t.image)) ;
}
代码示例来源:origin: com.hp.hpl.jena/arq
final public void OffsetClause() throws ParseException {
Token t ;
jj_consume_token(OFFSET);
t = jj_consume_token(INTEGER);
getQuery().setOffset(integerValue(t.image)) ;
}
代码示例来源:origin: com.hp.hpl.jena/arq
final public void OffsetClause() throws ParseException {
Token t ;
jj_consume_token(OFFSET);
t = jj_consume_token(INTEGER);
getQuery().setOffset(integerValue(t.image)) ;
}
代码示例来源:origin: com.hp.hpl.jena/arq
public void visit(OpSlice opSlice)
{
if ( opSlice.getStart() != Query.NOLIMIT )
query.setOffset(opSlice.getStart()) ;
if ( opSlice.getLength() != Query.NOLIMIT )
query.setLimit(opSlice.getLength()) ;
opSlice.getSubOp().visit(this) ;
}
代码示例来源:origin: org.apache.clerezza.ext/org.apache.jena.jena-arq
@Override
public void visit(OpSlice opSlice)
{
if ( opSlice.getStart() != Query.NOLIMIT )
query.setOffset(opSlice.getStart()) ;
if ( opSlice.getLength() != Query.NOLIMIT )
query.setLimit(opSlice.getLength()) ;
opSlice.getSubOp().visit(this) ;
}
代码示例来源:origin: anno4j/anno4j
sparql.setOffset(offset);
代码示例来源:origin: com.github.ansell.pellet/pellet-query
q.setOffset( offsetClause51 );
q.setOffset( offsetClause52 );
内容来源于网络,如有侵权,请联系作者删除!