Package org.sindice.siren.index

Examples of org.sindice.siren.index.SingleIntervalConstrainedNodesEnum


        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
      return new SingleIntervalConstrainedNodesEnum(sirenDocsEnum,
        levelConstraint, new int[] { lowerBound, upperBound });
    }
    // if only a level constraint has been set for the current node
    else if (levelConstraint != -1) {
      return new LevelConstrainedNodesEnum(sirenDocsEnum, levelConstraint);
View Full Code Here

TOP

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

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.