Package org.sindice.siren.index

Examples of org.sindice.siren.index.IntervalConstrainedNodesEnum


    if (stack.size() > 0) {
      // add the interval constraint of the current node
      if (lowerBound != -1 && upperBound != -1) {
        stack.add(levelConstraint, lowerBound, upperBound);
      }
      return new IntervalConstrainedNodesEnum(sirenDocsEnum, levelConstraint,
        stack.getLevelIndex(), stack.getConstraints());
    }
    // if an interval constraint has been set for the current node
    else if (lowerBound != -1 && upperBound != -1) {
      // use the interval constraint of the current node
View Full Code Here

TOP

Related Classes of org.sindice.siren.index.IntervalConstrainedNodesEnum

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.