Package org.bitbucket.rehei.sparqljava.model

Examples of org.bitbucket.rehei.sparqljava.model.IntegerExpression


    return compose(IOrderOffsetLimitGet.class);
  }

  @Override
  public IGet limit(int limit) {
    list.add(new IntegerExpression(IntegerExpressionType.LIMIT, limit));
    return compose(IGet.class);
  }
View Full Code Here


    return compose(IGet.class);
  }

  @Override
  public ILimitGet offset(int offset) {
    list.add(new IntegerExpression(IntegerExpressionType.OFFSET, offset));
    return compose(ILimitGet.class);
  }
View Full Code Here

TOP

Related Classes of org.bitbucket.rehei.sparqljava.model.IntegerExpression

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.